sql
stringlengths
6
1.05M
<filename>Mod03-DatabaseTechnology/SQL/06-DeptSelect.sql<gh_stars>10-100 SELECT * FROM emp WHERE deptno != 10;
<reponame>Santiago2611/Math-Match USE math_match; -- ----------------- -- stored procedures -- ----------------- DELIMITER ## /*guardar estudiante*/ CREATE PROCEDURE sp_guardar_estudiante(nombre varchar(30), apellidos varchar(30), fecha_nac date, grado int, email varchar(80), clave varchar(35), sexo varchar(15)) BEGIN INSERT INTO estudiantes(nombre_estudiante,apellidos_estudiante,fecha_nac_estudiante,grado_estudiante, email_estudiante,clave_estudiante,sexo_estudiante) VALUES(nombre,apellidos,fecha_nac, grado,email,clave,sexo); END; /*borrar estudiante*/ CREATE PROCEDURE sp_borrar_estudiante(id int) BEGIN DELETE FROM estudiantes WHERE doc_id_estudiante = id; END; /*actualizar estudiante*/ CREATE PROCEDURE sp_actualizar_estudiante(id int, nombre varchar(30), apellidos varchar(30), fecha_nac date, grado int, email varchar(80), clave varchar(35), sexo varchar(15)) BEGIN UPDATE estudiantes SET nombre_estudiante = nombre,apellidos_estudiante = apellidos, fecha_nac_estudiante = fecha_nac,grado_estudiante = grado,email_estudiante = email, clave_estudiante = clave,sexo_estudiante = sexo WHERE doc_id_estudiante = id; END; /*guardar docente*/ CREATE PROCEDURE sp_guardar_docente(nombre varchar(30), apellidos varchar(30), email varchar(80), especialidades varchar(40), sexo varchar(15), telefono varchar(25), clave varchar(30)) BEGIN INSERT INTO docentes(nombre_docente,apellidos_docente,email_docente,especialidades,sexo_docente,telefono_docente,clave_docente) VALUES(nombre,apellidos,email,especialidades,sexo,telefono,clave); END; /*borrar docente*/ CREATE PROCEDURE sp_borrar_docente(id int) BEGIN DELETE FROM docentes WHERE doc_id_docente = id; END; /*actualizar docente*/ CREATE PROCEDURE sp_actualizar_docente(id int, nombreU varchar(30), apellidosU varchar(30), emailU varchar(80), especialidadesU varchar(40), sexoU varchar(15), telefonoU varchar(25), claveU varchar(30)) BEGIN UPDATE docentes SET nombre_docente = nombreU, apellidos_docente = apellidosU, email_docente = emailU, especialidades = especialidadesU, sexo_docente = sexoU, telefono_docente = telefonoU, clave_docente = claveU WHERE doc_id_docente= id; END;
-- ALTER TABLE esr_Import DROP CONSTRAINT IF EXISTS adattachmententry_esrimport; ALTER TABLE esr_import ADD CONSTRAINT adattachmententry_esrimport FOREIGN KEY (ad_attachmententry_ID) REFERENCES ad_attachmententry DEFERRABLE INITIALLY DEFERRED;
<filename>sql/il.sql /* Navicat MySQL Data Transfer Source Server : gursoykoc.com Source Server Version : Source Host : Source Database : Target Server Type : MYSQL Target Server Version : 50163 File Encoding : 65001 Date: 2012-06-06 10:34:39 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `il` -- ---------------------------- DROP TABLE IF EXISTS `il`; CREATE TABLE `il` ( `id` tinyint(4) NOT NULL DEFAULT '0', `ad` varchar(20) NOT NULL, PRIMARY KEY (`id`), FULLTEXT KEY `ad` (`ad`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of il -- ---------------------------- INSERT INTO il VALUES ('1', 'Adana'); INSERT INTO il VALUES ('2', 'Adıyaman'); INSERT INTO il VALUES ('3', 'Afyonkarahisar'); INSERT INTO il VALUES ('4', 'Ağrı'); INSERT INTO il VALUES ('5', 'Amasya'); INSERT INTO il VALUES ('6', 'Ankara'); INSERT INTO il VALUES ('7', 'Antalya'); INSERT INTO il VALUES ('8', 'Artvin'); INSERT INTO il VALUES ('9', 'Aydın'); INSERT INTO il VALUES ('10', 'Balıkesir'); INSERT INTO il VALUES ('11', 'Bilecik'); INSERT INTO il VALUES ('12', 'Bingöl'); INSERT INTO il VALUES ('13', 'Bitlis'); INSERT INTO il VALUES ('14', 'Bolu'); INSERT INTO il VALUES ('15', 'Burdur'); INSERT INTO il VALUES ('16', 'Bursa'); INSERT INTO il VALUES ('17', 'Çanakkale'); INSERT INTO il VALUES ('18', 'Çankırı'); INSERT INTO il VALUES ('19', 'Çorum'); INSERT INTO il VALUES ('20', 'Denizli'); INSERT INTO il VALUES ('21', 'Diyarbakır'); INSERT INTO il VALUES ('22', 'Edirne'); INSERT INTO il VALUES ('23', 'Elazığ'); INSERT INTO il VALUES ('24', 'Erzincan'); INSERT INTO il VALUES ('25', 'Erzurum'); INSERT INTO il VALUES ('26', 'Eskişehir'); INSERT INTO il VALUES ('27', 'Gaziantep'); INSERT INTO il VALUES ('28', 'Giresun'); INSERT INTO il VALUES ('29', 'Gümüşhane'); INSERT INTO il VALUES ('30', 'Hakkari'); INSERT INTO il VALUES ('31', 'Hatay'); INSERT INTO il VALUES ('32', 'Isparta'); INSERT INTO il VALUES ('33', 'Mersin(İçel)'); INSERT INTO il VALUES ('34', 'İstanbul'); INSERT INTO il VALUES ('35', 'İzmir'); INSERT INTO il VALUES ('36', 'Kars'); INSERT INTO il VALUES ('37', 'Kastamonu'); INSERT INTO il VALUES ('38', 'Kayseri'); INSERT INTO il VALUES ('39', 'Kırklareli'); INSERT INTO il VALUES ('40', 'Kırşehir'); INSERT INTO il VALUES ('41', 'Kocaeli'); INSERT INTO il VALUES ('42', 'Konya'); INSERT INTO il VALUES ('43', 'Kütahya'); INSERT INTO il VALUES ('44', 'Malatya'); INSERT INTO il VALUES ('45', 'Manisa'); INSERT INTO il VALUES ('46', 'Kahramanmaraş'); INSERT INTO il VALUES ('47', 'Mardin'); INSERT INTO il VALUES ('48', 'Muğla'); INSERT INTO il VALUES ('49', 'Muş'); INSERT INTO il VALUES ('50', 'Nevşehir'); INSERT INTO il VALUES ('51', 'Niğde'); INSERT INTO il VALUES ('52', 'Ordu'); INSERT INTO il VALUES ('53', 'Rize'); INSERT INTO il VALUES ('54', 'Sakarya'); INSERT INTO il VALUES ('55', 'Samsun'); INSERT INTO il VALUES ('56', 'Siirt'); INSERT INTO il VALUES ('57', 'Sinop'); INSERT INTO il VALUES ('58', 'Sivas'); INSERT INTO il VALUES ('59', 'Tekirdağ'); INSERT INTO il VALUES ('60', 'Tokat'); INSERT INTO il VALUES ('61', 'Trabzon'); INSERT INTO il VALUES ('62', 'Tunceli'); INSERT INTO il VALUES ('63', 'Şanlıurfa'); INSERT INTO il VALUES ('64', 'Uşak'); INSERT INTO il VALUES ('65', 'Van'); INSERT INTO il VALUES ('66', 'Yozgat'); INSERT INTO il VALUES ('67', 'Zonguldak'); INSERT INTO il VALUES ('68', 'Aksaray'); INSERT INTO il VALUES ('69', 'Bayburt'); INSERT INTO il VALUES ('70', 'Karaman'); INSERT INTO il VALUES ('71', 'Kırıkkale'); INSERT INTO il VALUES ('72', 'Batman'); INSERT INTO il VALUES ('73', 'Şırnak'); INSERT INTO il VALUES ('74', 'Bartın'); INSERT INTO il VALUES ('75', 'Ardahan'); INSERT INTO il VALUES ('76', 'Iğdır'); INSERT INTO il VALUES ('77', 'Yalova'); INSERT INTO il VALUES ('78', 'Karabük'); INSERT INTO il VALUES ('79', 'Kilis'); INSERT INTO il VALUES ('80', 'Osmaniye'); INSERT INTO il VALUES ('81', 'Düzce');
use mysql; grant all privileges on *.* to [your_mysql_name]@'%' identified by "your_mysql_pwd"; flush privileges; -- MySQL Script generated by MySQL Workbench -- 09/03/18 15:57:19 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema photio -- ----------------------------------------------------- DROP SCHEMA IF EXISTS `photio` ; -- ----------------------------------------------------- -- Schema photio -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `photio` DEFAULT CHARACTER SET utf8mb4 ; USE `photio` ; -- ----------------------------------------------------- -- Table `photio`.`user` -- ----------------------------------------------------- DROP TABLE IF EXISTS `photio`.`user` ; CREATE TABLE IF NOT EXISTS `photio`.`user` ( `id` BIGINT UNSIGNED NOT NULL COMMENT 'id', `account` VARCHAR(32) NOT NULL COMMENT 'account', `phone` VARCHAR(16) NOT NULL COMMENT 'mobile phone number', `pwd` VARCHAR(256) NOT NULL COMMENT 'SHA pwd', `user_name` VARCHAR(64) NULL COMMENT 'user nick name', `type` TINYINT UNSIGNED NOT NULL COMMENT '0 - admin; 1 - model; 2 - photographer;', `state` TINYINT NOT NULL COMMENT '0 - deleted; 1 - activied', `score` BIGINT UNSIGNED NOT NULL COMMENT 'score of user', `create_date` DATETIME NOT NULL COMMENT 'create time', `creator_id` BIGINT NULL COMMENT 'creator user id', `update_date` DATETIME NOT NULL COMMENT 'update time', `updater_id` BIGINT NULL COMMENT 'updater user id', PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COMMENT = 'user'; CREATE UNIQUE INDEX `account_UNIQUE` ON `photio`.`user` (`account` ASC); CREATE UNIQUE INDEX `phone_UNIQUE` ON `photio`.`user` (`phone` ASC); -- ----------------------------------------------------- -- Table `photio`.`schedule` -- ----------------------------------------------------- DROP TABLE IF EXISTS `photio`.`schedule` ; CREATE TABLE IF NOT EXISTS `photio`.`schedule` ( `id` BIGINT UNSIGNED NOT NULL COMMENT 'id', `user_id` BIGINT NOT NULL, `free_date` DATETIME NOT NULL, `is_scheduled` TINYINT NOT NULL, `tags` TEXT NULL COMMENT '{\"\", \"\"}', `create_date` DATETIME NOT NULL COMMENT 'create time', `creator_id` BIGINT NULL COMMENT 'creator user id', `update_date` DATETIME NOT NULL COMMENT 'update time', `updater_id` BIGINT NULL COMMENT 'updater user id') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COMMENT = 'schedule'; -- ----------------------------------------------------- -- Table `photio`.`invitation` -- ----------------------------------------------------- DROP TABLE IF EXISTS `photio`.`invitation` ; CREATE TABLE IF NOT EXISTS `photio`.`invitation` ( `id` BIGINT UNSIGNED NOT NULL COMMENT 'id', `invitor_id` BIGINT NOT NULL, `target_user_id` BIGINT NOT NULL, `target_schedule_id` BIGINT NOT NULL COMMENT '被邀请者计划', `scheduled_date` DATETIME NOT NULL, `state` TINYINT NOT NULL COMMENT '0 - idle; 1 - accepted; 2 - finished; 3 - channel; 4 - rejected;', `create_date` DATETIME NOT NULL COMMENT 'create time', `creator_id` BIGINT NULL COMMENT 'creator user id', `update_date` DATETIME NOT NULL COMMENT 'update time', `updater_id` BIGINT NULL COMMENT 'updater user id') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4; -- ----------------------------------------------------- -- Table `photio`.`evaluation` -- ----------------------------------------------------- DROP TABLE IF EXISTS `photio`.`evaluation` ; CREATE TABLE IF NOT EXISTS `photio`.`evaluation` ( `id` BIGINT UNSIGNED NOT NULL COMMENT 'id', `user_id` BIGINT NOT NULL, `evatuate_user_id` BIGINT NOT NULL, `score` INT UNSIGNED NOT NULL, `msg` TEXT NULL, `create_date` DATETIME NOT NULL COMMENT 'create time', `creator_id` BIGINT NULL COMMENT 'creator user id', `update_date` DATETIME NOT NULL COMMENT 'update time', `updater_id` BIGINT NULL COMMENT 'updater user id') ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
CREATE OR REPLACE PACKAGE pkg_product AS /** * Backend for Editform and Gridfilter demos. * * Copyright (c) 2013 Tavendo GmbH. Licensed under the Apache 2.0 license. */ /** * RPC/Event URI prefix */ BASEURI CONSTANT VARCHAR2(200) := 'http://tavendo.de/webmq/demo/product#'; /** * Get objects. This procedure can drive ExtJS grids and properly * does query pagination. */ FUNCTION crud_read (p_params JSON) RETURN JSON_LIST; /** * Create a new object. */ FUNCTION crud_create (p_obj JSON, p_sess WEBMQ_SESSION) RETURN JSON; /** * Update existing object. */ FUNCTION crud_update (p_obj JSON, p_sess WEBMQ_SESSION) RETURN JSON; /** * Delete an object given by ID. */ PROCEDURE crud_delete (p_id NUMBER, p_sess WEBMQ_SESSION); /** * Get objects by filter. * * Example: * session.call("http://tavendo.de/webmq/demo/koform#filter", {name: {value: 'S', type: 'prefix'}}, 10).then(ab.log, ab.log); * * NAME TYPE * -------------------------------------- * name prefix, includes * price gte, lte */ FUNCTION filter (p_filter JSON, p_limit NUMBER) RETURN JSON_LIST; END; /
<reponame>FuriousLlama/PSP<filename>database/mssql/scripts/dbscripts/PSP_PIMS_S29_00/Build/82_DML_PIMS_VOLUME_UNIT_TYPE.sql /* ----------------------------------------------------------------------------- Delete all data from the PIMS_VOLUME_UNIT_TYPE table and repopulate. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Author Date Comment ------------ ----------- ----------------------------------------------------- <NAME> 2021-Aug-24 Initial version ----------------------------------------------------------------------------- */ DELETE FROM PIMS_VOLUME_UNIT_TYPE GO INSERT INTO PIMS_VOLUME_UNIT_TYPE (VOLUME_UNIT_TYPE_CODE, DESCRIPTION) VALUES (N'M3', N'Cubic Meters'), (N'F3', N'Cubic Feet'); GO
<reponame>gminteer/hr-buddy USE hr_buddy; DROP TABLE IF EXISTS employee; DROP TABLE IF EXISTS role; DROP TABLE IF EXISTS department; CREATE TABLE department( id INTEGER UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL ); CREATE TABLE role( id INTEGER UNSIGNED AUTO_INCREMENT PRIMARY KEY, title VARCHAR(30) NOT NULL, salary DECIMAL(9, 2) NOT NULL DEFAULT 15080.00, department_id INTEGER UNSIGNED, CONSTRAINT fk_department FOREIGN KEY (department_id) REFERENCES department(id) ON DELETE SET NULL, CONSTRAINT chk_min_wage_salary CHECK (salary >= 15080.00) ); CREATE TABLE employee( id INTEGER UNSIGNED AUTO_INCREMENT PRIMARY KEY, first_name VARCHAR(30) NOT NULL, last_name VARCHAR(30) NOT NULL, role_id INTEGER UNSIGNED, manager_id INTEGER UNSIGNED, CONSTRAINT fk_role FOREIGN KEY (role_id) REFERENCES role(id) ON DELETE SET NULL, CONSTRAINT fk_manager FOREIGN KEY (manager_id) REFERENCES employee(id) ON DELETE SET NULL );
<gh_stars>0 DROP TABLE IF EXISTS `shuyang_book`; CREATE TABLE IF NOT EXISTS `shuyang_book` ( `id` mediumint(6) unsigned NOT NULL AUTO_INCREMENT, `realname` varchar(20) DEFAULT NULL, `userid` mediumint(6) NOT NULL, `username` varchar(20) DEFAULT NULL, `email` varchar(40) DEFAULT NULL, `mobile` varchar(11) DEFAULT NULL, `title` varchar(80) DEFAULT NULL, `content` mediumtext, `view_password` varchar(20) NOT NULL, `addtime` int(10) unsigned NOT NULL DEFAULT '0', `is_check` tinyint(1) unsigned NOT NULL DEFAULT '0', `siteid` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
<gh_stars>0  --Post-Deployment Script Template ---------------------------------------------------------------------------------------- -- This file contains SQL statements that will be appended to the build script. -- Use SQLCMD syntax to include a file in the post-deployment script. -- Example: :r .\myfile.sql -- Use SQLCMD syntax to reference a variable in the post-deployment script. -- Example: :setvar TableName MyTable -- SELECT * FROM [$(TableName)] ---------------------------------------------------------------------------------------- INSERT INTO [dbo].[AppSettingType]( [AppSettingType], [AppSettingTypeDescription]) VALUES ('TEXT','Text Content'), ('INTEGER', 'Integer (whole number) only'), ('DECIMAL','Numbers that are not integers'), ('BOOL', 'Boolean content (true = 1, false = 0)'), ('CSV','Comma Seperated List. Use double quotes for fields that require it.'), ('HMTL','HTML Content'), ('JSON','JSON Content'), ('XML','XML Content') GO SET IDENTITY_INSERT [dbo].[AppSettingSection] ON GO INSERT INTO [dbo].[AppSettingSection]( [AppSettingSectionId], [Section], [Description]) VALUES (1, 'General','Platform general settings') GO SET IDENTITY_INSERT [dbo].[AppSettingSection] OFF GO SET IDENTITY_INSERT [dbo].[AppSettingGroup] ON GO INSERT INTO [dbo].[AppSettingGroup]( [AppSettingGroupId], [Group], [Description]) VALUES (1, 'Core', 'Settings apply to ALL consumers and is the root of all inherited settings.') GO SET IDENTITY_INSERT [dbo].[AppSettingGroup] OFF GO SET IDENTITY_INSERT [dbo].[Tenant] ON GO INSERT INTO [dbo].[Tenant]( [TenantId],[TenantName],[TenantCode],[TenantDescription]) VALUES (1,'Platform','PLATFORM','Applies to all tenants') GO SET IDENTITY_INSERT [dbo].[Tenant] OFF GO INSERT INTO [dbo].[AppSetting]( [SettingKey], [SettingGroupId], [SettingSectionId], [TypeId], [TenantId], [SettingValue], [Description]) VALUES ('TestSetting',1,1,1,1,'This is a test text setting value','Description: Remove this test setting') GO
<gh_stars>0 create table app_scan_laps ( id int auto_increment primary key, car varchar(1000) null, lap_time int null, location varchar(1000) null, user varchar(1000) null, create_time timestamp null ); create table app_scan_points ( id int auto_increment primary key, car varchar(1000) null, scantime datetime null, location varchar(1000) null, user varchar(1000) null, points int null, create_time timestamp null ); create procedure save_laps_scan(IN car_param varchar(1000), IN location_param varchar(1000), IN user_param varchar(1000), IN lap_time_param int) BEGIN INSERT INTO `stofgevreet`.`app_scan_laps` (`car`, `location`, `user`, `lap_time`, `create_time`) values (car_param, location_param, user_param, lap_time_param, current_timestamp()); END; create procedure save_points_scan(IN car_param varchar(1000), IN scantime_param varchar(1000), IN points_param int, IN user_param varchar(1000), IN location_param varchar(1000)) BEGIN INSERT INTO `stofgevreet`.`app_scan_points` (`car`, `scantime`, `points`, `user`, `location`, `create_time`) values (car_param, scantime_param, points_param, user_param, location_param, current_timestamp()); END;
DROP DATABASE IF EXISTS test_01516; CREATE DATABASE test_01516 ENGINE=Ordinary; -- Full ATTACH requires UUID with Atomic USE test_01516; DROP TABLE IF EXISTS primary_key_test; CREATE TABLE primary_key_test(v Int32, PRIMARY KEY(v)) ENGINE=ReplacingMergeTree ORDER BY v; INSERT INTO primary_key_test VALUES (1), (1), (1); DETACH TABLE primary_key_test; ATTACH TABLE primary_key_test(v Int32, PRIMARY KEY(v)) ENGINE=ReplacingMergeTree ORDER BY v; SELECT * FROM primary_key_test FINAL; DROP TABLE primary_key_test; CREATE TABLE primary_key_test(v Int32) ENGINE=ReplacingMergeTree ORDER BY v PRIMARY KEY(v); INSERT INTO primary_key_test VALUES (1), (1), (1); DETACH TABLE primary_key_test; ATTACH TABLE primary_key_test(v Int32) ENGINE=ReplacingMergeTree ORDER BY v PRIMARY KEY(v); SELECT * FROM primary_key_test FINAL; DROP TABLE primary_key_test; CREATE TABLE primary_key_test(v Int32, PRIMARY KEY(v), PRIMARY KEY(v)) ENGINE=ReplacingMergeTree ORDER BY v; -- { clientError 36; } CREATE TABLE primary_key_test(v Int32, PRIMARY KEY(v)) ENGINE=ReplacingMergeTree ORDER BY v PRIMARY KEY(v); -- { clientError 36; } CREATE TABLE primary_key_test(v1 Int32, v2 Int32, PRIMARY KEY(v1, v2)) ENGINE=ReplacingMergeTree ORDER BY (v1, v2); INSERT INTO primary_key_test VALUES (1, 1), (1, 1), (1, 1); DETACH TABLE primary_key_test; ATTACH TABLE primary_key_test(v1 Int32, v2 Int32, PRIMARY KEY(v1, v2)) ENGINE=ReplacingMergeTree ORDER BY (v1, v2); SELECT * FROM primary_key_test FINAL; DROP TABLE primary_key_test; CREATE TABLE primary_key_test(v1 Int32, v2 Int32) ENGINE=ReplacingMergeTree ORDER BY (v1, v2) PRIMARY KEY(v1, v2); INSERT INTO primary_key_test VALUES (1, 1), (1, 1), (1, 1); DETACH TABLE primary_key_test; ATTACH TABLE primary_key_test(v1 Int32, v2 Int32) ENGINE=ReplacingMergeTree ORDER BY (v1, v2) PRIMARY KEY(v1, v2); SELECT * FROM primary_key_test FINAL; DROP TABLE primary_key_test; CREATE TABLE primary_key_test(v1 Int32, v2 Int32, PRIMARY KEY(v1, v2), PRIMARY KEY(v1, v2)) ENGINE=ReplacingMergeTree ORDER BY (v1, v2); -- { clientError 36; } CREATE TABLE primary_key_test(v1 Int32, v2 Int32, PRIMARY KEY(v1, v2)) ENGINE=ReplacingMergeTree ORDER BY (v1, v2) PRIMARY KEY(v1, v2); -- { clientError 36; } CREATE TABLE primary_key_test(v1 Int64, v2 Int32, v3 String, PRIMARY KEY(v1, gcd(v1, v2))) ENGINE=ReplacingMergeTree ORDER BY v1; -- { serverError 36; } CREATE TABLE primary_key_test(v1 Int64, v2 Int32, v3 String, PRIMARY KEY(v1, gcd(v1, v2))) ENGINE=ReplacingMergeTree ORDER BY (v1, gcd(v1, v2)); INSERT INTO primary_key_test VALUES(7, 14, 'hello'), (2, 2, 'world'), (7, 14, 'duplicate'); SELECT v1, v2 FROM primary_key_test FINAL ORDER BY v1, v2; DROP TABLE primary_key_test; DROP DATABASE test_01516;
CREATE OR REPLACE ALGORITHM = UNDEFINED VIEW `db_9aa830_learnev`.`studentengagementreport_todaysengagementbyurl` AS SELECT `db_9aa830_learnev`.`studentlearningeventlog`.`StudentElectronicMailAddress` AS `StudentElectronicMailAddress` , `db_9aa830_learnev`.`studentlearningeventlog`.`LeaningAppUrl` AS `LeaningAppUrl` , `db_9aa830_learnev`.`studentlearningeventlog`.`UTCStartDate` AS `UTCStartDate` , MAX(`db_9aa830_learnev`.`studentlearningeventlog`.`UTCEndDate`) AS `UTCEndDate` , MAX(`db_9aa830_learnev`.`studentlearningeventlog`.`TimeSpent`) AS `TimeSpent` FROM `db_9aa830_learnev`.`studentlearningeventlog` WHERE (`db_9aa830_learnev`.`studentlearningeventlog`.`UTCStartDate` > CURDATE()) GROUP BY `db_9aa830_learnev`.`studentlearningeventlog`.`StudentElectronicMailAddress` , `db_9aa830_learnev`.`studentlearningeventlog`.`LeaningAppUrl` , `db_9aa830_learnev`.`studentlearningeventlog`.`UTCStartDate` ; CREATE OR REPLACE ALGORITHM = UNDEFINED VIEW `db_9aa830_learnev`.`studentengagementreport_todaysengagement` AS SELECT `sturl`.`StudentElectronicMailAddress` AS `StudentElectronicMailAddress` , COUNT(0) AS `URLsVisitedToday` , AVG(`sturl`.`TimeSpent`) AS `AVGTimeSpent` FROM `db_9aa830_learnev`.`studentengagementreport_todaysengagementbyurl` `sturl` GROUP BY `sturl`.`StudentElectronicMailAddress` ; CREATE OR REPLACE ALGORITHM = UNDEFINED VIEW `db_9aa830_learnev`.`studentengagementreport` AS SELECT `st`.`Id` AS `Id` , `st`.`StudentUSI` AS `StudentUSI` , `st`.`StudentUniqueId` AS `StudentUniqueId` , `st`.`StudentStateIdentificationCode` AS `StudentStateIdentificationCode` , `st`.`IdentityElectronicMailAddress` AS `IdentityElectronicMailAddress` , `st`.`DeviceId` AS `DeviceId` , `st`.`LocalEducationAgencyName` AS `LocalEducationAgencyName` , `st`.`SchoolName` AS `SchoolName` , `st`.`SchoolYear` AS `SchoolYear` , `st`.`SchoolCurrentGradeLevelDescriptorCodeValue` AS `SchoolCurrentGradeLevelDescriptorCodeValue` , `st`.`SchoolTypeDescriptorCodeValue` AS `SchoolTypeDescriptorCodeValue` , `st`.`ExitWithdrawalDate` AS `ExitWithdrawalDate` , `st`.`FirstName` AS `FirstName` , `st`.`MiddleName` AS `MiddleName` , `st`.`LastSurname` AS `LastSurname` , `st`.`BirthDate` AS `BirthDate` , `st`.`BirthSexDescriptorCodeValue` AS `BirthSexDescriptorCodeValue` , `st`.`Ethnicity` AS `Ethnicity` , `st`.`Race_AmericanIndianAlaskanNative` AS `Race_AmericanIndianAlaskanNative` , `st`.`Race_Asian` AS `Race_Asian` , `st`.`Race_BlackAfricaAmerican` AS `Race_BlackAfricaAmerican` , `st`.`Race_NativeHawaiianPacificIslander` AS `Race_NativeHawaiianPacificIslander` , `st`.`Race_White` AS `Race_White` , `st`.`Race_ChooseNotToRespond` AS `Race_ChooseNotToRespond` , `st`.`Race_Other` AS `Race_Other` , `st`.`DisabilityStatusDescriptorCodeValue` AS `DisabilityStatusDescriptorCodeValue` , `st`.`EconomicallyDisadvantageDescriptorCodeValue` AS `EconomicallyDisadvantageDescriptorCodeValue` , `st`.`ELLStatusDescriptorCodeValue` AS `ELLStatusDescriptorCodeValue` , `st`.`MigrantDescriptorCodeValue` AS `MigrantDescriptorCodeValue` , `st`.`HomelessDescriptorCodeValue` AS `HomelessDescriptorCodeValue` , `st`.`FosterDescriptorCodeValue` AS `FosterDescriptorCodeValue` , `st`.`F504DescriptorCodeValue` AS `F504DescriptorCodeValue` , `st`.`ContactInfoFirstName` AS `ContactInfoFirstName` , `st`.`ContactInfoLastSurname` AS `ContactInfoLastSurname` , `st`.`ContactInfoRelationToStudent` AS `ContactInfoRelationToStudent` , `st`.`ContactInfoCellPhoneNumber` AS `ContactInfoCellPhoneNumber` , `st`.`ContactInfoElectronicMailAddress` AS `ContactInfoElectronicMailAddress` , ( CASE WHEN (`ev`.`StudentElectronicMailAddress` IS NOT NULL) THEN 'Engaged today' ELSE 'Not Engaged today' END) AS `LoggedToday` FROM (`db_9aa830_learnev`.`studentinformation` `st` LEFT JOIN `db_9aa830_learnev`.`studentengagementreport_todaysengagement` `ev` ON ((`st`.`IdentityElectronicMailAddress` = `ev`.`StudentElectronicMailAddress`))) ; CREATE OR REPLACE ALGORITHM = UNDEFINED VIEW `db_9aa830_learnev`.`studentengagementreport_lastengagement` AS SELECT `lg`.`StudentElectronicMailAddress` AS `StudentElectronicMailAddress` , MAX(`lg`.`UTCStartDate`) AS `DateLastEngagement` ,(TO_DAYS(CURDATE()) - TO_DAYS(MAX(`lg`.`UTCStartDate`))) AS `DaysSinceLastEngagement` FROM `db_9aa830_learnev`.`studentlearningeventlog` `lg` GROUP BY `lg`.`StudentElectronicMailAddress` ;
START TRANSACTION; -- update the version UPDATE sec_schema_version SET version_value='52' WHERE version_key='schema_patch'; ALTER TABLE sec_bond ALTER COLUMN interestaccrual_date DROP NOT NULL; ALTER TABLE sec_bond ALTER COLUMN interestaccrual_zone DROP NOT NULL; ALTER TABLE sec_bond ALTER COLUMN firstcoupon_date DROP NOT NULL; ALTER TABLE sec_bond ALTER COLUMN firstcoupon_zone DROP NOT NULL; COMMIT;
#standardSQL # 08_39b: SRI header CREATE TEMPORARY FUNCTION extractHeader(payload STRING, name STRING) RETURNS STRING LANGUAGE js AS ''' try { var $ = JSON.parse(payload); var header = $._headers.response.find(h => h.toLowerCase().startsWith(name.toLowerCase())); if (!header) { return null; } return header.substr(header.indexOf(':') + 1).trim(); } catch (e) { return null; } '''; SELECT client, COUNTIF(requires_sri) AS pages, COUNT(0) AS total, ROUND(COUNTIF(requires_sri) * 100 / COUNT(0), 2) AS pct FROM ( SELECT client, REGEXP_CONTAINS(extractHeader(payload, 'Content-Security-Policy'), '(?i)require-sri-for') AS requires_sri FROM `httparchive.almanac.requests` WHERE date = '2019-07-01' AND firstHtml) GROUP BY client
-- Revert upsert_project_github_metadata BEGIN; DROP FUNCTION IF EXISTS upsert_project_github_metadata( p_project_id project_github_metadata.project_id%TYPE, p_repo_name project_github_metadata.repo_name%TYPE, p_repo_owner project_github_metadata.repo_owner%TYPE, p_token project_github_metadata.token%TYPE ); COMMIT;
<reponame>asesidaa/gc-local-server<gh_stars>1-10 -- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- 主机: 127.0.0.1 -- 生成日期: 2022-03-27 10:24:19 -- 服务器版本: 10.4.22-MariaDB -- PHP 版本: 8.1.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- 数据库: `2110_card` -- -- -------------------------------------------------------- -- -- 表的结构 `music_extra` -- CREATE TABLE IF NOT EXISTS `music_extra` ( `music_id` int(11) NOT NULL, `use_flag` int(11) NOT NULL, PRIMARY KEY (`music_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- 插入之前先把表清空(truncate) `music_extra` -- TRUNCATE TABLE `music_extra`; -- -- 转存表中的数据 `music_extra` -- INSERT INTO `music_extra` (`music_id`, `use_flag`) VALUES (1, 1), (23, 1), (28, 1), (33, 1), (41, 1), (43, 1), (45, 1), (50, 1), (77, 1), (86, 1), (88, 1), (89, 1), (90, 1), (91, 1), (92, 1), (93, 1), (101, 1), (102, 1), (106, 1), (134, 1), (139, 1), (140, 1), (142, 1), (151, 1), (152, 1), (159, 1), (169, 1), (184, 1), (205, 1), (231, 1), (234, 1), (238, 1), (257, 1), (260, 1), (265, 1), (274, 1), (280, 1), (281, 1), (317, 1), (318, 1), (319, 1), (321, 1), (326, 1), (336, 1), (349, 1), (351, 1), (353, 1), (357, 1), (370, 1), (374, 1), (399, 1), (410, 1), (426, 1), (427, 1), (437, 1), (440, 1), (449, 1), (450, 1), (451, 1), (455, 1), (460, 1), (465, 1), (478, 1), (486, 1), (488, 1), (497, 1), (498, 1), (502, 1), (505, 1), (506, 1), (510, 1), (513, 1), (515, 1), (516, 1), (520, 1), (539, 1), (540, 1), (541, 1), (544, 1), (545, 1), (546, 1), (552, 1), (556, 1), (558, 1), (561, 1), (571, 1), (574, 1), (588, 1), (609, 1), (610, 1), (612, 1), (613, 1), (617, 1), (619, 1), (624, 1), (625, 1), (627, 1), (628, 1), (629, 1), (631, 1), (632, 1), (633, 1), (634, 1), (635, 1), (636, 1), (637, 1), (638, 1), (639, 1), (640, 1), (641, 1), (642, 1), (643, 1), (646, 1), (647, 1), (648, 1), (649, 1), (655, 1), (658, 1), (659, 1), (660, 1), (661, 1), (666, 1), (667, 1), (668, 1), (669, 1), (670, 1), (671, 1), (672, 1), (673, 1), (676, 1), (679, 1), (684, 1), (685, 1), (689, 1), (690, 1), (707, 1), (713, 1), (714, 1), (723, 1), (726, 1), (727, 1), (731, 1), (735, 1), (749, 1), (754, 1), (764, 1), (769, 1), (771, 1), (778, 1); COMMIT; /*!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 */;
ALTER TABLE `ta_switch_view_user` ADD COLUMN `buc_id` varchar(32) NULL COMMENT 'BUCID'
-- -- The contents of this file are subject to the license and copyright -- detailed in the LICENSE and NOTICE files at the root of the source -- tree and available online at -- -- http://www.dspace.org/license/ -- ---------------------------------------------------- -- Data Migration for XML/Configurable Workflow -- -- This file will automatically migrate existing -- classic workflows to XML/Configurable workflows. -- NOTE however that the corresponding -- "xml_workflow_migration.sql" script must FIRST be -- called to create the appropriate database tables. -- -- This script is called automatically by the following -- Flyway Java migration class: -- org.dspace.storage.rdbms.migration.V5_0_2014_01_01__XMLWorkflow_Migration ---------------------------------------------------- -- Convert workflow groups: INSERT INTO cwf_collectionrole (role_id, group_id, collection_id) SELECT 'reviewer' AS role_id, collection.workflow_step_1 AS group_id, collection.collection_id AS collection_id FROM collection WHERE collection.workflow_step_1 IS NOT NULL; INSERT INTO cwf_collectionrole (role_id, group_id, collection_id) SELECT 'editor' AS role_id, collection.workflow_step_2 AS group_id, collection.collection_id AS collection_id FROM collection WHERE collection.workflow_step_2 IS NOT NULL; INSERT INTO cwf_collectionrole (role_id, group_id, collection_id) SELECT 'finaleditor' AS role_id, collection.workflow_step_3 AS group_id, collection.collection_id AS collection_id FROM collection WHERE collection.workflow_step_3 IS NOT NULL; -- Migrate workflow items INSERT INTO cwf_workflowitem (workflowitem_id, item_id, collection_id, multiple_titles, published_before, multiple_files) SELECT workflow_id AS workflowitem_id, item_id, collection_id, multiple_titles, published_before, multiple_files FROM workflowitem; -- Migrate claimed tasks INSERT INTO cwf_claimtask (workflowitem_id, workflow_id, step_id, action_id, owner_id) SELECT workflow_id AS workflowitem_id, 'default' AS workflow_id, 'reviewstep' AS step_id, 'reviewaction' AS action_id, owner AS owner_id FROM workflowitem WHERE owner IS NOT NULL AND state = 2; INSERT INTO cwf_claimtask (workflowitem_id, workflow_id, step_id, action_id, owner_id) SELECT workflow_id AS workflowitem_id, 'default' AS workflow_id, 'editstep' AS step_id, 'editaction' AS action_id, owner AS owner_id FROM workflowitem WHERE owner IS NOT NULL AND state = 4; INSERT INTO cwf_claimtask (workflowitem_id, workflow_id, step_id, action_id, owner_id) SELECT workflow_id AS workflowitem_id, 'default' AS workflow_id, 'finaleditstep' AS step_id, 'finaleditaction' AS action_id, owner AS owner_id FROM workflowitem WHERE owner IS NOT NULL AND state = 6; -- Migrate pooled tasks INSERT INTO cwf_pooltask (workflowitem_id, workflow_id, step_id, action_id, group_id) SELECT workflowitem.workflow_id AS workflowitem_id, 'default' AS workflow_id, 'reviewstep' AS step_id, 'claimaction' AS action_id, cwf_collectionrole.group_id AS group_id FROM workflowitem INNER JOIN cwf_collectionrole ON workflowitem.collection_id = cwf_collectionrole.collection_id WHERE workflowitem.owner IS NULL AND workflowitem.state = 1 AND cwf_collectionrole.role_id = 'reviewer'; INSERT INTO cwf_pooltask (workflowitem_id, workflow_id, step_id, action_id, group_id) SELECT workflowitem.workflow_id AS workflowitem_id, 'default' AS workflow_id, 'editstep' AS step_id, 'claimaction' AS action_id, cwf_collectionrole.group_id AS group_id FROM workflowitem INNER JOIN cwf_collectionrole ON workflowitem.collection_id = cwf_collectionrole.collection_id WHERE workflowitem.owner IS NULL AND workflowitem.state = 3 AND cwf_collectionrole.role_id = 'editor'; INSERT INTO cwf_pooltask (workflowitem_id, workflow_id, step_id, action_id, group_id) SELECT workflowitem.workflow_id AS workflowitem_id, 'default' AS workflow_id, 'finaleditstep' AS step_id, 'claimaction' AS action_id, cwf_collectionrole.group_id AS group_id FROM workflowitem INNER JOIN cwf_collectionrole ON workflowitem.collection_id = cwf_collectionrole.collection_id WHERE workflowitem.owner IS NULL AND workflowitem.state = 5 AND cwf_collectionrole.role_id = 'finaleditor'; -- Delete existing workflowitem policies DELETE FROM resourcepolicy WHERE resource_type_id = 2 AND resource_id IN (SELECT item_id FROM workflowitem); DELETE FROM resourcepolicy WHERE resource_type_id = 1 AND resource_id IN (SELECT item2bundle.bundle_id FROM (workflowitem INNER JOIN item2bundle ON workflowitem.item_id = item2bundle.item_id)); DELETE FROM resourcepolicy WHERE resource_type_id = 0 AND resource_id IN (SELECT bundle2bitstream.bitstream_id FROM ((workflowitem INNER JOIN item2bundle ON workflowitem.item_id = item2bundle.item_id) INNER JOIN bundle2bitstream ON item2bundle.bundle_id = bundle2bitstream.bundle_id)); -- Create policies for claimtasks -- public static final int BITSTREAM = 0; -- public static final int BUNDLE = 1; -- public static final int ITEM = 2; -- public static final int READ = 0; -- public static final int WRITE = 1; -- public static final int DELETE = 2; -- public static final int ADD = 3; -- public static final int REMOVE = 4; -- Item INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, eperson_id) SELECT getnextid('resourcepolicy') AS policy_id, 2 AS resource_type_id, cwf_workflowitem.item_id AS resource_id, temptable.action_id AS action_id, cwf_claimtask.owner_id AS eperson_id FROM (cwf_workflowitem INNER JOIN cwf_claimtask ON cwf_workflowitem.workflowitem_id = cwf_claimtask.workflowitem_id), (VALUES (0), (1), (2), (3), (4)) AS temptable(action_id); -- Bundles INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, eperson_id) SELECT getnextid('resourcepolicy') AS policy_id, 1 AS resource_type_id, item2bundle.bundle_id AS resource_id, temptable.action_id AS action_id, cwf_claimtask.owner_id AS eperson_id FROM ( (cwf_workflowitem INNER JOIN cwf_claimtask ON cwf_workflowitem.workflowitem_id = cwf_claimtask.workflowitem_id) INNER JOIN item2bundle ON cwf_workflowitem.item_id = item2bundle.item_id ), (VALUES (0), (1), (2), (3), (4)) AS temptable(action_id); -- Bitstreams INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, eperson_id) SELECT getnextid('resourcepolicy') AS policy_id, 0 AS resource_type_id, bundle2bitstream.bitstream_id AS resource_id, temptable.action_id AS action_id, cwf_claimtask.owner_id AS eperson_id FROM ( ((cwf_workflowitem INNER JOIN cwf_claimtask ON cwf_workflowitem.workflowitem_id = cwf_claimtask.workflowitem_id) INNER JOIN item2bundle ON cwf_workflowitem.item_id = item2bundle.item_id) INNER JOIN bundle2bitstream ON item2bundle.bundle_id = bundle2bitstream.bundle_id ), (VALUES (0), (1), (2), (3), (4)) AS temptable(action_id); -- Create policies for pooled tasks INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, epersongroup_id) SELECT getnextid('resourcepolicy') AS policy_id, 2 AS resource_type_id, cwf_workflowitem.item_id AS resource_id, temptable.action_id AS action_id, cwf_pooltask.group_id AS epersongroup_id FROM (cwf_workflowitem INNER JOIN cwf_pooltask ON cwf_workflowitem.workflowitem_id = cwf_pooltask.workflowitem_id), (VALUES (0), (1), (2), (3), (4)) AS temptable(action_id); -- Bundles INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, epersongroup_id) SELECT getnextid('resourcepolicy') AS policy_id, 1 AS resource_type_id, item2bundle.bundle_id AS resource_id, temptable.action_id AS action_id, cwf_pooltask.group_id AS epersongroup_id FROM ( (cwf_workflowitem INNER JOIN cwf_pooltask ON cwf_workflowitem.workflowitem_id = cwf_pooltask.workflowitem_id) INNER JOIN item2bundle ON cwf_workflowitem.item_id = item2bundle.item_id ), (VALUES (0), (1), (2), (3), (4)) AS temptable(action_id); -- Bitstreams INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, epersongroup_id) SELECT getnextid('resourcepolicy') AS policy_id, 0 AS resource_type_id, bundle2bitstream.bitstream_id AS resource_id, temptable.action_id AS action_id, cwf_pooltask.group_id AS epersongroup_id FROM ( ((cwf_workflowitem INNER JOIN cwf_pooltask ON cwf_workflowitem.workflowitem_id = cwf_pooltask.workflowitem_id) INNER JOIN item2bundle ON cwf_workflowitem.item_id = item2bundle.item_id) INNER JOIN bundle2bitstream ON item2bundle.bundle_id = bundle2bitstream.bundle_id ), (VALUES (0), (1), (2), (3), (4)) AS temptable(action_id); -- Create policies for submitter -- TODO: only add if unique INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, eperson_id) SELECT getnextid('resourcepolicy') AS policy_id, 2 AS resource_type_id, cwf_workflowitem.item_id AS resource_id, 0 AS action_id, item.submitter_id AS eperson_id FROM (cwf_workflowitem INNER JOIN item ON cwf_workflowitem.item_id = item.item_id); INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, eperson_id) SELECT getnextid('resourcepolicy') AS policy_id, 1 AS resource_type_id, item2bundle.bundle_id AS resource_id, 0 AS action_id, item.submitter_id AS eperson_id FROM ((cwf_workflowitem INNER JOIN item ON cwf_workflowitem.item_id = item.item_id) INNER JOIN item2bundle ON cwf_workflowitem.item_id = item2bundle.item_id ); INSERT INTO resourcepolicy (policy_id, resource_type_id, resource_id, action_id, eperson_id) SELECT getnextid('resourcepolicy') AS policy_id, 0 AS resource_type_id, bundle2bitstream.bitstream_id AS resource_id, 0 AS action_id, item.submitter_id AS eperson_id FROM (((cwf_workflowitem INNER JOIN item ON cwf_workflowitem.item_id = item.item_id) INNER JOIN item2bundle ON cwf_workflowitem.item_id = item2bundle.item_id) INNER JOIN bundle2bitstream ON item2bundle.bundle_id = bundle2bitstream.bundle_id ); INSERT INTO cwf_in_progress_user (in_progress_user_id, workflowitem_id, user_id, finished) SELECT getnextid('cwf_in_progress_user') AS in_progress_user_id, cwf_workflowitem.workflowitem_id AS workflowitem_id, cwf_claimtask.owner_id AS user_id, BOOL(0) as finished FROM (cwf_claimtask INNER JOIN cwf_workflowitem ON cwf_workflowitem.workflowitem_id = cwf_claimtask.workflowitem_id); -- Delete the old tasks and workflowitems -- This is important because otherwise the item can not be deleted DELETE FROM tasklistitem; DELETE FROM workflowitem; -- Update the sequences SELECT setval('cwf_workflowitem_seq', max(workflowitem_id)) FROM cwf_workflowitem; SELECT setval('cwf_collectionrole_seq', max(collectionrole_id)) FROM cwf_collectionrole; SELECT setval('cwf_workflowitemrole_seq', max(workflowitemrole_id)) FROM cwf_workflowitemrole; SELECT setval('cwf_pooltask_seq', max(pooltask_id)) FROM cwf_pooltask; SELECT setval('cwf_claimtask_seq', max(claimtask_id)) FROM cwf_claimtask; SELECT setval('cwf_in_progress_user_seq', max(in_progress_user_id)) FROM cwf_in_progress_user;
ALTER TABLE RPTBANCO ADD CONSTRAINT FK_RPTBANCO_PLANILLA FOREIGN KEY(CODPLANILLA) REFERENCES PLANILLA(CODPLANILLA); ALTER TABLE PLANILLA ADD CONSTRAINT FK_PLANILLA_TRABAJADOR FOREIGN KEY(CODTRABAJADOR) REFERENCES TRABAJADORES(CODTRABAJADOR); ALTER TABLE REG_HRS_LABORADAS ADD CONSTRAINT FK_HORAS_LAB_TRABAJADOR FOREIGN KEY(CODTRABAJADOR) REFERENCES TRABAJADORES(CODTRABAJADOR); ALTER TABLE PRESTAMOS ADD CONSTRAINT FK_PRESTAMOS_TRABAJADOR FOREIGN KEY(CODTRABAJADOR) REFERENCES TRABAJADORES(CODTRABAJADOR); ALTER TABLE TRABAJADORES ADD CONSTRAINT FK_TRABAJADOR_AREA FOREIGN KEY(CODAREA) REFERENCES AREA(CODAREA); ALTER TABLE TRABAJADORES ADD CONSTRAINT FK_TRABAJADOR_AFP FOREIGN KEY(CODAFP) REFERENCES AFP(CODAFP);
DROP TABLE PM25_24g_cons; CREATE TABLE PM25_24g_cons SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2002_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSPrad6115' AS Station_Code, `MpKrakowWIOSPrad6115` AS Pollution_Level FROM `2002_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSPrad6115' AS Station_Code, `MpKrakowWIOSPrad6115` AS Pollution_Level FROM `2003_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2004_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2005_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestCzes_rzasa' AS Station_Code, `SlCzestCzes_rzasa` AS Pollution_Level FROM `2005_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2006_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSMm' AS Station_Code, `Pm.63.wDSMm` AS Pollution_Level FROM `2006_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZabrzZabr_sklod' AS Station_Code, `SlZabrzZabr_sklod` AS Pollution_Level FROM `2006_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublinPiel' AS Station_Code, `LbLublinPiel` AS Pollution_Level FROM `2007_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2007_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2007_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszSGGW' AS Station_Code, `MzWarszSGGW` AS Pollution_Level FROM `2007_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZabrzZabr_sklod' AS Station_Code, `SlZabrzZabr_sklod` AS Pollution_Level FROM `2007_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocKorzA' AS Station_Code, `DsWrocKorzA` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublinPiel' AS Station_Code, `LbLublinPiel` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSPrad6115' AS Station_Code, `MpKrakowWIOSPrad6115` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSMm' AS Station_Code, `Pm.63.wDSMm` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZabrzZabr_sklod' AS Station_Code, `SlZabrzZabr_sklod` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2008_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocKorzA' AS Station_Code, `DsWrocKorzA` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublinPiel' AS Station_Code, `LbLublinPiel` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSPrad6115' AS Station_Code, `MpKrakowWIOSPrad6115` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarnowWIOSSoli6303' AS Station_Code, `MpTarnowWIOSSoli6303` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlockReja' AS Station_Code, `MzPlockReja` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomTochter' AS Station_Code, `MzRadomTochter` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszUrsynow' AS Station_Code, `MzWarszUrsynow` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSMm' AS Station_Code, `Pm.63.wDSMm` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZabrzZabr_sklod' AS Station_Code, `SlZabrzZabr_sklod` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszcz_IOS_Borecka' AS Station_Code, `WmPuszcz_IOS_Borecka` AS Pollution_Level FROM `2009_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsLegRzeczA' AS Station_Code, `DsLegRzeczA` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsOsieczow' AS Station_Code, `DsOsieczow` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWalbWysA' AS Station_Code, `DsWalbWysA` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocGrobla' AS Station_Code, `DsWrocGrobla` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocKorzA' AS Station_Code, `DsWrocKorzA` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpBydgBerlinga' AS Station_Code, `KpBydgBerlinga` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpTorunDziewulsk' AS Station_Code, `KpTorunDziewulsk` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpWloclSielska' AS Station_Code, `KpWloclSielska` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpZielBoryTuch' AS Station_Code, `KpZielBoryTuch` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbBialaPOrzechowa' AS Station_Code, `LbBialaPOrzechowa` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbChelmJagWIOS' AS Station_Code, `LbChelmJagWIOS` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublin_Sliwins_5' AS Station_Code, `LbLublin_Sliwins_5` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbZamoscHrubieszowsk' AS Station_Code, `LbZamoscHrubieszowsk` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWIOSACzernik' AS Station_Code, `LdLodzWIOSACzernik` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdPiotrkWIOSMSienkie' AS Station_Code, `LdPiotrkWIOSMSienkie` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuGorzowWIOS_MAN' AS Station_Code, `LuGorzowWIOS_MAN` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuWschowWIOS_AUT' AS Station_Code, `LuWschowWIOS_AUT` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZgoraWIOS_AUT' AS Station_Code, `LuZgoraWIOS_AUT` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBuja6119' AS Station_Code, `MpKrakowWIOSBuja6119` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpNSaczWIOSPija6204' AS Station_Code, `MpNSaczWIOSPija6204` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarnowWIOSBitw6304' AS Station_Code, `MpTarnowWIOSBitw6304` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTrzebiWIOSZWM0305' AS Station_Code, `MpTrzebiWIOSZWM0305` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpZakopaWIOSRown1701' AS Station_Code, `MpZakopaWIOSRown1701` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPiastowPulask' AS Station_Code, `MzPiastowPulask` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlockReja' AS Station_Code, `MzPlockReja` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomHallera' AS Station_Code, `MzRadomHallera` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomTochter' AS Station_Code, `MzRadomTochter` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszUrsynow' AS Station_Code, `MzWarszUrsynow` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarTarKondra' AS Station_Code, `MzWarTarKondra` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpKlucz2pyl' AS Station_Code, `OpKlucz2pyl` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpOpole4pyl' AS Station_Code, `OpOpole4pyl` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdBialyWarszawska' AS Station_Code, `PdBialyWarszawska` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdLomzaSikorskiego' AS Station_Code, `PdLomzaSikorskiego` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkKrosnoWIOSKletowki' AS Station_Code, `PkKrosnoWIOSKletowki` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkNiskoWIOSSzklar' AS Station_Code, `PkNiskoWIOSSzklar` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSNoweMiasto' AS Station_Code, `PkRzeszWIOSNoweMiasto` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSSzop' AS Station_Code, `PkRzeszWIOSSzop` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.01w.02m' AS Station_Code, `Pm.01w.02m` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSAa' AS Station_Code, `Pm.63.wDSAa` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSMm' AS Station_Code, `Pm.63.wDSMm` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.aw07m' AS Station_Code, `Pm.aw07m` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.aw08m' AS Station_Code, `Pm.aw08m` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkBuskoWios2' AS Station_Code, `SkBuskoWios2` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielJagielWios' AS Station_Code, `SkKielJagielWios` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlBielbBiel_stern' AS Station_Code, `SlBielbBiel_stern` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestCzes_zana6' AS Station_Code, `SlCzestCzes_zana6` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGliwiGliw_mewy' AS Station_Code, `SlGliwiGliw_mewy` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGodowWodz_wodzi' AS Station_Code, `SlGodowWodz_wodzi` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZlotyJano_lesni' AS Station_Code, `SlZlotyJano_lesni` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmElblagWIOS_Bazynsk' AS Station_Code, `WmElblagWIOS_Bazynsk` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOlsztyWIOS_Puszkin' AS Station_Code, `WmOlsztyWIOS_Puszkin` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOstrodWIOS_Chrobre' AS Station_Code, `WmOstrodWIOS_Chrobre` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszcz_IOS_Borecka' AS Station_Code, `WmPuszcz_IOS_Borecka` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpKoszalin006' AS Station_Code, `ZpKoszalin006` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpMysMysliborz007' AS Station_Code, `ZpMysMysliborz007` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzcSzczecinek008' AS Station_Code, `ZpSzcSzczecinek008` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczecin001' AS Station_Code, `ZpSzczecin001` AS Pollution_Level FROM `2010_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsLegRzeczA' AS Station_Code, `DsLegRzeczA` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsOsieczow' AS Station_Code, `DsOsieczow` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWalbWysA' AS Station_Code, `DsWalbWysA` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocGrobla' AS Station_Code, `DsWrocGrobla` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocWisA' AS Station_Code, `DsWrocWisA` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpBydgBerlinga' AS Station_Code, `KpBydgBerlinga` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpGrudzStar' AS Station_Code, `KpGrudzStar` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpTorunDziewulsk' AS Station_Code, `KpTorunDziewulsk` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpWloclSielska' AS Station_Code, `KpWloclSielska` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpZielBoryTuch' AS Station_Code, `KpZielBoryTuch` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbBialaPOrzechowa' AS Station_Code, `LbBialaPOrzechowa` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbChelmJagWIOS' AS Station_Code, `LbChelmJagWIOS` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublin_Sliwins_5' AS Station_Code, `LbLublin_Sliwins_5` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbZamoscHrubieszowsk' AS Station_Code, `LbZamoscHrubieszowsk` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWIOSACzernik' AS Station_Code, `LdLodzWIOSACzernik` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdPiotrkWIOSMSienkie' AS Station_Code, `LdPiotrkWIOSMSienkie` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuGorzowWIOS_MAN' AS Station_Code, `LuGorzowWIOS_MAN` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuWschowWIOS_AUT' AS Station_Code, `LuWschowWIOS_AUT` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZgoraWIOS_AUT' AS Station_Code, `LuZgoraWIOS_AUT` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpBochniWIOSKBar0106' AS Station_Code, `MpBochniWIOSKBar0106` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSAKra6117' AS Station_Code, `MpKrakowWIOSAKra6117` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBuja6119' AS Station_Code, `MpKrakowWIOSBuja6119` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpNSaczWIOSNadb6205' AS Station_Code, `MpNSaczWIOSNadb6205` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarnowWIOSBitw6304' AS Station_Code, `MpTarnowWIOSBitw6304` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTrzebiWIOSZWM0305' AS Station_Code, `MpTrzebiWIOSZWM0305` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpZakopaWIOSRown1701' AS Station_Code, `MpZakopaWIOSRown1701` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPiastowPulask' AS Station_Code, `MzPiastowPulask` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlockReja' AS Station_Code, `MzPlockReja` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomHallera' AS Station_Code, `MzRadomHallera` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarNiepodKom' AS Station_Code, `MzWarNiepodKom` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszUrsynow' AS Station_Code, `MzWarszUrsynow` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarTarKondra' AS Station_Code, `MzWarTarKondra` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpKlucz2pyl' AS Station_Code, `OpKlucz2pyl` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpOpole4pyl' AS Station_Code, `OpOpole4pyl` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdBialyWarszawska' AS Station_Code, `PdBialyWarszawska` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdLomzaSikorskiego' AS Station_Code, `PdLomzaSikorskiego` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkKrosnoWIOSKletowki' AS Station_Code, `PkKrosnoWIOSKletowki` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkNiskoWIOSSzklar' AS Station_Code, `PkNiskoWIOSSzklar` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSNoweMiasto' AS Station_Code, `PkRzeszWIOSNoweMiasto` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSSzop' AS Station_Code, `PkRzeszWIOSSzop` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.01w.02m' AS Station_Code, `Pm.01w.02m` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSAa' AS Station_Code, `Pm.63.wDSAa` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSMm' AS Station_Code, `Pm.63.wDSMm` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.aw08m' AS Station_Code, `Pm.aw08m` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkBuskoWios2' AS Station_Code, `SkBuskoWios2` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielJagielWios' AS Station_Code, `SkKielJagielWios` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlBielbBiel_stern' AS Station_Code, `SlBielbBiel_stern` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestCzes_zana6' AS Station_Code, `SlCzestCzes_zana6` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGliwiGliw_mewy' AS Station_Code, `SlGliwiGliw_mewy` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGodowWodz_wodzi' AS Station_Code, `SlGodowWodz_wodzi` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_aleja' AS Station_Code, `SlKatowKato_aleja` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZlotyJano_lesni' AS Station_Code, `SlZlotyJano_lesni` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmElblagWIOS_Bazynsk' AS Station_Code, `WmElblagWIOS_Bazynsk` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOlsztyWIOS_Puszkin' AS Station_Code, `WmOlsztyWIOS_Puszkin` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOstrodWIOS_Chrobre' AS Station_Code, `WmOstrodWIOS_Chrobre` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszcz_IOS_Borecka' AS Station_Code, `WmPuszcz_IOS_Borecka` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKP001' AS Station_Code, `WpWKP001` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKPKalisz007/10' AS Station_Code, `WpWKPKalisz007/10` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpKoszalin006' AS Station_Code, `ZpKoszalin006` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpMysMysliborz007' AS Station_Code, `ZpMysMysliborz007` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzcSzczecinek008' AS Station_Code, `ZpSzcSzczecinek008` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczecin001' AS Station_Code, `ZpSzczecin001` AS Pollution_Level FROM `2011_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsLegRzeczA' AS Station_Code, `DsLegRzeczA` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsOsieczow' AS Station_Code, `DsOsieczow` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWalbWysA' AS Station_Code, `DsWalbWysA` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocGrobla' AS Station_Code, `DsWrocGrobla` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocWisA' AS Station_Code, `DsWrocWisA` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpBydgBerlinga' AS Station_Code, `KpBydgBerlinga` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpTorunDziewulsk' AS Station_Code, `KpTorunDziewulsk` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpWloclSielska' AS Station_Code, `KpWloclSielska` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpZielBoryTuch' AS Station_Code, `KpZielBoryTuch` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbBialaPOrzechowa' AS Station_Code, `LbBialaPOrzechowa` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbChelmJagWIOS' AS Station_Code, `LbChelmJagWIOS` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublin_Sliwins_5' AS Station_Code, `LbLublin_Sliwins_5` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbZamoscHrubieszowsk' AS Station_Code, `LbZamoscHrubieszowsk` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWIOSACzernik' AS Station_Code, `LdLodzWIOSACzernik` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdPiotrkWIOSMSienkie' AS Station_Code, `LdPiotrkWIOSMSienkie` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuGorzowWIOS_MAN' AS Station_Code, `LuGorzowWIOS_MAN` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuWschowWIOS_AUT' AS Station_Code, `LuWschowWIOS_AUT` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZgoraWIOS_AUT' AS Station_Code, `LuZgoraWIOS_AUT` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpBochniWIOSKBar0106' AS Station_Code, `MpBochniWIOSKBar0106` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSAKra6117' AS Station_Code, `MpKrakowWIOSAKra6117` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBuja6119' AS Station_Code, `MpKrakowWIOSBuja6119` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBulw6118' AS Station_Code, `MpKrakowWIOSBulw6118` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpNSaczWIOSNadb6205' AS Station_Code, `MpNSaczWIOSNadb6205` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarnowWIOSBitw6304' AS Station_Code, `MpTarnowWIOSBitw6304` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTrzebiWIOSZWM0305' AS Station_Code, `MpTrzebiWIOSZWM0305` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpZakopaWIOSRown1701' AS Station_Code, `MpZakopaWIOSRown1701` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPiastowPulask' AS Station_Code, `MzPiastowPulask` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlockReja' AS Station_Code, `MzPlockReja` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomHallera' AS Station_Code, `MzRadomHallera` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszUrsynow' AS Station_Code, `MzWarszUrsynow` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarTarKondra' AS Station_Code, `MzWarTarKondra` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpKlucz2pyl' AS Station_Code, `OpKlucz2pyl` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpOpole4pyl' AS Station_Code, `OpOpole4pyl` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdBialyWarszawska' AS Station_Code, `PdBialyWarszawska` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdLomzaSikorskiego' AS Station_Code, `PdLomzaSikorskiego` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkKrosnoWIOSKletowki' AS Station_Code, `PkKrosnoWIOSKletowki` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkNiskoWIOSSzklar' AS Station_Code, `PkNiskoWIOSSzklar` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSNoweMiasto' AS Station_Code, `PkRzeszWIOSNoweMiasto` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSSzop' AS Station_Code, `PkRzeszWIOSSzop` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.01w.02m' AS Station_Code, `Pm.01w.02m` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSAa' AS Station_Code, `Pm.63.wDSAa` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSMm' AS Station_Code, `Pm.63.wDSMm` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.AM12.a' AS Station_Code, `Pm.AM12.a` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkBuskoWios2' AS Station_Code, `SkBuskoWios2` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielJagielWios' AS Station_Code, `SkKielJagielWios` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkStaracZlota2' AS Station_Code, `SkStaracZlota2` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlBielbBiel_stern' AS Station_Code, `SlBielbBiel_stern` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestCzes_zana6' AS Station_Code, `SlCzestCzes_zana6` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGliwiGliw_mewy' AS Station_Code, `SlGliwiGliw_mewy` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGodowWodz_wodzi' AS Station_Code, `SlGodowWodz_wodzi` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_aleja' AS Station_Code, `SlKatowKato_aleja` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZlotyJano_lesni' AS Station_Code, `SlZlotyJano_lesni` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmElblagWIOS_Bazynsk' AS Station_Code, `WmElblagWIOS_Bazynsk` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOlsztyWIOS_Puszkin' AS Station_Code, `WmOlsztyWIOS_Puszkin` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOstrodWIOS_Chrobre' AS Station_Code, `WmOstrodWIOS_Chrobre` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszcz_IOS_Borecka' AS Station_Code, `WmPuszcz_IOS_Borecka` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKP001' AS Station_Code, `WpWKP001` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpKoszalin006' AS Station_Code, `ZpKoszalin006` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpMysMysliborz007' AS Station_Code, `ZpMysMysliborz007` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzcSzczecinek008' AS Station_Code, `ZpSzcSzczecinek008` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczecin001' AS Station_Code, `ZpSzczecin001` AS Pollution_Level FROM `2012_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsLegRzeczA' AS Station_Code, `DsLegRzeczA` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsOsieczow' AS Station_Code, `DsOsieczow` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWalbWysA' AS Station_Code, `DsWalbWysA` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocGrobla' AS Station_Code, `DsWrocGrobla` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsZgorzBohA' AS Station_Code, `DsZgorzBohA` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpBydgBerlinga' AS Station_Code, `KpBydgBerlinga` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpGrudzStar' AS Station_Code, `KpGrudzStar` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpTorunDziewulsk' AS Station_Code, `KpTorunDziewulsk` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpWloclSielska' AS Station_Code, `KpWloclSielska` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpZielBoryTuch' AS Station_Code, `KpZielBoryTuch` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbBialaPOrzechowa' AS Station_Code, `LbBialaPOrzechowa` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbChelmJagWIOS' AS Station_Code, `LbChelmJagWIOS` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublin_Sliwins_5' AS Station_Code, `LbLublin_Sliwins_5` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbZamoscHrubieszowsk' AS Station_Code, `LbZamoscHrubieszowsk` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWIOSACzernik' AS Station_Code, `LdLodzWIOSACzernik` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdPiotrkWIOSMSienkie' AS Station_Code, `LdPiotrkWIOSMSienkie` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuGorzowWIOS_MAN' AS Station_Code, `LuGorzowWIOS_MAN` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuWschowWIOS_AUT' AS Station_Code, `LuWschowWIOS_AUT` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZgoraWIOS_AUT' AS Station_Code, `LuZgoraWIOS_AUT` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpBochniWIOSKBar0106' AS Station_Code, `MpBochniWIOSKBar0106` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBuja6119' AS Station_Code, `MpKrakowWIOSBuja6119` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpNSaczWIOSNadb6205' AS Station_Code, `MpNSaczWIOSNadb6205` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarnowWIOSBitw6304' AS Station_Code, `MpTarnowWIOSBitw6304` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTrzebiWIOSZWM0305' AS Station_Code, `MpTrzebiWIOSZWM0305` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpZakopaWIOSRown1701' AS Station_Code, `MpZakopaWIOSRown1701` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPiastowPulask' AS Station_Code, `MzPiastowPulask` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlockPKN' AS Station_Code, `MzPlockPKN` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomHallera' AS Station_Code, `MzRadomHallera` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszUrsynow' AS Station_Code, `MzWarszUrsynow` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarTarKondra' AS Station_Code, `MzWarTarKondra` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpKlucz2pyl' AS Station_Code, `OpKlucz2pyl` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpOpole4pyl' AS Station_Code, `OpOpole4pyl` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdBialyWarszawska' AS Station_Code, `PdBialyWarszawska` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdLomzaSikorskiego' AS Station_Code, `PdLomzaSikorskiego` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkKrosnoWIOSKletowki' AS Station_Code, `PkKrosnoWIOSKletowki` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkNiskoWIOSSzklar' AS Station_Code, `PkNiskoWIOSSzklar` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSNoweMiasto' AS Station_Code, `PkRzeszWIOSNoweMiasto` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.01w.02m' AS Station_Code, `Pm.01w.02m` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.AM12.a' AS Station_Code, `Pm.AM12.a` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkBuskoWios2' AS Station_Code, `SkBuskoWios2` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielJagielWios' AS Station_Code, `SkKielJagielWios` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkStaracZlota2' AS Station_Code, `SkStaracZlota2` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlBielbBiel_stern' AS Station_Code, `SlBielbBiel_stern` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestCzes_zana6' AS Station_Code, `SlCzestCzes_zana6` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGliwiGliw_mewy' AS Station_Code, `SlGliwiGliw_mewy` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGodowWodz_wodzi' AS Station_Code, `SlGodowWodz_wodzi` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_aleja' AS Station_Code, `SlKatowKato_aleja` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZlotyJano_lesni' AS Station_Code, `SlZlotyJano_lesni` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmElblagWIOS_Bazynsk' AS Station_Code, `WmElblagWIOS_Bazynsk` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOlsztyWIOS_Puszkin' AS Station_Code, `WmOlsztyWIOS_Puszkin` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOstrodWIOS_Chrobre' AS Station_Code, `WmOstrodWIOS_Chrobre` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszcz_IOS_Borecka' AS Station_Code, `WmPuszcz_IOS_Borecka` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKP001' AS Station_Code, `WpWKP001` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKPKalisz007/10' AS Station_Code, `WpWKPKalisz007/10` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpKoszalin006' AS Station_Code, `ZpKoszalin006` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpMysMysliborz007' AS Station_Code, `ZpMysMysliborz007` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzcSzczecinek008' AS Station_Code, `ZpSzcSzczecinek008` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczecin001' AS Station_Code, `ZpSzczecin001` AS Pollution_Level FROM `2013_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsLegRzeczA' AS Station_Code, `DsLegRzeczA` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsOsieczow' AS Station_Code, `DsOsieczow` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWalbWysA' AS Station_Code, `DsWalbWysA` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocGrobla' AS Station_Code, `DsWrocGrobla` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsZgorzBohA' AS Station_Code, `DsZgorzBohA` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpBydgBerlinga' AS Station_Code, `KpBydgBerlinga` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpGrudzStar' AS Station_Code, `KpGrudzStar` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpTorunDziewulsk' AS Station_Code, `KpTorunDziewulsk` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpWloclSielska' AS Station_Code, `KpWloclSielska` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpZielBoryTuch' AS Station_Code, `KpZielBoryTuch` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbBialaPOrzechowa' AS Station_Code, `LbBialaPOrzechowa` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbChelmJagWIOS' AS Station_Code, `LbChelmJagWIOS` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLublin_Sliwins_5' AS Station_Code, `LbLublin_Sliwins_5` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbZamoscHrubieszowsk' AS Station_Code, `LbZamoscHrubieszowsk` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWIOSACzernik' AS Station_Code, `LdLodzWIOSACzernik` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzWSSEMLegiono' AS Station_Code, `LdLodzWSSEMLegiono` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdPiotrkWIOSMSienkie' AS Station_Code, `LdPiotrkWIOSMSienkie` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuGorzowWIOS_MAN' AS Station_Code, `LuGorzowWIOS_MAN` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuWschowWIOS_AUT' AS Station_Code, `LuWschowWIOS_AUT` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZgoraWIOS_AUT' AS Station_Code, `LuZgoraWIOS_AUT` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpBochniWIOSKBar0106' AS Station_Code, `MpBochniWIOSKBar0106` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakowWIOSBuja6119' AS Station_Code, `MpKrakowWIOSBuja6119` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpNSaczWIOSNadb6205' AS Station_Code, `MpNSaczWIOSNadb6205` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarnowWIOSBitw6304' AS Station_Code, `MpTarnowWIOSBitw6304` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTrzebiWIOSZWM0305' AS Station_Code, `MpTrzebiWIOSZWM0305` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpZakopaWIOSRown1701' AS Station_Code, `MpZakopaWIOSRown1701` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPiastowPulask' AS Station_Code, `MzPiastowPulask` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlockPKN' AS Station_Code, `MzPlockPKN` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadomHallera' AS Station_Code, `MzRadomHallera` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarszUrsynow' AS Station_Code, `MzWarszUrsynow` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarTarKondra' AS Station_Code, `MzWarTarKondra` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpKlucz2pyl' AS Station_Code, `OpKlucz2pyl` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpOpole4pyl' AS Station_Code, `OpOpole4pyl` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdBialyWarszawska' AS Station_Code, `PdBialyWarszawska` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdLomzaSikorskiego' AS Station_Code, `PdLomzaSikorskiego` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkJasloWIOSSikorskiego' AS Station_Code, `PkJasloWIOSSikorskiego` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkKrosnoWIOSKletowki' AS Station_Code, `PkKrosnoWIOSKletowki` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkNiskoWIOSSzklar' AS Station_Code, `PkNiskoWIOSSzklar` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszWIOSNoweMiasto' AS Station_Code, `PkRzeszWIOSNoweMiasto` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.01w.02m' AS Station_Code, `Pm.01w.02m` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.63.wDSAa' AS Station_Code, `Pm.63.wDSAa` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'Pm.AM12.a' AS Station_Code, `Pm.AM12.a` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkBuskoWios2' AS Station_Code, `SkBuskoWios2` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielJagielWios' AS Station_Code, `SkKielJagielWios` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkStaracZlota2' AS Station_Code, `SkStaracZlota2` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlBielbBiel_stern' AS Station_Code, `SlBielbBiel_stern` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestCzes_zana6' AS Station_Code, `SlCzestCzes_zana6` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGliwiGliw_mewy' AS Station_Code, `SlGliwiGliw_mewy` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGodowWodz_wodzi' AS Station_Code, `SlGodowWodz_wodzi` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_aleja' AS Station_Code, `SlKatowKato_aleja` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatowKato_kossu' AS Station_Code, `SlKatowKato_kossu` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlTarnoTarn_litew' AS Station_Code, `SlTarnoTarn_litew` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZlotyJano_lesni' AS Station_Code, `SlZlotyJano_lesni` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZoryzZory_sikor' AS Station_Code, `SlZoryzZory_sikor` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmElblagWIOS_Bazynsk' AS Station_Code, `WmElblagWIOS_Bazynsk` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOlsztyWIOS_Puszkin' AS Station_Code, `WmOlsztyWIOS_Puszkin` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOstrodWIOS_Chrobre' AS Station_Code, `WmOstrodWIOS_Chrobre` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszcz_IOS_Borecka' AS Station_Code, `WmPuszcz_IOS_Borecka` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKP001' AS Station_Code, `WpWKP001` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpWKPKalisz007/10' AS Station_Code, `WpWKPKalisz007/10` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpKoszalin006' AS Station_Code, `ZpKoszalin006` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpMysMysliborz007' AS Station_Code, `ZpMysMysliborz007` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzcSzczecinek008' AS Station_Code, `ZpSzcSzczecinek008` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczecin001' AS Station_Code, `ZpSzczecin001` AS Pollution_Level FROM `2014_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsLegAlRzecz' AS Station_Code, `DsLegAlRzecz` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsOsieczow21' AS Station_Code, `DsOsieczow21` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWalbrzWyso' AS Station_Code, `DsWalbrzWyso` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsWrocNaGrob' AS Station_Code, `DsWrocNaGrob` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'DsZgorBohGet' AS Station_Code, `DsZgorBohGet` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpBydBerling' AS Station_Code, `KpBydBerling` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpGrudSienki' AS Station_Code, `KpGrudSienki` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpToruDziewu' AS Station_Code, `KpToruDziewu` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpWloclSiels' AS Station_Code, `KpWloclSiels` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'KpZielBoryTu' AS Station_Code, `KpZielBoryTu` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbBiaPodOrze' AS Station_Code, `LbBiaPodOrze` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbChelJagiel' AS Station_Code, `LbChelJagiel` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbLubSliwins' AS Station_Code, `LbLubSliwins` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LbZamoHrubie' AS Station_Code, `LbZamoHrubie` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzCzerni' AS Station_Code, `LdLodzCzerni` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdLodzLegion' AS Station_Code, `LdLodzLegion` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LdPioTrKraPr' AS Station_Code, `LdPioTrKraPr` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuGorzPilsud' AS Station_Code, `LuGorzPilsud` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZarySzyman' AS Station_Code, `LuZarySzyman` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'LuZielKrotka' AS Station_Code, `LuZielKrotka` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpBochKonfed' AS Station_Code, `MpBochKonfed` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpKrakBujaka' AS Station_Code, `MpKrakBujaka` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpNoSaczNadb' AS Station_Code, `MpNoSaczNadb` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTarBitStud' AS Station_Code, `MpTarBitStud` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpTrzebOsZWM' AS Station_Code, `MpTrzebOsZWM` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MpZakopaSien' AS Station_Code, `MpZakopaSien` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzPlocKroJad' AS Station_Code, `MzPlocKroJad` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzRadHallera' AS Station_Code, `MzRadHallera` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarKondrat' AS Station_Code, `MzWarKondrat` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'MzWarWokalna' AS Station_Code, `MzWarWokalna` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpKluczMicki' AS Station_Code, `OpKluczMicki` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'OpOpoleOsAKr' AS Station_Code, `OpOpoleOsAKr` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdBialWarsza' AS Station_Code, `PdBialWarsza` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PdLomSikorsk' AS Station_Code, `PdLomSikorsk` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkJasloSikor' AS Station_Code, `PkJasloSikor` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkKrosKletow' AS Station_Code, `PkKrosKletow` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkNiskoSzkla' AS Station_Code, `PkNiskoSzkla` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PkRzeszRejta' AS Station_Code, `PkRzeszRejta` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PmGdaPowWiel' AS Station_Code, `PmGdaPowWiel` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PmKosTargo12' AS Station_Code, `PmKosTargo12` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'PmSlupKniazi' AS Station_Code, `PmSlupKniazi` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkBuskRokosz' AS Station_Code, `SkBuskRokosz` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielJagiel' AS Station_Code, `SkKielJagiel` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkKielWarsza' AS Station_Code, `SkKielWarsza` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SkStaraZlota' AS Station_Code, `SkStaraZlota` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlBielSterni' AS Station_Code, `SlBielSterni` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlCzestoZana' AS Station_Code, `SlCzestoZana` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGliwicMewy' AS Station_Code, `SlGliwicMewy` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlGodGliniki' AS Station_Code, `SlGodGliniki` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatoKossut' AS Station_Code, `SlKatoKossut` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlKatoPlebA4' AS Station_Code, `SlKatoPlebA4` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlTarnoLitew' AS Station_Code, `SlTarnoLitew` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZlotPotLes' AS Station_Code, `SlZlotPotLes` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'SlZorySikors' AS Station_Code, `SlZorySikors` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmElbBazynsk' AS Station_Code, `WmElbBazynsk` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOlsPuszkin' AS Station_Code, `WmOlsPuszkin` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmOstrChrobr' AS Station_Code, `WmOstrChrobr` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WmPuszczaBor' AS Station_Code, `WmPuszczaBor` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpKaliSawick' AS Station_Code, `WpKaliSawick` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpPleszAlMic' AS Station_Code, `WpPleszAlMic` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'WpPoznPolank' AS Station_Code, `WpPoznPolank` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpKoszSpasow' AS Station_Code, `ZpKoszSpasow` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpMyslZaBram' AS Station_Code, `ZpMyslZaBram` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczAndr01' AS Station_Code, `ZpSzczAndr01` AS Pollution_Level FROM `2016_pm2.5_24g` UNION ALL SELECT `Kod stacji` AS Measure_Date, 'ZpSzczec1Maj' AS Station_Code, `ZpSzczec1Maj` AS Pollution_Level FROM `2016_pm2.5_24g`;
drop table managers; drop table cart; drop table orderTable; drop table customers; drop table locationTable; drop table product; drop table item; create table managers( id int identity primary key, firstName nvarchar(100) not null, lastName nvarchar(100) not null, emailAddress nvarchar(100) not null ); create table customers( id int identity primary key, firstName nvarchar(100), lastName nvarchar(100), emailAddress nvarchar(100) ); create table product( id int identity primary key, productName nvarchar(50), price float, category int ); create table locationTable( id int identity primary key, locationName nvarchar(50), locationAddress nvarchar(50), ); create table item( id int identity primary key, quantity int, location_id int references locationTable(id), product_id int references product(id) ); create table cart( id int identity primary key, customer_id int references customers(id), quantity int, location_id int references locationTable(id), total float, item_id int references item(id), ); create table orderTable( id int identity primary key, customer_id int references customers(id), quantity int, location_id int references locationTable(id), total float, item_id int references item(id) ); select * from customers; select * from managers; select * from locationTable; select * from item; select * from product; select * from cart; select * from orderTable; delete from customers where id = 12; delete from customers where id = 2; delete from customers where id = 5; delete from customers where id = 6;
select name,description from Events where Events.venueId = 0; select firstname,lastname from Artist outer join ArtistToEvent on Artist.id = ArtistToEvent.artistId and ArtistToEvent.eventId = 0;
<gh_stars>0 drop table assignments cascade; drop table keyword_exercise_groups cascade; drop table keywords; drop table exercise_groups cascade; drop table exercise_groups_keywords cascade; drop table assignment_status cascade; drop table exercises cascade; drop table levels cascade; drop table user_stats cascade; drop table user_roles cascade; drop table users cascade; drop table roles cascade;
-- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 18, 2019 at 06:10 AM -- Server version: 5.6.21 -- PHP Version: 5.6.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!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 utf8 */; -- -- Database: `unepassignment` -- -- -------------------------------------------------------- -- -- Table structure for table `Countries` -- CREATE TABLE IF NOT EXISTS `Countries` ( `id` int(11) unsigned NOT NULL, `code` varchar(2) NOT NULL DEFAULT '', `name` varchar(100) NOT NULL DEFAULT '' ) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8; -- -- Dumping data for table `Countries` -- INSERT INTO `Countries` (`id`, `code`, `name`) VALUES (1, 'AF', 'Afghanistan'), (2, 'AL', 'Albania'), (3, 'DZ', 'Algeria'), (4, 'DS', 'American Samoa'), (5, 'AD', 'Andorra'), (6, 'AO', 'Angola'), (7, 'AI', 'Anguilla'), (8, 'AQ', 'Antarctica'), (9, 'AG', 'Antigua and Barbuda'), (10, 'AR', 'Argentina'), (11, 'AM', 'Armenia'), (12, 'AW', 'Aruba'), (13, 'AU', 'Australia'), (14, 'AT', 'Austria'), (15, 'AZ', 'Azerbaijan'), (16, 'BS', 'Bahamas'), (17, 'BH', 'Bahrain'), (18, 'BD', 'Bangladesh'), (19, 'BB', 'Barbados'), (20, 'BY', 'Belarus'), (21, 'BE', 'Belgium'), (22, 'BZ', 'Belize'), (23, 'BJ', 'Benin'), (24, 'BM', 'Bermuda'), (25, 'BT', 'Bhutan'), (26, 'BO', 'Bolivia'), (27, 'BA', 'Bosnia and Herzegovina'), (28, 'BW', 'Botswana'), (29, 'BV', 'Bouvet Island'), (30, 'BR', 'Brazil'), (31, 'IO', 'British Indian Ocean Territory'), (32, 'BN', 'Brunei Darussalam'), (33, 'BG', 'Bulgaria'), (34, 'BF', 'Burkina Faso'), (35, 'BI', 'Burundi'), (36, 'KH', 'Cambodia'), (37, 'CM', 'Cameroon'), (38, 'CA', 'Canada'), (39, 'CV', 'Cape Verde'), (40, 'KY', 'Cayman Islands'), (41, 'CF', 'Central African Republic'), (42, 'TD', 'Chad'), (43, 'CL', 'Chile'), (44, 'CN', 'China'), (45, 'CX', 'Christmas Island'), (46, 'CC', 'Cocos (Keeling) Islands'), (47, 'CO', 'Colombia'), (48, 'KM', 'Comoros'), (49, 'CG', 'Congo'), (50, 'CK', 'Cook Islands'), (51, 'CR', 'Costa Rica'), (52, 'HR', 'Croatia (Hrvatska)'), (53, 'CU', 'Cuba'), (54, 'CY', 'Cyprus'), (55, 'CZ', 'Czech Republic'), (56, 'DK', 'Denmark'), (57, 'DJ', 'Djibouti'), (58, 'DM', 'Dominica'), (59, 'DO', 'Dominican Republic'), (60, 'TP', 'East Timor'), (61, 'EC', 'Ecuador'), (62, 'EG', 'Egypt'), (63, 'SV', 'El Salvador'), (64, 'GQ', 'Equatorial Guinea'), (65, 'ER', 'Eritrea'), (66, 'EE', 'Estonia'), (67, 'ET', 'Ethiopia'), (68, 'FK', 'Falkland Islands (Malvinas)'), (69, 'FO', 'Faroe Islands'), (70, 'FJ', 'Fiji'), (71, 'FI', 'Finland'), (72, 'FR', 'France'), (73, 'FX', 'France, Metropolitan'), (74, 'GF', 'French Guiana'), (75, 'PF', 'French Polynesia'), (76, 'TF', 'French Southern Territories'), (77, 'GA', 'Gabon'), (78, 'GM', 'Gambia'), (79, 'GE', 'Georgia'), (80, 'DE', 'Germany'), (81, 'GH', 'Ghana'), (82, 'GI', 'Gibraltar'), (83, 'GK', 'Guernsey'), (84, 'GR', 'Greece'), (85, 'GL', 'Greenland'), (86, 'GD', 'Grenada'), (87, 'GP', 'Guadeloupe'), (88, 'GU', 'Guam'), (89, 'GT', 'Guatemala'), (90, 'GN', 'Guinea'), (91, 'GW', 'Guinea-Bissau'), (92, 'GY', 'Guyana'), (93, 'HT', 'Haiti'), (94, 'HM', 'Heard and Mc Donald Islands'), (95, 'HN', 'Honduras'), (96, 'HK', 'Hong Kong'), (97, 'HU', 'Hungary'), (98, 'IS', 'Iceland'), (99, 'IN', 'India'), (100, 'IM', 'Isle of Man'), (101, 'ID', 'Indonesia'), (102, 'IR', 'Iran (Islamic Republic of)'), (103, 'IQ', 'Iraq'), (104, 'IE', 'Ireland'), (105, 'IL', 'Israel'), (106, 'IT', 'Italy'), (107, 'CI', 'Ivory Coast'), (108, 'JE', 'Jersey'), (109, 'JM', 'Jamaica'), (110, 'JP', 'Japan'), (111, 'JO', 'Jordan'), (112, 'KZ', 'Kazakhstan'), (113, 'KE', 'Kenya'), (114, 'KI', 'Kiribati'), (115, 'KP', 'Korea, Democratic People''s Republic of'), (116, 'KR', 'Korea, Republic of'), (117, 'XK', 'Kosovo'), (118, 'KW', 'Kuwait'), (119, 'KG', 'Kyrgyzstan'), (120, 'LA', 'Lao People''s Democratic Republic'), (121, 'LV', 'Latvia'), (122, 'LB', 'Lebanon'), (123, 'LS', 'Lesotho'), (124, 'LR', 'Liberia'), (125, 'LY', 'Libyan Arab Jamahiriya'), (126, 'LI', 'Liechtenstein'), (127, 'LT', 'Lithuania'), (128, 'LU', 'Luxembourg'), (129, 'MO', 'Macau'), (130, 'MK', 'Macedonia'), (131, 'MG', 'Madagascar'), (132, 'MW', 'Malawi'), (133, 'MY', 'Malaysia'), (134, 'MV', 'Maldives'), (135, 'ML', 'Mali'), (136, 'MT', 'Malta'), (137, 'MH', 'Marshall Islands'), (138, 'MQ', 'Martinique'), (139, 'MR', 'Mauritania'), (140, 'MU', 'Mauritius'), (141, 'TY', 'Mayotte'), (142, 'MX', 'Mexico'), (143, 'FM', 'Micronesia, Federated States of'), (144, 'MD', 'Moldova, Republic of'), (145, 'MC', 'Monaco'), (146, 'MN', 'Mongolia'), (147, 'ME', 'Montenegro'), (148, 'MS', 'Montserrat'), (149, 'MA', 'Morocco'), (150, 'MZ', 'Mozambique'), (151, 'MM', 'Myanmar'), (152, 'NA', 'Namibia'), (153, 'NR', 'Nauru'), (154, 'NP', 'Nepal'), (155, 'NL', 'Netherlands'), (156, 'AN', 'Netherlands Antilles'), (157, 'NC', 'New Caledonia'), (158, 'NZ', 'New Zealand'), (159, 'NI', 'Nicaragua'), (160, 'NE', 'Niger'), (161, 'NG', 'Nigeria'), (162, 'NU', 'Niue'), (163, 'NF', 'Norfolk Island'), (164, 'MP', 'Northern Mariana Islands'), (165, 'NO', 'Norway'), (166, 'OM', 'Oman'), (167, 'PK', 'Pakistan'), (168, 'PW', 'Palau'), (169, 'PS', 'Palestine'), (170, 'PA', 'Panama'), (171, 'PG', 'Papua New Guinea'), (172, 'PY', 'Paraguay'), (173, 'PE', 'Peru'), (174, 'PH', 'Philippines'), (175, 'PN', 'Pitcairn'), (176, 'PL', 'Poland'), (177, 'PT', 'Portugal'), (178, 'PR', 'Puerto Rico'), (179, 'QA', 'Qatar'), (180, 'RE', 'Reunion'), (181, 'RO', 'Romania'), (182, 'RU', 'Russian Federation'), (183, 'RW', 'Rwanda'), (184, 'KN', 'Saint Kitts and Nevis'), (185, 'LC', 'Saint Lucia'), (186, 'VC', 'Saint Vincent and the Grenadines'), (187, 'WS', 'Samoa'), (188, 'SM', 'San Marino'), (189, 'ST', 'Sao Tome and Principe'), (190, 'SA', 'Saudi Arabia'), (191, 'SN', 'Senegal'), (192, 'RS', 'Serbia'), (193, 'SC', 'Seychelles'), (194, 'SL', 'Sierra Leone'), (195, 'SG', 'Singapore'), (196, 'SK', 'Slovakia'), (197, 'SI', 'Slovenia'), (198, 'SB', 'Solomon Islands'), (199, 'SO', 'Somalia'), (200, 'ZA', 'South Africa'), (201, 'GS', 'South Georgia South Sandwich Islands'), (202, 'SS', 'South Sudan'), (203, 'ES', 'Spain'), (204, 'LK', 'Sri Lanka'), (205, 'SH', 'St. Helena'), (206, 'PM', 'St. Pierre and Miquelon'), (207, 'SD', 'Sudan'), (208, 'SR', 'Suriname'), (209, 'SJ', 'Svalbard and Jan Mayen Islands'), (210, 'SZ', 'Swaziland'), (211, 'SE', 'Sweden'), (212, 'CH', 'Switzerland'), (213, 'SY', 'Syrian Arab Republic'), (214, 'TW', 'Taiwan'), (215, 'TJ', 'Tajikistan'), (216, 'TZ', 'Tanzania, United Republic of'), (217, 'TH', 'Thailand'), (218, 'TG', 'Togo'), (219, 'TK', 'Tokelau'), (220, 'TO', 'Tonga'), (221, 'TT', 'Trinidad and Tobago'), (222, 'TN', 'Tunisia'), (223, 'TR', 'Turkey'), (224, 'TM', 'Turkmenistan'), (225, 'TC', 'Turks and Caicos Islands'), (226, 'TV', 'Tuvalu'), (227, 'UG', 'Uganda'), (228, 'UA', 'Ukraine'), (229, 'AE', 'United Arab Emirates'), (230, 'GB', 'United Kingdom'), (231, 'US', 'United States'), (232, 'UM', 'United States minor outlying islands'), (233, 'UY', 'Uruguay'), (234, 'UZ', 'Uzbekistan'), (235, 'VU', 'Vanuatu'), (236, 'VA', 'Vatican City State'), (237, 'VE', 'Venezuela'), (238, 'VN', 'Vietnam'), (239, 'VG', 'Virgin Islands (British)'), (240, 'VI', 'Virgin Islands (U.S.)'), (241, 'WF', 'Wallis and Futuna Islands'), (242, 'EH', 'Western Sahara'), (243, 'YE', 'Yemen'), (244, 'ZR', 'Zaire'), (245, 'ZM', 'Zambia'), (246, 'ZW', 'Zimbabwe'); -- -------------------------------------------------------- -- -- Table structure for table `NAPStatus` -- CREATE TABLE IF NOT EXISTS `NAPStatus` ( `id` int(11) unsigned NOT NULL, `name` varchar(100) NOT NULL DEFAULT '', `description` varchar(100) NOT NULL DEFAULT '' ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Dumping data for table `NAPStatus` -- INSERT INTO `NAPStatus` (`id`, `name`, `description`) VALUES (1, 'Readiness', ''), (2, 'National Adaptation Plans', ''); -- -------------------------------------------------------- -- -- Table structure for table `NAPType` -- CREATE TABLE IF NOT EXISTS `NAPType` ( `id` int(11) unsigned NOT NULL, `name` varchar(100) NOT NULL DEFAULT '', `description` varchar(100) NOT NULL DEFAULT '' ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -- -- Dumping data for table `NAPType` -- INSERT INTO `NAPType` (`id`, `name`, `description`) VALUES (1, 'Capacity Building', ''), (2, 'FI/TNA/other', ''), (3, 'NAP', ''), (4, 'REDD+', ''), (5, 'Not Defined', ''); -- -------------------------------------------------------- -- -- Table structure for table `Office` -- CREATE TABLE IF NOT EXISTS `Office` ( `id` int(11) unsigned NOT NULL, `name` varchar(250) NOT NULL DEFAULT '', `abbreviation` varchar(100) NOT NULL DEFAULT '' ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; -- -- Dumping data for table `Office` -- INSERT INTO `Office` (`id`, `name`, `abbreviation`) VALUES (1, 'Africa Office', ''), (2, 'Asia Pacific Office', ''), (3, 'CTCN', ''), (4, 'Economy Division', ''), (5, 'Ecosystems', ''), (6, 'Europe Office', ''), (7, 'Latin America Office', ''), (8, 'Policy & Programme Division', ''), (9, 'West Asia Office', ''); -- -------------------------------------------------------- -- -- Table structure for table `ProjectLocation` -- CREATE TABLE IF NOT EXISTS `ProjectLocation` ( `projectid` int(11) unsigned NOT NULL DEFAULT '0', `countryid` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=ascii; -- -- Dumping data for table `ProjectLocation` -- INSERT INTO `ProjectLocation` (`projectid`, `countryid`) VALUES (1, 2), (2, 30), (3, 48), (4, 51), (5, 59), (6, 62), (7, 81), (8, 95), (9, 111), (10, 131), (11, 133), (12, 134), (13, 139), (6, 149), (2, 170), (1, 181), (7, 207), (7, 227); -- -------------------------------------------------------- -- -- Table structure for table `Projects` -- CREATE TABLE IF NOT EXISTS `Projects` ( `id` int(11) unsigned NOT NULL, `reference` varchar(100) NOT NULL, `implementingoffice` int(11) unsigned NOT NULL, `title` varchar(500) DEFAULT 'Untitled', `grantamount` decimal(13,2) NOT NULL, `firstdisbursement` decimal(13,2) NOT NULL, `gcfdate` date NOT NULL, `startdate` date NOT NULL, `enddate` date NOT NULL, `napstatus` int(5) unsigned NOT NULL, `naptype` int(5) unsigned NOT NULL, `status` int(5) unsigned NOT NULL, `createuser` int(11) unsigned NOT NULL DEFAULT '0', `createdate` int(10) unsigned NOT NULL DEFAULT '0', `createipaddr` varchar(45) NOT NULL DEFAULT '127.0.0.1', `lastmodifyuser` int(11) unsigned NOT NULL DEFAULT '0', `lastmodifydate` int(10) unsigned NOT NULL DEFAULT '0', `lastmodifyipaddr` varchar(45) NOT NULL DEFAULT '127.0.0.1', `deleted` tinyint(1) DEFAULT '0' ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; -- -- Dumping data for table `Projects` -- INSERT INTO `Projects` (`id`, `reference`, `implementingoffice`, `title`, `grantamount`, `firstdisbursement`, `gcfdate`, `startdate`, `enddate`, `napstatus`, `naptype`, `status`, `createuser`, `createdate`, `createipaddr`, `lastmodifyuser`, `lastmodifydate`, `lastmodifyipaddr`, `deleted`) VALUES (1, 'ALB-RS-001', 6, 'Readiness support to Albania', '300000.00', '147500.00', '2016-11-15', '2016-08-30', '2017-08-30', 1, 1, 1, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (2, 'BRA-RS-001', 4, 'Technology Needs Assessment for the Implementation of Climate Action Plans', '700000.00', '197450.00', '2018-06-20', '2018-06-20', '2019-12-19', 1, 2, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (3, 'COM-RS-001', 5, '1. Establishing and strengthening National Designated Authorities or Focal Points; 2. Developing strategic frameworks for engagement with the GCF, including the preparation of country programmes.', '426080.00', '115117.00', '2018-11-01', '2018-11-01', '2020-10-21', 1, 1, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (4, 'CRI-RS-002', 7, 'Building sub-national capacities for the implementation of the National Adaptation Plan in Costa Rica', '2861917.00', '350575.33', '2018-10-23', '2018-10-23', '2021-10-23', 2, 3, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (5, 'DOM-RS-002', 7, 'Building capacity to advance National Adaptation Plan Process in the Dominican Republic', '2998325.00', '1161912.00', '2018-07-11', '2018-07-11', '2021-06-10', 2, 3, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (6, 'EGY-RS-001', 5, 'Supporting Egypt’s engagement with the Green Climate Fund: Logical framework support', '300000.00', '122456.00', '2017-05-02', '2017-04-24', '2018-10-23', 1, 1, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (7, 'GHA-RS-001', 3, 'Drought Early Warning and Forecasting System: Improving resiliency of crops to drought through strengthened early warning within Ghana, Uganda and Sudan', '300150.00', '300150.00', '2017-05-15', '2017-05-15', '2019-05-10', 1, 2, 2, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (8, 'HND-RS-002', 7, 'Supporting strategic planning to engage with the GCF and comply with the national commitments under the Paris Agreement regarding the LULUCF sector', '764960.00', '243515.00', '2018-01-18', '2018-01-18', '2019-07-19', 1, 4, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (9, 'JOR-RS-001', 9, 'Strengthening NDA of Jordan to deliver on GCF Investment Framework', '300000.00', '150000.00', '2017-06-15', '2017-06-15', '2018-12-14', 1, 1, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (10, 'MDG-RS-001', 5, 'Building Capacity in Madagascar to engage with the GCF', '300000.00', '177588.00', '2018-07-20', '2018-07-20', '2019-07-19', 1, 1, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (11, 'MLY-RS-002', 2, 'Accessing REDD+ result-based payments in Malaysia', '819230.00', '465695.33', '2018-11-12', '2018-11-12', '2020-11-13', 1, 4, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (12, 'MDV-RS-001', 2, 'Establishing and strengthening National Designated Authority (NDA), and developing strategic framework for engagement with the GCF in Maldives', '300000.00', '198545.00', '2017-06-16', '2017-06-16', '2018-06-13', 1, 1, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0), (13, 'MRT-RS-002', 1, 'Building capacity to advance National Adaptation Plan Process in Mauritania', '2670374.00', '742163.00', '2018-07-17', '2018-07-17', '2021-07-08', 2, 3, 4, 0, 0, '127.0.0.1', 0, 0, '127.0.0.1', 0); -- -------------------------------------------------------- -- -- Table structure for table `ProjectStatus` -- CREATE TABLE IF NOT EXISTS `ProjectStatus` ( `id` int(11) unsigned NOT NULL, `name` varchar(100) NOT NULL DEFAULT '', `description` varchar(100) NOT NULL DEFAULT '' ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ProjectStatus` -- INSERT INTO `ProjectStatus` (`id`, `name`, `description`) VALUES (1, 'Completed', ''), (2, 'Completion Report Submitted', ''), (3, 'Requesting Funds', ''), (4, 'Under Implementation', ''); -- -- Indexes for dumped tables -- -- -- Indexes for table `Countries` -- ALTER TABLE `Countries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `NAPStatus` -- ALTER TABLE `NAPStatus` ADD PRIMARY KEY (`id`); -- -- Indexes for table `NAPType` -- ALTER TABLE `NAPType` ADD PRIMARY KEY (`id`); -- -- Indexes for table `Office` -- ALTER TABLE `Office` ADD PRIMARY KEY (`id`); -- -- Indexes for table `ProjectLocation` -- ALTER TABLE `ProjectLocation` ADD PRIMARY KEY (`projectid`,`countryid`), ADD KEY `CNSTR_ProjectLocation_Countries_FK` (`countryid`); -- -- Indexes for table `Projects` -- ALTER TABLE `Projects` ADD PRIMARY KEY (`id`), ADD KEY `FK_Projects_Office` (`implementingoffice`), ADD KEY `FK_Projects_NAPStatus` (`napstatus`), ADD KEY `FK_Projects_NAPType` (`naptype`), ADD KEY `FK_Projects_ProjectStatus` (`status`); -- -- Indexes for table `ProjectStatus` -- ALTER TABLE `ProjectStatus` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `Countries` -- ALTER TABLE `Countries` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=247; -- -- AUTO_INCREMENT for table `NAPStatus` -- ALTER TABLE `NAPStatus` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `NAPType` -- ALTER TABLE `NAPType` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `Office` -- ALTER TABLE `Office` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `Projects` -- ALTER TABLE `Projects` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `ProjectStatus` -- ALTER TABLE `ProjectStatus` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- Constraints for dumped tables -- -- -- Constraints for table `ProjectLocation` -- ALTER TABLE `ProjectLocation` ADD CONSTRAINT `CNSTR_ProjectLocation_Countries_FK` FOREIGN KEY (`countryid`) REFERENCES `Countries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `CNSTR_ProjectLocation_Projects_FK` FOREIGN KEY (`projectid`) REFERENCES `Projects` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `Projects` -- ALTER TABLE `Projects` ADD CONSTRAINT `FK_Projects_NAPStatus` FOREIGN KEY (`napstatus`) REFERENCES `NAPStatus` (`id`), ADD CONSTRAINT `FK_Projects_NAPType` FOREIGN KEY (`naptype`) REFERENCES `NAPType` (`id`), ADD CONSTRAINT `FK_Projects_Office` FOREIGN KEY (`implementingoffice`) REFERENCES `Office` (`id`), ADD CONSTRAINT `FK_Projects_ProjectStatus` FOREIGN KEY (`status`) REFERENCES `ProjectStatus` (`id`); /*!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 */;
-- http://www.sqlserver-dba.com/2011/09/this-is-a-followup-on-my-earlier-post-of-sql-server-test-data-generation-testing-tools-i-had-some-requests-for-my-set-up-pr.html SELECT TOP 20 C_CUSTKEY, C_NAME, SUM(L_EXTENDEDPRICE*(1-L_DISCOUNT)) AS REVENUE, C_ACCTBAL, N_NAME, C_ADDRESS, C_PHONE, C_COMMENT FROM CUSTOMER, ORDERS, LINEITEM, NATION WHERE C_CUSTKEY = O_CUSTKEY AND L_ORDERKEY = O_ORDERKEY AND O_ORDERDATE>= '1993-10-01' AND O_ORDERDATE < dateadd(mm, 3, cast('1993-10-01' as datetime)) AND L_RETURNFLAG = 'R' AND C_NATIONKEY = N_NATIONKEY GROUP BY C_CUSTKEY, C_NAME, C_ACCTBAL, C_PHONE, N_NAME, C_ADDRESS, C_COMMENT ORDER BY REVENUE DESC
CREATE TABLE `ORDER` ( `id_Order` INT NOT NULL AUTO_INCREMENT, `order` VARCHAR(50) COLLATE utf8_unicode_ci default NULL, `isServed` BOOLEAN default NULL, `isPaid` BOOLEAN default NULL, PRIMARY KEY (`id_Order`) )ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; CREATE TABLE `INGREDIENT` ( `id_ingredient` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(50) COLLATE utf8_unicode_ci default NULL, `quantity` DOUBLE default NULL, PRIMARY KEY (`id_ingredient`) )ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; ALTER TABLE `INGREDIENT` ADD UNITS VARCHAR(50) COLLATE utf8_unicode_ci default NULL; CREATE TABLE `WAITER` ( `id_waiter` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(50) COLLATE utf8_unicode_ci default NULL, `isFree` BOOLEAN default NULL, PRIMARY KEY (`id_waiter`) )ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; CREATE TABLE `TABLE` ( `id_table` INT NOT NULL AUTO_INCREMENT, `isOccupied` BOOLEAN default NULL, PRIMARY KEY (`id_table`) )ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*-- --------------------------------------------------*/ INSERT INTO `ORDER` (`ORDER`, isServed, isPaid) values ('Chicken file', false, false); INSERT INTO `ORDER` (`ORDER`, isServed, isPaid) values ('Gibanica pie', true, false); INSERT INTO INGREDIENT (NAME, QUANTITY, UNITS) VALUES ('SALT', 3, 'PACKAGE'); INSERT INTO INGREDIENT (NAME, QUANTITY, UNITS) VALUES ('PEPER', 7, 'PACKAGE'); INSERT INTO INGREDIENT (NAME, QUANTITY, UNITS) VALUES ('MILK', 100, 'LITAR'); INSERT INTO WAITER (NAME, ISFREE) VALUES ('DANILO', TRUE); INSERT INTO WAITER (NAME, ISFREE) VALUES ('NEMANJA', FALSE); INSERT INTO `TABLE` (ISOCCUPIED) VALUES (FALSE); INSERT INTO `TABLE` (ISOCCUPIED) VALUES (FALSE); INSERT INTO `TABLE` (ISOCCUPIED) VALUES (TRUE);
START TRANSACTION; ALTER TABLE "FinisherItems" ALTER COLUMN "StartDate" TYPE timestamptz; ALTER TABLE "FinisherItems" ALTER COLUMN "FinishDate" TYPE timestamptz; ALTER TABLE "Events" ALTER COLUMN "EventDate" TYPE timestamptz; COMMIT;
create database ask2; use ask2; show tables; create table business( bid int, name varchar(30) not null, category varchar(20) not null, city varchar(15) not null, country varchar(17) not null, primary key (bid), check (bid>0) )engine=innodb; create table user( uid int, name varchar(20) not null, primary key (uid), check (uid>0) )engine=innodb; create table review( bid int, uid int, stars int not null, reviewdate date, primary key (bid,uid), foreign key (bid) references business(bid) on delete cascade, foreign key (uid) references user(uid) on delete cascade, check (stars>=1 and stars <=5) )engine=innodb; LOAD DATA LOCAL INFILE '/home/sageorgisn/business.txt' INTO TABLE business FIELDS TERMINATED BY '|' LINES TERMINATED BY '\n' IGNORE 2 LINES; update business set country = 'England' where country like '%England%'; update business set country = 'Greece' where country like '%Greece%'; update business set country = 'Ireland' where country like '%Ireland%'; LOAD DATA LOCAL INFILE '/home/sageorgisn/user.txt' INTO TABLE user FIELDS TERMINATED BY '\t' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 2 LINES; LOAD DATA LOCAL INFILE '/home/sageorgisn/review.txt' INTO TABLE review FIELDS TERMINATED BY '\t' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 2 LINES; /*erwthmata*/ /*bi*/ select distinct X.city from (select city from business as B, review as R where B.bid=R.bid AND R.Stars =5 and category='Restaurant') as X, (select city from business as B, review as R where B.bid=R.bid AND R.Stars =1 and category='Restaurant') as Y where X.city=Y.city; /*bii*/ select distinct R1.uid from review as R1, business as B1 where R1.bid=B1.bid and stars=3 and B1.city='Athens' and R1.uid not in (select distinct R.uid from review as R, user as U, business as B where R.uid=U.uid and B.city='Athens' and R.bid=B.bid and stars<>3) and R1.uid not in (select distinct uid from user as u2, business as b2 where city='Athens' and (uid,bid) not in (select R3.uid,R3.bid from review as R3, business as B3 where stars=3 and B3.city='Athens' and B3.bid=R3.bid)); /*biii*/ select B2.name from business as B2, (select B.bid,avg(stars) from business as B, review as R where B.country='Greece' and B.bid=R.bid and B.category='Restaurant' group by B.bid having count(R.stars)>=2 Order by avg(stars) DESC limit 3) as X where B2.bid=X.bid and B2.category='Restaurant'; /*biv*/ select R.uid,R.bid, R.stars, R.reviewdate from business as B, review as R where B.country='Greece' and B.bid=R.bid Order by R.reviewdate DESC, B.bid ASC limit 3; /*bv*/ select X.uid, U.name, X.countrycnt from user as U, (select uid, count(distinct country) as countrycnt from business as B, review as R where B.bid=R.bid GROUP by R.uid having count(distinct country)>=3) as X where X.uid=U.uid Order by X.countrycnt DESC, X.uid ASC; /*gamma*/ /*dhmiourgw mia opsi me ta plithos etairiwn gia kathe kathgoria*/ create view business_view as select bid, category from business; select * from business_view; insert into business_view values(13,'New Category'); /*provalw xana kai exei au3hthei to plithos ton cafe*/ select * from business_view; select * from business; /*gii*/ create view BUSINESS_REV as select bid,avg(stars) as grade from review group by bid; select * from BUSINESS_REV; insert into review values(9,4,5,'2015-12-12'); /*to neo periexomeno me ananeomeno to meso oro gia thn epixeirisi 4*/ select * from BUSINESS_REV; /*d*/ insert into review select distinct bid, 2010, 5, curdate() from review where bid not in (select bid from review where uid='2010');
<reponame>danieldiamond/gitlab-analytics with base as ( SELECT * FROM {{ source('salesforce', 'user_role') }} ) SELECT * FROM base
-- file:insert_conflict.sql ln:135 expect:true insert into insertconflicttest values (11, 'Cherry') on conflict (key, lower(fruit)) do update set fruit = excluded.fruit
CREATE TABLE foo (bar text); ALTER TABLE foo RENAME bar TO baz;
/* Navicat MySQL Data Transfer Source Server : 悉尼服务器 Source Server Type : MySQL Source Server Version : 50736 Source Host : 172.16.58.3:3306 Source Schema : ette Target Server Type : MySQL Target Server Version : 50736 File Encoding : 65001 Date: 16/01/2022 16:48:52 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; create DATABASE ette; use ette; -- ---------------------------- -- Table structure for blocks -- ---------------------------- DROP TABLE IF EXISTS `blocks`; CREATE TABLE `blocks` ( `hash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `number` bigint(20) NOT NULL, `time` bigint(20) NOT NULL, `parenthash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `difficulty` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `gasused` bigint(20) NOT NULL, `gaslimit` bigint(20) NOT NULL, `nonce` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `miner` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `size` float NOT NULL, <<<<<<< HEAD `stateroothash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `unclehash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `txroothash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `receiptroothash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `extradata` blob NULL, `inputdata` blob NULL, `tx_num` int(10) NOT NULL DEFAULT 0, PRIMARY KEY (`hash`) USING BTREE, UNIQUE INDEX `number`(`number`) USING BTREE, UNIQUE INDEX `number_2`(`number`) USING BTREE, INDEX `idx_blocks_number`(`number`) USING BTREE, INDEX `idx_blocks_time`(`time`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for config_vars -- ---------------------------- DROP TABLE IF EXISTS `config_vars`; CREATE TABLE `config_vars` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(25) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `value` varchar(125) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for delivery_history -- ---------------------------- DROP TABLE IF EXISTS `delivery_history`; CREATE TABLE `delivery_history` ( `id` char(36) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `client` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, ======= `stateroothash` char(66) NOT NULL, `unclehash` char(66) NOT NULL, `txroothash` char(66) NOT NULL, `receiptroothash` char(66) NOT NULL, `extradata` blob, `inputdata` blob ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- 表的结构 `config_vars` -- CREATE TABLE `config_vars` ( `id` int(11) NOT NULL, `name` varchar(25) NOT NULL, `value` varchar(125) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- 表的结构 `delivery_history` -- CREATE TABLE `delivery_history` ( `id` char(36) DEFAULT NULL, `client` char(42) NOT NULL, >>>>>>> 22d90d4821492fd2b416160ce91989b0137de9b9 `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `endpoint` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `datalength` bigint(20) NOT NULL ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for events -- ---------------------------- DROP TABLE IF EXISTS `events`; CREATE TABLE `events` ( `origin` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `index` bigint(20) NOT NULL, <<<<<<< HEAD `topics` blob NULL, `data` blob NULL, `txhash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `blockhash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, INDEX `idx_events_origin`(`origin`) USING BTREE, INDEX `idx_events_transaction_hash`(`txhash`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for ifi_award_log -- ---------------------------- DROP TABLE IF EXISTS `ifi_award_log`; CREATE TABLE `ifi_award_log` ( `log_id` int(11) NOT NULL AUTO_INCREMENT, `node_address` varchar(55) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '节点地址', `type` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0来源于CPU,1来源于voyager提现', `from_account` varchar(55) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL COMMENT '激励来源账号', `ifi_amount` bigint(60) NULL DEFAULT NULL COMMENT '奖励数量', `timestamp` int(11) NULL DEFAULT NULL COMMENT '时间戳', `tx_hash` varchar(88) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '交易哈希', PRIMARY KEY (`log_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 80153 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for nodes -- ---------------------------- DROP TABLE IF EXISTS `nodes`; CREATE TABLE `nodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `owner_address` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `chequebook_address` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `cpu_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `cpu_score` bigint(60) NULL DEFAULT NULL, `local_ip` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `incentive_reward` bigint(60) NOT NULL DEFAULT 0 COMMENT 'voyager提现奖励', `total_reward` bigint(60) NOT NULL DEFAULT 0 COMMENT '总奖励数量', `reward_30days` bigint(60) NOT NULL DEFAULT 0 COMMENT '30天内奖励数量', `increase_ratio` int(11) NOT NULL DEFAULT 0 COMMENT '增长幅度', `status` tinyint(1) NOT NULL DEFAULT 1, `last_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 38 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for nodes_startup -- ---------------------------- DROP TABLE IF EXISTS `nodes_startup`; CREATE TABLE `nodes_startup` ( `id` int(16) NOT NULL AUTO_INCREMENT, `owner_address` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `chequebook_address` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `local_ip` varchar(55) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `startup_time` datetime NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 177 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for signers -- ---------------------------- DROP TABLE IF EXISTS `signers`; CREATE TABLE `signers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `address` varchar(78) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `ip` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `min_block` bigint(20) NOT NULL DEFAULT 0 COMMENT '最小签名区块', `max_block` bigint(20) NOT NULL DEFAULT 0 COMMENT '最大签名区块', `days7` bigint(20) NOT NULL DEFAULT 0 COMMENT '7天内签名区块数量', `days30` bigint(20) NOT NULL DEFAULT 0 COMMENT '30天内签名区块数量', `total_blocks` int(11) NOT NULL DEFAULT 0 COMMENT '签名区块的总数量', `latitude` varchar(55) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `longitude` varchar(55) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `created_time` datetime NOT NULL, `country` varchar(55) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `status` tinyint(1) NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for subscription_details -- ---------------------------- DROP TABLE IF EXISTS `subscription_details`; CREATE TABLE `subscription_details` ( `address` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `subscriptionplan` int(11) NOT NULL, PRIMARY KEY (`address`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for subscription_plans -- ---------------------------- DROP TABLE IF EXISTS `subscription_plans`; CREATE TABLE `subscription_plans` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `deliverycount` bigint(20) NOT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `id`(`id`) USING BTREE, UNIQUE INDEX `name`(`name`) USING BTREE, UNIQUE INDEX `deliverycount`(`deliverycount`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for transactions -- ---------------------------- DROP TABLE IF EXISTS `transactions`; CREATE TABLE `transactions` ( `hash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `from` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `to` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `contract` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `value` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `data` blob NULL, `input_data` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL, ======= `topics` blob NOT NULL, `data` blob, `txhash` char(66) NOT NULL, `blockhash` char(66) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- 表的结构 `subscription_details` -- CREATE TABLE `subscription_details` ( `address` char(42) NOT NULL, `subscriptionplan` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- 表的结构 `subscription_plans` -- CREATE TABLE `subscription_plans` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `deliverycount` bigint(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- 表的结构 `transactions` -- CREATE TABLE `transactions` ( `hash` char(66) NOT NULL, `from` char(42) NOT NULL, `to` char(42) DEFAULT NULL, `contract` char(42) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `data` blob, >>>>>>> 22d90d4821492fd2b416160ce91989b0137de9b9 `gas` bigint(20) NOT NULL, `gasprice` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `cost` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `nonce` bigint(20) NOT NULL, `state` smallint(6) NOT NULL, `blockhash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `blockNumber` bigint(20) NOT NULL DEFAULT 0, `timestamp` int(11) NULL DEFAULT NULL, PRIMARY KEY (`hash`) USING BTREE, INDEX `idx_transactions_from`(`from`) USING BTREE, INDEX `idx_transactions_to`(`to`) USING BTREE, INDEX `idx_transactions_contract`(`contract`) USING BTREE, INDEX `idx_transactions_nonce`(`nonce`) USING BTREE, INDEX `idx_transactions_block_hash`(`blockhash`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for transactions_dam -- ---------------------------- DROP TABLE IF EXISTS `transactions_dam`; CREATE TABLE `transactions_dam` ( `hash` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `from` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `to` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `ifi_amount` bigint(20) NOT NULL, `timestamp` int(11) NULL DEFAULT NULL, PRIMARY KEY (`hash`) USING BTREE, INDEX `idx_transactions_dam_from`(`from`) USING BTREE, INDEX `idx_transactions_dam_to`(`to`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for users -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `address` char(42) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `apikey` char(66) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `enabled` tinyint(1) NULL DEFAULT 1, PRIMARY KEY (`apikey`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;
-- Sku'Bu -41655 DELETE FROM `creature_loot_template` WHERE (`entry`=41655); INSERT INTO `creature_loot_template` VALUES (41655, 53010, 38, 1, 1, 1, 1), (41655, 68198, 10, 1, 5, 1, 1), (41655, 58268, 5, 1, 4, 1, 1), (41655, 58256, 0.33, 1, 7, 1, 1), (41655, 68197, 0.30, 1, 3, 1, 1), (41655, 62087, 0.28, 1, 5, 1, 1), (41655, 62097, 0.38, 1, 6, 1, 1), (41655, 62085, 0.14, 1, 4, 1, 1), (41655, 62071, 0.2, 1, 6, 1, 1), (41655, 62075, 0.28, 1, 1, 1, 1), (41655, 62100, 0.26, 1, 7, 1, 1), (41655, 62096, 0.9, 1, 4, 1, 1), (41655, 62099, 0.32, 1, 2, 1, 1), (41655, 62081, 0.13, 1, 7, 1, 1), (41655, 62079, 0.9, 1, 7, 1, 1), (41655, 55402, 0.19, 1, 2, 1, 1), (41655, 62080, 0.26, 1, 4, 1, 1), (41655, 62091, 0.17, 1, 7, 1, 1), (41655, 55420, 0.1, 1, 7, 1, 1), (41655, 62074, 0.24, 1, 6, 1, 1), (41655, 62076, 0.30, 1, 4, 1, 1), (41655, 62073, 0.9, 1, 7, 1, 1), (41655, 62084, 0.39, 1, 5, 1, 1), (41655, 62088, 0.27, 1, 4, 1, 1), (41655, 62094, 0.31, 1, 6, 1, 1), (41655, 62095, 0.22, 1, 1, 1, 1), (41655, 62068, 0.20, 1, 4, 1, 1), (41655, 62072, 0.7, 1, 1, 1, 1), (41655, 62077, 0.36, 1, 3, 1, 1), (41655, 62086, 0.26, 1, 8, 1, 1), (41655, 62101, 0.19, 1, 2, 1, 1), (41655, 62063, 0.8, 1, 2, 1, 1), (41655, 62070, 0.30, 1, 6, 1, 1), (41655, 62078, 0.13, 1, 7, 1, 1), (41655, 62102, 0.14, 1, 1, 1, 1), (41655, 62066, 0.9, 1, 6, 1, 1), (41655, 62069, 0.19, 1, 8, 1, 1), (41655, 62082, 0.34, 1, 3, 1, 1), (41655, 62090, 0.39, 1, 8, 1, 1), (41655, 62103, 0.12, 1, 8, 1, 1), (41655, 62104, 0.30, 1, 5, 1, 1), (41655, 62067, 0.1, 1, 6, 1, 1), (41655, 62083, 0.32, 1, 1, 1, 1), (41655, 62089, 0.39, 1, 6, 1, 1), (41655, 62098, 0.29, 1, 6, 1, 1), (41655, 55436, 0.3, 1, 3, 1, 1), (41655, 62092, 0.29, 1, 2, 1, 1), (41655, 55679, 0.11, 1, 6, 1, 1), (41655, 55384, 0.2, 1, 7, 1, 1), (41655, 62093, 0.34, 1, 5, 1, 1), (41655, 62064, 0.6, 1, 5, 1, 1), (41655, 55373, 0.28, 1, 5, 1, 1), (41655, 55418, 0.36, 1, 7, 1, 1), (41655, 55499, 0.23, 1, 1, 1, 1), (41655, 55643, 0.38, 1, 1, 1, 1), (41655, 55419, 0.12, 1, 7, 1, 1), (41655, 55509, 0.37, 1, 3, 1, 1), (41655, 55626, 0.3, 1, 8, 1, 1), (41655, 55762, 0.24, 1, 7, 1, 1), (41655, 55760, 0.25, 1, 4, 1, 1), (41655, 55608, 0.10, 1, 4, 1, 1), (41655, 55635, 0.24, 1, 8, 1, 1), (41655, 55707, 0.37, 1, 7, 1, 1), (41655, 55725, 0.27, 1, 5, 1, 1), (41655, 55330, 0.23, 1, 6, 1, 1), (41655, 55717, 0.38, 1, 1, 1, 1), (41655, 55735, 0.16, 1, 1, 1, 1), (41655, 55364, 0.40, 1, 4, 1, 1), (41655, 55400, 0.2, 1, 8, 1, 1), (41655, 55544, 0.15, 1, 1, 1, 1), (41655, 55438, 0.36, 1, 6, 1, 1), (41655, 55573, 0.26, 1, 3, 1, 1), (41655, 62065, 0.12, 1, 8, 1, 1), (41655, 66980, 0.28, 1, 1, 1, 1), (41655, 55562, 0.34, 1, 6, 1, 1), (41655, 55589, 0.4, 1, 8, 1, 1), (41655, 55697, 0.21, 1, 5, 1, 1), (41655, 55751, 0.8, 1, 6, 1, 1), (41655, 55536, 0.5, 1, 8, 1, 1), (41655, 55662, 0.18, 1, 1, 1, 1), (41655, 55312, 0.14, 1, 4, 1, 1), (41655, 55690, 0.25, 1, 2, 1, 1), (41655, 55310, 0.6, 1, 6, 1, 1), (41655, 55724, 0.7, 1, 3, 1, 1), (41655, 55733, 0.37, 1, 5, 1, 1), (41655, 55401, 0.11, 1, 2, 1, 1), (41655, 55482, 0.33, 1, 7, 1, 1), (41655, 55518, 0.13, 1, 2, 1, 1), (41655, 55644, 0.37, 1, 4, 1, 1), (41655, 55654, 0.38, 1, 7, 1, 1), (41655, 55681, 0.22, 1, 5, 1, 1), (41655, 55726, 0.17, 1, 5, 1, 1), (41655, 55744, 0.20, 1, 1, 1, 1), (41655, 55454, 0.36, 1, 6, 1, 1), (41655, 55553, 0.10, 1, 6, 1, 1), (41655, 55652, 0.22, 1, 8, 1, 1), (41655, 55455, 0.12, 1, 1, 1, 1), (41655, 55464, 0.37, 1, 1, 1, 1), (41655, 55491, 0.14, 1, 4, 1, 1), (41655, 55500, 0.7, 1, 1, 1, 1), (41655, 55545, 0.20, 1, 4, 1, 1), (41655, 55590, 0.11, 1, 5, 1, 1), (41655, 55366, 0.28, 1, 6, 1, 1), (41655, 55375, 0.14, 1, 4, 1, 1), (41655, 55555, 0.30, 1, 6, 1, 1), (41655, 55591, 0.31, 1, 3, 1, 1), (41655, 55627, 0.30, 1, 5, 1, 1), (41655, 55708, 0.24, 1, 1, 1, 1), (41655, 55409, 0.8, 1, 7, 1, 1), (41655, 55481, 0.28, 1, 8, 1, 1), (41655, 55508, 0.15, 1, 1, 1, 1), (41655, 55634, 0.39, 1, 2, 1, 1), (41655, 55706, 0.20, 1, 5, 1, 1), (41655, 55769, 0.32, 1, 6, 1, 1), (41655, 55428, 0.40, 1, 3, 1, 1), (41655, 55437, 0.40, 1, 7, 1, 1), (41655, 55572, 0.33, 1, 6, 1, 1), (41655, 55581, 0.15, 1, 2, 1, 1), (41655, 55599, 0.22, 1, 1, 1, 1), (41655, 55734, 0.29, 1, 3, 1, 1), (41655, 55770, 0.32, 1, 7, 1, 1), (41655, 55294, 0.8, 1, 5, 1, 1), (41655, 55501, 0.16, 1, 6, 1, 1), (41655, 55609, 0.25, 1, 5, 1, 1), (41655, 55663, 0.25, 1, 1, 1, 1), (41655, 55672, 0.23, 1, 4, 1, 1), (41655, 55699, 0.18, 1, 1, 1, 1), (41655, 55771, 0.31, 1, 1, 1, 1), (41655, 65897, 0.36, 1, 7, 1, 1), (41655, 55328, 0.11, 1, 1, 1, 1), (41655, 55463, 0.6, 1, 2, 1, 1), (41655, 55490, 0.28, 1, 5, 1, 1), (41655, 55526, 0.34, 1, 2, 1, 1), (41655, 55580, 0.22, 1, 8, 1, 1), (41655, 55688, 0.15, 1, 1, 1, 1), (41655, 55742, 0.17, 1, 5, 1, 1), (41655, 55284, 0.3, 1, 7, 1, 1), (41655, 55311, 0.9, 1, 4, 1, 1), (41655, 55365, 0.21, 1, 8, 1, 1), (41655, 55392, 0.19, 1, 1, 1, 1), (41655, 55563, 0.30, 1, 5, 1, 1), (41655, 55716, 0.22, 1, 1, 1, 1), (41655, 55743, 0.21, 1, 5, 1, 1), (41655, 55752, 0.36, 1, 3, 1, 1), (41655, 55761, 0.21, 1, 8, 1, 1), (41655, 55339, 0.13, 1, 1, 1, 1), (41655, 55483, 0.30, 1, 2, 1, 1), (41655, 55528, 0.9, 1, 3, 1, 1), (41655, 55537, 0.23, 1, 2, 1, 1), (41655, 55618, 0.33, 1, 1, 1, 1), (41655, 55645, 0.6, 1, 6, 1, 1), (41655, 55753, 0.19, 1, 4, 1, 1), (41655, 67104, 0.22, 1, 5, 1, 1), (41655, 65894, 0.34, 1, 1, 1, 1), (41655, 55346, 0.4, 1, 3, 1, 1), (41655, 55355, 0.8, 1, 5, 1, 1), (41655, 55517, 0.24, 1, 3, 1, 1), (41655, 55535, 0.25, 1, 8, 1, 1), (41655, 55571, 0.21, 1, 6, 1, 1), (41655, 55598, 0.15, 1, 1, 1, 1), (41655, 55607, 0.15, 1, 8, 1, 1), (41655, 55616, 0.40, 1, 7, 1, 1), (41655, 55715, 0.33, 1, 3, 1, 1), (41655, 55293, 0.24, 1, 8, 1, 1), (41655, 55338, 0.2, 1, 4, 1, 1), (41655, 55374, 0.8, 1, 3, 1, 1), (41655, 55410, 0.36, 1, 8, 1, 1), (41655, 55554, 0.35, 1, 5, 1, 1), (41655, 55617, 0.11, 1, 2, 1, 1), (41655, 55653, 0.2, 1, 4, 1, 1), (41655, 55671, 0.7, 1, 6, 1, 1), (41655, 55689, 0.29, 1, 8, 1, 1), (41655, 55285, 0.7, 1, 5, 1, 1), (41655, 55456, 0.32, 1, 1, 1, 1), (41655, 55465, 0.21, 1, 4, 1, 1), (41655, 55519, 0.8, 1, 3, 1, 1), (41655, 55564, 0.18, 1, 7, 1, 1), (41655, 55600, 0.10, 1, 3, 1, 1), (41655, 55636, 0.15, 1, 5, 1, 1), (41655, 52495, 0.33, 1, 5, 1, 1), (41655, 66956, 0.9, 1, 8, 1, 1), (41655, 66958, 0.27, 1, 6, 1, 1), (41655, 66959, 0.25, 1, 6, 1, 1), (41655, 66982, 0.25, 1, 3, 1, 1), (41655, 67032, 0.7, 1, 6, 1, 1), (41655, 66912, 0.34, 1, 5, 1, 1), (41655, 66916, 0.28, 1, 2, 1, 1), (41655, 66985, 0.5, 1, 3, 1, 1), (41655, 67112, 0.19, 1, 1, 1, 1), (41655, 66965, 0.3, 1, 4, 1, 1), (41655, 66966, 0.19, 1, 7, 1, 1), (41655, 66988, 0.15, 1, 8, 1, 1), (41655, 67051, 0.29, 1, 4, 1, 1), (41655, 67116, 0.4, 1, 4, 1, 1), (41655, 52367, 0.16, 1, 7, 1, 1), (41655, 52369, 0.36, 1, 2, 1, 1), (41655, 52370, 0.5, 1, 8, 1, 1), (41655, 52375, 0.9, 1, 4, 1, 1), (41655, 52378, 0.13, 1, 1, 1, 1), (41655, 52379, 0.28, 1, 4, 1, 1), (41655, 52383, 0.13, 1, 1, 1, 1), (41655, 52385, 0.10, 1, 3, 1, 1), (41655, 55283, 0.28, 1, 7, 1, 1), (41655, 55292, 0.14, 1, 6, 1, 1), (41655, 55301, 0.19, 1, 8, 1, 1), (41655, 55382, 0.17, 1, 8, 1, 1), (41655, 55391, 0.17, 1, 6, 1, 1), (41655, 55472, 0.35, 1, 2, 1, 1), (41655, 55625, 0.9, 1, 8, 1, 1), (41655, 55661, 0.22, 1, 4, 1, 1), (41655, 55302, 0.35, 1, 2, 1, 1), (41655, 55347, 0.32, 1, 7, 1, 1), (41655, 55383, 0.30, 1, 2, 1, 1), (41655, 55680, 0.35, 1, 3, 1, 1), (41655, 55698, 0.40, 1, 1, 1, 1), (41655, 55393, 0.6, 1, 2, 1, 1), (41655, 55411, 0.28, 1, 3, 1, 1), (41655, 55429, 0.9, 1, 8, 1, 1), (41655, 55447, 0.7, 1, 4, 1, 1), (41655, 55492, 0.18, 1, 8, 1, 1), (41655, 55546, 0.8, 1, 1, 1, 1), (41655, 55582, 0.35, 1, 6, 1, 1), (41655, 67539, 0.12, 1, 2, 1, 1), (41655, 33362, 0.29, 1, 6, 1, 1), (41655, 63317, 0.38, 1, 3, 1, 1), (41655, 63349, 0.23, 1, 1, 1, 1), (41655, 63291, 0.33, 1, 6, 1, 1), (41655, 63348, 0.22, 1, 3, 1, 1), (41655, 58269, 0.4, 1, 7, 1, 1), (41655, 63310, 0.25, 1, 4, 1, 1), (41655, 63300, 0.25, 1, 5, 1, 1), (41655, 63316, 0.36, 1, 2, 1, 1), (41655, 63318, 0.11, 1, 3, 1, 1); -- Grupo 1 = 8.31; Grupo 2 = 5.32; Grupo 3 = 5.79; Grupo 4 = 5.09; Grupo 5 = 6.62; Grupo 6 = 7.27; Grupo 7 = 5.79; Grupo 8 = 4.9;
/* * File: 19_site_table.sql * File Created: Wednesday, 6th May 2020 1:52:38 pm * Author: <NAME> * Last Modified: Wednesday, 6th May 2020 1:53:15 pm * Modified By: <NAME> * ----- * (c) 2020, WHO/AFRO/UCN/ESPEN */ /* * Variable to rename <%v_ab_cde_fgh_1_site%> */ select * from <%v_ab_cde_fgh_1_site%>
<filename>src/sql/table_company.sql -- public.company definition -- Drop table -- DROP TABLE public.company; CREATE TABLE public.company ( name text NOT NULL, description text NULL, street_name text NULL, house_number text NULL, postal_code text NULL, locality text NULL, country text NULL, email text NULL, url text NULL, date_created timestamp NOT NULL DEFAULT 'now'::text::timestamp without time zone, is_internal bool NOT NULL DEFAULT false, CONSTRAINT company_pk PRIMARY KEY (name) );
drop table if exists estado; drop table if exists cidade; create table estado(ibge int, nome varchar(100), sigla varchar(2), regiao varchar(80), municipios int); insert into estado(ibge, nome, sigla, regiao, municipios) values(11, 'Rondônia', 'RO', 'Região Norte', 52); insert into estado(ibge, nome, sigla, regiao, municipios) values(12, 'Acre', 'AC', 'Região Norte', 22); insert into estado(ibge, nome, sigla, regiao, municipios) values(13, 'Amazonas', 'AM', 'Região Norte', 62); insert into estado(ibge, nome, sigla, regiao, municipios) values(14, 'Roraima', 'RR', 'Região Norte', 15); insert into estado(ibge, nome, sigla, regiao, municipios) values(15, 'Pará', 'PA', 'Região Norte', 144); insert into estado(ibge, nome, sigla, regiao, municipios) values(16, 'Amapá', 'AP', 'Região Norte', 16); insert into estado(ibge, nome, sigla, regiao, municipios) values(17, 'Tocantins', 'TO', 'Região Norte', 139); insert into estado(ibge, nome, sigla, regiao, municipios) values(21, 'Maranhão', 'MA', 'Região Nordeste', 217); insert into estado(ibge, nome, sigla, regiao, municipios) values(22, 'Piauí', 'PI', 'Região Nordeste', 224); insert into estado(ibge, nome, sigla, regiao, municipios) values(23, 'Ceará', 'CE', 'Região Nordeste', 184); insert into estado(ibge, nome, sigla, regiao, municipios) values(24, 'Rio Grande do Norte', 'RN', 'Região Nordeste', 167); insert into estado(ibge, nome, sigla, regiao, municipios) values(25, 'Paraíba', 'PB', 'Região Nordeste', 223); insert into estado(ibge, nome, sigla, regiao, municipios) values(26, 'Pernambuco', 'PE', 'Região Nordeste', 185); insert into estado(ibge, nome, sigla, regiao, municipios) values(27, 'Alagoas', 'AL', 'Região Nordeste', 102); insert into estado(ibge, nome, sigla, regiao, municipios) values(28, 'Sergipe', 'SE', 'Região Nordeste', 75); insert into estado(ibge, nome, sigla, regiao, municipios) values(29, 'Bahia', 'BA', 'Região Nordeste', 417); insert into estado(ibge, nome, sigla, regiao, municipios) values(31, 'Minas Gerais', 'MG', 'Região Sudeste', 853); insert into estado(ibge, nome, sigla, regiao, municipios) values(32, 'Espírito Santo', 'ES', 'Região Sudeste', 78); insert into estado(ibge, nome, sigla, regiao, municipios) values(33, 'Rio de Janeiro', 'RJ', 'Região Sudeste', 92); insert into estado(ibge, nome, sigla, regiao, municipios) values(35, 'São Paulo', 'SP', 'Região Sudeste', 645); insert into estado(ibge, nome, sigla, regiao, municipios) values(41, 'Paraná', 'PR', 'Região Sul', 399); insert into estado(ibge, nome, sigla, regiao, municipios) values(42, 'Santa Catarina', 'SC', 'Região Sul', 295); insert into estado(ibge, nome, sigla, regiao, municipios) values(43, 'Rio Grande do Sul', 'RS', 'Região Sul', 497); insert into estado(ibge, nome, sigla, regiao, municipios) values(50, 'Mato Grosso do Sul', 'MS', 'Região Centro-Oeste', 79); insert into estado(ibge, nome, sigla, regiao, municipios) values(51, '<NAME>', 'MT', 'Região Centro-Oeste', 141); insert into estado(ibge, nome, sigla, regiao, municipios) values(52, 'Goiás', 'GO', 'Região Centro-Oeste', 246); insert into estado(ibge, nome, sigla, regiao, municipios) values(53, 'Distrito Federal', 'DF', 'Região Centro-Oeste', 1); create table cidade(ibge int, nome varchar(100), estado varchar(2), regiao varchar(100), populacao int, porte varchar(80)); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110001, 'Alta Floresta D´oeste', 'RO', 'Região Norte', 24392, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110002, 'Ariquemes', 'RO', 'Região Norte', 90353, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110003, 'Cabixi', 'RO', 'Região Norte', 6313, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110004, 'Cacoal', 'RO', 'Região Norte', 78574, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110005, 'Cerejeiras', 'RO', 'Região Norte', 17029, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110006, 'Colorado do Oeste', 'RO', 'Região Norte', 18591, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110007, 'Corumbiara', 'RO', 'Região Norte', 8783, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110008, '<NAME>', 'RO', 'Região Norte', 13678, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110009, 'Espigão D´oeste', 'RO', 'Região Norte', 28729, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110010, 'Guajará-mirim', 'RO', 'Região Norte', 41656, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110011, 'Jaru', 'RO', 'Região Norte', 52005, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110012, 'Ji-paraná', 'RO', 'Região Norte', 116610, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110013, 'Machadinho D´oeste', 'RO', 'Região Norte', 31135, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110014, 'Nova Brasilândia D´oeste', 'RO', 'Região Norte', 19874, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110015, 'Ouro Preto do Oeste', 'RO', 'Região Norte', 37928, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110018, 'P<NAME>', 'RO', 'Região Norte', 33822, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110020, 'Porto Velho', 'RO', 'Região Norte', 428527, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110025, '<NAME>', 'RO', 'Região Norte', 22319, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110026, '<NAME>', 'RO', 'Região Norte', 3316, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110028, 'Rolim de Moura', 'RO', 'Região Norte', 50648, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110029, 'Santa Luzia D´oeste', 'RO', 'Região Norte', 8886, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110030, 'Vilhena', 'RO', 'Região Norte', 76202, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110032, 'São Miguel do Guaporé', 'RO', 'Região Norte', 21828, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110033, 'Nova Mamoré', 'RO', 'Região Norte', 22546, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110148, 'São Felipe D´oeste', 'RO', 'Região Norte', 6018, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110149, 'São Francisco do Guaporé', 'RO', 'Região Norte', 16035, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110150, 'Seringueiras', 'RO', 'Região Norte', 11629, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110155, 'Teixeirópolis', 'RO', 'Região Norte', 4888, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110160, 'Theobroma', 'RO', 'Região Norte', 10649, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110170, 'Urupá', 'RO', 'Região Norte', 12974, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110175, 'Vale do Anari', 'RO', 'Região Norte', 9384, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(110180, 'Vale do Paraíso', 'RO', 'Região Norte', 8210, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120001, 'Acrelândia', 'AC', 'Região Norte', 12538, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120005, 'Assis Brasil', 'AC', 'Região Norte', 6072, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120010, 'Brasiléia', 'AC', 'Região Norte', 21398, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120013, 'Bujari', 'AC', 'Região Norte', 8471, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120017, 'Capixaba', 'AC', 'Região Norte', 8798, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120020, 'Cruzeiro do Sul', 'AC', 'Região Norte', 78507, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120025, 'Epitaciolândia', 'AC', 'Região Norte', 15100, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120030, 'Feijó', 'AC', 'Região Norte', 32412, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120032, 'Jordão', 'AC', 'Região Norte', 6577, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120033, 'Mâncio Lima', 'AC', 'Região Norte', 15206, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120034, 'Manoel Urbano', 'AC', 'Região Norte', 7981, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120035, 'Marechal Thaumaturgo', 'AC', 'Região Norte', 14227, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120038, 'Plácido de Castro', 'AC', 'Região Norte', 17209, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120039, '<NAME>', 'AC', 'Região Norte', 9176, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120040, 'Rio Branco', 'AC', 'Região Norte', 336038, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120042, '<NAME>', 'AC', 'Região Norte', 14389, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120043, '<NAME>', 'AC', 'Região Norte', 4691, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120045, '<NAME>', 'AC', 'Região Norte', 20179, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120050, '<NAME>', 'AC', 'Região Norte', 38029, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120060, 'Tarauacá', 'AC', 'Região Norte', 35590, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120070, 'Xapuri', 'AC', 'Região Norte', 16091, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(120080, 'Porto Acre', 'AC', 'Região Norte', 14880, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130002, 'Alvarães', 'AM', 'Região Norte', 14088, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130006, 'Amaturá', 'AM', 'Região Norte', 9467, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130008, 'Anamã', 'AM', 'Região Norte', 10214, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130010, 'Anori', 'AM', 'Região Norte', 16317, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130014, 'Apuí', 'AM', 'Região Norte', 18007, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130020, 'Atalaia do Norte', 'AM', 'Região Norte', 15153, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130030, 'Autazes', 'AM', 'Região Norte', 32135, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130040, 'Barcelos', 'AM', 'Região Norte', 25718, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130050, 'Barreirinha', 'AM', 'Região Norte', 27355, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130060, '<NAME>', 'AM', 'Região Norte', 33411, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130063, 'Beruri', 'AM', 'Região Norte', 15486, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130068, 'Boa Vista do Ramos', 'AM', 'Região Norte', 14979, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130070, 'Boca do Acre', 'AM', 'Região Norte', 30632, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130080, 'Borba', 'AM', 'Região Norte', 34961, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130083, 'Caapiranga', 'AM', 'Região Norte', 10975, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130090, 'Canutama', 'AM', 'Região Norte', 12738, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130100, 'Carauari', 'AM', 'Região Norte', 25774, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130110, 'Careiro', 'AM', 'Região Norte', 32734, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130115, 'Careiro da Várzea', 'AM', 'Região Norte', 23930, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130120, 'Coari', 'AM', 'Região Norte', 75965, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130130, 'Codajás', 'AM', 'Região Norte', 23206, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130140, 'Eirunepé', 'AM', 'Região Norte', 30665, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130150, 'Envira', 'AM', 'Região Norte', 16338, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130160, 'Fonte Boa', 'AM', 'Região Norte', 22817, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130165, 'Guajará', 'AM', 'Região Norte', 13974, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130170, 'Humaitá', 'AM', 'Região Norte', 44227, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130180, 'Ipixuna', 'AM', 'Região Norte', 22254, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130185, 'Iranduba', 'AM', 'Região Norte', 40781, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130190, 'Itacoatiara', 'AM', 'Região Norte', 86839, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130195, 'Itamarati', 'AM', 'Região Norte', 8038, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130200, 'Itapiranga', 'AM', 'Região Norte', 8211, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130210, 'Japurá', 'AM', 'Região Norte', 7326, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130220, 'Juruá', 'AM', 'Região Norte', 10802, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130230, 'Jutaí', 'AM', 'Região Norte', 17992, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130240, 'Lábrea', 'AM', 'Região Norte', 37701, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130250, 'Manacapuru', 'AM', 'Região Norte', 85141, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130255, 'Manaquiri', 'AM', 'Região Norte', 22801, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130260, 'Manaus', 'AM', 'Região Norte', 1802014, 'Metrópole'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130270, 'Manicoré', 'AM', 'Região Norte', 47017, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130280, 'Maraã', 'AM', 'Região Norte', 17528, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130290, 'Maués', 'AM', 'Região Norte', 52236, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130300, 'Nhamundá', 'AM', 'Região Norte', 18278, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130310, 'Nova Olinda do Norte', 'AM', 'Região Norte', 30696, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130320, 'Novo Airão', 'AM', 'Região Norte', 14723, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130330, 'Novo Aripuanã', 'AM', 'Região Norte', 21451, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130340, 'Parintins', 'AM', 'Região Norte', 102033, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130350, 'Pauini', 'AM', 'Região Norte', 18166, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130353, 'Pres<NAME>', 'AM', 'Região Norte', 27175, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130356, 'Rio Preto da Eva', 'AM', 'Região Norte', 25719, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130360, 'Santa Isabel do Rio Negro', 'AM', 'Região Norte', 18146, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130370, 'Santo Antônio do Içá', 'AM', 'Região Norte', 24481, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130380, 'São Gabriel da Cachoeira', 'AM', 'Região Norte', 37896, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130390, 'São Paulo de Olivença', 'AM', 'Região Norte', 31422, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130395, 'São Sebastião do Uatumã', 'AM', 'Região Norte', 10705, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130400, 'Silves', 'AM', 'Região Norte', 8444, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130406, 'Tabatinga', 'AM', 'Região Norte', 52272, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130410, 'Tapauá', 'AM', 'Região Norte', 19077, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130420, 'Tefé', 'AM', 'Região Norte', 61453, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130423, 'Tonantins', 'AM', 'Região Norte', 17079, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130426, 'Uarini', 'AM', 'Região Norte', 11891, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130430, 'Urucará', 'AM', 'Região Norte', 17094, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(130440, 'Urucurituba', 'AM', 'Região Norte', 17837, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140002, 'Amajari', 'RR', 'Região Norte', 9327, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140005, 'Alto Alegre', 'RR', 'Região Norte', 16448, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140010, 'Boa Vista', 'RR', 'Região Norte', 284313, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140015, 'Bonfim', 'RR', 'Região Norte', 10943, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140017, 'Cantá', 'RR', 'Região Norte', 13902, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140020, 'Caracaraí', 'RR', 'Região Norte', 18398, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140023, 'Caroebe', 'RR', 'Região Norte', 8114, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140028, 'Iracema', 'RR', 'Região Norte', 8696, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140030, 'Mucajaí', 'RR', 'Região Norte', 14792, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140040, 'Normandia', 'RR', 'Região Norte', 8940, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140045, 'Pacaraima', 'RR', 'Região Norte', 10433, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140047, 'Rorainópolis', 'RR', 'Região Norte', 24279, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140050, 'São <NAME>', 'RR', 'Região Norte', 6769, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140060, 'São Luiz', 'RR', 'Região Norte', 6750, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(140070, 'Uiramutã', 'RR', 'Região Norte', 8375, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150010, 'Abaetetuba', 'PA', 'Região Norte', 141100, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150013, '<NAME>', 'PA', 'Região Norte', 6780, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150020, 'Acará', 'PA', 'Região Norte', 53569, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150030, 'Afuá', 'PA', 'Região Norte', 35042, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150034, 'Água Azul do Norte', 'PA', 'Região Norte', 25057, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150040, 'Alenquer', 'PA', 'Região Norte', 52626, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150050, 'Almeirim', 'PA', 'Região Norte', 33614, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150060, 'Altamira', 'PA', 'Região Norte', 99075, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150070, 'Anajás', 'PA', 'Região Norte', 24759, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150080, 'Ananindeua', 'PA', 'Região Norte', 471980, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150085, 'Anapu', 'PA', 'Região Norte', 20543, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150090, '<NAME>', 'PA', 'Região Norte', 40497, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150095, 'Aurora do Pará', 'PA', 'Região Norte', 26546, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150100, 'Aveiro', 'PA', 'Região Norte', 15849, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150110, 'Bagre', 'PA', 'Região Norte', 23864, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150120, 'Baião', 'PA', 'Região Norte', 36882, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150125, 'Bannach', 'PA', 'Região Norte', 3431, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150130, 'Barcarena', 'PA', 'Região Norte', 99859, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150140, 'Belém', 'PA', 'Região Norte', 1393399, 'Metrópole'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150145, 'Belterra', 'PA', 'Região Norte', 16318, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150150, 'Benevides', 'PA', 'Região Norte', 51651, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150157, '<NAME>', 'PA', 'Região Norte', 15298, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150160, 'Bonito', 'PA', 'Região Norte', 13630, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150170, 'Bragança', 'PA', 'Região Norte', 113227, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150172, 'Brasil Novo', 'PA', 'Região Norte', 15690, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150175, 'Brejo Grande do Araguaia', 'PA', 'Região Norte', 7317, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150178, 'Breu Branco', 'PA', 'Região Norte', 52493, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150180, 'Breves', 'PA', 'Região Norte', 92860, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150190, 'Bujaru', 'PA', 'Região Norte', 25695, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150195, 'Cachoeira do Piriá', 'PA', 'Região Norte', 26484, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150200, 'Cachoeira do Arari', 'PA', 'Região Norte', 20443, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150210, 'Cametá', 'PA', 'Região Norte', 120896, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150215, '<NAME>', 'PA', 'Região Norte', 26716, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150220, 'Capanema', 'PA', 'Região Norte', 63639, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150230, 'Capitão Poço', 'PA', 'Região Norte', 51893, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150240, 'Castanhal', 'PA', 'Região Norte', 173149, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150250, 'Chaves', 'PA', 'Região Norte', 21005, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150260, 'Colares', 'PA', 'Região Norte', 11381, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150270, 'Conceição do Araguaia', 'PA', 'Região Norte', 45557, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150275, 'Concórdia do Pará', 'PA', 'Região Norte', 28216, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150276, 'Cumaru do Norte', 'PA', 'Região Norte', 10466, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150277, 'Curionópolis', 'PA', 'Região Norte', 18288, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150280, 'Curralinho', 'PA', 'Região Norte', 28549, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150285, 'Curuá', 'PA', 'Região Norte', 12254, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150290, 'Curuçá', 'PA', 'Região Norte', 34294, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150293, '<NAME>', 'PA', 'Região Norte', 51319, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150295, '<NAME>', 'PA', 'Região Norte', 31786, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150300, 'Faro', 'PA', 'Região Norte', 8177, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150304, 'Floresta do Araguaia', 'PA', 'Região Norte', 17768, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150307, 'Garrafão do Norte', 'PA', 'Região Norte', 25034, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150309, 'Goianésia do Pará', 'PA', 'Região Norte', 30436, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150310, 'Gurupá', 'PA', 'Região Norte', 29062, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150320, 'Igarapé-açu', 'PA', 'Região Norte', 35887, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150330, 'Igarapé-miri', 'PA', 'Região Norte', 58077, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150340, 'Inhangapi', 'PA', 'Região Norte', 10037, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150345, 'Ipixuna do Pará', 'PA', 'Região Norte', 51309, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150350, 'Irituia', 'PA', 'Região Norte', 31364, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150360, 'Itaituba', 'PA', 'Região Norte', 97493, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150370, 'Itupiranga', 'PA', 'Região Norte', 51220, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150375, 'Jacareacanga', 'PA', 'Região Norte', 14103, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150380, 'Jacundá', 'PA', 'Região Norte', 51360, 'Médio'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150390, 'Juruti', 'PA', 'Região Norte', 47086, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150400, '<NAME>', 'PA', 'Região Norte', 25021, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150405, '<NAME>', 'PA', 'Região Norte', 27904, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150410, '<NAME>', 'PA', 'Região Norte', 8115, 'Pequeno I'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150420, 'Marabá', 'PA', 'Região Norte', 233669, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150430, 'Maracanã', 'PA', 'Região Norte', 28376, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150440, 'Marapanim', 'PA', 'Região Norte', 26605, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150442, 'Marituba', 'PA', 'Região Norte', 108246, 'Grande'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150445, 'Medicilândia', 'PA', 'Região Norte', 27328, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150450, 'Melgaço', 'PA', 'Região Norte', 24808, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150460, 'Mocajuba', 'PA', 'Região Norte', 26731, 'Pequeno II'); insert into cidade(ibge, nome, estado, regiao, populacao, porte) values(150470, 'Moju', 'PA', 'Região Norte', 70018, 'Médio');
<filename>superfly-sql/mi/R1.0.0/R1.0.0_SSO_ROOT.sql drop database if exists sso; create database sso default character set utf8 collate utf8_general_ci; grant all privileges on sso.* to 'sso'@'localhost' identified by '123sso123' with grant option;
-- ---------------------------- -- Table structure for sms_flash_promotion_session -- ---------------------------- DROP TABLE IF EXISTS `sms_flash_promotion_session`;
-- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file -- distributed with this work for additional information -- regarding copyright ownership. The ASF licenses this file -- to you under the Apache License, Version 2.0 (the -- "License"); you may not use this file except in compliance -- with the License. You may obtain a copy of the License at -- http://www.apache.org/licenses/LICENSE-2.0 -- Unless required by applicable law or agreed to in writing, -- software distributed under the License is distributed on an -- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -- KIND, either express or implied. See the License for the -- specific language governing permissions and limitations -- under the License. -- ---------------------------------------------------------------------------------------------------------------- -- DATABASE: column_type_test -- ---------------------------------------------------------------------------------------------------------------- -- Create the column_type_test database CREATE DATABASE column_type_test; USE column_type_test; EXEC sys.sp_cdc_enable_db; CREATE TABLE full_types ( id int NOT NULL, val_char char(3), val_varchar varchar(1000), val_text text, val_nchar nchar(3), val_nvarchar nvarchar(1000), val_ntext ntext, val_decimal decimal(6,3), val_numeric numeric, val_float float, val_real real, val_smallmoney smallmoney, val_money money, val_bit bit, val_tinyint tinyint, val_smallint smallint, val_int int, val_bigint bigint, val_date date, val_time_p2 time(2), val_time time(4), val_datetime2 datetime2, val_datetimeoffset datetimeoffset, val_datetime datetime, val_smalldatetime smalldatetime, val_xml xml PRIMARY KEY (id) ); INSERT INTO full_types VALUES (0, 'cč', 'vcč', 'tč', N'cč', N'vcč', N'tč', 1.123, 2, 3.323, 4.323, 5.323, 6.323, 1, 22, 333, 4444, 55555, '2018-07-13', '10:23:45.678', '10:23:45.6789', '2018-07-13 11:23:45.34', '2018-07-13 12:23:45.456+11:00', '2018-07-13 13:23:45.78', '2018-07-13 14:23:45', '<a>b</a>'); EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 'full_types', @role_name = NULL, @supports_net_changes = 0;
CREATE VIEW VIEW85 (C1) AS SELECT 1 FROM TABLE274 UNION SELECT 1 FROM TABLE164 UNION SELECT 1 FROM TABLE155 GO
declare v_count NUMBER; v_stat VARCHAR2(32767); begin SELECT COUNT(*) INTO v_count FROM USER_TABLES WHERE TABLE_NAME = 'CHANGE_LOG_TABLES'; if v_count = 0 then v_stat := q'[ CREATE TABLE CHANGE_LOG_TABLES ( ID NUMBER(11,0) NOT NULL, TABLE_NAME VARCHAR2(32) NOT NULL, VIEW_NAME VARCHAR2(32) NOT NULL, INCLUDED VARCHAR2(1) DEFAULT 'Y' NOT NULL CONSTRAINT CHANGE_LOG_TABLES_INCLUDED_CK CHECK (INCLUDED IN ('Y','N')), CONSTRAINT CHANGE_LOG_TABLES_PK PRIMARY KEY (ID), CONSTRAINT CHANGE_LOG_TABLES_UK UNIQUE (VIEW_NAME) ) ORGANIZATION INDEX ]'; EXECUTE IMMEDIATE v_Stat; end if; SELECT COUNT(*) INTO v_count FROM USER_SEQUENCES WHERE SEQUENCE_NAME = 'CHANGE_LOG_TABLES_SEQ'; if v_count = 0 then v_stat := q'[ CREATE SEQUENCE CHANGE_LOG_TABLES_SEQ START WITH 1000 INCREMENT BY 1 NOCACHE NOCYCLE ]'; EXECUTE IMMEDIATE v_Stat; end if; v_stat := q'[ CREATE OR REPLACE TRIGGER CHANGE_LOG_TABLES_BI_TR BEFORE INSERT ON CHANGE_LOG_TABLES FOR EACH ROW BEGIN if :new.ID is null then SELECT CHANGE_LOG_TABLES_SEQ.NEXTVAL INTO :new.ID FROM DUAL; end if; END; ]'; EXECUTE IMMEDIATE v_Stat; SELECT COUNT(*) INTO v_count FROM USER_TABLES WHERE TABLE_NAME = 'CHANGE_LOG_USERS_BT'; if v_count = 0 then v_stat := q'[ CREATE TABLE CHANGE_LOG_USERS_BT ( ID NUMBER(11,0) NOT NULL, USER_NAME VARCHAR2(32) NOT NULL, WORKSPACE$_ID NUMBER(7,0) NOT NULL, CONSTRAINT CHANGE_LOG_USERS_PK PRIMARY KEY (WORKSPACE$_ID, ID), CONSTRAINT CHANGE_LOG_USERS_UK UNIQUE (WORKSPACE$_ID, USER_NAME), CONSTRAINT CHANGE_LOG_USERS_WSFK FOREIGN KEY (WORKSPACE$_ID) REFERENCES USER_NAMESPACES (WORKSPACE$_ID) ON DELETE CASCADE ENABLE ) ORGANIZATION INDEX COMPRESS 1 ]'; EXECUTE IMMEDIATE v_Stat; end if; SELECT COUNT(*) INTO v_count FROM USER_SEQUENCES WHERE SEQUENCE_NAME = 'CHANGE_LOG_USERS_SEQ'; if v_count = 0 then v_stat := q'[ CREATE SEQUENCE CHANGE_LOG_USERS_SEQ START WITH 1000 INCREMENT BY 1 NOCACHE NOCYCLE ]'; EXECUTE IMMEDIATE v_Stat; end if; v_stat := q'[ CREATE OR REPLACE TRIGGER CHANGE_LOG_USERS_BI_TR BEFORE INSERT ON CHANGE_LOG_USERS_BT FOR EACH ROW BEGIN if :new.ID is null then SELECT CHANGE_LOG_USERS_SEQ.NEXTVAL INTO :new.ID FROM DUAL; end if; END; ]'; EXECUTE IMMEDIATE v_Stat; SELECT COUNT(*) INTO v_count FROM USER_OBJECTS WHERE OBJECT_NAME = 'CHANGELOG_ITEM_GTYPE' AND OBJECT_TYPE = 'TYPE'; if v_count = 0 then v_stat := q'[ CREATE TYPE CHANGELOG_ITEM_GTYPE AS OBJECT ( COLUMN_ID NUMBER(3,0), AFTER_VALUE VARCHAR2(400) ) ]'; EXECUTE IMMEDIATE v_Stat; v_stat := q'[ CREATE TYPE CHANGELOG_ITEM_ARRAY_GTYPE AS VARYING ARRAY (1000) OF CHANGELOG_ITEM_GTYPE ]'; EXECUTE IMMEDIATE v_Stat; end if; SELECT COUNT(*) INTO v_count FROM USER_TABLES WHERE TABLE_NAME = 'CHANGE_LOG_BT'; if v_count = 0 then v_stat := q'[ CREATE TABLE CHANGE_LOG_BT ( ID NUMBER(11,0) NOT NULL, TABLE_ID NUMBER(11,0) NOT NULL, OBJECT_ID NUMBER DEFAULT 0 NOT NULL, ACTION_CODE CHAR(1 BYTE) DEFAULT 'I' CONSTRAINT CHANGELOG_ACTION_CK CHECK (ACTION_CODE IN ('I', 'U', 'D', 'S')) NOT NULL, IS_HIDDEN CHAR(1 BYTE) DEFAULT '0' CONSTRAINT CHANGELOG_IS_HIDDEN_CK CHECK (IS_HIDDEN IN ('0', '1')) NOT NULL, USER_ID NUMBER(11,0) NOT NULL, LOGGING_DATE TIMESTAMP(6) WITH LOCAL TIME ZONE NOT NULL, CUSTOM_REF_ID1 NUMBER(11,0), CUSTOM_REF_ID2 NUMBER(11,0), CUSTOM_REF_ID3 NUMBER(11,0), CUSTOM_REF_ID4 NUMBER(11,0), CUSTOM_REF_ID5 NUMBER(11,0), CUSTOM_REF_ID6 NUMBER(11,0), CUSTOM_REF_ID7 NUMBER(11,0), CUSTOM_REF_ID8 NUMBER(11,0), CUSTOM_REF_ID9 NUMBER(11,0), CHANGELOG_ITEMS CHANGELOG_ITEM_ARRAY_GTYPE, WORKSPACE$_ID NUMBER(7,0) NOT NULL, CONSTRAINT CHANGELOG_PK PRIMARY KEY (WORKSPACE$_ID, LOGGING_DATE, ID) USING INDEX COMPRESS, CONSTRAINT CHANGELOG_WSFK FOREIGN KEY (WORKSPACE$_ID) REFERENCES USER_NAMESPACES (WORKSPACE$_ID) ON DELETE CASCADE ENABLE, CONSTRAINT CHANGELOG_USER_FK FOREIGN KEY (WORKSPACE$_ID, USER_ID) REFERENCES CHANGE_LOG_USERS_BT (WORKSPACE$_ID, ID) ENABLE, CONSTRAINT CHANGELOG_TABLE_FK FOREIGN KEY (TABLE_ID) REFERENCES CHANGE_LOG_TABLES (ID) ENABLE ) ]'; EXECUTE IMMEDIATE v_Stat; v_stat := q'[ COMMENT ON TABLE CHANGE_LOG_BT IS 'Base table to store change log entries for details of DML changes with one row for each affected individual table column for tracked tables.' ]'; EXECUTE IMMEDIATE v_Stat; v_stat := q'[ CREATE INDEX CHANGELOG_IND ON CHANGE_LOG_BT (WORKSPACE$_ID, TABLE_ID, OBJECT_ID, ACTION_CODE) COMPRESS 4 ]'; EXECUTE IMMEDIATE v_Stat; end if; SELECT COUNT(*) INTO v_count FROM USER_SEQUENCES WHERE SEQUENCE_NAME = 'CHANGELOG_SEQ'; if v_count = 0 then v_stat := q'[ CREATE SEQUENCE CHANGELOG_SEQ START WITH 1000000 INCREMENT BY 1 NOCACHE NOCYCLE ]'; EXECUTE IMMEDIATE v_Stat; end if; v_stat := q'[ CREATE OR REPLACE TRIGGER CHANGE_LOG_BI_TR BEFORE INSERT ON CHANGE_LOG_BT FOR EACH ROW BEGIN if :new.ID is null then SELECT CHANGELOG_SEQ.NEXTVAL INTO :new.ID FROM DUAL; end if; END; ]'; EXECUTE IMMEDIATE v_Stat; end; / show errors
-- @testpoint: pg_stat_get_numscans(oid)函数的异常校验,合理报错 -- -- testpoint:空值、多参、少参、oid错误、超范围、表不存在 select pg_stat_get_numscans('') from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_numscans(a.oid,a.oid,a.oid) from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_numscans() from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_numscans('&^%^&*') from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_numscans(99999999999998789) from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_numscans(a.oid) from PG_CLASS a where a.relname = 'sales';
-- @testpoint:opengauss关键字leading(保留),作为函数名 --关键字不带引号-合理报错 create function leading(i integer) returns integer as $$ begin return i+1; end; $$ language plpgsql; / --关键字带双引号-成功 create function "leading"(i integer) returns integer as $$ begin return i+1; end; $$ language plpgsql; / --清理环境 drop function "leading"; --关键字带单引号-合理报错 create function 'leading'(i integer) returns integer as $$ begin return i+1; end; $$ language plpgsql; / --关键字带反引号-合理报错 drop function if exists `leading`; create function `leading`(i integer) returns integer as $$ begin return i+1; end; $$ language plpgsql; /
<gh_stars>100-1000 select count(*) from altable;
/* DESCRIBE `wiki`; +------------+--------------+------+-----+---------------------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+--------------+------+-----+---------------------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | title | varchar(128) | YES | | NULL | | | content | longtext | YES | | '' | | | url_id | varchar(64) | YES | UNI | NULL | | | mod_only | tinyint(1) | YES | | 0 | | | created_at | datetime | NO | | current_timestamp() | | | created_by | int(8) | NO | | NULL | | | edited_at | datetime | YES | | NULL | | | edited_by | int(8) | YES | | NULL | | +------------+--------------+------+-----+---------------------+----------------+ */ -- SHOW CREATE TABLE `wiki`; CREATE TABLE `wiki` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(128) DEFAULT NULL, `content` longtext DEFAULT '', `url_id` varchar(64) DEFAULT NULL, `mod_only` tinyint(1) DEFAULT 0, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `created_by` int(8) NOT NULL, `edited_at` datetime DEFAULT NULL, `edited_by` int(8) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `url_id` (`url_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
<reponame>christophanneser/Bao-for-Presto<gh_stars>0 SELECT acc.location, count(*) FROM site as s, so_user as u1, question as q1, answer as a1, tag as t1, tag_question as tq1, badge as b, account as acc WHERE s.site_id = q1.site_id AND s.site_id = u1.site_id AND s.site_id = a1.site_id AND s.site_id = t1.site_id AND s.site_id = tq1.site_id AND s.site_id = b.site_id AND q1.id = tq1.question_id AND q1.id = a1.question_id AND a1.owner_user_id = u1.id AND t1.id = tq1.tag_id AND b.user_id = u1.id AND acc.id = u1.account_id AND (s.site_name in ('askubuntu','math','stackoverflow')) AND (t1.name in ('architecture','dart','gps','linear-algebra','mysql','set-theory')) AND (q1.favorite_count >= 1) AND (q1.favorite_count <= 10) AND (u1.downvotes >= 0) AND (u1.downvotes <= 10) AND (b.name in ('Announcer','Caucus','Custodian','Enlightened','Guru','Necromancer','Nice Question','Popular Question','Scholar','Yearling')) GROUP BY acc.location ORDER BY COUNT(*) DESC LIMIT 100
-- This table is created temporarily inside MySQL, but this data will eventally be -- stored in a "big data" database table. -- The data is extracted by dophot, NOT tphot. We could also do with the FITS header -- from the files, or just use the .obs files. Do we ultimately want to store the data -- in a FLAT table structure? In which case we should have columns below for expname, -- exptime, mjd, etc. -- The dophot header look like this, with one example row added. idx and Type are integers, the rest are floats. RA and Dec should be stored as doubles: -- RA Dec m idx Type xtsk ytsk fitmag dfitmag sky major minor phi probgal apmag dapmag apsky ap-fit -- 193.69785 35.18475 12.136 3 2 4261.47 64.83 -13.255 0.000 1063.14 6.851 3.058 2.52 0.000E+00 99.999 0.000 0.00 0.000 drop table if exists `atlas_detections`; create table `atlas_detections` ( `id` bigint unsigned not null auto_increment, -- autoincrementing detection id `atlas_object_id` bigint(20) unsigned NOT NULL, -- a reference to the unique object which tags this object `dphot_id` int unsigned not null, -- the internal id of the detection (unique per file) `ra` double, `dec` double, `m` float, `idx` int unsigned, `type` tinyint unsigned, `xtsk` float, `ytsk` float, `fitmag` float, `dfitmag` float, `sky` float, `major` float, `minor` float, `phi` float, `probgal` float, `apmag` float, `dapmag` float, `apsky` float, `ap_fit` float, `htm16ID` bigint unsigned not null, `jtindex` int unsigned, `date_inserted` datetime NOT NULL, -- when was the detection inserted? `date_modified` datetime, -- when was the detection modified? `image_group_id` bigint unsigned, -- a reference to the group of images that refers to this detection `quality_threshold_pass` bool, -- does this detection pass some specified cuts? `deprecated` bool, -- option to ignore this detection `realbogus_factor` float, -- machine learning real/bogus value PRIMARY KEY `key_id` (`id`), UNIQUE KEY `key_tphot_id_expname` (`tphot_id`, `expname`), KEY `idx_htm16ID` (`htm16ID`), KEY `idx_ra_dec` (`ra`,`dec`), KEY `idx_expname` (`expname`) ) ENGINE=MyISAM;
create table Category ( id int auto_increment primary key, name varchar(191) not null, constraint `Category.name_unique` unique (name) ) collate = utf8mb4_unicode_ci; create table Event ( id int auto_increment primary key, name varchar(191) not null, location varchar(191) null, startTime datetime(3) not null, endTime datetime(3) not null ) collate = utf8mb4_unicode_ci; create table `Group` ( id int auto_increment primary key, primaryImageId int null, name varchar(191) not null, constraint `Group.name_unique` unique (name) ) collate = utf8mb4_unicode_ci; create index primaryImageId on `Group` (primaryImageId); create table Location ( id int auto_increment primary key, name varchar(191) not null, constraint `Location.name_unique` unique (name) ) collate = utf8mb4_unicode_ci; create table PriceGroup ( id int auto_increment primary key, name varchar(191) not null, regularName varchar(191) null, specialName varchar(191) null, priceTypeName varchar(191) null, canPostSpecial tinyint(1) default 0 not null, constraint `PriceGroup.name_unique` unique (name) ) collate = utf8mb4_unicode_ci; create table Image ( id int auto_increment primary key, name varchar(191) not null, description text null, width int not null, height int not null, exposure decimal(65, 30) null, focalLength int null, aperture decimal(65, 30) null, iso int null, cameraModel varchar(191) null, timeTaken datetime(3) null, locationId int null, priceGroupId int null, groupId int null, constraint `Image.name_unique` unique (name), constraint Image_ibfk_1 foreign key (locationId) references Location (id) on update cascade on delete set null, constraint Image_ibfk_2 foreign key (priceGroupId) references PriceGroup (id) on update cascade on delete set null, constraint Image_ibfk_3 foreign key (groupId) references `Group` (id) on update cascade on delete set null ) collate = utf8mb4_unicode_ci; alter table `Group` add constraint Group_ibfk_1 foreign key (primaryImageId) references Image (id) on update cascade on delete cascade; create index groupId on Image (groupId); create index locationId on Image (locationId); create index priceGroupId on Image (priceGroupId); create table Price ( id int auto_increment primary key, name varchar(191) not null, costRegular decimal(65, 30) not null, costSpecial decimal(65, 30) null, costPostage decimal(65, 30) null, priceGroupId int not null, constraint Price_ibfk_1 foreign key (priceGroupId) references PriceGroup (id) on update cascade on delete cascade ) collate = utf8mb4_unicode_ci; create index priceGroupId on Price (priceGroupId); create table Tag ( id int auto_increment primary key, name varchar(191) not null, constraint `Tag.name_unique` unique (name) ) collate = utf8mb4_unicode_ci; create table _CategoryToImage ( A int not null, B int not null, constraint _CategoryToImage_AB_unique unique (A, B), constraint _CategoryToImage_ibfk_1 foreign key (A) references Category (id) on update cascade on delete cascade, constraint _CategoryToImage_ibfk_2 foreign key (B) references Image (id) on update cascade on delete cascade ) collate = utf8mb4_unicode_ci; create index _CategoryToImage_B_index on _CategoryToImage (B); create table _ImageToTag ( A int not null, B int not null, constraint _ImageToTag_AB_unique unique (A, B), constraint _ImageToTag_ibfk_1 foreign key (A) references Image (id) on update cascade on delete cascade, constraint _ImageToTag_ibfk_2 foreign key (B) references Tag (id) on update cascade on delete cascade ) collate = utf8mb4_unicode_ci; create index _ImageToTag_B_index on _ImageToTag (B); create table _prisma_migrations ( id varchar(36) not null primary key, checksum varchar(64) not null, finished_at datetime(3) null, migration_name varchar(255) not null, logs text null, rolled_back_at datetime(3) null, started_at datetime(3) default current_timestamp(3) not null, applied_steps_count int unsigned default 0 not null ) collate = utf8mb4_unicode_ci; create table accounts ( id int auto_increment primary key, compound_id varchar(191) not null, user_id int not null, provider_type varchar(191) not null, provider_id varchar(191) not null, provider_account_id varchar(191) not null, refresh_token varchar(191) null, access_token varchar(191) null, access_token_expires datetime(3) null, created_at datetime(3) default current_timestamp(3) not null, updated_at datetime(3) default current_timestamp(3) not null, constraint `accounts.compound_id_unique` unique (compound_id) ) collate = utf8mb4_unicode_ci; create index providerAccountId on accounts (provider_account_id); create index providerId on accounts (provider_id); create index userId on accounts (user_id); create table sessions ( id int auto_increment primary key, user_id int not null, expires datetime(3) not null, session_token varchar(191) not null, access_token varchar(191) not null, created_at datetime(3) default current_timestamp(3) not null, updated_at datetime(3) default current_timestamp(3) not null, constraint `sessions.access_token_unique` unique (access_token), constraint `sessions.session_token_unique` unique (session_token) ) collate = utf8mb4_unicode_ci; create table users ( id int auto_increment primary key, name varchar(191) null, email varchar(191) null, email_verified datetime(3) null, image text null, created_at datetime(3) default current_timestamp(3) not null, updated_at datetime(3) default current_timestamp(3) not null, constraint `users.email_unique` unique (email) ) collate = utf8mb4_unicode_ci; create table verification_requests ( id int auto_increment primary key, identifier varchar(191) not null, token varchar(191) not null, expires datetime(3) not null, created_at datetime(3) default current_timestamp(3) not null, updated_at datetime(3) default current_timestamp(3) not null, constraint `verification_requests.token_unique` unique (token) ) collate = utf8mb4_unicode_ci;
<filename>ScriptsSQL/1.dbuser_creacion .sql CREATE USER 'usuario'@'localhost' IDENTIFIED BY 'usuario'; GRANT ALL PRIVILEGES ON * . * TO 'usuario'@'localhost'; GRANT ALL PRIVILEGES ON `BDUsuarios` . * TO 'usuario'@'localhost'; FLUSH PRIVILEGES;
<reponame>Jasata/utu-schooner<gh_stars>0 -- -- Course data for DTE20068-3002 (2021) -- PRAGMA foreign_keys=1; INSERT INTO course VALUES ( 'DTE20068-3002', 'DTE20068', 'Embedded Microprocessor Systems', '2021-10-25', '2021-12-20', '0-5/60', 'Exercise privilege is automatically earned once total of 355 points has been earned. Passing the course requires: - 60% of the total course points (600 points). - Attendance at VM Workshop (27.10.2021). - 60% score in the exam. - Component kit has been returned.' ); -- Exercises 6x (=500), Quizzes 7x 35 (=245), Exam 245, Tasks 10 INSERT INTO assignment VALUES ('T01', 'DTE20068-3002', 'GitHub Account Registration', NULL, 1, 1, '2021-10-30', NULL), ('T02', 'DTE20068-3002', 'VM Workshop', 'Component Kit distribution', 5, 5, '2021-10-27', NULL), ('E01', 'DTE20068-3002', 'Week 2 Exercise', 'Blink a LED', 40, NULL, '2021-11-07', NULL), ('E02', 'DTE20068-3002', 'Week 3 Exercise', 'Read ADC', 60, NULL, '2021-11-14', NULL), ('E03', 'DTE20068-3002', 'Week 4 Exercise', 'ISR & Timer', 80, NULL, '2021-11-21', NULL), ('E04', 'DTE20068-3002', 'Week 5 Exercise', 'Servo and PID', 100, NULL, '2021-11-28', NULL), ('E05', 'DTE20068-3002', 'Week 6 Exercise', 'FreeRTOS', 100, NULL, '2021-12-05', NULL), ('E06', 'DTE20068-3002', 'Week 7 Exercise', 'Run for the hills!', 120, NULL, '2021-12-12', NULL), ('Q01', 'DTE20068-3002', 'Week 1 Quizz', NULL, 35, NULL, '2021-10-31', NULL), ('Q02', 'DTE20068-3002', 'Week 2 Quizz', NULL, 35, NULL, '2021-11-07', NULL), ('Q03', 'DTE20068-3002', 'Week 3 Quizz', NULL, 35, NULL, '2021-11-14', NULL), ('Q04', 'DTE20068-3002', 'Week 4 Quizz', NULL, 35, NULL, '2021-11-21', NULL), ('Q05', 'DTE20068-3002', 'Week 5 Quizz', NULL, 35, NULL, '2021-11-28', NULL), ('Q06', 'DTE20068-3002', 'Week 6 Quizz', NULL, 35, NULL, '2021-12-05', NULL), ('Q07', 'DTE20068-3002', 'Week 7 Quizz', NULL, 35, NULL, '2021-12-12', NULL), ('T03', 'DTE20068-3002', 'Component kit return', NULL, 5, 5, '2021-12-12', NULL), ('EXM', 'DTE20068-3002', 'Exam', 'exam.utu.fi exam, based on weekly quizzes', 245, 147, '2021-12-12', NULL);
SELECT s.FirstName, s.LastName, COUNT(TeacherId) AS TeachersCount FROM STUDENTS AS s INNER JOIN StudentsTeachers AS st ON st.StudentId = s.Id GROUP BY FirstName, LastName ORDER BY LastName
<gh_stars>0 create table frac_schedule ( id int identity, api14 varchar(14) not null, api10 varchar(10), operator varchar(100), operator_alias varchar(50), wellname varchar(100), fracstartdate date, fracenddate date, tvd int, shllat float, shllon float, bhllat float, bhllon float, days_to_fracstartdate as datediff(day,getdate(),[fracstartdate]), days_to_fracenddate as datediff(day,getdate(),[fracenddate]), status as case when datediff(day,getdate(),[fracstartdate])>0 then 'Planned' when datediff(day,getdate(),[fracenddate])>=0 then 'In-Progress' when datediff(day,getdate(),[fracenddate])>(-30) then 'Completed in Last 30 Days' when datediff(day,getdate(),[fracenddate])>(-60) then 'Completed in Last 60 Days' when datediff(day,getdate(),[fracenddate])>(-90) then 'Completed in Last 90 Days' when datediff(day,getdate(),[fracenddate])<=(-90) then 'Past Completion' end, updated datetime default getdate(), inserted datetime default getdate() not null, shl as case when [shllon] IS NOT NULL AND [shllat] IS NOT NULL then [GEOMETRY]::Point([shllon],[shllat],4326) end, bhl as case when [bhllon] IS NOT NULL AND [bhllat] IS NOT NULL then [GEOMETRY]::Point([bhllon],[bhllat],4326) end, stick as case when [shllon] IS NOT NULL AND [shllat] IS NOT NULL AND [bhllon] IS NOT NULL AND [bhllat] IS NOT NULL then [Geometry]::STGeomFromText(((((((('LINESTRING ('+CONVERT([varchar],[shllon]))+' ')+CONVERT([varchar],[shllat]))+', ')+CONVERT([varchar],[bhllon]))+' ')+CONVERT([varchar],[bhllat]))+')',4326) end ) go alter table frac_schedule add constraint pk_frac_schedules_api primary key (api14) go
CREATE PROCEDURE tSQLt.Fail @Message0 NVARCHAR(MAX) = '', @Message1 NVARCHAR(MAX) = '', @Message2 NVARCHAR(MAX) = '', @Message3 NVARCHAR(MAX) = '', @Message4 NVARCHAR(MAX) = '', @Message5 NVARCHAR(MAX) = '', @Message6 NVARCHAR(MAX) = '', @Message7 NVARCHAR(MAX) = '', @Message8 NVARCHAR(MAX) = '', @Message9 NVARCHAR(MAX) = '' AS BEGIN SET NOCOUNT ON; DECLARE @Command NVARCHAR(MAX) = 'tSQLt.Internal_Fail'; EXEC @Command @Message0 = @Message0, @Message1 = @Message1, @Message2 = @Message2, @Message3 = @Message3, @Message4 = @Message4, @Message5 = @Message5, @Message6 = @Message6, @Message7 = @Message7, @Message8 = @Message8, @Message9 = @Message9; END; GO
drop table if exists TB_ATTR_INFO; /*==============================================================*/ /* Table: TB_ATTR_INFO */ /*==============================================================*/ create table TB_ATTR_INFO ( ATTR_ID varchar(30) not null comment '附属物品编号', TRAILBOX_ID varchar(30) not null comment '尾箱编号', NAME varchar(200) not null comment '物品名称', VAIIA_COUNT varchar(10) not null comment '数量', START_NO varchar(50) comment '起始号码', END_NO varchar(50) comment '终止号码', USER_ID varchar(30) comment '登记柜员', BRANCH varchar(20) comment '机构代码 ', ASSIGN_DATE varchar(8) comment '登记日期', COMPANY varchar(20) comment '法人代码', NARRATIVE varchar(300) comment '备注', TRAN_TIMESTAMP varchar(17) comment '交易时间戳', TRAN_TIME Decimal(11,0) comment '交易时间', primary key (ATTR_ID) ); alter table TB_ATTR_INFO comment '尾箱附属物品登记表 undefined';
CREATE PROCEDURE [dbo].[uspDeleteTestConnection] -- Add the parameters for the stored procedure here @TestName nvarchar(10) AS BEGIN SET NOCOUNT ON; -- Insert statements for procedure here delete from TestConnection where testname = @TestName END
<reponame>mare-on/chat-bot -- -- <NAME> -- DELIMITER ;; DROP FUNCTION IF EXISTS LEVENSHTEIN;; CREATE FUNCTION LEVENSHTEIN(s1 VARCHAR(255) CHARACTER SET utf8, s2 VARCHAR(255) CHARACTER SET utf8) RETURNS INT BEGIN DECLARE cv0, cv1 VARBINARY(256) DEFAULT 0x00; DECLARE s1_char CHAR CHARACTER SET utf8; DECLARE s1_len INT DEFAULT LENGTH(s1); DECLARE s2_len INT DEFAULT LENGTH(s2); DECLARE i, j INT DEFAULT 1; DECLARE c INT DEFAULT 0; DECLARE temp, cost INT; IF (s1 = s2) THEN RETURN (0); ELSEIF (s1_len = 0) THEN RETURN (s2_len); ELSEIF (s2_len = 0) THEN RETURN (s1_len); END IF; WHILE (j <= s2_len) DO SET cv1 = CONCAT(cv1, CHAR(j)); SET j = j + 1; END WHILE; WHILE (i <= s1_len) DO SET s1_char = SUBSTR(s1, i, 1); SET cv0 = CHAR(i), j = 1, c = i; WHILE (j <= s2_len) DO SET c = c + 1; SET cost = IF(s1_char = SUBSTR(s2, j, 1), 0, 1); SET temp = ORD(SUBSTR(cv1, j, 1)) + cost; IF (c > temp) THEN SET c = temp; END IF; SET temp = ORD(SUBSTR(cv1, j + 1, 1)) + 1; IF (c > temp) THEN SET c = temp; END IF; SET cv0 = CONCAT(cv0, CHAR(c)), j = j + 1; END WHILE; SET cv1 = cv0, i = i + 1; END WHILE; RETURN c; END;;
<reponame>jorgemhtdev/rogerthat-ios-client<filename>MCResources/Assets/db/update_51_to_52.sql ALTER TABLE friend ADD COLUMN organization_type INTEGER DEFAULT 0;
<filename>data/cql_scripts/create-timeseries.cql /* Schema for storing raw ISD-lite hourly weather data. More can be read about these weather sets here: http://www.ncdc.noaa.gov/oa/climate/isd/ */ DROP KEYSPACE IF EXISTS isd_weather_data; CREATE KEYSPACE isd_weather_data WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 }; use isd_weather_data; /* Weather stations that correspond with collected raw weather data. */ CREATE TABLE weather_station ( id text PRIMARY KEY, // Composite of Air Force Datsav3 station number and NCDC WBAN number name text, // Name of reporting station country_code text, // 2 letter ISO Country ID state_code text, // 2 letter state code for US stations call_sign text, // International station call sign lat double, // Latitude in decimal degrees long double, // Longitude in decimal degrees elevation double // Elevation in meters ); /* Raw weather readings from a single station, hourly. sky_condition_text text, // Non-coded sky conditions */ CREATE TABLE raw_weather_data ( wsid text, // Composite of Air Force Datsav3 station number and NCDC WBAN number year int, // Year collected month int, // Month collected day int, // Day collected hour int, // Hour collected temperature double, // Air temperature (degrees Celsius) dewpoint double, // Dew point temperature (degrees Celsius) pressure double, // Sea level pressure (hectopascals) wind_direction int, // Wind direction in degrees. 0-359 wind_speed double, // Wind speed (meters per second) sky_condition int, // Total cloud cover (coded, see format documentation) sky_condition_text text, // Non-coded sky conditions one_hour_precip double, // One-hour accumulated liquid precipitation (millimeters) six_hour_precip double, // Six-hour accumulated liquid precipitation (millimeters) PRIMARY KEY ((wsid), year, month, day, hour) ) WITH CLUSTERING ORDER BY (year DESC, month DESC, day DESC, hour DESC); /* Quick access lookup table for sky_condition. Useful for potential analytics. Just in case you want to know what an okta is, here is the wikipedia page: http://en.wikipedia.org/wiki/Okta */ CREATE TABLE sky_condition_lookup ( code int PRIMARY KEY, condition text ); CREATE TABLE daily_aggregate_temperature ( wsid text, year int, month int, day int, high double, low double, mean double, variance double, stdev double, PRIMARY KEY ((wsid), year, month, day) ) WITH CLUSTERING ORDER BY (year DESC, month DESC, day DESC); CREATE TABLE monthly_aggregate_temperature ( wsid text, year int, month int, high double, low double, PRIMARY KEY ((wsid), year, month) ) WITH CLUSTERING ORDER BY (year DESC, month DESC); /* Sum of all one_hour_precip for one day and one weather station */ CREATE TABLE daily_aggregate_precip ( wsid text, year int, month int, day int, precipitation counter, PRIMARY KEY ((wsid), year, month, day) ) WITH CLUSTERING ORDER BY (year DESC, month DESC, day DESC); CREATE TABLE year_cumulative_precip ( wsid text, year int, precipitation double, PRIMARY KEY ((wsid), year) ) WITH CLUSTERING ORDER BY (year DESC);
<reponame>egarzaswat/imcoolwithit.com CREATE TABLE IF NOT EXISTS `#__jshopping_categories` ( `category_id` int(11) NOT NULL auto_increment, `category_image` varchar(255), `category_parent_id` int(11) NOT NULL, `category_publish` tinyint(1) unsigned NOT NULL default '1', `category_ordertype` tinyint(1) unsigned NOT NULL default '1', `category_template` varchar(64), `ordering` int(3) NOT NULL, `category_add_date` datetime, `products_page` int(8) NOT NULL default '12', `products_row` int(3) NOT NULL default '3', `access` int(3) NOT NULL default '1', PRIMARY KEY (`category_id`), KEY `sort_add_date` (`category_add_date`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_countries` ( `country_id` int(11) NOT NULL auto_increment, `country_publish` tinyint(4) NOT NULL, `ordering` smallint(6) NOT NULL, `country_code` varchar(5) NOT NULL, `country_code_2` varchar(5) NOT NULL, `name_en-GB` varchar(255) NOT NULL, `name_de-DE` varchar(255) NOT NULL, PRIMARY KEY (`country_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_currencies` ( `currency_id` int(11) NOT NULL auto_increment, `currency_name` varchar(64) NOT NULL, `currency_code` varchar(20) NOT NULL, `currency_code_iso` VARCHAR(3) NOT NULL, `currency_code_num` VARCHAR(3) NOT NULL, `currency_ordering` int(11) NOT NULL, `currency_value` DECIMAL(14,6) NOT NULL, `currency_publish` tinyint(1) NOT NULL, PRIMARY KEY (`currency_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_delivery_times` ( `id` int(11) NOT NULL auto_increment, `days` DECIMAL(8,2) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products`( `product_id` int(11) NOT NULL auto_increment, `parent_id` int(11) NOT NULL, `product_ean` varchar(32) NOT NULL, `product_quantity` DECIMAL(12,2) NOT NULL, `unlimited` TINYINT(1) NOT NULL, `product_availability` varchar(1) NOT NULL, `product_date_added` datetime NOT NULL default '0000-00-00 00:00:00', `date_modify` datetime NOT NULL default '0000-00-00 00:00:00', `product_publish` tinyint(1) NOT NULL, `product_tax_id` tinyint(3) NOT NULL, `currency_id` int(4) NOT NULL, `product_template` varchar(64) NOT NULL default "default", `product_url` varchar(255) NOT NULL, `product_old_price` DECIMAL(14,4) NOT NULL, `product_buy_price` DECIMAL(14,4) NOT NULL, `product_price` DECIMAL(18,6) NOT NULL, `min_price` DECIMAL(12,2) NOT NULL, `different_prices` TINYINT(1) NOT NULL, `product_weight` DECIMAL(14,4) NOT NULL, `image` varchar(255) NOT NULL, `product_manufacturer_id` int(11) NOT NULL, `product_is_add_price` TINYINT(1) NOT NULL, `add_price_unit_id` int(3) NOT NULL, `average_rating` float(4,2) NOT NULL, `reviews_count` int(11) NOT NULL, `delivery_times_id` int(4) NOT NULL, `hits` int(11) NOT NULL, `weight_volume_units` DECIMAL(14,4) NOT NULL, `basic_price_unit_id` int(3) NOT NULL, `label_id` int(11) NOT NULL, `vendor_id` int(11) NOT NULL, `access` int(3) NOT NULL default '1', PRIMARY KEY (`product_id`), KEY `product_manufacturer_id` (`product_manufacturer_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_images` ( `image_id` int(11) NOT NULL auto_increment, `product_id` int(11) NOT NULL, `image_name` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `ordering` TINYINT(4) NOT NULL, PRIMARY KEY (`image_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_prices` ( `price_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `product_id` INT NOT NULL, `discount` DECIMAL(16,6) NOT NULL, `product_quantity_start` INT NOT NULL, `product_quantity_finish` INT NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_relations` ( `id` int(11) NOT NULL auto_increment PRIMARY KEY, `product_id` int(11) NOT NULL, `product_related_id` int(11) NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_to_categories` ( `product_id` int(11) NOT NULL, `category_id` int(11) NOT NULL, `product_ordering` int(11) NOT NULL, PRIMARY KEY (`product_id`,`category_id`), KEY `category_id` (`category_id`), KEY `product_id` (`product_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_videos` ( `video_id` int(11) NOT NULL auto_increment, `product_id` int(11) NOT NULL, `video_name` varchar(255) NOT NULL, `video_code` text NOT NULL, `video_preview` VARCHAR( 255 ) NOT NULL, PRIMARY KEY (`video_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_reviews` ( `review_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `product_id` INT NOT NULL, `user_id` INT NOT NULL, `user_name` VARCHAR( 255 ) NOT NULL, `user_email` VARCHAR( 255 ) NOT NULL, `time` DATETIME NOT NULL, `review` TEXT NOT NULL, `mark` INT NOT NULL, `publish` TINYINT(1) NOT NULL, `ip` VARCHAR(20) NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_files` ( `id` int(11) NOT NULL auto_increment, `product_id` int(11) NOT NULL, `demo` varchar(255) NOT NULL, `demo_descr` varchar(255) NOT NULL, `file` varchar(255) NOT NULL, `file_descr` varchar(255) NOT NULL, `ordering` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `product_id` (`product_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_taxes` ( `tax_id` int(11) NOT NULL auto_increment, `tax_name` varchar(50) NOT NULL, `tax_value` DECIMAL(12,2) NOT NULL, PRIMARY KEY (`tax_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_config` ( `id` int(11) NOT NULL auto_increment, `count_products_to_page` int(4) NOT NULL, `count_products_to_row` int(2) NOT NULL, `count_category_to_row` int(2) NOT NULL, `image_category_width` int(4) NOT NULL, `image_category_height` int(4) NOT NULL, `image_product_width` int(4) NOT NULL, `image_product_height` int(4) NOT NULL, `image_product_full_width` int(4) NOT NULL, `image_product_full_height` int(4) NOT NULL, `image_product_original_width` int(4) NOT NULL, `image_product_original_height` int(4) NOT NULL, `video_product_width` int(4) NOT NULL, `video_product_height` int(4) NOT NULL, `adminLanguage` varchar(8) NOT NULL, `defaultLanguage` varchar(8) NOT NULL, `mainCurrency` int(4) NOT NULL, `decimal_count` TINYINT( 1 ) NOT NULL , `decimal_symbol` VARCHAR( 5 ) NOT NULL , `thousand_separator` VARCHAR( 5 ) NOT NULL , `currency_format` TINYINT( 1 ) NOT NULL, `use_rabatt_code` TINYINT( 1 ) NOT NULL, `enable_wishlist` TINYINT( 1 ) NOT NULL, `default_status_order` TINYINT( 1 ) NOT NULL, `store_address_format` VARCHAR(32) NOT NULL, `store_date_format` VARCHAR(32) NOT NULL, `contact_email` VARCHAR(128) NOT NULL, `allow_reviews_prod` TINYINT( 1 ) NOT NULL , `allow_reviews_only_registered` TINYINT( 1 ) NOT NULL, `allow_reviews_manuf` TINYINT( 1 ) NOT NULL, `max_mark` INT NOT NULL, `summ_null_shipping` DECIMAL(12,2) NOT NULL, `without_shipping` TINYINT( 1 ) NOT NULL, `without_payment` TINYINT( 1 ) NOT NULL, `pdf_parameters` VARCHAR(32) NOT NULL, `next_order_number` int(11) NOT NULL default '1', `shop_user_guest` TINYINT( 1 ) NOT NULL, `hide_product_not_avaible_stock` TINYINT( 1 ) NOT NULL, `show_buy_in_category` TINYINT( 1 ) NOT NULL, `user_as_catalog` TINYINT( 1 ) NOT NULL, `show_tax_in_product` TINYINT( 1 ) NOT NULL, `show_tax_product_in_cart` TINYINT( 1 ) NOT NULL, `show_plus_shipping_in_product` TINYINT( 1 ) NOT NULL, `hide_buy_not_avaible_stock` TINYINT( 1 ) NOT NULL, `show_sort_product` TINYINT( 1 ) NOT NULL, `show_count_select_products` TINYINT( 1 ) NOT NULL, `order_send_pdf_client` TINYINT( 1 ) NOT NULL, `order_send_pdf_admin` TINYINT( 1 ) NOT NULL, `show_delivery_time` TINYINT( 1 ) NOT NULL, `securitykey` VARCHAR( 128 ) NOT NULL, `demo_type` TINYINT( 1 ) NOT NULL, `product_show_manufacturer_logo` TINYINT( 1 ) NOT NULL, `product_show_manufacturer` TINYINT( 1 ) NOT NULL, `product_show_weight` TINYINT( 1 ) NOT NULL, `max_count_order_one_product` int(11) NOT NULL, `min_count_order_one_product` int(11) NOT NULL, `min_price_order` int(11) NOT NULL, `max_price_order` int(11) NOT NULL, `hide_tax` TINYINT(1) NOT NULL, `licensekod` text NOT NULL, `product_attribut_first_value_empty` TINYINT(1) NOT NULL, `show_hits` TINYINT(1) NOT NULL, `show_registerform_in_logintemplate` TINYINT(1) NOT NULL, `admin_show_product_basic_price` TINYINT(1) NOT NULL, `admin_show_attributes` TINYINT(1) NOT NULL, `admin_show_delivery_time` TINYINT(1) NOT NULL, `admin_show_languages` TINYINT(1) NOT NULL, `use_different_templates_cat_prod` TINYINT(1) NOT NULL, `admin_show_product_video` TINYINT(1) NOT NULL, `admin_show_product_related` TINYINT(1) NOT NULL, `admin_show_product_files` TINYINT(1) NOT NULL, `admin_show_product_bay_price` TINYINT(1) NOT NULL, `admin_show_product_labels` TINYINT(1) NOT NULL, `sorting_country_in_alphabet` TINYINT(1) NOT NULL, `hide_text_product_not_available` TINYINT(1) NOT NULL, `show_weight_order` TINYINT(1) NOT NULL, `discount_use_full_sum` TINYINT(1) NOT NULL, `show_cart_all_step_checkout` TINYINT(1) NOT NULL, `use_plugin_content` TINYINT(1) NOT NULL, `display_price_admin` TINYINT(1) NOT NULL, `display_price_front` TINYINT(1) NOT NULL, `product_list_show_weight` TINYINT(1) NOT NULL, `product_list_show_manufacturer` TINYINT(1) NOT NULL, `use_extend_tax_rule` TINYINT(4) NOT NULL, `use_extend_display_price_rule` TINYINT(4) NOT NULL, `fields_register` text NOT NULL, `template` VARCHAR(128) NOT NULL, `show_product_code` TINYINT(1) NOT NULL, `show_product_code_in_cart` TINYINT(1) NOT NULL, `savelog` TINYINT(1) NOT NULL, `savelogpaymentdata` TINYINT(1) NOT NULL, `product_list_show_min_price` TINYINT(1) NOT NULL, `product_count_related_in_row` TINYINT(4) NOT NULL, `category_sorting` TINYINT(1) NOT NULL default '1', `product_sorting` TINYINT(1) NOT NULL default '1', `product_sorting_direction` TINYINT(1) NOT NULL, `show_product_list_filters` TINYINT(1) NOT NULL, `admin_show_product_extra_field` TINYINT(1) NOT NULL, `product_list_display_extra_fields` TEXT NOT NULL, `filter_display_extra_fields` TEXT NOT NULL, `product_hide_extra_fields` TEXT NOT NULL, `cart_display_extra_fields` TEXT NOT NULL, `default_country` int(11) NOT NULL, `show_return_policy_in_email_order` TINYINT(1) NOT NULL, `client_allow_cancel_order` TINYINT(1) NOT NULL, `admin_show_vendors` TINYINT(1) NOT NULL, `vendor_order_message_type` TINYINT(1) NOT NULL, `admin_not_send_email_order_vendor_order` TINYINT(1) NOT NULL, `not_redirect_in_cart_after_buy` TINYINT(1) NOT NULL, `product_show_vendor` TINYINT(1) NOT NULL, `product_show_vendor_detail` TINYINT(1) NOT NULL, `product_list_show_vendor` TINYINT(1) NOT NULL, `admin_show_freeattributes` TINYINT(1) NOT NULL, `product_show_button_back` TINYINT(1) NOT NULL, `calcule_tax_after_discount` TINYINT(1) NOT NULL, `product_list_show_product_code` TINYINT(1) NOT NULL, `radio_attr_value_vertical` TINYINT(1) NOT NULL, `attr_display_addprice` TINYINT(1) NOT NULL, `use_ssl` TINYINT(1) NOT NULL, `product_list_show_price_description` TINYINT(1) NOT NULL, `display_button_print` TINYINT(1) NOT NULL, `hide_shipping_step` TINYINT(1) NOT NULL, `hide_payment_step` TINYINT(1) NOT NULL, `image_resize_type` TINYINT(1) NOT NULL, `use_extend_attribute_data` TINYINT(1) NOT NULL, `product_list_show_price_default` TINYINT(1) NOT NULL, `product_list_show_qty_stock` TINYINT(1) NOT NULL, `product_show_qty_stock` TINYINT(1) NOT NULL, `displayprice` TINYINT(1) NOT NULL, `use_decimal_qty` TINYINT(1) NOT NULL, `ext_tax_rule_for` TINYINT(1) NOT NULL, `display_reviews_without_confirm` TINYINT(1) NOT NULL, `manufacturer_sorting` TINYINT(1) NOT NULL, `admin_show_units` TINYINT(1) NOT NULL, `main_unit_weight` TINYINT(3) NOT NULL, `create_alias_product_category_auto` TINYINT(1) NOT NULL, `delivery_order_depends_delivery_product` TINYINT(1) NOT NULL, `show_delivery_time_step5` TINYINT(1) NOT NULL, `other_config` TEXT NOT NULL, `shop_mode` TINYINT(1) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_manufacturers` ( `manufacturer_id` INT NOT NULL auto_increment, `manufacturer_url` VARCHAR( 255 ) NOT NULL , `manufacturer_logo` VARCHAR( 255 ) NOT NULL , `manufacturer_publish` TINYINT(1) NOT NULL, `products_page` int(11) NOT NULL, `products_row` int(11) NOT NULL, `ordering` int(6) NOT NULL, PRIMARY KEY (`manufacturer_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_coupons` ( `coupon_id` int(11) NOT NULL auto_increment, `coupon_type` tinyint(4) NOT NULL COMMENT 'value_or_percent', `coupon_code` varchar(100) NOT NULL, `coupon_value` DECIMAL(12,2) NOT NULL default '0.00', `tax_id` int(11) NOT NULL, `used` int(11) NOT NULL, `for_user_id` int(11) NOT NULL, `coupon_start_date` date NOT NULL default '0000-00-00', `coupon_expire_date` date NOT NULL default '0000-00-00', `finished_after_used` int(11) NOT NULL, `coupon_publish` tinyint(4) NOT NULL, PRIMARY KEY (`coupon_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_users` ( `user_id` INT NOT NULL , `usergroup_id` INT NOT NULL, `payment_id` INT NOT NULL, `shipping_id` INT NOT NULL, `u_name` VARCHAR(150) NOT NULL, `number` VARCHAR(32) NOT NULL, `title` tinyint(1) NOT NULL, `f_name` VARCHAR( 255 ) NOT NULL, `l_name` VARCHAR( 255 ) NOT NULL, `m_name` VARCHAR( 255 ) NOT NULL, `firma_name` VARCHAR( 100 ) NOT NULL, `client_type` tinyint(1) NOT NULL, `firma_code` VARCHAR( 100 ) NOT NULL, `tax_number` VARCHAR( 100 ) NOT NULL, `email` VARCHAR( 255 ) NOT NULL, `birthday` DATE NOT NULL, `street` VARCHAR( 255 ) NOT NULL, `street_nr` VARCHAR( 16 ) NOT NULL, `home` VARCHAR( 20 ) NOT NULL, `apartment` VARCHAR( 20 ) NOT NULL, `zip` VARCHAR( 20 ) NOT NULL, `city` VARCHAR( 100 ) NOT NULL, `state` VARCHAR( 100 ) NOT NULL, `country` int(11) default NULL, `phone` VARCHAR( 20 ) NOT NULL, `mobil_phone` VARCHAR( 20 ) NOT NULL, `fax` VARCHAR( 20 ) NOT NULL, `ext_field_1` VARCHAR(255) NOT NULL, `ext_field_2` VARCHAR(255) NOT NULL, `ext_field_3` VARCHAR(255) NOT NULL, `delivery_adress` TINYINT ( 1 ) NOT NULL, `d_title` tinyint(1) NOT NULL, `d_f_name` VARCHAR(255) NOT NULL, `d_l_name` VARCHAR(255) NOT NULL, `d_m_name` VARCHAR(255) NOT NULL, `d_firma_name` VARCHAR(100) NOT NULL, `d_email` VARCHAR(255) NOT NULL, `d_birthday` DATE NOT NULL, `d_street` VARCHAR(255) NOT NULL, `d_street_nr` VARCHAR(16) NOT NULL, `d_home` VARCHAR(20) NOT NULL, `d_apartment` VARCHAR(20) NOT NULL, `d_zip` VARCHAR(20) NOT NULL, `d_city` VARCHAR(100) NOT NULL, `d_state` VARCHAR(100) NOT NULL, `d_country` int(11) NOT NULL, `d_phone` VARCHAR(20) NOT NULL, `d_mobil_phone` VARCHAR(20) NOT NULL, `d_fax` VARCHAR(20) NOT NULL, `d_ext_field_1` VARCHAR(255) NOT NULL, `d_ext_field_2` VARCHAR(255) NOT NULL, `d_ext_field_3` VARCHAR(255) NOT NULL, `lang` VARCHAR(5) NOT NULL, UNIQUE KEY `user_id` (`user_id`), KEY `u_name` (`u_name`), KEY `usergroup_id` (`usergroup_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_payment_method` ( `payment_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `payment_code` VARCHAR(32) NOT NULL , `payment_class` VARCHAR(100) NOT NULL, `scriptname` VARCHAR(100) NOT NULL, `payment_publish` TINYINT(1) NOT NULL, `payment_ordering` INT NOT NULL, `payment_params` TEXT NOT NULL, `payment_type` TINYINT(4) NOT NULL, `price` DECIMAL(12,2) NOT NULL, `price_type` TINYINT(1) NOT NULL, `tax_id` int(11) NOT NULL, `image` VARCHAR(255) NOT NULL, `show_descr_in_email` TINYINT(1) NOT NULL, `show_bank_in_order` TINYINT(1) NOT NULL DEFAULT '1', `order_description` TEXT NOT NULL, `name_en-GB` VARCHAR(100) NOT NULL, `description_en-GB` TEXT NOT NULL, `name_de-DE` VARCHAR(100) NOT NULL, `description_de-DE` TEXT NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_usergroups` ( `usergroup_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `usergroup_name` VARCHAR( 64 ) NOT NULL , `usergroup_discount` DECIMAL(12,2) NOT NULL, `usergroup_description` TEXT NOT NULL , `usergroup_is_default` TINYINT(1) NOT NULL, `name_en-GB` varchar(255) NOT NULL, `name_de-DE` varchar(255) NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_shipping_method` ( `shipping_id` int(11) NOT NULL auto_increment, `alias` varchar(100) NOT NULL, `name_en-GB` varchar(100) NOT NULL, `description_en-GB` text NOT NULL, `name_de-DE` varchar(100) NOT NULL, `description_de-DE` text NOT NULL, `published` tinyint(1) NOT NULL, `payments` varchar(255) NOT NULL, `image` VARCHAR(255) NOT NULL, `ordering` int(6) NOT NULL, `params` LONGTEXT NOT NULL, PRIMARY KEY (`shipping_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_shipping_ext_calc`( `id` int(11) NOT NULL auto_increment, `name` varchar(100) NOT NULL, `alias` varchar(100) NOT NULL, `description` text NOT NULL, `params` LONGTEXT NOT NULL, `shipping_method` text NOT NULL, `published` tinyint(1) NOT NULL, `ordering` int(6) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_shipping_method_price` ( `sh_pr_method_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `shipping_method_id` INT NOT NULL, `shipping_tax_id` int(11) NOT NULL, `shipping_stand_price` DECIMAL(14,4) NOT NULL, `package_tax_id` int(11) NOT NULL, `package_stand_price` DECIMAL(14,4) NOT NULL, `delivery_times_id` int(11) NOT NULL, `params` LONGTEXT NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_shipping_method_price_weight` ( `sh_pr_weight_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `sh_pr_method_id` INT NOT NULL , `shipping_price` DECIMAL(12,2) NOT NULL , `shipping_weight_from` DECIMAL(14,4) NOT NULL , `shipping_weight_to` DECIMAL(14,4) NOT NULL , `shipping_package_price` DECIMAL(14,4) NOT NULL , INDEX ( `sh_pr_method_id` ) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_shipping_method_price_countries` ( `sh_method_country_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `country_id` INT NOT NULL , `sh_pr_method_id` INT NOT NULL , INDEX ( `country_id`) , INDEX( `sh_pr_method_id` ) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_order_history` ( `order_history_id` int(11) NOT NULL auto_increment, `order_id` int(11) NOT NULL, `order_status_id` tinyint(1) NOT NULL, `status_date_added` datetime NOT NULL, `customer_notify` int(1), `comments` text, PRIMARY KEY (`order_history_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_order_item`( `order_item_id` int(11) NOT NULL auto_increment, `order_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `product_ean` varchar(50) NOT NULL, `product_name` varchar(100) NOT NULL, `product_quantity` DECIMAL(12,2) NOT NULL, `product_item_price` DECIMAL(14,4) NOT NULL, `product_tax` DECIMAL(14,4) NOT NULL, `product_attributes` text NOT NULL, `product_freeattributes` text NOT NULL, `attributes` text NOT NULL, `freeattributes` text NOT NULL, `extra_fields` TEXT NOT NULL, `files` text NOT NULL, `weight` DECIMAL(14,4) NOT NULL, `thumb_image` varchar(255) NOT NULL, `manufacturer` varchar(255) NOT NULL, `delivery_times_id` int(4) NOT NULL, `vendor_id` int(11) NOT NULL, `basicprice` DECIMAL(12,2) NOT NULL, `basicpriceunit` varchar(255) NOT NULL, `params` text NOT NULL, PRIMARY KEY (`order_item_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_order_status` ( `status_id` int(11) NOT NULL auto_increment, `status_code` char(1) NOT NULL, `name_en-GB` varchar(100) NOT NULL, `name_de-DE` varchar(100) NOT NULL, PRIMARY KEY (`status_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_orders`( `order_id` int(11) NOT NULL auto_increment, `order_number` VARCHAR(50) NOT NULL, `user_id` int(11) NOT NULL, `order_total` DECIMAL(14,4) NOT NULL, `order_subtotal` DECIMAL(14,4) NOT NULL, `order_tax` DECIMAL(14,4) NOT NULL, `order_tax_ext` text NOT NULL, `order_shipping` DECIMAL(14,4) NOT NULL, `order_payment` DECIMAL(14,4) NOT NULL, `order_discount` DECIMAL(14,4) NOT NULL, `shipping_tax` DECIMAL(12,4) NOT NULL, `shipping_tax_ext` text NOT NULL, `payment_tax` DECIMAL(12,4) NOT NULL, `payment_tax_ext` text NOT NULL, `order_package` DECIMAL(12,2) NOT NULL, `package_tax_ext` text NOT NULL, `currency_code` VARCHAR( 20 ) NOT NULL, `currency_code_iso` VARCHAR( 3 ) NOT NULL, `currency_exchange` DECIMAL(14,6) NOT NULL, `order_status` tinyint(4) NOT NULL, `order_created` tinyint(1) NOT NULL, `order_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', `invoice_date` DATETIME NOT NULL, `order_m_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', `shipping_method_id` int(11) NOT NULL, `delivery_times_id` int(11) NOT NULL, `payment_method_id` int(11) NOT NULL, `payment_params` text NOT NULL, `payment_params_data` text NOT NULL, `shipping_params` text NOT NULL, `shipping_params_data` text NOT NULL, `delivery_time` VARCHAR(100) NOT NULL, `delivery_date` DATETIME NOT NULL, `coupon_id` int(11) NOT NULL, `ip_address` varchar(15) NOT NULL, `order_add_info` text NOT NULL, `title` tinyint(1) NOT NULL , `f_name` varchar(255) NOT NULL, `l_name` varchar(255) NOT NULL, `m_name` varchar(255) NOT NULL, `firma_name` varchar(255) NOT NULL, `client_type` tinyint(1) NOT NULL, `client_type_name` VARCHAR(100) NOT NULL, `firma_code` VARCHAR( 100 ) NOT NULL, `tax_number` VARCHAR( 100 ) NOT NULL, `email` varchar(255) NOT NULL , `birthday` DATE NOT NULL, `street` varchar(100) NOT NULL, `street_nr` varchar(16) NOT NULL, `home` VARCHAR( 20 ) NOT NULL, `apartment` VARCHAR( 20 ) NOT NULL, `zip` varchar(20) NOT NULL, `city` varchar(100) NOT NULL, `state` varchar(100) NOT NULL, `country` int(11) NOT NULL, `phone` varchar(20) NOT NULL, `mobil_phone` VARCHAR( 20 ) NOT NULL, `fax` varchar(20) NOT NULL, `ext_field_1` VARCHAR(255) NOT NULL, `ext_field_2` VARCHAR(255) NOT NULL, `ext_field_3` VARCHAR(255) NOT NULL, `d_title` tinyint(1) NOT NULL, `d_f_name` varchar(255) NOT NULL, `d_l_name` varchar(255) NOT NULL, `d_m_name` varchar(255) NOT NULL, `d_firma_name` varchar(255) NOT NULL, `d_email` varchar(255) NOT NULL, `d_birthday` DATE NOT NULL, `d_street` varchar(100) NOT NULL, `d_street_nr` varchar(16) NOT NULL, `d_home` VARCHAR( 20 ) NOT NULL, `d_apartment` VARCHAR( 20 ) NOT NULL, `d_zip` varchar(20) NOT NULL, `d_city` varchar(100) NOT NULL, `d_state` varchar(100) NOT NULL, `d_country` int(11) NOT NULL, `d_phone` varchar(30) NOT NULL, `d_mobil_phone` VARCHAR( 20 ) NOT NULL, `d_fax` varchar(20) NOT NULL, `d_ext_field_1` VARCHAR(255) NOT NULL, `d_ext_field_2` VARCHAR(255) NOT NULL, `d_ext_field_3` VARCHAR(255) NOT NULL, `pdf_file` VARCHAR( 50 ) NOT NULL, `order_hash` varchar(32) NOT NULL, `file_hash` varchar(64) NOT NULL, `file_stat_downloads` text NOT NULL, `order_custom_info` text NOT NULL, `display_price` tinyint(1) NOT NULL, `vendor_type` tinyint(1) NOT NULL, `vendor_id` int(11) NOT NULL, `lang` varchar(16) NOT NULL, `transaction` TEXT NOT NULL, `product_stock_removed` tinyint(1) NOT NULL, PRIMARY KEY (`order_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_attr` ( `attr_id` int(11) NOT NULL auto_increment, `attr_ordering` int(11) NOT NULL, `attr_type` TINYINT( 1 ) NOT NULL, `independent` TINYINT( 1 ) NOT NULL, `allcats` tinyint(1) NOT NULL default '1', `cats` text NOT NULL, `group` tinyint(4) NOT NULL, PRIMARY KEY (`attr_id`), KEY `group` (`group`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_attr_values` ( `value_id` int(11) NOT NULL auto_increment, `attr_id` int(11) NOT NULL, `value_ordering` int(11) NOT NULL, `image` VARCHAR( 255 ) NOT NULL, PRIMARY KEY (`value_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_attr_groups`( `id` int(11) NOT NULL AUTO_INCREMENT, `ordering` int(6) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_attr` ( `product_attr_id` int(11) NOT NULL auto_increment, `product_id` int(11) NOT NULL, `buy_price` DECIMAL(12,2) NOT NULL, `price` DECIMAL(14,4) NOT NULL, `old_price` DECIMAL(14,4) NOT NULL, `count` DECIMAL(14,4) NOT NULL, `ean` varchar(100) NOT NULL, `weight` DECIMAL(12,4) NOT NULL, `weight_volume_units` DECIMAL(14,4) NOT NULL, `ext_attribute_product_id` int(11) NOT NULL, PRIMARY KEY (`product_attr_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_attr2`( `id` int(11) NOT NULL auto_increment, `product_id` int(11) NOT NULL, `attr_id` int(11) NOT NULL, `attr_value_id` int(11) NOT NULL, `price_mod` char(1) NOT NULL, `addprice` decimal(14,4) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_cart_temp` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `id_cookie` VARCHAR( 255 ) NOT NULL , `cart` TEXT NOT NULL, `type_cart` varchar(32) NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_languages` ( `id` int(11) NOT NULL auto_increment, `language` varchar(32) default NULL, `name` varchar(255) NOT NULL, `publish` int(11) NOT NULL, `ordering` int(11) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_import_export` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `alias` varchar(255) NOT NULL, `description` text NOT NULL, `params` text NOT NULL, `endstart` int(11) NOT NULL, `steptime` int(11) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_unit` ( `id` int(11) NOT NULL auto_increment, `qty` int(11) NOT NULL default 1, `name_de-DE` varchar(255) NOT NULL, `name_en-GB` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_product_labels` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `name_en-GB` VARCHAR(255) NOT NULL, `name_de-DE` VARCHAR(255) NOT NULL, `image` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_taxes_ext` ( `id` int(11) NOT NULL auto_increment, `tax_id` int(11) NOT NULL, `zones` text NOT NULL, `tax` DECIMAL(12,2) NOT NULL, `firma_tax` DECIMAL(12,2) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_config_display_prices` ( `id` int(11) NOT NULL auto_increment, `zones` text NOT NULL, `display_price` tinyint(1) NOT NULL, `display_price_firma` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_extra_fields` ( `id` int(11) NOT NULL auto_increment, `allcats` tinyint(1) NOT NULL, `cats` text NOT NULL, `type` TINYINT(1) NOT NULL, `multilist` tinyint(1) NOT NULL, `group` TINYINT(4) NOT NULL, `ordering` int(6) NOT NULL, PRIMARY KEY (`id`), KEY `group` (`group`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_extra_field_values` ( `id` int(11) NOT NULL auto_increment, `field_id` int(11) NOT NULL, `ordering` int(6) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_extra_field_groups` ( `id` int(11) NOT NULL auto_increment, `ordering` int(6) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_vendors`( `id` int(11) NOT NULL auto_increment, `shop_name` varchar(255) NOT NULL, `company_name` varchar(255) NOT NULL, `url` varchar(255) NOT NULL, `logo` varchar(255) NOT NULL, `adress` varchar(255) NOT NULL, `city` varchar(100) NOT NULL, `zip` varchar(20) NOT NULL, `state` varchar(100) NOT NULL, `country` int(11) NOT NULL, `f_name` varchar(255) NOT NULL, `l_name` varchar(255) NOT NULL, `middlename` varchar(255) NOT NULL, `phone` varchar(20) NOT NULL, `fax` varchar(20) NOT NULL, `email` varchar(255) NOT NULL, `benef_bank_info` varchar(64) NOT NULL, `benef_bic` varchar(64) NOT NULL, `benef_conto` varchar(64) NOT NULL, `benef_payee` varchar(64) NOT NULL, `benef_iban` varchar(64) NOT NULL, `benef_bic_bic` varchar(64) NOT NULL, `benef_swift` varchar(64) NOT NULL, `interm_name` varchar(64) NOT NULL, `interm_swift` varchar(64) NOT NULL, `identification_number` varchar(64) NOT NULL, `tax_number` varchar(64) NOT NULL, `additional_information` text NOT NULL, `user_id` int(11) NOT NULL, `main` TINYINT(1) NOT NULL, `publish` TINYINT(1) NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_addons` ( `id` int(11) NOT NULL auto_increment, `alias` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `key` text NOT NULL, `usekey` tinyint(1) NOT NULL, `version` varchar(255) NOT NULL, `uninstall` varchar(255) NOT NULL, `params` longtext NOT NULL, PRIMARY KEY (`id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_free_attr` ( `id` INT NOT NULL AUTO_INCREMENT, `ordering` INT NOT NULL, `required` TINYINT(1) NOT NULL, `type` TINYINT(3) NOT NULL, PRIMARY KEY ( `id` ) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_free_attr` ( `id` INT NOT NULL AUTO_INCREMENT, `product_id` INT NOT NULL, `attr_id` INT NOT NULL, PRIMARY KEY (`id`), KEY `product_id` (`product_id`), KEY `attr_id` (`attr_id`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_config_seo` ( `id` INT NOT NULL AUTO_INCREMENT , `alias` VARCHAR( 64 ) NOT NULL , `ordering` INT NOT NULL, PRIMARY KEY ( `id` ) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_config_statictext` ( `id` INT NOT NULL AUTO_INCREMENT, `alias` VARCHAR( 64 ) NOT NULL, `use_for_return_policy` int NOT NULL, PRIMARY KEY ( `id` ) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_products_option` ( `id` int(11) NOT NULL AUTO_INCREMENT, `product_id` int(11) NOT NULL, `key` varchar(64) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `prodkey` (`product_id`,`key`) ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_payment_trx` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `order_id` INT NOT NULL, `transaction` VARCHAR( 255 ) NOT NULL, `rescode` INT NOT NULL, `status_id` INT NOT NULL, `date` datetime NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; CREATE TABLE IF NOT EXISTS `#__jshopping_payment_trx_data` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `trx_id` INT NOT NULL , `order_id` INT NOT NULL , `key` VARCHAR( 255 ) NOT NULL , `value` TEXT NOT NULL ) /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci*/; ALTER TABLE `#__jshopping_addons` ADD INDEX(`alias`); ALTER TABLE `#__jshopping_addons` ADD INDEX(`name`); ALTER TABLE `#__jshopping_attr` ADD INDEX(`attr_ordering`); ALTER TABLE `#__jshopping_attr` ADD INDEX(`attr_type`); ALTER TABLE `#__jshopping_attr` ADD INDEX(`independent`); ALTER TABLE `#__jshopping_attr` ADD INDEX(`allcats`); ALTER TABLE `#__jshopping_attr_values` ADD INDEX(`attr_id`); ALTER TABLE `#__jshopping_attr_values` ADD INDEX(`value_ordering`); ALTER TABLE `#__jshopping_cart_temp` ADD INDEX(`id_cookie`); ALTER TABLE `#__jshopping_cart_temp` ADD INDEX(`type_cart`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`category_parent_id`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`category_publish`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`category_ordertype`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`category_template`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`category_add_date`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`products_page`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`products_row`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`access`); ALTER TABLE `#__jshopping_categories` ADD INDEX(`category_publish`, `access`); ALTER TABLE `#__jshopping_config_display_prices` ADD INDEX(`display_price`); ALTER TABLE `#__jshopping_config_display_prices` ADD INDEX(`display_price_firma`); ALTER TABLE `#__jshopping_config_seo` ADD INDEX(`alias`); ALTER TABLE `#__jshopping_config_seo` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_config_statictext` ADD INDEX(`alias`); ALTER TABLE `#__jshopping_config_statictext` ADD INDEX(`use_for_return_policy`); ALTER TABLE `#__jshopping_countries` ADD INDEX(`country_publish`); ALTER TABLE `#__jshopping_countries` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_countries` ADD INDEX(`country_code`); ALTER TABLE `#__jshopping_countries` ADD INDEX(`country_code_2`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`coupon_type`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`coupon_code`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`tax_id`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`used`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`for_user_id`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`coupon_publish`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`coupon_start_date`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`coupon_expire_date`); ALTER TABLE `#__jshopping_coupons` ADD INDEX(`finished_after_used`); ALTER TABLE `#__jshopping_currencies` ADD INDEX(`currency_code_iso`); ALTER TABLE `#__jshopping_currencies` ADD INDEX(`currency_code_num`); ALTER TABLE `#__jshopping_currencies` ADD INDEX(`currency_ordering`); ALTER TABLE `#__jshopping_currencies` ADD INDEX(`currency_publish`); ALTER TABLE `#__jshopping_languages` ADD INDEX(`publish`); ALTER TABLE `#__jshopping_languages` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_manufacturers` ADD INDEX(`manufacturer_publish`); ALTER TABLE `#__jshopping_manufacturers` ADD INDEX(`products_page`); ALTER TABLE `#__jshopping_manufacturers` ADD INDEX(`products_row`); ALTER TABLE `#__jshopping_manufacturers` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_order_history` ADD INDEX(`order_id`); ALTER TABLE `#__jshopping_order_history` ADD INDEX(`order_status_id`); ALTER TABLE `#__jshopping_order_history` ADD INDEX(`status_date_added`); ALTER TABLE `#__jshopping_order_history` ADD INDEX(`customer_notify`); ALTER TABLE `#__jshopping_order_item` ADD INDEX(`order_id`); ALTER TABLE `#__jshopping_order_item` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_order_item` ADD INDEX(`delivery_times_id`); ALTER TABLE `#__jshopping_order_item` ADD INDEX(`vendor_id`); ALTER TABLE `#__jshopping_order_status` ADD INDEX(`status_code`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`order_number`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`user_id`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`currency_code_iso`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`order_status`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`order_created`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`shipping_method_id`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`delivery_times_id`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`payment_method_id`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`coupon_id`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`client_type`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`country`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`phone`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`d_title`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`d_country`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`display_price`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`vendor_type`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`vendor_id`); ALTER TABLE `#__jshopping_orders` ADD INDEX(`lang`); ALTER TABLE `#__jshopping_payment_method` ADD INDEX(`payment_code`); ALTER TABLE `#__jshopping_payment_method` ADD INDEX(`payment_publish`); ALTER TABLE `#__jshopping_payment_method` ADD INDEX(`payment_ordering`); ALTER TABLE `#__jshopping_payment_method` ADD INDEX(`payment_type`); ALTER TABLE `#__jshopping_payment_method` ADD INDEX(`price_type`); ALTER TABLE `#__jshopping_payment_method` ADD INDEX(`tax_id`); ALTER TABLE `#__jshopping_payment_trx` ADD INDEX(`order_id`); ALTER TABLE `#__jshopping_payment_trx` ADD INDEX(`transaction`); ALTER TABLE `#__jshopping_payment_trx` ADD INDEX(`rescode`); ALTER TABLE `#__jshopping_payment_trx` ADD INDEX(`status_id`); ALTER TABLE `#__jshopping_payment_trx_data` ADD INDEX(`trx_id`); ALTER TABLE `#__jshopping_payment_trx_data` ADD INDEX(`order_id`); ALTER TABLE `#__jshopping_payment_trx_data` ADD INDEX(`key`); ALTER TABLE `#__jshopping_products` ADD INDEX(`parent_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`product_ean`); ALTER TABLE `#__jshopping_products` ADD INDEX(`unlimited`); ALTER TABLE `#__jshopping_products` ADD INDEX(`product_publish`); ALTER TABLE `#__jshopping_products` ADD INDEX(`product_tax_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`currency_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`product_price`); ALTER TABLE `#__jshopping_products` ADD INDEX(`min_price`); ALTER TABLE `#__jshopping_products` ADD INDEX(`add_price_unit_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`average_rating`); ALTER TABLE `#__jshopping_products` ADD INDEX(`reviews_count`); ALTER TABLE `#__jshopping_products` ADD INDEX(`delivery_times_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`hits`); ALTER TABLE `#__jshopping_products` ADD INDEX(`basic_price_unit_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`label_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`vendor_id`); ALTER TABLE `#__jshopping_products` ADD INDEX(`access`); ALTER TABLE `#__jshopping_products_attr` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_attr` ADD INDEX(`ext_attribute_product_id`); ALTER TABLE `#__jshopping_products_attr2` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_attr2` ADD INDEX(`attr_id`); ALTER TABLE `#__jshopping_products_attr2` ADD INDEX(`attr_value_id`); ALTER TABLE `#__jshopping_products_attr2` ADD INDEX(`price_mod`); ALTER TABLE `#__jshopping_products_extra_field_groups` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_products_extra_field_values` ADD INDEX(`field_id`); ALTER TABLE `#__jshopping_products_extra_field_values` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_products_extra_fields` ADD INDEX(`allcats`); ALTER TABLE `#__jshopping_products_extra_fields` ADD INDEX(`type`); ALTER TABLE `#__jshopping_products_extra_fields` ADD INDEX(`multilist`); ALTER TABLE `#__jshopping_products_extra_fields` ADD INDEX(`group`); ALTER TABLE `#__jshopping_products_extra_fields` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_products_files` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_products_images` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_images` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_products_option` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_prices` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_prices` ADD INDEX(`product_quantity_start`); ALTER TABLE `#__jshopping_products_prices` ADD INDEX(`product_quantity_finish`); ALTER TABLE `#__jshopping_products_relations` ADD INDEX(`product_id`, `product_related_id`); ALTER TABLE `#__jshopping_products_relations` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_relations` ADD INDEX(`product_related_id`); ALTER TABLE `#__jshopping_products_reviews` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_products_reviews` ADD INDEX(`user_id`); ALTER TABLE `#__jshopping_products_reviews` ADD INDEX(`user_email`); ALTER TABLE `#__jshopping_products_reviews` ADD INDEX(`mark`); ALTER TABLE `#__jshopping_products_reviews` ADD INDEX(`publish`); ALTER TABLE `#__jshopping_products_reviews` ADD INDEX(`ip`); ALTER TABLE `#__jshopping_products_to_categories` ADD INDEX(`product_id`, `category_id`, `product_ordering`); ALTER TABLE `#__jshopping_products_to_categories` ADD INDEX(`product_ordering`); ALTER TABLE `#__jshopping_products_videos` ADD INDEX(`video_id`, `product_id`); ALTER TABLE `#__jshopping_products_videos` ADD INDEX(`product_id`); ALTER TABLE `#__jshopping_shipping_ext_calc` ADD INDEX(`alias`); ALTER TABLE `#__jshopping_shipping_ext_calc` ADD INDEX(`published`); ALTER TABLE `#__jshopping_shipping_ext_calc` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_shipping_method` ADD INDEX(`alias`); ALTER TABLE `#__jshopping_shipping_method` ADD INDEX(`published`); ALTER TABLE `#__jshopping_shipping_method` ADD INDEX(`ordering`); ALTER TABLE `#__jshopping_shipping_method_price` ADD INDEX(`shipping_method_id`); ALTER TABLE `#__jshopping_shipping_method_price` ADD INDEX(`shipping_tax_id`); ALTER TABLE `#__jshopping_shipping_method_price` ADD INDEX(`package_tax_id`); ALTER TABLE `#__jshopping_shipping_method_price` ADD INDEX(`delivery_times_id`); ALTER TABLE `#__jshopping_shipping_method_price_countries` ADD INDEX(`sh_method_country_id`, `country_id`, `sh_pr_method_id`); ALTER TABLE `#__jshopping_shipping_method_price_countries` ADD INDEX(`country_id`, `sh_pr_method_id`); ALTER TABLE `#__jshopping_shipping_method_price_countries` ADD INDEX(`sh_method_country_id`, `country_id`); ALTER TABLE `#__jshopping_shipping_method_price_weight` ADD INDEX( `sh_pr_weight_id`, `sh_pr_method_id`); ALTER TABLE `#__jshopping_taxes_ext` ADD INDEX(`tax_id`); ALTER TABLE `#__jshopping_unit` ADD INDEX(`qty`); ALTER TABLE `#__jshopping_usergroups` ADD INDEX(`usergroup_name`); ALTER TABLE `#__jshopping_usergroups` ADD INDEX(`usergroup_is_default`); ALTER TABLE `#__jshopping_users` ADD INDEX(`usergroup_id`); ALTER TABLE `#__jshopping_users` ADD INDEX(`payment_id`); ALTER TABLE `#__jshopping_users` ADD INDEX(`shipping_id`); ALTER TABLE `#__jshopping_users` ADD INDEX(`client_type`); ALTER TABLE `#__jshopping_users` ADD INDEX(`email`); ALTER TABLE `#__jshopping_vendors` ADD INDEX(`country`); ALTER TABLE `#__jshopping_vendors` ADD INDEX(`user_id`); ALTER TABLE `#__jshopping_vendors` ADD INDEX(`email`); ALTER TABLE `#__jshopping_vendors` ADD INDEX(`main`); ALTER TABLE `#__jshopping_vendors` ADD INDEX(`publish`); INSERT INTO `#__jshopping_countries` (`country_id`, `country_publish`, `ordering`, `country_code`, `country_code_2`, `name_en-GB`, `name_de-DE`) VALUES (1, 1, 1, 'AFG', 'AF', 'Afghanistan', 'Afghanistan'), (2, 1, 2, 'ALB', 'AL', 'Albania', 'Albanien'), (3, 1, 3, 'DZA', 'DZ', 'Algeria', 'Algerien'), (4, 1, 4, 'ASM', 'AS', 'American Samoa', 'Amerikanisch-Samoa'), (5, 1, 5, 'AND', 'AD', 'Andorra', 'Andorra'), (6, 1, 6, 'AGO', 'AO', 'Angola', 'Angola'), (7, 1, 7, 'AIA', 'AI', 'Anguilla', 'Anguilla'), (8, 1, 8, 'ATA', 'AQ', 'Antarctica', 'Antarktis'), (9, 1, 9, 'ATG', 'AG', 'Antigua and Barbuda', 'Antigua und Barbuda'), (10, 1, 10, 'ARG', 'AR', 'Argentina', 'Argentinien'), (11, 1, 11, 'ARM', 'AM', 'Armenia', 'Armenien'), (12, 1, 12, 'ABW', 'AW', 'Aruba', 'Aruba'), (13, 1, 13, 'AUS', 'AU', 'Australia', 'Australien'), (14, 1, 14, 'AUT', 'AT', 'Austria', 'Österreich'), (15, 1, 15, 'AZE', 'AZ', 'Azerbaijan', 'Aserbaidschan'), (16, 1, 16, 'BHS', 'BS', 'Bahamas', 'Bahamas'), (17, 1, 17, 'BHR', 'BH', 'Bahrain', 'Bahrain'), (18, 1, 18, 'BGD', 'BD', 'Bangladesh', 'Bangladesch'), (19, 1, 19, 'BRB', 'BB', 'Barbados', 'Barbados'), (20, 1, 20, 'BLR', 'BY', 'Belarus', 'Weissrussland'), (21, 1, 21, 'BEL', 'BE', 'Belgium', 'Belgien'), (22, 1, 22, 'BLZ', 'BZ', 'Belize', 'Belize'), (23, 1, 23, 'BEN', 'BJ', 'Benin', 'Benin'), (24, 1, 24, 'BMU', 'BM', 'Bermuda', 'Bermuda'), (25, 1, 25, 'BTN', 'BT', 'Bhutan', 'Bhutan'), (26, 1, 26, 'BOL', 'BO', 'Bolivia', 'Bolivien'), (27, 1, 27, 'BIH', 'BA', 'Bosnia and Herzegowina', 'Bosnien und Herzegowina'), (28, 1, 28, 'BWA', 'BW', 'Botswana', 'Botsuana'), (29, 1, 29, 'BVT', 'BV', 'Bouvet Island', 'Bouvetinsel'), (30, 1, 30, 'BRA', 'BR', 'Brazil', 'Brasilien'), (31, 1, 31, 'IOT', 'IO', 'British Indian Ocean Territory', 'Britisches Territorium im Indischen Ozean'), (32, 1, 32, 'BRN', 'BN', 'Brunei Darussalam', 'Brunei'), (33, 1, 33, 'BGR', 'BG', 'Bulgaria', 'Bulgarien'), (34, 1, 34, 'BFA', 'BF', 'Burkina Faso', 'Burkina Faso'), (35, 1, 35, 'BDI', 'BI', 'Burundi', 'Burundi'), (36, 1, 36, 'KHM', 'KH', 'Cambodia', 'Kambodscha'), (37, 1, 37, 'CMR', 'CM', 'Cameroon', 'Kamerun'), (38, 1, 38, 'CAN', 'CA', 'Canada', 'Kanada'), (39, 1, 39, 'CPV', 'CV', 'Cape Verde', 'Kap Verde'), (40, 1, 40, 'CYM', 'KY', 'Cayman Islands', 'Cayman-Inseln'), (41, 1, 41, 'CAF', 'CF', 'Central African Republic', 'Zentralafrikanische Republik'), (42, 1, 42, 'TCD', 'TD', 'Chad', 'Tschad'), (43, 1, 43, 'CHL', 'CL', 'Chile', 'Chile'), (44, 1, 44, 'CHN', 'CN', 'China', 'China'), (45, 1, 45, 'CXR', 'CX', 'Christmas Island', 'Christmas Island'), (46, 1, 46, 'CCK', 'CC', 'Cocos (Keeling) Islands', 'Kokosinseln (Keeling)'), (47, 1, 47, 'COL', 'CO', 'Colombia', 'Kolumbien'), (48, 1, 48, 'COM', 'KM', 'Comoros', 'Komoren'), (49, 1, 49, 'COG', 'CG', 'Congo', 'Kongo, Republik'), (50, 1, 50, 'COK', 'CK', 'Cook Islands', 'Cookinseln'), (51, 1, 51, 'CRI', 'CR', 'Costa Rica', 'Costa Rica'), (52, 1, 52, 'CIV', 'CI', 'Cote D''Ivoire', 'Elfenbeinküste'), (53, 1, 53, 'HRV', 'HR', 'Croatia', 'Kroatien'), (54, 1, 54, 'CUB', 'CU', 'Cuba', 'Kuba'), (55, 1, 55, 'CYP', 'CY', 'Cyprus', 'Zypern'), (56, 1, 56, 'CZE', 'CZ', 'Czech Republic', 'Tschechien'), (57, 1, 57, 'DNK', 'DK', 'Denmark', 'Dänemark'), (58, 1, 58, 'DJI', 'DJ', 'Djibouti', 'Dschibuti'), (59, 1, 59, 'DMA', 'DM', 'Dominica', 'Dominica'), (60, 1, 60, 'DOM', 'DO', 'Dominican Republic', 'Dominikanische Republik'), (61, 1, 61, 'TMP', 'TL', 'East Timor', 'Osttimor'), (62, 1, 62, 'ECU', 'EC', 'Ecuador', 'Ecuador'), (63, 1, 63, 'EGY', 'EG', 'Egypt', 'Ägypten'), (64, 1, 64, 'SLV', 'SV', 'El Salvador', 'El Salvador'), (65, 1, 65, 'GNQ', 'GQ', 'Equatorial Guinea', 'Äquatorial-Guinea'), (66, 1, 66, 'ERI', 'ER', 'Eritrea', 'Eritrea'), (67, 1, 67, 'EST', 'EE', 'Estonia', 'Estland'), (68, 1, 68, 'ETH', 'ET', 'Ethiopia', 'Äthiopien'), (69, 1, 69, 'FLK', 'FK', 'Falkland Islands (Malvinas)', 'Falklandinseln'), (70, 1, 70, 'FRO', 'FO', 'Faroe Islands', 'Färöer'), (71, 1, 71, 'FJI', 'FJ', 'Fiji', 'Fidschi'), (72, 1, 72, 'FIN', 'FI', 'Finland', 'Finnland'), (73, 1, 73, 'FRA', 'FR', 'France', 'Frankreich'), (74, 1, 74, 'FXX', 'FX', 'France Metropolitan', 'Frankreich, Metropolitan'), (75, 1, 75, 'GUF', 'GF', 'French Guiana', 'Französisch-Guyana'), (76, 1, 76, 'PYF', 'PF', 'French Polynesia', 'Franz. Polynesien'), (77, 1, 77, 'ATF', 'TF', 'French Southern Territories', 'Französiche Süd- und Antarktisgebiete'), (78, 1, 78, 'GAB', 'GA', 'Gabon', 'Gabun'), (79, 1, 79, 'GMB', 'GM', 'Gambia', 'Gambia'), (80, 1, 80, 'GEO', 'GE', 'Georgia', 'Georgien'), (81, 1, 81, 'DEU', 'DE', 'Germany', 'Deutschland'), (82, 1, 82, 'GHA', 'GH', 'Ghana', 'Ghana'), (83, 1, 83, 'GIB', 'GI', 'Gibraltar', 'Gibraltar'), (84, 1, 84, 'GRC', 'GR', 'Greece', 'Griechenland'), (85, 1, 85, 'GRL', 'GL', 'Greenland', 'Grönland'), (86, 1, 86, 'GRD', 'GD', 'Grenada', 'Grenada'), (87, 1, 87, 'GLP', 'GP', 'Guadeloupe', 'Guadeloupe'), (88, 1, 88, 'GUM', 'GU', 'Guam', 'Guam'), (89, 1, 89, 'GTM', 'GT', 'Guatemala', 'Guatemala'), (90, 1, 90, 'GIN', 'GN', 'Guinea', 'Guinea'), (91, 1, 91, 'GNB', 'GW', 'Guinea-bissau', 'Guinea-Bissau'), (92, 1, 92, 'GUY', 'GY', 'Guyana', 'Guyana'), (93, 1, 93, 'HTI', 'HT', 'Haiti', 'Haiti'), (94, 1, 94, 'HMD', 'HM', 'Heard and Mc Donald Islands', 'Heard und McDonaldinseln'), (95, 1, 95, 'HND', 'HN', 'Honduras', 'Honduras'), (96, 1, 96, 'HKG', 'HK', 'Hong Kong', 'Hong Kong'), (97, 1, 97, 'HUN', 'HU', 'Hungary', 'Ungarn'), (98, 1, 98, 'ISL', 'IS', 'Iceland', 'Island'), (99, 1, 99, 'IND', 'IN', 'India', 'Indien'), (100, 1, 100, 'IDN', 'ID', 'Indonesia', 'Indonesien'), (101, 1, 101, 'IRN', 'IR', 'Iran (Islamic Republic of)', 'Iran'), (102, 1, 102, 'IRQ', 'IQ', 'Iraq', 'Irak'), (103, 1, 103, 'IRL', 'IE', 'Ireland', 'Irland'), (104, 1, 104, 'ISR', 'IL', 'Israel', 'Israel'), (105, 1, 105, 'ITA', 'IT', 'Italy', 'Italien'), (106, 1, 106, 'JAM', 'JM', 'Jamaica', 'Jamaika'), (107, 1, 107, 'JPN', 'JP', 'Japan', 'Japan'), (108, 1, 108, 'JOR', 'JO', 'Jordan', 'Jordanien'), (109, 1, 109, 'KAZ', 'KZ', 'Kazakhstan', 'Kasachstan'), (110, 1, 110, 'KEN', 'KE', 'Kenya', 'Kenia'), (111, 1, 111, 'KIR', 'KI', 'Kiribati', 'Kiribati'), (112, 1, 112, 'PRK', 'KP', 'Korea Democratic People''s Republic of', 'Korea Demokratische Volksrepublik'), (113, 1, 113, 'KOR', 'KR', 'Korea Republic of', 'Korea'), (114, 1, 114, 'KWT', 'KW', 'Kuwait', 'Kuwait'), (115, 1, 115, 'KGZ', 'KG', 'Kyrgyzstan', 'Kirgistan'), (116, 1, 116, 'LAO', 'LA', 'Lao People''s Democratic Republic', 'Laos'), (117, 1, 117, 'LVA', 'LV', 'Latvia', 'Lettland'), (118, 1, 118, 'LBN', 'LB', 'Lebanon', 'Libanon'), (119, 1, 119, 'LSO', 'LS', 'Lesotho', 'Lesotho'), (120, 1, 120, 'LBR', 'LR', 'Liberia', 'Liberia'), (121, 1, 121, 'LBY', 'LY', 'Libyan Arab Jamahiriya', 'Libyen'), (122, 1, 122, 'LIE', 'LI', 'Liechtenstein', 'Liechtenstein'), (123, 1, 123, 'LTU', 'LT', 'Lithuania', 'Litauen'), (124, 1, 124, 'LUX', 'LU', 'Luxembourg', 'Luxemburg'), (125, 1, 125, 'MAC', 'MO', 'Macau', 'Makao'), (126, 1, 126, 'MKD', 'MK', 'Macedonia The Former Yugoslav Republic of', 'Mazedonien'), (127, 1, 127, 'MDG', 'MG', 'Madagascar', 'Madagaskar'), (128, 1, 128, 'MWI', 'MW', 'Malawi', 'Malawi'), (129, 1, 129, 'MYS', 'MY', 'Malaysia', 'Malaysia'), (130, 1, 130, 'MDV', 'MV', 'Maldives', 'Malediven'), (131, 1, 131, 'MLI', 'ML', 'Mali', 'Mali'), (132, 1, 132, 'MLT', 'MT', 'Malta', 'Malta'), (133, 1, 133, 'MHL', 'MH', 'Marshall Islands', 'Marshallinseln'), (134, 1, 134, 'MTQ', 'MQ', 'Martinique', 'Martinique'), (135, 1, 135, 'MRT', 'MR', 'Mauritania', 'Mauretanien'), (136, 1, 136, 'MUS', 'MU', 'Mauritius', 'Mauritius'), (137, 1, 137, 'MYT', 'YT', 'Mayotte', 'Mayott'), (138, 1, 138, 'MEX', 'MX', 'Mexico', 'Mexiko'), (139, 1, 139, 'FSM', 'FM', 'Micronesia Federated States of', 'Mikronesien'), (140, 1, 140, 'MDA', 'MD', 'Moldova Republic of', 'Moldawien'), (141, 1, 141, 'MCO', 'MC', 'Monaco', 'Monaco'), (142, 1, 142, 'MNG', 'MN', 'Mongolia', 'Mongolei'), (143, 1, 143, 'MSR', 'MS', 'Montserrat', 'Montserrat'), (144, 1, 144, 'MAR', 'MA', 'Morocco', 'Marokko'), (145, 1, 145, 'MOZ', 'MZ', 'Mozambique', 'Mosambik'), (146, 1, 146, 'MMR', 'MM', 'Myanmar', 'Myanmar'), (147, 1, 147, 'NAM', 'NA', 'Namibia', 'Namibia'), (148, 1, 148, 'NRU', 'NR', 'Nauru', 'Nauru'), (149, 1, 149, 'NPL', 'NP', 'Nepal', 'Nepal'), (150, 1, 150, 'NLD', 'NL', 'Netherlands', 'Niederlande'), (151, 1, 151, 'ANT', 'AN', 'Netherlands Antilles', 'Niederländisch-Antillen'), (152, 1, 152, 'NCL', 'NC', 'New Caledonia', 'Neukaledonien'), (153, 1, 153, 'NZL', 'NZ', 'New Zealand', 'Neuseeland'), (154, 1, 154, 'NIC', 'NI', 'Nicaragua', 'Nicaragua'), (155, 1, 155, 'NER', 'NE', 'Niger', 'Niger'), (156, 1, 156, 'NGA', 'NG', 'Nigeria', 'Nigeria'), (157, 1, 157, 'NIU', 'NU', 'Niue', 'Niue'), (158, 1, 158, 'NFK', 'NF', 'Norfolk Island', 'Norfolkinsel'), (159, 1, 159, 'MNP', 'MP', 'Northern Mariana Islands', 'Nördliche Marianen'), (160, 1, 160, 'NOR', 'NO', 'Norway', 'Norwegen'), (161, 1, 161, 'OMN', 'OM', 'Oman', 'Oman'), (162, 1, 162, 'PAK', 'PK', 'Pakistan', 'Pakistan'), (163, 1, 163, 'PLW', 'PW', 'Palau', 'Palau'), (164, 1, 164, 'PAN', 'PA', 'Panama', 'Panama'), (165, 1, 165, 'PNG', 'PG', 'Papua New Guinea', 'Papua-Neuguinea'), (166, 1, 166, 'PRY', 'PY', 'Paraguay', 'Paraguay'), (167, 1, 167, 'PER', 'PE', 'Peru', 'Peru'), (168, 1, 168, 'PHL', 'PH', 'Philippines', 'Philippinen'), (169, 1, 169, 'PCN', 'PN', 'Pitcairn', 'Pitcairn'), (170, 1, 170, 'POL', 'PL', 'Poland', 'Polen'), (171, 1, 171, 'PRT', 'PT', 'Portugal', 'Portugal'), (172, 1, 172, 'PRI', 'PR', 'Puerto Rico', 'Puerto Rico'), (173, 1, 173, 'QAT', 'QA', 'Qatar', 'Katar'), (174, 1, 174, 'REU', 'RE', 'Reunion', 'Reunion'), (175, 1, 175, 'ROM', 'RO', 'Romania', 'Rumänien'), (176, 1, 176, 'RUS', 'RU', 'Russian Federation', 'Russische Föderation'), (177, 1, 177, 'RWA', 'RW', 'Rwanda', 'Ruanda'), (178, 1, 178, 'KNA', 'KN', 'Saint Kitts and Nevis', 'St. Kitts und Nevis'), (179, 1, 179, 'LCA', 'LC', 'Saint Lucia', 'St. Lucia'), (180, 1, 180, 'VCT', 'VC', 'Saint Vincent and the Grenadines', 'St. Vincent und die Grenadinen'), (181, 1, 181, 'WSM', 'WS', 'Samoa', 'Samoa'), (182, 1, 182, 'SMR', 'SM', 'San Marino', 'San Marino'), (183, 1, 183, 'STP', 'ST', 'Sao Tome and Principe', 'Sao Tomé und Príncipe'), (184, 1, 184, 'SAU', 'SA', 'Saudi Arabia', 'Saudi-Arabien'), (185, 1, 185, 'SEN', 'SN', 'Senegal', 'Senegal'), (186, 1, 186, 'SYC', 'SC', 'Seychelles', 'Seychellen'), (187, 1, 187, 'SLE', 'SL', 'Sierra Leone', 'Sierra Leone'), (188, 1, 188, 'SGP', 'SG', 'Singapore', 'Singapur'), (189, 1, 189, 'SVK', 'SK', 'Slovakia (Slovak Republic)', 'Slowakei'), (190, 1, 190, 'SVN', 'SI', 'Slovenia', 'Slowenien'), (191, 1, 191, 'SLB', 'SB', 'Solomon Islands', 'Salomonen'), (192, 1, 192, 'SOM', 'SO', 'Somalia', 'Somalia'), (193, 1, 193, 'ZAF', 'ZA', 'South Africa', 'Republik Südafrika'), (194, 1, 194, 'SGS', 'GS', 'South Georgia and the South Sandwich Islands', 'Südgeorgien und die Südlichen Sandwichinseln'), (195, 1, 195, 'ESP', 'ES', 'Spain', 'Spanien'), (196, 1, 196, 'LKA', 'LK', 'Sri Lanka', 'Sri Lanka'), (197, 1, 197, 'SHN', 'SH', 'St. Helena', 'St. Helena'), (198, 1, 198, 'SPM', 'PM', 'St. Pierre and Miquelon', 'St. Pierre und Miquelon'), (199, 1, 199, 'SDN', 'SD', 'Sudan', 'Sudan'), (200, 1, 200, 'SUR', 'SR', 'Suriname', 'Suriname'), (201, 1, 201, 'SJM', 'SJ', 'Svalbard and Jan Mayen Islands', 'Svalbard und Jan Mayen'), (202, 1, 202, 'SWZ', 'SZ', 'Swaziland', 'Swasiland'), (203, 1, 203, 'SWE', 'SE', 'Sweden', 'Schweden'), (204, 1, 204, 'CHE', 'CH', 'Switzerland', 'Schweiz'), (205, 1, 205, 'SYR', 'SY', 'Syrian Arab Republic', 'Syrien'), (206, 1, 206, 'TWN', 'TW', 'Taiwan', 'Taiwan'), (207, 1, 207, 'TJK', 'TJ', 'Tajikistan', 'Tadschikistan'), (208, 1, 208, 'TZA', 'TZ', 'Tanzania United Republic of', 'Tansania'), (209, 1, 209, 'THA', 'TH', 'Thailand', 'Thailand'), (210, 1, 210, 'TGO', 'TG', 'Togo', 'Togo'), (211, 1, 211, 'TKL', 'TK', 'Tokelau', 'Tokelau'), (212, 1, 212, 'TON', 'TO', 'Tonga', 'Tonga'), (213, 1, 213, 'TTO', 'TT', 'Trinidad and Tobago', 'Trinidad und Tobago'), (214, 1, 214, 'TUN', 'TN', 'Tunisia', 'Tunesien'), (215, 1, 215, 'TUR', 'TR', 'Turkey', 'Türkei'), (216, 1, 216, 'TKM', 'TM', 'Turkmenistan', 'Turkmenistan'), (217, 1, 217, 'TCA', 'TC', 'Turks and Caicos Islands', 'Turks- und Caicosinseln'), (218, 1, 218, 'TUV', 'TV', 'Tuvalu', 'Tuvalu'), (219, 1, 219, 'UGA', 'UG', 'Uganda', 'Uganda'), (220, 1, 220, 'UKR', 'UA', 'Ukraine', 'Ukraine'), (221, 1, 221, 'ARE', 'AE', 'United Arab Emirates', 'Vereinigte Arabische Emirate'), (222, 1, 222, 'GBR', 'GB', 'United Kingdom', 'Vereinigtes Königreich'), (223, 1, 223, 'USA', 'US', 'United States', 'USA'), (224, 1, 224, 'UMI', 'UM', 'United States Minor Outlying Islands', 'United States Minor Outlying Islands'), (225, 1, 225, 'URY', 'UY', 'Uruguay', 'Uruguay'), (226, 1, 226, 'UZB', 'UZ', 'Uzbekistan', 'Usbekistan'), (227, 1, 227, 'VUT', 'VU', 'Vanuatu', 'Vanuatu'), (228, 1, 228, 'VAT', 'VA', 'Vatican City State (Holy See)', 'Vatikanstadt'), (229, 1, 229, 'VEN', 'VE', 'Venezuela', 'Venezuela'), (230, 1, 230, 'VNM', 'VN', 'Viet Nam', 'Vietnam'), (231, 1, 231, 'VGB', 'VG', 'Virgin Islands (British)', 'Britische Jungferninseln'), (232, 1, 232, 'VIR', 'VI', 'Virgin Islands (U.S.)', 'Vereinigte Staaten von Amerika'), (233, 1, 233, 'WLF', 'WF', 'Wallis and Futuna Islands', 'Wallis und Futuna'), (234, 1, 234, 'ESH', 'EH', 'Western Sahara', 'Westsahara'), (235, 1, 235, 'YEM', 'YE', 'Yemen', 'Jemen'), (236, 1, 236, 'YUG', 'YU', 'Yugoslavia', 'Yugoslavia'), (237, 1, 237, 'ZAR', 'ZR', 'Zaire', 'Zaire'), (238, 1, 238, 'ZMB', 'ZM', 'Zambia', 'Sambia'), (239, 1, 239, 'ZWE', 'ZW', 'Zimbabwe', 'Simbabwe'); INSERT INTO `#__jshopping_unit` (`id`, `qty`, `name_de-DE`, `name_en-GB`) values(1, 1, 'Kg', 'Kg'),(2, 1, 'Liter', 'Liter'),(3, 1, 'St.', 'pcs.'); INSERT INTO `#__jshopping_product_labels` (`id`, `name`, `name_de-DE`, `name_en-GB`, `image`) VALUES(1, 'New', 'New', 'New', 'new.png'), (2, 'Sale', 'Sale', 'Sale', 'sale.png'); INSERT INTO `#__jshopping_import_export` (`id`, `name`, `alias`, `description`, `params`, `endstart`, `steptime`) VALUES (1, 'Simple Export', 'simpleexport', 'Simple Export in CSV iso-8859-1', 'filename=export', 0, 1), (2, 'Simple Import', 'simpleimport', 'Simple Import in CSV iso-8859-1', '', 0, 0); INSERT INTO `#__jshopping_config` (`id`, `count_products_to_page`, `count_products_to_row`, `count_category_to_row`, `image_category_width`, `image_category_height`, `image_product_width`, `image_product_height`, `image_product_full_width`, `image_product_full_height`, `video_product_width`, `video_product_height`, `mainCurrency`, `decimal_count`, `decimal_symbol`, `thousand_separator`, `currency_format`, `use_rabatt_code`, `enable_wishlist`, `default_status_order`, `store_address_format`, `store_date_format`, `contact_email`, `allow_reviews_prod`, `allow_reviews_only_registered`, `allow_reviews_manuf`,`max_mark` , `summ_null_shipping`, `without_shipping`, `pdf_parameters`, `show_buy_in_category`, `hide_buy_not_avaible_stock`, `show_sort_product`, `show_count_select_products`, `order_send_pdf_client`, `admin_show_attributes`, `admin_show_delivery_time`, `admin_show_languages`, `use_different_templates_cat_prod`, `admin_show_product_video`, `admin_show_product_related`, `admin_show_product_files`, `admin_show_product_bay_price`, `admin_show_product_labels`,`show_product_code`,`product_count_related_in_row`, `next_order_number`, `sorting_country_in_alphabet`, `main_unit_weight`, `savelog`,`savelogpaymentdata`, `fields_register`) VALUES (1, 12, 3, 1, 160, 0, 100, 0, 200, 0, 320, 240, '1', 2, '.', '', 2, 1, 1, 1, '%storename %address %city %zip', '%d.%m.%Y', '<EMAIL>', '1', '1', '0', '10', '-1', 0, '208:65:208:30', 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 3, 1, 1, 1, 1, 1, 'a:3:{s:8:"register";a:15:{s:5:"title";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"l_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:10:"firma_name";a:1:{s:7:"display";s:1:"1";}s:6:"street";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:3:"zip";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:4:"city";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"state";a:1:{s:7:"display";s:1:"1";}s:7:"country";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"phone";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:3:"fax";a:1:{s:7:"display";s:1:"1";}s:6:"f_name";a:2:{s:7:"require";i:1;s:7:"display";i:1;}s:5:"email";a:2:{s:7:"require";i:1;s:7:"display";i:1;}s:6:"u_name";a:2:{s:7:"require";i:1;s:7:"display";i:1;}s:8:"password";a:2:{s:7:"require";i:1;s:7:"display";i:1;}s:10:"password_2";a:2:{s:7:"require";i:1;s:7:"display";i:1;}}s:7:"address";a:22:{s:5:"title";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"l_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:10:"firma_name";a:1:{s:7:"display";s:1:"1";}s:6:"street";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:3:"zip";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:4:"city";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"state";a:1:{s:7:"display";s:1:"1";}s:7:"country";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"phone";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:3:"fax";a:1:{s:7:"display";s:1:"1";}s:7:"d_title";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:8:"d_f_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:8:"d_l_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:12:"d_firma_name";a:1:{s:7:"display";s:1:"1";}s:8:"d_street";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"d_zip";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"d_city";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:7:"d_state";a:1:{s:7:"display";s:1:"1";}s:9:"d_country";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:7:"d_phone";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"f_name";a:2:{s:7:"require";i:1;s:7:"display";i:1;}s:5:"email";a:2:{s:7:"require";i:1;s:7:"display";i:1;}}s:11:"editaccount";a:22:{s:5:"title";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"l_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:10:"firma_name";a:1:{s:7:"display";s:1:"1";}s:6:"street";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:3:"zip";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:4:"city";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"state";a:1:{s:7:"display";s:1:"1";}s:7:"country";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"phone";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:3:"fax";a:1:{s:7:"display";s:1:"1";}s:7:"d_title";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:8:"d_f_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:8:"d_l_name";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:12:"d_firma_name";a:1:{s:7:"display";s:1:"1";}s:8:"d_street";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:5:"d_zip";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"d_city";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:7:"d_state";a:1:{s:7:"display";s:1:"1";}s:9:"d_country";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:7:"d_phone";a:2:{s:7:"display";s:1:"1";s:7:"require";s:1:"1";}s:6:"f_name";a:2:{s:7:"require";i:1;s:7:"display";i:1;}s:5:"email";a:2:{s:7:"require";i:1;s:7:"display";i:1;}}}'); INSERT INTO `#__jshopping_currencies` ( `currency_id` , `currency_name` , `currency_code`, `currency_code_iso`, `currency_code_num` , `currency_ordering` , `currency_publish` , `currency_value` ) VALUES ( NULL , 'Euro', 'EUR', 'EUR', '978', '1', '1', '1.00'); INSERT INTO `#__jshopping_order_status` (`status_id`, `status_code`, `name_en-GB`, `name_de-DE`) VALUES (1, 'P', 'Pending', 'Offen'),(2, 'C', 'Confirmed', 'Bestätigt'),(3, 'X', 'Cancelled', 'Abgebrochen'),(4, 'R', 'Refunded', 'Gutschrift'),(5, 'S', 'Shipped', 'Gesendet'),(6, 'O', 'Paid', 'Bezahlt'),(7, 'F', 'Complete', 'Abgeschlossen'); INSERT INTO `#__jshopping_payment_method` (`payment_id`, `name_en-GB`, `name_de-DE`, `description_en-GB`, `description_de-DE`, `payment_code`, `payment_class`, `scriptname`, `payment_publish`, `payment_ordering`, `payment_params`, `payment_type`, `tax_id`, `price`, `show_descr_in_email`) VALUES (1, 'Cash on delivery', 'Nachnahme', '', '', 'bank', 'pm_bank', '', 1, 1, '', 1, 1, 4.00, 0), (2, 'Advance payment', 'Vorauskasse', '', '', 'PO', 'pm_purchase_order', '', 1, 2, '', 1, 1, 0, 1), (3, 'Paypal', 'Paypal', '', '', 'paypal', 'pm_paypal', 'pm_paypal', 1, 3, 'testmode=1\n email_received=test@testing.com\n transaction_end_status=6\n transaction_pending_status=1\n transaction_failed_status=3\n checkdatareturn=0', 2, 1, 0, 0), (4, 'Debit', 'Lastschrift', 'Please insert your bankdata.', 'Bitte tragen Sie hier Ihre Bankdaten fГјr den Abbuchungsauftrag ein.', 'debit', 'pm_debit', 'pm_debit', 1, 4, '', 1, 1, 0, 0), (5, 'Sofortueberweisung','Sofortueberweisung', '', '', 'ST','pm_sofortueberweisung', 'pm_sofortueberweisung', 0, 5, 'user_id=00000\nproject_id=00000\nproject_password=<PASSWORD>\ntransaction_end_status=6\ntransaction_pending_status=1\ntransaction_failed_status=3\n', 2, 1, 0, 0); INSERT INTO `#__jshopping_shipping_method` ( `shipping_id` , `name_en-GB` , `name_de-DE` , `published` , `ordering`) VALUES (1 , 'Standard', 'Standardversand', '1', '1'),(2 , 'Express', 'Express', '1', '2'); INSERT INTO `#__jshopping_taxes` ( `tax_id` , `tax_name` , `tax_value` ) VALUES (1, 'Normal', '19%'); INSERT INTO `#__jshopping_shipping_method_price` VALUES (1, 1, 1, 10.00, 1, 0, 0, ''),(2, 2, 1, 25.00, 1, 0, 0, ''); INSERT INTO `#__jshopping_shipping_method_price_countries` VALUES (1, 239, 1), (2, 238, 1), (3, 237, 1), (4, 236, 1), (5, 235, 1), (6, 234, 1), (7, 233, 1), (8, 232, 1), (9, 231, 1), (10, 230, 1), (11, 229, 1), (12, 228, 1), (13, 227, 1), (14, 226, 1), (15, 225, 1), (16, 224, 1), (17, 223, 1), (18, 222, 1), (19, 221, 1), (20, 220, 1), (21, 219, 1), (22, 218, 1), (23, 217, 1), (24, 216, 1), (25, 215, 1), (26, 214, 1), (27, 213, 1), (28, 212, 1), (29, 211, 1), (30, 210, 1), (31, 209, 1), (32, 208, 1), (33, 207, 1), (34, 206, 1), (35, 205, 1), (36, 204, 1), (37, 203, 1), (38, 202, 1), (39, 201, 1), (40, 200, 1), (41, 199, 1), (42, 198, 1), (43, 197, 1), (44, 196, 1), (45, 195, 1), (46, 194, 1), (47, 193, 1), (48, 192, 1), (49, 191, 1), (50, 190, 1), (51, 189, 1), (52, 188, 1), (53, 187, 1), (54, 186, 1), (55, 185, 1), (56, 184, 1), (57, 183, 1), (58, 182, 1), (59, 181, 1), (60, 180, 1), (61, 179, 1), (62, 178, 1), (63, 177, 1), (64, 176, 1), (65, 175, 1), (66, 174, 1), (67, 173, 1), (68, 172, 1), (69, 171, 1), (70, 170, 1), (71, 169, 1), (72, 168, 1), (73, 167, 1), (74, 166, 1), (75, 165, 1), (76, 164, 1), (77, 163, 1), (78, 162, 1), (79, 161, 1), (80, 160, 1), (81, 159, 1), (82, 158, 1), (83, 157, 1), (84, 156, 1), (85, 155, 1), (86, 154, 1), (87, 153, 1), (88, 152, 1), (89, 151, 1), (90, 150, 1), (91, 149, 1), (92, 148, 1), (93, 147, 1), (94, 146, 1), (95, 145, 1), (96, 144, 1), (97, 143, 1), (98, 142, 1), (99, 141, 1), (100, 140, 1), (101, 139, 1), (102, 138, 1), (103, 137, 1), (104, 136, 1), (105, 135, 1), (106, 134, 1), (107, 133, 1), (108, 132, 1), (109, 131, 1), (110, 130, 1), (111, 129, 1), (112, 128, 1), (113, 127, 1), (114, 126, 1), (115, 125, 1), (116, 124, 1), (117, 123, 1), (118, 122, 1), (119, 121, 1), (120, 120, 1), (121, 119, 1), (122, 118, 1), (123, 117, 1), (124, 116, 1), (125, 115, 1), (126, 114, 1), (127, 113, 1), (128, 112, 1), (129, 111, 1), (130, 110, 1), (131, 109, 1), (132, 108, 1), (133, 107, 1), (134, 106, 1), (135, 105, 1), (136, 104, 1), (137, 103, 1), (138, 102, 1), (139, 101, 1), (140, 100, 1), (141, 99, 1), (142, 98, 1), (143, 97, 1), (144, 96, 1), (145, 95, 1), (146, 94, 1), (147, 93, 1), (148, 92, 1), (149, 91, 1), (150, 90, 1), (151, 89, 1), (152, 88, 1), (153, 87, 1), (154, 86, 1), (155, 85, 1), (156, 84, 1), (157, 83, 1), (158, 82, 1), (159, 81, 1), (160, 80, 1), (161, 79, 1), (162, 78, 1), (163, 77, 1), (164, 76, 1), (165, 75, 1), (166, 74, 1), (167, 73, 1), (168, 72, 1), (169, 71, 1), (170, 70, 1), (171, 69, 1), (172, 68, 1), (173, 67, 1), (174, 66, 1), (175, 65, 1), (176, 64, 1), (177, 63, 1), (178, 62, 1), (179, 61, 1), (180, 60, 1), (181, 59, 1), (182, 58, 1), (183, 57, 1), (184, 56, 1), (185, 55, 1), (186, 54, 1), (187, 53, 1), (188, 52, 1), (189, 51, 1), (190, 50, 1), (191, 49, 1), (192, 48, 1), (193, 47, 1), (194, 46, 1), (195, 45, 1), (196, 44, 1), (197, 43, 1), (198, 42, 1), (199, 41, 1), (200, 40, 1), (201, 39, 1), (202, 38, 1), (203, 37, 1), (204, 36, 1), (205, 35, 1), (206, 34, 1), (207, 33, 1), (208, 32, 1), (209, 31, 1), (210, 30, 1), (211, 29, 1), (212, 28, 1), (213, 27, 1), (214, 26, 1), (215, 25, 1), (216, 24, 1), (217, 23, 1), (218, 22, 1), (219, 21, 1), (220, 20, 1), (221, 19, 1), (222, 18, 1), (223, 17, 1), (224, 16, 1), (225, 15, 1), (226, 14, 1), (227, 13, 1), (228, 12, 1), (229, 11, 1), (230, 10, 1), (231, 9, 1), (232, 8, 1), (233, 7, 1), (234, 6, 1), (235, 5, 1), (236, 4, 1), (237, 3, 1), (238, 2, 1), (239, 1, 1), (240, 239, 2), (241, 238, 2), (242, 237, 2), (243, 236, 2), (244, 235, 2), (245, 234, 2), (246, 233, 2), (247, 232, 2), (248, 231, 2), (249, 230, 2), (250, 229, 2), (251, 228, 2), (252, 227, 2), (253, 226, 2), (254, 225, 2), (255, 224, 2), (256, 223, 2), (257, 222, 2), (258, 221, 2), (259, 220, 2), (260, 219, 2), (261, 218, 2), (262, 217, 2), (263, 216, 2), (264, 215, 2), (265, 214, 2), (266, 213, 2), (267, 212, 2), (268, 211, 2), (269, 210, 2), (270, 209, 2), (271, 208, 2), (272, 207, 2), (273, 206, 2), (274, 205, 2), (275, 204, 2), (276, 203, 2), (277, 202, 2), (278, 201, 2), (279, 200, 2), (280, 199, 2), (281, 198, 2), (282, 197, 2), (283, 196, 2), (284, 195, 2), (285, 194, 2), (286, 193, 2), (287, 192, 2), (288, 191, 2), (289, 190, 2), (290, 189, 2), (291, 188, 2), (292, 187, 2), (293, 186, 2), (294, 185, 2), (295, 184, 2), (296, 183, 2), (297, 182, 2), (298, 181, 2), (299, 180, 2), (300, 179, 2), (301, 178, 2), (302, 177, 2), (303, 176, 2), (304, 175, 2), (305, 174, 2), (306, 173, 2), (307, 172, 2), (308, 171, 2), (309, 170, 2), (310, 169, 2), (311, 168, 2), (312, 167, 2), (313, 166, 2), (314, 165, 2), (315, 164, 2), (316, 163, 2), (317, 162, 2), (318, 161, 2), (319, 160, 2), (320, 159, 2), (321, 158, 2), (322, 157, 2), (323, 156, 2), (324, 155, 2), (325, 154, 2), (326, 153, 2), (327, 152, 2), (328, 151, 2), (329, 150, 2), (330, 149, 2), (331, 148, 2), (332, 147, 2), (333, 146, 2), (334, 145, 2), (335, 144, 2), (336, 143, 2), (337, 142, 2), (338, 141, 2), (339, 140, 2), (340, 139, 2), (341, 138, 2), (342, 137, 2), (343, 136, 2), (344, 135, 2), (345, 134, 2), (346, 133, 2), (347, 132, 2), (348, 131, 2), (349, 130, 2), (350, 129, 2), (351, 128, 2), (352, 127, 2), (353, 126, 2), (354, 125, 2), (355, 124, 2), (356, 123, 2), (357, 122, 2), (358, 121, 2), (359, 120, 2), (360, 119, 2), (361, 118, 2), (362, 117, 2), (363, 116, 2), (364, 115, 2), (365, 114, 2), (366, 113, 2), (367, 112, 2), (368, 111, 2), (369, 110, 2), (370, 109, 2), (371, 108, 2), (372, 107, 2), (373, 106, 2), (374, 105, 2), (375, 104, 2), (376, 103, 2), (377, 102, 2), (378, 101, 2), (379, 100, 2), (380, 99, 2), (381, 98, 2), (382, 97, 2), (383, 96, 2), (384, 95, 2), (385, 94, 2), (386, 93, 2), (387, 92, 2), (388, 91, 2), (389, 90, 2), (390, 89, 2), (391, 88, 2), (392, 87, 2), (393, 86, 2), (394, 85, 2), (395, 84, 2), (396, 83, 2), (397, 82, 2), (398, 81, 2), (399, 80, 2), (400, 79, 2), (401, 78, 2), (402, 77, 2), (403, 76, 2), (404, 75, 2), (405, 74, 2), (406, 73, 2), (407, 72, 2), (408, 71, 2), (409, 70, 2), (410, 69, 2), (411, 68, 2), (412, 67, 2), (413, 66, 2), (414, 65, 2), (415, 64, 2), (416, 63, 2), (417, 62, 2), (418, 61, 2), (419, 60, 2), (420, 59, 2), (421, 58, 2), (422, 57, 2), (423, 56, 2), (424, 55, 2), (425, 54, 2), (426, 53, 2), (427, 52, 2), (428, 51, 2), (429, 50, 2), (430, 49, 2), (431, 48, 2), (432, 47, 2), (433, 46, 2), (434, 45, 2), (435, 44, 2), (436, 43, 2), (437, 42, 2), (438, 41, 2), (439, 40, 2), (440, 39, 2), (441, 38, 2), (442, 37, 2), (443, 36, 2), (444, 35, 2), (445, 34, 2), (446, 33, 2), (447, 32, 2), (448, 31, 2), (449, 30, 2), (450, 29, 2), (451, 28, 2), (452, 27, 2), (453, 26, 2), (454, 25, 2), (455, 24, 2), (456, 23, 2), (457, 22, 2), (458, 21, 2), (459, 20, 2), (460, 19, 2), (461, 18, 2), (462, 17, 2), (463, 16, 2), (464, 15, 2), (465, 14, 2), (466, 13, 2), (467, 12, 2), (468, 11, 2), (469, 10, 2), (470, 9, 2), (471, 8, 2), (472, 7, 2), (473, 6, 2), (474, 5, 2), (475, 4, 2), (476, 3, 2), (477, 2, 2), (478, 1, 2); INSERT INTO `#__jshopping_shipping_ext_calc` (`id`, `name`, `alias`, `description`, `params`, `shipping_method`, `published`, `ordering`) VALUES (1, 'StandartWeight', 'sm_standart_weight', 'StandartWeight', '', '', 1, 1); INSERT INTO `#__jshopping_usergroups` VALUES (1 , 'Default', '0.00', 'Default', 1, 'Default', 'Default'); INSERT INTO `#__jshopping_config_seo` (`alias`, `ordering`) VALUES ('category', 10),('manufacturers', 20), ('cart', 30), ('wishlist', 40), ('login', 50), ('register', 60), ('editaccount', 70), ('myorders', 80), ('myaccount', 90), ('search', 100), ('search-result', 110), ('myorder-detail', 120), ('vendors', 130),('content-agb', 140),('content-return_policy', 150),('content-shipping', 160),('content-privacy_statement',161),('checkout-address', 170),('checkout-payment', 180),('checkout-shipping', 190),('checkout-preview', 200),('lastproducts', 210),('randomproducts', 220),('bestsellerproducts', 230),('labelproducts', 240),('topratingproducts', 250),('tophitsproducts', 260),('all-products', 270); INSERT INTO `#__jshopping_config_statictext` (`alias`) VALUES ('home'),('manufacturer'),('agb'),('return_policy'),('order_email_descr'),('order_email_descr_end'),('order_finish_descr'),('shipping'),('privacy_statement'),('cart'),('order_email_descr_manually'); INSERT INTO `#__jshopping_vendors` (`id`, `shop_name`, `company_name`, `url`, `logo`, `adress`, `city`, `zip`, `state`, `country`, `f_name`, `l_name`, `middlename`, `phone`, `fax`, `email`, `benef_bank_info`, `benef_bic`, `benef_conto`, `benef_payee`, `benef_iban`, `benef_swift`, `interm_name`, `interm_swift`, `identification_number`, `tax_number`, `additional_information`, `user_id`, `main`, `publish`) VALUES (1, 'Shop name', 'Company', '', '', 'Address', 'City', 'Postal Code ', 'State', 81, 'First name ', 'Last name', '', '00000000', '00000000', '<EMAIL>', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', '', '', 'Additional information', 0, 1, 1);
<filename>html/mediawiki/maintenance/archives/patch-ipb_by_text.sql -- Adding colomn with username of blocker and sets it. -- Required for crosswiki blocks. ALTER TABLE /*$wgDBprefix*/ipblocks ADD ipb_by_text varchar(255) binary NOT NULL default ''; UPDATE /*$wgDBprefix*/ipblocks JOIN /*$wgDBprefix*/user ON ipb_by = user_id SET ipb_by_text = user_name WHERE ipb_by != 0;
<reponame>mmcloughlin/goperf<filename>app/db/query/packages.sql -- name: Pkg :one SELECT * FROM packages WHERE uuid = $1 LIMIT 1; -- name: ModulePkgs :many SELECT * FROM packages WHERE module_uuid = $1 ORDER BY relative_path; -- name: InsertPkg :exec INSERT INTO packages ( uuid, module_uuid, relative_path ) VALUES ( $1, $2, $3 ) ON CONFLICT DO NOTHING;
<gh_stars>10-100 /* * A didactical implementation of operator classes to add meaning to field * and be able to index them in a specific way. * Once the operator class is in place, it is possible to execute queries * to see different output. * The index can be created with something like CREATE INDEX idx_cf_test ON foo( cf cf_date_ops ); * and then it is possible to see how the index returns different "natural" sorting. * Without the index (or with an ordinary index and enable_seqscan set to 'off'): testdb=# select * from cf_test; cf ------------------ aaaaaa78l19f257b bbbbbb78l19f257b cccccc68p06f257k (3 rows) * With the index in place: testdb=# select * from cf_test; cf ------------------ cccccc68p06f257k aaaaaa78l19f257b bbbbbb78l19f257b */ /** * Extract the year of birth from an italian fiscal code */ CREATE OR REPLACE FUNCTION extract_date_from_cf( cf text ) RETURNS date AS $CODE$ DECLARE month_decode char[] := ARRAY[ 'a' -- january , 'b' -- february , 'c' -- march , 'd' -- april , 'e' -- may , 'h' -- june , 'l' -- july , 'm' -- august , 'p' -- september , 'r' -- october , 's' -- november , 't' -- december ]::char[]; _month int; _day int; _year int; i int; BEGIN IF length( cf ) < 16 THEN RETURN NULL; END IF; _year := substring( cf, 7, 2 )::int + 1900; _day := substring( cf, 10, 2 )::int; -- women have the birth day grown by 40 IF _day > 40 THEN _day := _day - 40; END IF; FOR i IN 1 .. array_length( month_decode, 1 ) LOOP RAISE DEBUG 'Inspecting month %', i; IF lower( substring( cf, 9, 1 ) ) = month_decode[ i ] THEN _month := i; EXIT; END IF; END LOOP; RAISE DEBUG 'Year = %, day = %, month = %', _year, _day, _month; RETURN make_date( _year, _month, _day ); END $CODE$ LANGUAGE plpgsql STRICT; /** * -------------------------------------------- * EQUALITY FUNCTION AND OPERATOR * -------------------------------------------- */ CREATE OR REPLACE FUNCTION cf_eq( cf1 text, cf2 text ) RETURNS bool AS $CODE$ BEGIN RETURN extract_date_from_cf( cf1 ) = extract_date_from_cf( cf2 ); END $CODE$ LANGUAGE plpgsql; CREATE OPERATOR ~~= ( LEFTARG = text, RIGHTARG = text, FUNCTION = cf_eq ); /** * ---------------------------------------- * SAME FUNCTION used as support * for internal operator class comparison * ---------------------------------------- */ CREATE OR REPLACE FUNCTION cf_compare( cf1 text, cf2 text ) RETURNS int AS $CODE$ DECLARE d1 date; d2 date; BEGIN d1 := extract_date_from_cf( cf1 ); d2 := extract_date_from_cf( cf2 ); IF d1 > d2 THEN RETURN 1; ELSIF d1 < d2 THEN RETURN -1; ELSE RETURN 0; END IF; END $CODE$ LANGUAGE plpgsql; /** * -------------------------------------------- * LESS-OR_EQUAL FUNCTION AND OPERATOR * -------------------------------------------- */ CREATE OR REPLACE FUNCTION cf_le( cf1 text, cf2 text ) RETURNS bool AS $CODE$ BEGIN RETURN extract_date_from_cf( cf1 ) <= extract_date_from_cf( cf2 ); END $CODE$ LANGUAGE plpgsql; CREATE OPERATOR ~<= ( LEFTARG = text, RIGHTARG = text, FUNCTION = cf_le ); /** * -------------------------------------------- * LESS-THEN FUNCTION AND OPERATOR * -------------------------------------------- */ CREATE OR REPLACE FUNCTION cf_lt( cf1 text, cf2 text ) RETURNS bool AS $CODE$ BEGIN RETURN extract_date_from_cf( cf1 ) < extract_date_from_cf( cf2 ); END $CODE$ LANGUAGE plpgsql; CREATE OPERATOR ~<< ( LEFTARG = text, RIGHTARG = text, FUNCTION = cf_lt ); /** * -------------------------------------------- * GREATER-THEN FUNCTION AND OPERATOR * -------------------------------------------- */ CREATE OR REPLACE FUNCTION cf_gt( cf1 text, cf2 text ) RETURNS bool AS $CODE$ BEGIN RETURN extract_date_from_cf( cf1 ) > extract_date_from_cf( cf2 ); END $CODE$ LANGUAGE plpgsql; CREATE OPERATOR ~>> ( LEFTARG = text, RIGHTARG = text, FUNCTION = cf_gt ); /** * -------------------------------------------- * GREATER-OR-EQUAL FUNCTION AND OPERATOR * -------------------------------------------- */ CREATE OR REPLACE FUNCTION cf_ge( cf1 text, cf2 text ) RETURNS bool AS $CODE$ BEGIN RETURN extract_date_from_cf( cf1 ) >= extract_date_from_cf( cf2 ); END $CODE$ LANGUAGE plpgsql; CREATE OPERATOR ~>= ( LEFTARG = text, RIGHTARG = text, FUNCTION = cf_ge ); /** * --------------------------------------------- * OPERATOR CLASS * --------------------------------------------- */ CREATE OPERATOR CLASS cf_date_ops FOR TYPE TEXT USING BTREE AS OPERATOR 1 ~<<, OPERATOR 2 ~<=, OPERATOR 3 ~~=, OPERATOR 4 ~>=, OPERATOR 5 ~>>, FUNCTION 1 cf_compare( text, text );
<reponame>Dimiorz/A.F.I.M -- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1:3306 -- Tiempo de generación: 14-10-2020 a las 21:41:13 -- Versión del servidor: 10.4.10-MariaDB -- Versión de PHP: 7.3.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Base de datos: `afimdb` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `almacenan` -- DROP TABLE IF EXISTS `almacenan`; CREATE TABLE IF NOT EXISTS `almacenan` ( `ID_BodProd` int(11) NOT NULL AUTO_INCREMENT, `id_producto_FK` int(11) NOT NULL, `id_bodega_FK` int(11) NOT NULL, `fecha_guardado` date NOT NULL, PRIMARY KEY (`ID_BodProd`), KEY `Id_producto_FK` (`id_producto_FK`,`id_bodega_FK`), KEY `Id_bodega_FK` (`id_bodega_FK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `bodegas` -- DROP TABLE IF EXISTS `bodegas`; CREATE TABLE IF NOT EXISTS `bodegas` ( `ID_bodega` int(11) NOT NULL AUTO_INCREMENT, `nombre` varchar(45) NOT NULL, `direccion` varchar(45) NOT NULL, `telefono` int(11) NOT NULL, PRIMARY KEY (`ID_bodega`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `clientes` -- DROP TABLE IF EXISTS `clientes`; CREATE TABLE IF NOT EXISTS `clientes` ( `ID_clientes` int(11) NOT NULL AUTO_INCREMENT, `cedula` int(20) NOT NULL, `nombre` varchar(45) NOT NULL, `apellido_1` varchar(45) NOT NULL, `apellido_2` varchar(45) NOT NULL, `telefono` int(11) NOT NULL, `correo` varchar(45) NOT NULL, PRIMARY KEY (`ID_clientes`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `clisuc` -- DROP TABLE IF EXISTS `clisuc`; CREATE TABLE IF NOT EXISTS `clisuc` ( `ID_CliSuc` int(11) NOT NULL AUTO_INCREMENT, `id_cliente_FK` int(11) NOT NULL, `id_sucursal_FK` int(11) NOT NULL, PRIMARY KEY (`ID_CliSuc`), KEY `Id_cliente_FK` (`id_cliente_FK`,`id_sucursal_FK`), KEY `Id_sucursal_FK` (`id_sucursal_FK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `detalles_factura` -- DROP TABLE IF EXISTS `detalles_factura`; CREATE TABLE IF NOT EXISTS `detalles_factura` ( `ID_detalle` int(11) NOT NULL AUTO_INCREMENT, `id_producto_FK` int(11) NOT NULL, `id_factura_FK` int(11) NOT NULL, `valor_total` int(11) NOT NULL, `cant_total` int(11) NOT NULL, `sub_total` int(11) NOT NULL, PRIMARY KEY (`ID_detalle`), KEY `Id_producto_FK` (`id_producto_FK`,`id_factura_FK`), KEY `Id_factura_FK` (`id_factura_FK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `empresas` -- DROP TABLE IF EXISTS `empresas`; CREATE TABLE IF NOT EXISTS `empresas` ( `ID_empresa` int(11) NOT NULL AUTO_INCREMENT, `NIT` varchar(45) NOT NULL, `nombre` varchar(45) NOT NULL, `direccion` varchar(45) NOT NULL, `telefono` int(11) NOT NULL, PRIMARY KEY (`ID_empresa`) ) ENGINE=InnoDB AUTO_INCREMENT=1424 DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `empresas` -- INSERT INTO `empresas` (`ID_empresa`, `NIT`, `nombre`, `direccion`, `telefono`) VALUES (1, '456789', 'Olimpica', 'CLL90KR3C-40', 3204728); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `entregan` -- DROP TABLE IF EXISTS `entregan`; CREATE TABLE IF NOT EXISTS `entregan` ( `ID_ProvProd` int(11) NOT NULL AUTO_INCREMENT, `id_producto_FK` int(11) NOT NULL, `id_proveedor` int(11) NOT NULL, `fecha_entrega` date NOT NULL, `existencias_entregadas` int(11) NOT NULL, PRIMARY KEY (`ID_ProvProd`), KEY `Id_producto_FK` (`id_producto_FK`,`id_proveedor`), KEY `Id_proveedor` (`id_proveedor`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `facturas` -- DROP TABLE IF EXISTS `facturas`; CREATE TABLE IF NOT EXISTS `facturas` ( `ID_factura` int(11) NOT NULL AUTO_INCREMENT, `fecha_creada` datetime NOT NULL, `iva` tinyint(3) NOT NULL, `tipo_pago` tinyint(1) NOT NULL, `id_cliente_FK` int(11) NOT NULL, PRIMARY KEY (`ID_factura`), KEY `Id_cliente_FK` (`id_cliente_FK`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `productos` -- DROP TABLE IF EXISTS `productos`; CREATE TABLE IF NOT EXISTS `productos` ( `ID_productos` int(11) NOT NULL AUTO_INCREMENT, `nombre` varchar(45) NOT NULL, `existencias` int(11) NOT NULL, `lote` date NOT NULL, `vencimiento` date NOT NULL, `precio_compra` int(11) NOT NULL, PRIMARY KEY (`ID_productos`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `proveedores` -- DROP TABLE IF EXISTS `proveedores`; CREATE TABLE IF NOT EXISTS `proveedores` ( `ID_proveedores` int(11) NOT NULL AUTO_INCREMENT, `NIT` varchar(45) NOT NULL, `nombre` varchar(45) NOT NULL, `direccion` varchar(45) NOT NULL, `telefono` int(11) NOT NULL, PRIMARY KEY (`ID_proveedores`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `sucursales` -- DROP TABLE IF EXISTS `sucursales`; CREATE TABLE IF NOT EXISTS `sucursales` ( `ID_sucursales` int(11) NOT NULL AUTO_INCREMENT, `nombre` varchar(45) NOT NULL, `direccion` varchar(45) NOT NULL, `telefono` int(11) NOT NULL, `id_empresa_FK` int(11) NOT NULL, PRIMARY KEY (`ID_sucursales`), KEY `ID_empresa_FK` (`id_empresa_FK`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `sucursales` -- INSERT INTO `sucursales` (`ID_sucursales`, `nombre`, `direccion`, `telefono`, `id_empresa_FK`) VALUES (1, 'Olimpica santo domingo', 'CLL90KR3C-40', 3204728, 1), (2, 'Olimpica san luis', 'CLL30KR3C-40', 3207828, 1), (3, 'Olimpica santo thomas', 'CLL90KR3C-40', 3207828, 1), (4, 'O<NAME>', 'CLL80KR3C-40', 3214728, 1); -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `almacenan` -- ALTER TABLE `almacenan` ADD CONSTRAINT `almacenan_ibfk_1` FOREIGN KEY (`Id_producto_FK`) REFERENCES `productos` (`ID_productos`) ON UPDATE CASCADE, ADD CONSTRAINT `almacenan_ibfk_2` FOREIGN KEY (`Id_bodega_FK`) REFERENCES `bodegas` (`ID_bodega`) ON UPDATE CASCADE; -- -- Filtros para la tabla `clisuc` -- ALTER TABLE `clisuc` ADD CONSTRAINT `clisuc_ibfk_2` FOREIGN KEY (`Id_cliente_FK`) REFERENCES `clientes` (`ID_clientes`) ON UPDATE CASCADE, ADD CONSTRAINT `clisuc_ibfk_3` FOREIGN KEY (`Id_sucursal_FK`) REFERENCES `sucursales` (`ID_sucursales`) ON UPDATE CASCADE; -- -- Filtros para la tabla `detalles_factura` -- ALTER TABLE `detalles_factura` ADD CONSTRAINT `detalles_factura_ibfk_1` FOREIGN KEY (`Id_producto_FK`) REFERENCES `productos` (`ID_productos`) ON UPDATE CASCADE, ADD CONSTRAINT `detalles_factura_ibfk_2` FOREIGN KEY (`Id_factura_FK`) REFERENCES `facturas` (`ID_factura`) ON UPDATE CASCADE; -- -- Filtros para la tabla `entregan` -- ALTER TABLE `entregan` ADD CONSTRAINT `entregan_ibfk_1` FOREIGN KEY (`Id_producto_FK`) REFERENCES `productos` (`ID_productos`) ON UPDATE CASCADE, ADD CONSTRAINT `entregan_ibfk_2` FOREIGN KEY (`Id_proveedor`) REFERENCES `proveedores` (`ID_proveedores`) ON UPDATE CASCADE; -- -- Filtros para la tabla `facturas` -- ALTER TABLE `facturas` ADD CONSTRAINT `facturas_ibfk_1` FOREIGN KEY (`Id_cliente_FK`) REFERENCES `clientes` (`ID_clientes`) ON UPDATE CASCADE; -- -- Filtros para la tabla `sucursales` -- ALTER TABLE `sucursales` ADD CONSTRAINT `sucursales_ibfk_1` FOREIGN KEY (`ID_empresa_FK`) REFERENCES `empresas` (`ID_empresa`) ON UPDATE CASCADE; COMMIT; /*!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 */;
<gh_stars>0  /****** Object: StoredProcedure [dbo].[app_PatronReadingLog_Insert] Script Date: 01/05/2015 14:43:24 ******/ --Create the Insert Proc CREATE PROCEDURE [dbo].[app_PatronReadingLog_Insert] ( @PID INT, @ReadingType INT, @ReadingTypeLabel VARCHAR(50), @ReadingAmount INT, @ReadingPoints INT, @LoggingDate VARCHAR(50), @Author VARCHAR(50), @Title VARCHAR(150), @HasReview BIT, @ReviewID INT, @PRLID INT OUTPUT ) AS BEGIN INSERT INTO PatronReadingLog ( PID, ReadingType, ReadingTypeLabel, ReadingAmount, ReadingPoints, LoggingDate, Author, Title, HasReview, ReviewID ) VALUES ( @PID, @ReadingType, @ReadingTypeLabel, @ReadingAmount, @ReadingPoints, @LoggingDate, @Author, @Title, @HasReview, @ReviewID ) SELECT @PRLID = SCOPE_IDENTITY() END
/* insert into flytjandi (ID, nafn, faeddur, daudur, lysing, aldur) VALUES ('1', '<NAME>', '1994', '2018','<NAME> (/ˈbiːbər/; born March 1, 1994)[2][3] is a Canadian singer and songwriter. After a talent manager discovered him through his YouTube videos covering songs in 2008 and he signed to RBMG, Bieber released his debut EP, My World, in late 2009. It was certified platinum in the U.S.[4] He became the first artist to haveseven songs from a debut record chart on the Billboard Hot 100.[5] Bieber released his first full-length studio album, My World 2.0, in 2010. It debuted at or near number one in several countries, was certified triple platinum in the U.S.,[4] and contained his single Baby.','24'), ('2','Rihanna','1988','2018','<NAME> (/riˈænə/;[2] 20 February 1988) is a Barbadian singer, songwriter and actress. Born in Saint Michael, Barbados and raised in Bridgetown','30'), ('3','<NAME>','1984','2018','<NAME> (born October 25, 1984), known professionally as <NAME>, is an American singer, songwriter, and television judge.','33'), ('4','Drake','1986','2018','<NAME> (born October 24, 1986)[1] is a Canadian rapper, singer, songwriter, record producer, actor, and entrepreneur.','31'), ('5','<NAME>','1989','2018','<NAME> (born December 13, 1989) is an American singer-songwriter. One of the leading contemporary recording artists, she is known for narrative songs about her personal life, which have received widespread media coverage.','28') insert into tegund(ID, tegund, lagID, flytjandiID) VALUES ('1','Popp','1','1'), ('2','Rokk','2','2'), ('3','Blúss','3','3'), ('4','Rapp','4','4'), ('5','raftonlist','5','5') insert into utgefandi(ID, nafn, stefna, copyright, stadsetning) values ('1','Flæði','Heitir flæði útgáfufyrirtæki. Flæði sérhæfir sig í rapp og popp tónlist, og eltir hvað fólk finnst skemmtileg tónlist að hverju sinni og aðlagar sig neytandanum. Flæði','FLDI', 'Lagmuli 9'), ('2','heimsyn','Heimsyn er utgafufyrirtæki sem sérhæfir sig í rappi og poppi.','hmsn','kaplaskjolsvegur 34') INSERT INTO lagalisti(nafn, ID, texti, utgafudagur, flytjandiID, tegundID, utgafaID) VALUES ('Mark my words', '1', ' Mark my words, thats all that I have Mark my words, give you all I got In every way I will Youre the only reason why Oh I dont wanna live a lie Mark my words Mark my words So you heard it all before Falling in and out of trust Trying to rekindle us Only to lose yourself But I wont let me lose you And I wont let us just fade away After all that weve been through Imma show you more than I ever could say Mark my words, thats all that I have Mark my words, give you all I got In every way I will Youre the only reason why Oh I dont wanna live a lie Mark my words Mark my words Oh-oh ooh oooooha Ooh-oh ah','13.November.2018','1','1','1'), ('Ill show you','2','[Verse 1] My life is a movie and everyones watching So lets get to the good part and past all the nonsense [Pre-Chorus] Sometimes its hard to do the right thing When the pressures coming down like lightning Its like they want me to be perfect When they dont even know that Im hurting [Chorus] Cause lifes not easy, Im not made out of steel Dont forget that Im human, dont forget that Im real Act like you know me, but you never will Theres one thing that I know for sure Ill show you Ill show you Ill show you Ill show you [Verse 2] Ive got to learn things, learn them the hard way Got to see what it feels like, no matter what they say [Pre-Chorus] Sometimes is hard to do the right thing When the pressures coming down like lightning Its like they want me to be perfect When they dont even know that Im hurting [Chorus] Cause lifes not easy, Im not made out of steel Dont forget that Im human, dont forget that Im real Act like you know me, but you never will Theres one thing that I know for sure Ill show you Ill show you Ill show you Ill show you Cause lifes not easy, Im not made out of steel Dont forget that Im human, dont forget that Im real Act like you know me, but you never will Theres one thing that I know for sure','13.November.2018','1','1','1'), ('What do you mean?','3','What do you mean? Oh, oh When you nod your head yes But you wanna say no What do you mean? Hey-ey When you dont want me to move But you tell me to go What do you mean? Oh, what do you mean? Said youre running out of time, what do you mean? Oh, oh, oh, what do you mean? Better make up your mind What do you mean? [Verse 1] You’re so indecisive, what I’m saying Tryna catch the beat, make up your heart Dont know if youre happy or complaining Dont want for us to end, where do I start? [Pre-Chorus] First you wanna go to the left then you wanna turn right Wanna argue all day, make love all night First youre up, then you’re down and then between Oh, I really want to know… [Chorus] What do you mean? Oh, oh When you nod your head yes But you wanna say no What do you mean? Hey-ey When you dont want me to move But you tell me to go What do you mean? Oh, what do you mean? Said youre running out of time, what do you mean? Oh, oh, oh, what do you mean? Better make up your mind What do you mean?','13.November.2018','1','1','1'), ('Sorry','4','You know I try but I dont do too well with apologies I hope I dont run out of time, could someone call a referee? Cause I just need one more shot at forgiveness I know you know that I made those mistakes maybe once or twice By once or twice I mean maybe a couple a hundred times So let me, oh let me redeem, oh redeem, oh myself tonight Cause I just need one more shot at second chances [Pre-Chorus] Yeah, is it too late now to say sorry? Cause Im missing more than just your body Is it too late now to say sorry? Yeah I know that I let you down Is it too late to say Im sorry now?','13.November.2018','1','1','1'), ('Love yourself','5','For all the times that you rained on my parade And all the clubs you get in using my name You think you broke my heart, oh girl for goodness sake You think m crying on my own, well I aint [Refrain] And I didnt wanna write a song Cause I didnt want anyone thinking I still care I dont but, you still hit my phone up And baby Ill be movin on And I think you should be somethin I dont wanna hold back Maybe you should know that','13.November.2018','1','1','1'), ('company','6','Can we, we keep Keep each other company? Maybe we, can be Be each others company Oh company [Verse 1] Lets set each others lonely nights Be each others paradise Need a picture for my frame Someone to share my reign Tell me what you wanna drink Tell you what I got in mind Oh I dont know your name But I feel like thats gonna change [Pre-Chorus] You aint gotta be my lover For you to call me baby Never been about no pressure Aint that serious','13.November.2015','1','1','1'), ('No pressure', '7','You aint gotta answer none of my calls Im believing youll pick up one day I dont wanna add to your pain at all Im praying that time makes a change in your life Im realizing how much you made a change in my life And I dont wanna spend it with nobody else Hear me? Dont nobody deserve myself Oh no, baby what Im saying is [Chorus: <NAME>] You aint gotta make your mind up You aint gotta make your mind up right now Right now, dont rush, no pressure You aint gotta make your mind up You aint gotta make your mind up right now Calm down, dont rush, no pressure','13.November.2015','1','1','1'), ('No Sense','8','It dont make no sense less Im doing it with you It dont make no sense ess Im doing it with you [Verse 1: <NAME>] The sun dont set the same Less youre watching it go down with me The bed wont sleep the same Less youre waking up in here with me Oh, my hears a vacant house When youre gone away, its so empty And love dont make sense when its empty (Oh no) [Pre-Chorus] Ive driven almost every car It aint the same when Im without you Been around a million stars None of them shine brighter than you The sky be so dark now without you Yeah, ooh, baby','13.November.2015','1','1','1'), ('Life is worth living','9','Ended up on a crossroad Tried to figure out which way to go Its like youre stuck on a treadmill Running in the same place You got your hazard lights on now Hoping that somebody would slow down Praying for a miracle Ooh show your grace Had a couple dollars and a quarter tank of gas With a long journey ahead Seen a truck pull over God sent an angel to help you out He gave you direction Showed you how to read a map For the long journey ahead Said it aint over Oh, even in the midst of doubt','13.November.2018','1','1','1'), ('Children','10','What about the children? Look at all the children we can change What about a vision? Be a visionary for a change Were the generation Whos gonna be the one to fight for it? Were the inspiration Do you believe enough to die for it? [Chorus] Whos got the heart? Whos got it? Whose heart is the biggest? Wear it on your sleeve Bet we can make a difference Whos got the heart? Whos got it? Whose heart is the biggest? Wear it on your sleeve Bet we can make a difference Oh yeah Whos got the heart? Oh yeah','13.November.2018','1','1','1'), ('Phresh out the Runway','11','Love it then come and get it I know that ya fucki with it Ya see me ya like it huh Heels Givenchy huh Love it then play it back Plus where the 40 at Im fucking ya cheap trill On top of my 50 mill He eating the cake killa He on it but dont kill her My jewelers are diamond rollers My rock chinchilla Some more for the fun Im rolling like rock stars I got 50 muthafuckers in my watch With my bentz down [Hook: The-Dream] Phresh out the runway Phresh out phresh out the runway Phresh out phresh out the runway Phresh out phresh out the runway Bitch Im phresh out the runway Phresh out phresh out the runway','19.November.2012','2','2','2'), ('Diamonds','12','Find light in the beautiful sea I choose to be happy You and I, you and I Were like diamonds in the sky Youre a shooting star I see a vision of ecstasy When you hold me, Im alive Were like diamonds in the sky [Pre-Chorus] I knew that wed become one right away Oh, right away At first sight I felt the energy of sun rays I saw the life inside your eyes [Chorus] So, shine bright tonight You and I Were beautiful, like diamonds in the sky Eye to eye So alive Were beautiful, like diamonds in the sky [Post-Chorus] Shine bright like a diamond Shine bright like a diamond Shining bright like a diamond Were beautiful, like diamonds in the sky Shine bright like a diamond Shine bright like a diamond Shining bright like a diamond Were beautiful, like diamonds in the sky [Verse 2] Palms rise to the universe As we moonshine and molly Feel the warmth, well never die Were like diamonds in the sky Youre a shooting star I see a vision of ecstasy When you hold me, Im alive Were like diamonds in the sky [Pre-Chorus] At first sight I felt the energy of sun rays I saw the life inside your eyes [Chorus] So, shine bright tonight You and I Were beautiful, like diamonds in the sky Eye to eye So alive Were beautiful, like diamonds in the sky [Post-Chorus] Shine bright like a diamond Shine bright like a diamond Shining bright like a diamond Were beautiful, like diamonds in the sky Shine bright like a diamond Shine bright like a diamond Shining bright like a diamond Were beautiful, like diamonds in the sky [Bridge] Shine bright like a diamond Shine bright like a diamond Shine bright like a diamond [Chorus] So, shine bright tonight You and I Were beautiful, like diamonds in the sky Eye to eye So alive Were beautiful, like diamonds in the sky [Outro] Shine bright like a diamond Shine bright like a diamond Shine bright like a diamond Oh-oh, yeah Shine bright like a diamond Shine bright like a diamond Shine bright like a diamond Shine bright like a diamond ','19.November.2018','2','2','2'), ('Numb','13','Cause Im going numb Im going numb, m going numb Im going numb, Im going numb (Let the champagne splash, let that man get cash Let that man get past, let that man get cash) Im going numb, Im going numb Im going numb, Im going numb Im going numb, Im going numb Im going numb, Im going numb (Let the champagne splash, let that man get cash Let that man get past, let that man get cash) Im going numb, Im going numb Im going numb, Im going ','19.November.2018','2','2','2'), ('Pour it up','14','Throw it up, throw it up Watch it all fall out Pour it up, pour it Thats how we ball out Throw it up, throw it up Watch it all fall out Pour it up, pour it Thats how we ball out [Verse 1] Strip clubs and dolla bills, I still got mo money Patron shots can I get a refill I still got mo money Strippers going up and down that pole And I still got mo money 4o clock and we aint going home, cause I still got mo money Money make the world go round, I still got mo money Bands make your girl go down, I still got mo money','19.November.2012','2','2','2'), ('Jump','15','Tell me that you love me, when you know you dont love me But I guess, I guess, I guess its all good You can play the game, Ima still do my thing Aint no better way for it to be put When you fuck them other girls I bet they be wondering why you always call my name You think Im gonna wait around, I aint got all day [Pre-Chorus] You dont need another lover Dont you let it go I already got it covered Let the others know','19.November.2012','2','2','2'), ('Right now','16','Tomorrow way too far away And we cant get back yesterday But we young right now We got right now So get up right now Cause all we got is right now Tomorrow way too far away And we cant get back yesterday But we young right now We got right now So get up right now Cause all we got is right now','19.November.2012','2','2','2'), ('What now','17','Ive been ignoring this big lump in my throat I shouldnt be crying Tears were for the weaker days Im stronger now, or so I say But somethings missing [Pre-Chorus] Whatever it is It feels like its laughing at me through the glass of a two-sided mirror Whatever it is Its just laughing at me And I just wanna scream [Chorus] What now? I just cant figure it out What now? I guess ll just wait it out (wait it out) What now? What now?','19.November.2012','2','2','2'), ('Stay','18','All along it was a fever A cold sweat, hot-headed believer I threw my hands in the air, said show me something He said, "If you dare come a little closer" Round and around and around and around we go Oh now tell me now tell me now tell me now you know [Chorus: Rihanna] Not really sure how to feel about it Something in the way you move Makes me feel like I cant live without you And it takes me all the way I want you to stay','19.November.2012','2','2','2'), ('No love allowed','19','9-1-1 its a critical emergency yeah Better run-run-run Come and charge him with the 1-4-3, yeah Told me this world was mine Such a beautiful lie Now its done-done-done And his love is no more for me Eh! Hand in the air as he waved me goodbye He say he care but no tears in his eyes And ask me if Im alright, nigga is you blind [Hook] Like a bullet your love hit me to the core I was flying til you knocked me to the floor Its so foolish how you keep me wanting more Im screaming murderer how could you murder us I call it murder no love allowed Yeah yeah ye','19.November.2018','2','2','2'), ('Half of me','20','You saw me on the television Setting fire to all the buildings Yeah, I guess you saw me stealing But youve no idea what Ive been needing Talk about when we were children Not the kind of kid you believe in Saw me on the television Saw me on the television','19.November.2018','2','2','2'), ('Witness','21','If I lost it all today, would you stay? Could my love be enough to stimulate? If shit hit the fan, grenades got thrown Would you still show, oh? Could you go down with me to the mat? Could we get back up and eventually laugh? Roll eyes at highs, cheers in the lows, and stay in the flow, whoa [Pre-Chorus] Cause I, I only got this life And I aint got the time, no Not to get it right, oh [Chorus] Were all just looking for connection Yeah, we all want to be seen Im looking for someone who speaks my language Someone to ride this ride with me Can I get a witness? (witness) Will you be my witness? (witness) Im just looking for a witness in all of this Looking for a witness to get me through this','19.September.2017','3','3','1'), ('Roulette','22','Big city lights Got me flirting with fire Tonight Ima let my hair down Have a few rounds and just let go [Chorus] Like roulette, ooh-ooh Wanna close my eyes and roll it with you Like roulette, ooh-ooh Wanna lose control and forget with you Like roulette (ah-ah-ah-ah) Lets roll it (ah-ah-ah-ah) [Verse 2] They say everything in moderation And sometimes, you got to give in to temptation So I drop a pin to my location Lets roll the dice','19.September.2017','3','3','1'), ('Dark Horse','23','I knew you were, you were gonna come to me And here you are, but you better choose carefully Cause I, Im capable of anything Of anything, and everything Make me your Aphrodite Make me your one and only But dont make me your enemy Your enemy, your enemy [Chorus: Katy Perry] So you wanna play with magic? Boy, you should know what youre falling for Baby, do you dare to do this? Cause Im coming at you like a dark horse Are you ready for, ready for A perfect storm, perfect storm? Cause once yore mine, once youre mine Theres no going back [Verse 2: Katy Perry] Mark my words, this love will make you levitate Like a bird, like a bird without a cage Were down to earth if you choose to walk away Dont walk away Its in the palm of your hand now, baby Its a yes or a no, no maybe So just be sure before you give it all to me All to me, give it all to me','19.September.2017','3','3','1'), ('Act my age','24','They say that I might lose my Midas touch They also say I may become irrelevant But who the fuck are they anyway? I dont care what they say [Chorus] I wont act my age Time is just an invention man has made No, I wont act my age Its just my reflection that is out of date Cause its all in your attitude Its all in your point of view I wont act my age Just need a little bit of Peter Pan and some imagination No, I wont act my age [Verse 2] So, I recommend that you lose your mind It was the only thing that was keeping me behind [Pre-Chorus] They say curb your curiosity They also say prepare to amend your dreams But who the fuck are they anyway? I dont care what they say','19.September.2017','3','3','1'), ('Teenage dream','25','You think Im pretty without any makeup on You think Im funny when I tell the punch line wrong I know you get me So Ill let my walls come down, down Before you met me I was alright, but things were kinda heavy You brought me to lif Now every February, youll be my Valentine, Valentine [Pre-Chorus] Lets go all the way tonight No regrets, just love We can dance until we die You and I, well be young forever [Chorus] You make me feel like Im living a teenage dream The way you turn me on I cant sleep Lets run away and dont ever look back Dont ever look back My heart stops when you look at me Just one touch Now baby, I believe this is real So take a chance and dont ever look back Dont ever look back ','19.September.2017','3','3','1'), ('Hotn cold','26','You think Im pretty without any makeup on You think Im funny when I tell the punch line wrong I know you get me So Ill let my walls come down, down Before you met me I was alright, but things were kinda heavy You brought me to life Now every February, youll be my Valentine, Valentine [Pre-Chorus] Lets go all the way tonight No regrets, just love We can dance until we die You and I, well be young forever [Chorus] You make me feel like Im living a teenage dream The way you turn me on I cant sleep Lets run away and dont ever look back Dont ever look back My heart stops when you look at me Just one touch Now baby, I believe this is real So take a chance and dont ever look back Dont ever look back ','19.September.2017','3','3','1'), ('Last friday night','27','Theres a stranger in my bed Theres a pounding in my head Glitter all over the room Pink flamingos in the pool I smell like a minibar DJs passed out in the yard Barbies on the barbeque This a hickie or a bruise? [Pre-Chorus] Pictures of last night ended up online Im screwed, oh well Its a blacked out blur, but Im pretty sure it ruled Damn [Chorus] Last Friday night Yeah, we danced on tabletops And we took too many shots Think we kissed, but I forgot Last Friday night Yeah, we maxed our credit cards And got kicked out of the bar, so we hit the boulevard Last Friday night We went streaking in the park Skinny dipping in the dark, then had a ménage à trois Last Friday night Yeah, I think we broke the law Always say were going to stop-op, oh woah','19.September.2017','3','3','1'), ('I kissed a girl','28','This was never the way I planned Not my intention I got so brave, drink in hand Lost my discretion Its not what Im used to Just want to try you on Im curious for you Caught my attention [Chorus] I kissed a girl and I liked it The taste of her cherry chapstick I kissed a girl just to try it I hope my boyfriend dont mind it It felt so wrong, it felt so right Dont mean Im in love tonight I kissed a girl and I liked it I liked it [Verse 2] No, I dont even know your name It doesnt matter Youre my experimental game Just human nature Its not what good girls do Not how they should behave My head gets so confused Hard to obey ','19.September.2017','3','3','1'), ('cosmic angel', '29','Shes my garden, Im her love Celestial body from above I throw a diamond in a well Forget all that I know Cause I just wanna live inside your eyes In between a million different stars Underneath the feeling of it all Outside the garden of your thoughts [Chorus] Falling this far And still confused as to what you are If Heaven is your heart This hell Ive been living in is so dark [Verse 2] Well, Im her muse and shes my queen And shes the serpent of the sea She makes waves, we know them well And Ill be drowning when they go Well, I just wanna live inside your eyes In between a million different stars Underneath the feeling of it all Outside the garden of your thoughts ','19.September.2017','3','3','1'), ('Tsunami','30','So baby, come and take a swim with me Make me ripple til Im wavy Dont be scared to dive in deep And start a tsunami Tsunami [Bridge] Oh, youre waking up an ocean of emotion That my body cant hide (cant hide) Tsunami (oh-oh-oh-oh) Now youre soaked in my devotion Cause you opened up a paradise (inside) Tsunami (oh-oh-oh-oh-oh-oh) Tsunami [Chorus] So baby, come and take a swim with me (take a swim with me) Make me ripple til Im wavy (make me ripple, baby) Dont be scared to dive in deep (dont be scared to) And start a tsunami Tsunami ','19.September.2017','3','3','1'), ('U with me?','31','On some DMX shit I group DM my exes I tell em they belong to me, that goes on for forever And I think we just get closer when we not together You tell me that Im confusin More immature than <NAME> Cuts too deep for a band-aid solution We too deep in this thing, youll never lose me LOLOL, Im glad you find this shit amusin Heard a lot about me fore we started off I know you heard that my pool parties like <NAME> I know you heard that my girl is sponsored by Audemars Thats why she always correctin me when my time is off And my house is the definition Of alcohol and weed addiction You got a different vision You wanna walk around naked in the kitchen Without runnin into one of my niggas Thats not the way we livin Too much goin on, its just not realistic These days I dont talk bout them days like I miss em And you shouldnt miss em either, we different people But every time we speakin [Hook] Its like a lot of games bein played Hows it goin down? If its on til we gone, then I gots to know now Is you wit me or what? Yeah Its like a lot of games are bein played Hows it goin down? If its on til we gone, then I gots to know now Is you wit me or what?','29.april.2016','4','4','2'), ('Feel no ways','32','I should be downtown, whipping on the way to you You got something that belongs to me Your body language says it all Despite the things you said to me Who is it thats got you all gassed up? Changin your opinion on me I was only gone for the last few months But you dont have the time to wait on me [Hook] I tried with you Theres more to life than sleeping in and getting high with you I had to let go of us to show myself what I could do And that just didnt sit right with you And now youre tryna make me feel a way, on purpose Now youre throwing it back in my face, on purpose Now youre talking down on my name, on purpose, yeah And you dont feel no way, you think I deserve it Worlds, worlds, worlds famous Worlds, worlds, worlds famous','29.april.2016','4','4','2'), ('Hype','33','Yeah, I pull up in Lexus like its I just hit a lick, I got to hit a next one Last year I know you learned your lesson I could GPS you if you need addressi Boss up, Im the bigger homie But m one year older than my lil homie they was biddin on me But Im Young Money, got it written on me Ok now we got some action Everything I said, it happened That boy light as <NAME> But on verses, he been blackin Chasin women a distraction They wan be on TV right next to me You cannot be here right next to me Dont you see Riri right next to me? I hate a rapper especially They feel the same, but they hide it They just discuss it in private Dont get along man, we tried it Whats the point in even tryin? I hate a goofy especially They always dyin to mention me They gotta die out eventually I cannot give you the recipe You know the game is sold separately Swear I just had an epiphany It cost me 50 at Tiffanys Shout out to Tiffany, Stephanie They used to always come check for me My enemies wanna be friends with my other enemies I dont let it get to me','29.april.2016','4','4','2'), ('Weston road flows','34','One of dem ones—right Weston Road Flows, I did this shit for my nigga Renny Back when we couldnt buy pizza cause we were down to pennies Feel like we go back a century, run in the store for Centuries Then bring it back to your brother, man, we had to respect it He was wavy, doin mixtapes out of your basement He let us hit the weed on occasion for entertainment Then he would leave us at the house and go out on a mission We probably wouldve got in less trouble just goin with him Feel like I never say much but, man, theres a lot to know Feel like the difference between us really starti to show Im lookin at they first week numbers like, "What are those?" I mean, you boys not even coming close I gave niggas like you a reason for celebration You number one and Im <NAME>, we tradin places Look in the mirror, Im closer than I really appear','29.april.2016','4','4','2'), ('Redemption','35','Why would I say all these things to have you feelin a way? Why would I tell you Im 30 away if Im not on the way? Why do I settle for women that force me to pick up the pieces? Why do I want an independent woman To feel like she needs me?—I lost my way [Chorus] Im searchin for these words to say to you Please give me time Cause Im searchin for these words to say to you Oh, please give me time Cause Im searchin for these words to say to you right now Redemptions on your mind when you think about me, yeah Redemption on your mind when you think about me, yeah','29.april.2016','4','4','2'), ('With you','36','Its about us right now, girl, where you going? Its about us right now, girl, where you going? Im with you [Verse 1: PARTYNEXTDOOR] Yeah, I cant get enough of you, babe Bottles open up so you can try and open up for me, baby M.I.A. in the M.I.A You do you, girl, the haters gon hate Cut them off like you a sensei, girl Oh, I know you feel what I feel Breaking you off, its so real I cant fake that, babe My loves locked down and you cuffing it Youre the only one I trust with it Youre the only one that stuck with it ','29.april.2016','4','4','2'), ('Faithful','37','Foot off in their ass is what Ken told me Niggas like to play games Cause they feel like they know me (they know me) You dont know me, nigga, I done changed (I done changed) So dont be trying to be putting on shit off in the game (game) This aint no motherfucking ninety-one We out here rapping for money, you niggas rapping for fun I dont fuck with nobody in this shit but Bun (In this shit but Bun)','29.april.2016','4','4','2'), ('Still here','38','Me and all my niggas doin well, doin well, dog You not from the city, I could tell, I could tell, dog Did it, did it, did it by myself, by myself, dog Blew up and Im in the city still, Im still here, dog [Verse 1] How did I finesse all of this shit from Jane and Weston? Girls all in my bed and they dont trip off first impressions Girls all in your bed and they just ask a hundred questions I cant fuck with you no more cause you be actin extra Do your favorite rapper like my son, like my son though Nothing mutual about my funds, bout my funds though All you niggas fightin over crumbs, where the bread at? How they feel about you where youre from, where yo bed at? I dont need no pill to speak my mind, I dont need that I make people pay me for my time, yeah, I need that And I see your girl like all the time, all the time though I cant tell you if shes yours or mine but I do know','29.april.2016','4','4','2'), ('Controlla','39','[Verse 2: Drake] Okay, you like it, when I get Aggressive, tell you to Go slower, go faster Like controlla, controlla, yeah Like controlla, controlla, yeah [Bridge: Drake] And I’m never on a waste ting, shorty I do it how you say you want it Them girls, they just wanna take my money They dont want me to give you nothing They dont want you to have nothing They dont wanna see me find your lovin They dont wanna see me Smiling back when they pree [Hook: Drake] Knowing Id lie for you Thinking Id die for you Jodeci "Cry for You" Do things when you want me to Like controlla, controlla, yeah Like controlla, controlla, yeah','29.april.2016','4','4','2'), ('One dance','40','[Verse 1: Drake] Grips on your waist, front way, back way You know that I dont play Streets not safe but I never run away Even when Im away Oti, oti Theres never much love when we go OT I pray to make it back in one piece I pray, I pray [Chorus: Drake] Thats why I need a one dance Got a Hennessy in my hand One more time fore I go Higher powers taking a hold on me I need a one dance Got a Hennessy in my hand One more time fore I go Higher powers taking a hold on me','29.april.2016','4','4','2'), ('Ready for it','41','Knew he was a killer first time that I saw him Wondered how many girls he had loved and left haunted But if hes a ghost, then I can be a phantom Holdin him for ransom, some Some boys are tryin too hard, he dont try at all though Younger than my exes, but he act like such a man, so I see nothing better, I keep him forever Like a vendetta-ta [Pre-Chorus] I, I, I see how this is gon go Touch me and youll never be alone I-Island breeze and lights down low No one has to know [Chorus] In the middle of the night, in my dreams You should see the things we do, baby In the middle of the night, in my dreams I know Im gonna be with you So I take my time Are you ready for it?','10.November.2017','5','5','1'), ('End game','42','I wanna be your endgame I wanna be your first string I wanna be your A-Team (whoa, whoa, whoa) I wanna be your endgame, endgame [Post-Chorus: Taylor Swift & Future] Big reputation, big reputation Ooh, you and me, we got big reputations, ah And you heard about me, ooh I got some big enemies (yeah) Big reputation, big reputation Ooh, you and me would be a big conversation, ah (git, git) And I heard about you, ooh (yeah) You like the bad ones, too [Verse 1: Future] You so dope, dont overdose Im so stoked, I need a toast We do the most, Im in the Ghost like Im whippin a boat I got a reputation, girl that dont precede me (yeah) Im one call away whenever you need me (yeah) Im in a G5 (yeah), come to the A-Side (yeah) I got a bad boy persona, thats what they like (what they like) You love it, I love it, too cause you my type (you my type) You hold me down, and I protect you with my life','10.November.2017','5','5','1'), ('I did something bad','43','I never trust a narcissist, but they love me So I play em like a violin And I make it look oh-so-easy Cause for every lie I tell them, they tell me three This is how the world works Now all he thinks about is me [Pre-Chorus 1] I can feel the flames on my skin Crimson red paint on my lips If a man talks shit, then I owe him nothing I dont regret it one bit, cause he had it coming [Chorus] They say I did something bad Then whys it feel so good? They say I did something bad But whys it feel so good? Most fun I ever had And Id do it over and over and over again if I could It just felt so good, good','10.November.2017','5','5','1'), ('Dont blame me','44','Dont blame me, love made me crazy If it doesnt, you aint doin it right Lord, save me, my drug is my baby Ill be usin for the rest of my life [Verse 1] Ive been breakin hearts a long time And toyin with them older guys Just playthings for me to use Something happened for the first time In the darkest little paradise Shakin, pacin, I just need you [Pre-Chorus] For you, I would cross the line I would waste my time I would lose my mind They say, Shes gone too far this time [Chorus] Dont blame me, love made me crazy If it doesnt, you aint doin it right Lord, save me, my drug is my baby Ill be usin for the rest of my life Dont blame me, love made me crazy If it doesnt, you aint doin it right Oh, Lord, save me, my drug is my baby Ill be usin for the rest of my life ','10.November.2017','5','5','1'), ('Delicate','45','This aint for the best My reputations never been worse, so You must like me for me… We cant make Any promises now, can we, babe? But you can make me a drink [Verse 1] Dive bar on the East Side, where you at? Phone lights up my nightstand in the black Come here, you can meet me in the back Dark jeans and your Nikes, look at you Oh damn, never seen that color blue Just think of the fun things we could do Cause I like you [Pre-Chorus] This aint for the best My reputations never been worse, so You must like me for me… Yeah, I want you We cant make Any promises now, can we, babe? But you can make me a drink','10.November.2017','5','5','1'), ('Look what you made me do','46','I dont like your little games Dont like your tilted stage The role you made me play Of the fool, no, I dont like you I dont like your perfect crime How you laugh when you lie You said the gun was mine Isnt cool, no, I dont like you (oh) [Pre-Chorus] But I got smarter, I got harder in the nick of time Honey, I rose up from the dead, I do it all the time Ive got a list of names and yours is in red, underlined I check it once, then I check it twice, oh! [Chorus] Ooh, look what you made me do Look what you made me do Look what you just made me do Look what you just made me— Ooh, look what you made me do Look what you made me do Look what you just made me do Look what you just made me do ','10.November.2017','5','5','1'), ('So it goes..','47','See you in the dark All eyes on you, my magician All eyes on us You make everyone disappear, and Cut me into pieces Gold cage, hostage to my feelings Back against the wall Trippin, trip-trippin when youre gone [Pre-Chorus] Cause we break down a little But when you get me alone, its so simple Cause baby, I know what you know We can feel it [Chorus] And all our pieces fall Right into place Get caught up in a moment Lipstick on your face So it goes… Im yours to keep And Im yours to lose You know Im not a bad girl, but I Do bad things with you So it goes… [Verse 2] Met you in a bar All eyes on me, your illusionist All eyes on us I make all your grey days clear And wear you like a necklace Im so chill, but you make me jealous But I got your heart Skippin, skip-skippin when Im gone','10.November.2017','5','5','1'), ('Goergeous','48','You should take it as a compliment That I got drunk and made fun of the way you talk You should think about the consequence Of your magnetic field being a little too strong And I got a boyfriend, hes older than us Hes in the club doing I dont know what Youre so cool, it makes me hate you so much (I hate you so much) [Pre-Chorus 1] Whiskey on ice, Sunset and Vine Youve ruined my life by not being mine [Chorus] Youre so gorgeous I cant say anything to your face Cause look at your face And Im so furious At you for making me feel this way But what can I say? Youre gorgeous [Verse 2] You should take it as a compliment That Im talking to everyone here but you And you should think about the consequence Of you touching my hand in a darkened room If youve got a girlfriend, Im jealous of her But if youre single thats honestly worse Cause youre so gorgeous it actually hurts (Honey, it hurts)','10.November.2017','5','5','1'), ('Getaway car','49','[Intro] No, nothing good starts in a getaway car [Verse 1] It was the best of times, the worst of crimes I struck a match and blew your mind But I didt mean it And you didnt see it The ties were black, the lies were white In shades of gray in candlelight I wanted to leave him I needed a reason [Pre-Chorus] X marks the spot where we fell apart He poisoned the well, I was lyin to myself I knew it from the first Old Fashioned, we were cursed We never had a shotgun shot in the dark (Oh!) [Chorus] You were drivin the getaway car We were flyin, but we never get far Dont pretend its such a mystery Think about the place where you first met me Ridin in a getaway car There were sirens in the beat of your heart I shoulda known Id be the first to leave Think about the place where you first met me In a getaway car, oh-oh-oh No, they never get far, oh-oh-ahh No, nothing good starts in a getaway car [Verse 2] It was the great escape, the prison break The light of freedom on my face But you werent thinkin And I was just drinkin Well, he was runnin after us, I was screamin, Go, go, go! But with three of us, honey, its a sideshow','10.November.2017','5','5','1'), ('King of my heart','50','Im perfectly fine, I live on my own I made up my mind, Im better off bein alone We met a few weeks ago Now you try on callin me baby, like tryin on clothes [Pre-Chorus] Salute to me, Im your American Queen And you move to me like Im a Motown beat And we rule the kingdom inside my room Cause all the boys and their expensive cars With their Range Rovers and their Jaguars Never took me quite where you do [Chorus] And all at once, you are the one I have been waiting for King of my heart, body, and soul, ooh whoa And all at once, youre all I want, Ill never let you go King of my heart, body, and soul, ooh whoa [Post-Chorus] And all at once, Ive been waiting, waiting Ooh whoa, ooh whoa And all at once, you are the one, I have been waiting, waiting Body and soul, ooh whoa And all at once [Verse 2] Late in the night, the citys asleep Your love is a secret Im hoping, dreaming, dying to keep Change my priorities The taste of your lips is my idea of luxury','10.November.2017','5','5','1') insert into askrifandi(ID, nafn, email, heimili) VALUES ('1','<NAME>','<EMAIL>', 'Fellsmuli'), ('2','<NAME>','<EMAIL>', 'laugavegur'), ('3','<NAME>','<EMAIL>', 'skipasund'), ('4','<NAME>','<EMAIL>', 'hverfisgata'), ('5','<NAME>','<EMAIL>', 'breiðholtsvegur') insert into lagaval(askrifandiID, flytjandiID, lagID, dagsetning) VALUES ('1','1','2','10 7 2017'), ('1','1','4','9 7 2017'), ('1','1','6','5.7.2017'), ('1','2','14','10.3.2017'), ('1','3','24','3.3.2017'), ('1','4','35','23.7.2014'), ('1','5','46','4.2.2013'), ('1','1','7','2.3.2018'), ('1','1','2','10.7.2017'), ('1','1','3','10.7.2017'), ('2','2','13','10.7.2017'), ('2','1','9','10.7.2017'), ('2','4','37','4.2.2011'), ('2','2','13','30.3.2013'), ('2','3','33','1.7.2014'), ('2','1','3','26.2.2015'), ('2','1','2','6.1.2013'), ('2','1','6','4.4.2012'), ('2','5','47','23.5.2012'), ('2','5','40','25.6.2013'), ('3','5','48','23.8.2018'), ('3','4','32','23.12.2014'), ('3','4','31','30.11.2000'), ('3','4','38','12.4.2012'), ('3','3','23','11.2.2011'), ('3','3','26','15.1.2014'), ('3','2','19','17.6.2016'), ('3','1','8','25.8.2016'), ('3','5','42','25.5.2007'), ('3','2','17','25.9.2014'), ('4','4','38','25.5.2013'), ('4','2','12','10.7.2012'), ('4','5','43','10.7.2011'), ('4','1','9','10.5.2016'), ('4','1','6','10.3.2015'), ('4','2','17','10.2.2018'), ('4','2','14','10.2.2014'), ('4','2','12','10.1.2013'), ('4','3','29','10.2.2012'), ('4','4','35','10.5.2015'), ('5','5','47','10.4.2017'), ('5','3','21','10.3.2014'), ('5','4','36','10.3.2013'), ('5','1','1','10.3.2013'), ('5','1','6','17.4.2012'), ('5','2','17','10.6.2015'), ('5','3','25','3.6.2016'), ('5','5','41','25.3.2015'), ('5','4','36','10.2.2015'), ('5','2','23','10.8.2017') */ insert into midasala(fjolidMida, stadur, flytjandiID, dagsetning) values ('300','Grensás', '4','10.5.2017'), ('2000','Hard rock', '4','10.5.2017'), ('254','Laugavegur', '4','10.5.2017'), ('14','Bonus', '4','15.5.2017'), ('32','Kronan', '4','12.5.2017'), ('21','Austur', '4','15.4.2017'), ('351','midi.is', '4','18.4.2017'), ('465','Hlemmur', '4','11.4.2017'), ('214','Laugarvegur', '4','10.5.2017'), ('25','Laugardalshöll', '4','10.5.2017'),
<filename>database-schema/scripts/20180716153000_create_application.sql CREATE TABLE applicationmanagement.application ( -- Application fields id UUID NOT NULL ,local_authority_code VARCHAR(10) NOT NULL ,app_type_code VARCHAR(10) NOT NULL ,is_payment_taken BOOLEAN NOT NULL ,submission_datetime TIMESTAMP NOT NULL ,existing_badge_no VARCHAR(6) ,party_code VARCHAR(10) NOT NULL -- Contact fields ,contact_name VARCHAR(100) ,contact_building_street VARCHAR(100) NOT NULL ,contact_line2 VARCHAR(100) ,contact_town_city VARCHAR(100) NOT NULL ,contact_postcode VARCHAR(8) NOT NULL ,primary_phone_no VARCHAR(20) ,secondary_phone_no VARCHAR(20) ,contact_email_address VARCHAR(100) -- Person or Org fields ,holder_name VARCHAR(100) NOT NULL ,org_is_charity BOOLEAN ,org_charity_no VARCHAR(100) ,no_of_badges INTEGER ,nino VARCHAR(9) ,dob DATE ,gender_code VARCHAR(10) ,holder_name_at_birth VARCHAR(100) -- Eligibility ,eligibility_code VARCHAR(10) ,eligibility_conditions VARCHAR(100) ,benefit_is_indefinite BOOLEAN ,benefit_expiry_date DATE ,walk_other_desc VARCHAR(100) ,walk_length_code VARCHAR(10) ,walk_speed_code VARCHAR(10) ,arms_driving_freq VARCHAR(100) ,arms_is_adapted_vehicle BOOLEAN ,arms_adapted_veh_desc VARCHAR(100) ,blind_registered_at_la_code VARCHAR(10) ,bulky_equipment_type_code VARCHAR(10) ,url_proof_eligibility VARCHAR(255) ,url_proof_address VARCHAR(255) ,url_proof_identity VARCHAR(255) ,url_badge_photo VARCHAR(255) ,PRIMARY KEY(id) ); COMMENT ON TABLE application IS 'Holds blue badge application record.'; COMMENT ON COLUMN application.id IS 'PK, a UUID.'; COMMENT ON COLUMN application.local_authority_code IS 'Local authority.'; COMMENT ON COLUMN application.app_type_code IS 'NEW, CANCEL, RENEW, REPLACE'; COMMENT ON COLUMN application.is_payment_taken IS 'true if payment received as part of online application.'; COMMENT ON COLUMN application.submission_datetime IS 'Date and time application created.'; COMMENT ON COLUMN application.existing_badge_no IS 'For a replacement, cancellation or renewal application.'; COMMENT ON COLUMN application.party_code IS 'Person or organisation ref code.'; COMMENT ON COLUMN application.contact_name IS 'Application contact name for organisation.'; COMMENT ON COLUMN application.contact_building_street IS 'Applicant address line 1.'; COMMENT ON COLUMN application.contact_line2 IS 'Applicant address line 2.'; COMMENT ON COLUMN application.contact_town_city IS 'Applicant town or city (or hamlet etc.).'; COMMENT ON COLUMN application.contact_postcode IS 'Applicant postcode.'; COMMENT ON COLUMN application.primary_phone_no IS 'Applicant main contact number.'; COMMENT ON COLUMN application.secondary_phone_no IS 'Applicant secondary contact number.'; COMMENT ON COLUMN application.contact_email_address IS 'Applicant email address.'; COMMENT ON COLUMN application.holder_name IS 'Badge holder name, for person or organisation.'; COMMENT ON COLUMN application.org_is_charity IS 'true if party is an organisation and a charity.'; COMMENT ON COLUMN application.org_charity_no IS 'Charity number if party is an organisation and a charity.'; COMMENT ON COLUMN application.no_of_badges IS 'Number of badges being applied for. Can only be 1 if a person.'; COMMENT ON COLUMN application.nino IS 'If person, national insurance number.'; COMMENT ON COLUMN application.dob IS 'If person, date of birth.'; COMMENT ON COLUMN application.gender_code IS 'MALE, FEMALE.'; COMMENT ON COLUMN application.holder_name_at_birth IS 'If applicant a person, then name at birth if changed.'; COMMENT ON COLUMN application.eligibility_code IS 'Ref data code of eligibility reason.'; COMMENT ON COLUMN application.eligibility_conditions IS 'Description of eligibility conditions'; COMMENT ON COLUMN application.benefit_is_indefinite IS 'true if applicant is receiving a benefit indefinitely.'; COMMENT ON COLUMN application.benefit_expiry_date IS 'Expiry date of benefit if not indefinite.'; COMMENT ON COLUMN application.walk_other_desc IS 'Description of walking difficulty not covered by walking type codes.'; COMMENT ON COLUMN application.walk_length_code IS 'From ref data group WALKLEN, e.g. LESSMIN, FIVETEN.'; COMMENT ON COLUMN application.walk_speed_code IS 'From ref data group WALKSPEED, e.g. FAST, SAME.'; COMMENT ON COLUMN application.arms_driving_freq IS 'Freetext description of driving frequency.'; COMMENT ON COLUMN application.arms_is_adapted_vehicle IS 'true if applicants vehicle is adapted for disibility of arms.'; COMMENT ON COLUMN application.arms_adapted_veh_desc IS 'Freetext description of vehicle adaptions.'; COMMENT ON COLUMN application.blind_registered_at_la_code IS 'If registered blind, then the local authority holding the registration.'; COMMENT ON COLUMN application.bulky_equipment_type_code IS 'From ref data group BULKEQUIP.'; COMMENT ON COLUMN application.url_proof_eligibility IS 'Location of uploaded eligibility proof documentation.'; COMMENT ON COLUMN application.url_proof_address IS 'Location of uploaded proof of address documentation.'; COMMENT ON COLUMN application.url_proof_identity IS 'Location of uploaded proof of address documentation.'; COMMENT ON COLUMN application.url_badge_photo IS 'Location of uploaded badge photograph.'; CREATE TABLE applicationmanagement.app_vehicle( application_id UUID NOT NULL ,registration_no VARCHAR(7) NOT NULL ,type_code VARCHAR(10) ,usage_frequency VARCHAR(100) ,PRIMARY KEY(application_id, registration_no) ); ALTER TABLE applicationmanagement.app_vehicle ADD CONSTRAINT app_vehicle_application_id_fk FOREIGN KEY (application_id) REFERENCES application(id) ON DELETE CASCADE; COMMENT ON TABLE app_vehicle IS 'Holds details of an organisations vehicles.'; COMMENT ON COLUMN app_vehicle.application_id IS 'FK to application.'; COMMENT ON COLUMN app_vehicle.registration_no IS 'Vehicle registration number.'; COMMENT ON COLUMN app_vehicle.type_code IS 'From reference data group VEHICLETYP e.g. CAR.'; CREATE TABLE applicationmanagement.app_walking_type( application_id UUID NOT NULL ,walking_type_code VARCHAR(10) NOT NULL ,PRIMARY KEY (application_id, walking_type_code) ); ALTER TABLE applicationmanagement.app_walking_type ADD CONSTRAINT app_walking_type_application_id_fk FOREIGN KEY (application_id) REFERENCES application(id) ON DELETE CASCADE; COMMENT ON TABLE app_walking_type IS 'Holds short codes from the WALKDIFF group of data for an application.'; COMMENT ON COLUMN app_walking_type.application_id IS 'FK to application.'; COMMENT ON COLUMN app_walking_type.walking_type_code IS 'The key, e.g. BALANCE or PAIN.'; CREATE TABLE applicationmanagement.app_walking_aid( application_id UUID NOT NULL ,aid_how_provided_code VARCHAR(10) ,aid_description VARCHAR(100) ,aid_usage VARCHAR(100) ); CREATE INDEX app_walking_aid_application_id_ix ON applicationmanagement.app_walking_aid(application_id); ALTER TABLE applicationmanagement.app_walking_aid ADD CONSTRAINT app_walking_aid_application_id_fk FOREIGN KEY (application_id) REFERENCES application(id) ON DELETE CASCADE; COMMENT ON TABLE app_walking_aid IS 'Holds short codes from the WALKMOB group of data for an application.'; COMMENT ON COLUMN app_walking_aid.application_id IS 'FK to application.'; COMMENT ON COLUMN app_walking_aid.aid_how_provided_code IS 'The key, e.g. PRIVATE, SOCIAL.'; COMMENT ON COLUMN app_walking_aid.aid_description IS 'Freetext description of the walking aid.'; COMMENT ON COLUMN app_walking_aid.aid_usage IS 'Freetext description of the usage of the walking aid.';; CREATE TABLE applicationmanagement.app_treatment( application_id UUID NOT NULL ,treatment_description VARCHAR(100) ,treatment_time VARCHAR(100) ); CREATE INDEX app_treatment_application_id_ix ON applicationmanagement.app_treatment(application_id); ALTER TABLE applicationmanagement.app_treatment ADD CONSTRAINT app_treatment_application_id_fk FOREIGN KEY (application_id) REFERENCES application(id) ON DELETE CASCADE; COMMENT ON TABLE app_treatment IS 'Walking difficulty treatments for an application.'; COMMENT ON COLUMN app_treatment.application_id IS 'FK to application.'; COMMENT ON COLUMN app_treatment.treatment_description IS 'Freetext description of treatment.'; COMMENT ON COLUMN app_treatment.treatment_time IS 'Freetext description of treatment duration.'; CREATE TABLE applicationmanagement.app_medication( application_id UUID NOT NULL ,med_name VARCHAR(100) ,med_is_prescribed BOOLEAN ,med_quantity VARCHAR(100) ,med_frequency VARCHAR(100) ); CREATE INDEX app_medication_application_id ON applicationmanagement.app_medication(application_id); ALTER TABLE applicationmanagement.app_medication ADD CONSTRAINT app_medication_application_id_fk FOREIGN KEY (application_id) REFERENCES application(id) ON DELETE CASCADE; COMMENT ON TABLE app_medication IS 'Walking difficulty medications being taken.'; COMMENT ON COLUMN app_medication.application_id IS 'FK to application.'; COMMENT ON COLUMN app_medication.med_name IS 'Freetext name of medication.'; COMMENT ON COLUMN app_medication.med_is_prescribed IS 'true if a prescribed medication.'; COMMENT ON COLUMN app_medication.med_quantity IS 'Freetext description of medication quantity.'; COMMENT ON COLUMN app_medication.med_quantity IS 'Freetext description of medication frequency.'; CREATE TABLE applicationmanagement.app_healthcare_professional( application_id UUID NOT NULL ,prof_name VARCHAR(100) ,prof_location VARCHAR(100) ); CREATE INDEX app_healthcare_professional_application_id_ix ON applicationmanagement.app_healthcare_professional(application_id); ALTER TABLE applicationmanagement.app_healthcare_professional ADD CONSTRAINT app_healthcare_professional_application_id_fk FOREIGN KEY (application_id) REFERENCES application(id) ON DELETE CASCADE; COMMENT ON TABLE app_healthcare_professional IS 'Healthcare professionals for an application.'; COMMENT ON COLUMN app_healthcare_professional.prof_name IS 'Name of the healthcare professional.'; COMMENT ON COLUMN app_healthcare_professional.prof_location IS 'Location of the healthcare professional.'; --//@UNDO -- SQL to undo the change goes here. DROP TABLE IF EXISTS applicationmanagement.app_walking_type; DROP TABLE IF EXISTS applicationmanagement.app_vehicle; DROP TABLE IF EXISTS applicationmanagement.app_walking_aid; DROP TABLE IF EXISTS applicationmanagement.app_treatment; DROP TABLE IF EXISTS applicationmanagement.app_medication; DROP TABLE IF EXISTS applicationmanagement.app_healthcare_professional; DROP TABLE IF EXISTS applicationmanagement.application;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.9.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Nov 11, 2020 at 03:45 AM -- Server version: 10.3.15-MariaDB -- PHP Version: 7.3.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `laravel_8_ecom` -- -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `jobs` -- INSERT INTO `jobs` (`id`, `queue`, `payload`, `attempts`, `reserved_at`, `available_at`, `created_at`) VALUES (9, 'default', '{\"uuid\":\"663700b5-de2b-4eaa-89c5-0cd53b378dbb\",\"displayName\":\"App\\\\Jobs\\\\OrderPlace\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\OrderPlace\",\"command\":\"O:19:\\\"App\\\\Jobs\\\\OrderPlace\\\":10:{s:7:\\\"allCart\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":4:{s:5:\\\"class\\\";s:15:\\\"App\\\\Models\\\\Cart\\\";s:2:\\\"id\\\";a:1:{i:0;i:9;}s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";}s:3:\\\"job\\\";N;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2020-11-04 09:11:00.201681\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:12:\\\"Asia\\/Kolkata\\\";}s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}}\"}}', 0, NULL, 1604461260, 1604461200); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_10_24_093218_create_products_table', 2), (5, '2020_10_24_104248_create_carts_table', 3), (6, '2020_10_24_120140_create_orders_table', 4), (7, '2020_10_28_123859_create_jobs_table', 5); -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payment_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`id`, `product_id`, `user_id`, `status`, `payment_method`, `payment_status`, `address`, `created_at`, `updated_at`) VALUES (1, 1, 1, 'pending', 'cash', 'pending', 'Ahmedabad, Gujarat', '2020-10-24 07:32:13', '2020-10-24 07:32:13'), (2, 3, 1, 'pending', 'cash', 'pending', 'Ahmedabad, Gujarat', '2020-10-24 07:32:13', '2020-10-24 07:32:13'), (3, 4, 1, 'pending', 'cash', 'pending', 'Ahmedabad, Gujarat', '2020-10-24 07:32:13', '2020-10-24 07:32:13'), (4, 2, 1, 'pending', 'cash', 'pending', 'Ahmedabad, Gujarat', '2020-10-24 07:32:13', '2020-10-24 07:32:13'), (5, 2, 2, 'pending', 'cash', 'pending', 'Dharangadhra, India', '2020-10-24 07:33:26', '2020-10-24 07:33:26'), (6, 1, 4, 'pending', 'cash', 'pending', 'USA', '2020-10-24 08:04:53', '2020-10-24 08:04:53'), (7, 3, 6, 'pending', 'cash', 'pending', 'Kameswer society', '2020-10-28 06:48:45', '2020-10-28 06:48:45'), (8, 3, 6, 'pending', 'cash', 'pending', '<NAME>', '2020-10-28 08:00:52', '2020-10-28 08:00:52'), (9, 1, 6, 'pending', 'cash', 'pending', 'Ahmedabad india', '2020-10-28 08:05:24', '2020-10-28 08:05:24'), (10, 4, 1, 'pending', 'cash', 'pending', 'jayntpart', '2020-11-04 03:39:59', '2020-11-04 03:39:59'); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `price` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `name`, `price`, `category`, `description`, `gallery`, `created_at`, `updated_at`) VALUES (1, 'Oppo mobile', '300', 'mobile', 'A smartphone with 8gb ram and much more feature', 'https://assetscdn1.paytm.com/images/catalog/product/M/MO/MOBOPPO-A52-6-GFUTU6297453D3D253C/1592019058170_0..png', NULL, NULL), (2, 'Panasonic Tv', '400', 'tv', 'A smart tv with much more feature', 'https://i.gadgets360cdn.com/products/televisions/large/1548154685_832_panasonic_32-inch-lcd-full-hd-tv-th-l32u20.jpg', NULL, NULL), (3, 'Soni Tv', '500', 'tv', 'A tv with much more feature', 'https://4.imimg.com/data4/PM/KH/MY-34794816/lcd-500x500.png', NULL, NULL), (4, 'LG fridge', '200', 'fridge', 'A fridge with much more feature', 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTFx-2-wTOcfr5at01ojZWduXEm5cZ-sRYPJA&usqp=CAU', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '<EMAIL>', NULL, '$2y$10$QkUZv6Tw4g5nl4iSbHNGFOl/Bfq7cgtDhtUtEse7x1.rIL1UShMli', NULL, NULL, NULL), (2, 'Test User', '<EMAIL>', NULL, '$2y$10$d0H.ctsF3Dc.BIp/FM6IjOtyHYkcvLftb86grgxKD1Twt9XfK2obi', NULL, NULL, NULL), (3, '<NAME>', '<EMAIL>', NULL, '$2y$10$8hje1wnGscqRTXNQ7dRB1u7wFjV/SDWTCMA6IQfAnhKmdd8Et.w6C', NULL, '2020-10-24 08:00:15', '2020-10-24 08:00:15'), (4, 'dipak', '<EMAIL>', NULL, '$2y$10$pwCYnI5vYJuN/opaZX69hOYjdw9OMfBplehlXsy845jthVOpUEjcC', NULL, '2020-10-24 08:00:53', '2020-10-24 08:00:53'), (6, 'Radhesh', '<EMAIL>', NULL, '$2y$10$xntAqGhN9pf7I.Pc9s0CSeIt88qXjA1Hxy2C14uOUW.x/qcbEH33a', NULL, '2020-10-28 06:12:55', '2020-10-28 06:12:55'), (7, '<NAME>', '<EMAIL>', NULL, '$2y$10$NsghpZhngX5M6loMUT3uXOP40tirmebrdMsnDdsEOZH6dTZwkwCE2', NULL, '2020-10-28 06:14:12', '2020-10-28 06:14:12'); -- -- Indexes for dumped tables -- -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; COMMIT; /*!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 */;
<reponame>LibrariesWest/reporting-solution<filename>db_scripts/tables/tbl_orderline.sql<gh_stars>0 --------------------------------------------------------------- -- table: orderline --------------------------------------------------------------- -- drop table orderline; create table orderline ( key integer not null, order_key integer, user_key integer, link_key integer, catalogue_key integer, call_sequence integer, order_number integer, library integer, date_ordered date, vendor_unit_list_price numeric, unit_list_price numeric, discount integer, number_of_copies integer, vendor_extended_price numeric, extended_price numeric, unit_price numeric, amount_encumbered numeric, amount_invoiced numeric, total_paid numeric, received integer, invoiced integer, paid integer, funded integer, loaded integer, cancelled integer, extended_info integer, claimed integer, delvered integer, holdings_dists integer, category1 integer, category2 integer, category3 integer, category4 integer, material_type integer, empty character(1), constraint pk_orderline_key primary key (key) );
INSERT INTO `locations` (`id`, `country_id`, `name`, `created_at`, `updated_at`) VALUES (1, 56, 'Korcula', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (2, 56, 'Split', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (3, 56, 'Dubrovnik', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (4, 56, 'Hvar', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (5, 56, 'Zagreb', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (6, 56, 'Istria', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (7, 56, 'Pl<NAME>', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (8, 56, 'Kotor', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (9, 56, 'Slovenia', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (10, 56, 'Ston', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (11, 56, 'Peljesac', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (12, 56, 'Krka', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (13, 56, 'Mljet', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (14, 56, 'Bisevo', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (15, 56, 'Plitvice', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (16, 56, 'Rovinj', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (17, 56, 'Sibenik', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (18, 56, 'Opatija', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (19, 56, 'Trogir', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (20, 56, 'Bol', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (21, 56, 'Zadar', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (22, 56, 'Losinj', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (23, 56, 'Pula', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (24, 56, '<NAME>', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (25, 56, 'Sipan', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (26, 56, 'Cavtat', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (27, 56, 'Motovun', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (28, 56, 'Sutivan', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (29, 56, 'Supetar', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (30, 56, 'Makarska', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (31, 56, 'Vis', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (32, 56, 'Lopud', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (33, 56, 'Winery', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (34, 56, 'Porec', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (35, 56, 'Roxanich', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (36, 56, 'Venice', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (37, 150, '<NAME>', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (38, 150, 'Kotor', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (39, 150, 'Budva', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (40, 150, 'Perast', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (41, 150, 'Tivat', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (42, 150, 'Residences', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (43, 150, 'Wing', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (44, 206, 'Ljubljana', '2021-11-29 19:00:00', '2021-11-29 19:00:00'), (45, 206, 'Bled', '2021-11-29 19:00:00', '2021-11-29 19:00:00');
CREATE TABLE IF NOT EXISTS `migrations` ( `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 29, 2022 at 02:23 PM -- Server version: 10.4.22-MariaDB -- PHP Version: 8.1.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `themelooks` -- -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (10, '2014_10_12_000000_create_users_table', 1), (11, '2014_10_12_100000_create_password_resets_table', 1), (12, '2019_08_19_000000_create_failed_jobs_table', 1), (13, '2019_12_14_000001_create_personal_access_tokens_table', 1), (14, '2022_01_23_111107_create_products_table', 1), (15, '2022_01_23_122615_create_product_images_table', 1), (16, '2022_01_23_122659_create_product_colors_table', 1), (17, '2022_01_23_122723_create_product_sizes_table', 1), (18, '2022_01_23_122740_create_product_prices_table', 1), (19, '2022_01_26_092711_create_product_details_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `name`, `description`, `status`, `created_at`, `updated_at`) VALUES (11, 'Cool Colors Combination Hoodie For Men', 'Cool colors combination hoodies are perfect to wear during the cold seasons. They are warm and they fit perfectly well with any attire you choose to wear. Hoodies are made of soft material that makes it comfortable to wear them. Wearing a hoodie feels like you are wearing a soft and warm blanket, which gives you a sense of comfort.', 1, '2022-01-29 04:08:22', '2022-01-29 04:08:22'); -- -------------------------------------------------------- -- -- Table structure for table `product_colors` -- CREATE TABLE `product_colors` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `product_colors` -- INSERT INTO `product_colors` (`id`, `name`, `status`, `created_at`, `updated_at`) VALUES (1, 'Red', 1, NULL, NULL), (2, 'Green', 1, NULL, NULL), (3, 'Black', 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `product_details` -- CREATE TABLE `product_details` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `color_id` bigint(20) NOT NULL, `size_id` bigint(20) NOT NULL, `price` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `product_details` -- INSERT INTO `product_details` (`id`, `product_id`, `color_id`, `size_id`, `price`, `created_at`, `updated_at`) VALUES (15, 11, 1, 1, 530, '2022-01-29 04:08:22', '2022-01-29 04:08:22'), (16, 11, 1, 2, 445, '2022-01-29 04:08:22', '2022-01-29 04:08:22'), (17, 11, 1, 3, 390, '2022-01-29 04:08:22', '2022-01-29 04:08:22'); -- -------------------------------------------------------- -- -- Table structure for table `product_images` -- CREATE TABLE `product_images` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `product_images` -- INSERT INTO `product_images` (`id`, `product_id`, `name`, `status`, `created_at`, `updated_at`) VALUES (3, 11, '16434509029.jpg', 1, '2022-01-29 04:08:22', '2022-01-29 04:08:22'); -- -------------------------------------------------------- -- -- Table structure for table `product_prices` -- CREATE TABLE `product_prices` ( `id` bigint(20) UNSIGNED NOT NULL, `price` bigint(20) NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_sizes` -- CREATE TABLE `product_sizes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `product_sizes` -- INSERT INTO `product_sizes` (`id`, `name`, `status`, `created_at`, `updated_at`) VALUES (1, 'XL', 1, NULL, NULL), (2, 'M', 1, NULL, NULL), (3, 'S', 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_colors` -- ALTER TABLE `product_colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_details` -- ALTER TABLE `product_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_images` -- ALTER TABLE `product_images` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_prices` -- ALTER TABLE `product_prices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_sizes` -- ALTER TABLE `product_sizes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `product_colors` -- ALTER TABLE `product_colors` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `product_details` -- ALTER TABLE `product_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `product_images` -- ALTER TABLE `product_images` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `product_prices` -- ALTER TABLE `product_prices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `product_sizes` -- ALTER TABLE `product_sizes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */;
<filename>priv/repo/structure.sql -- -- PostgreSQL database dump -- -- Dumped from database version 10.2 -- Dumped by pg_dump version 10.2 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: cdrs; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE cdrs ( id integer NOT NULL, cgrid character varying(40) NOT NULL, run_id character varying(64) NOT NULL, origin_host character varying(64) NOT NULL, source character varying(64) NOT NULL, origin_id character varying(128) NOT NULL, tor character varying(16) NOT NULL, request_type character varying(24) NOT NULL, tenant character varying(64) NOT NULL, category character varying(64) NOT NULL, account character varying(128) NOT NULL, subject character varying(128) NOT NULL, destination character varying(128) NOT NULL, setup_time timestamp with time zone NOT NULL, answer_time timestamp with time zone NOT NULL, usage bigint NOT NULL, extra_fields jsonb NOT NULL, cost_source character varying(64) NOT NULL, cost numeric(20,4) DEFAULT NULL::numeric, cost_details jsonb, extra_info text, created_at timestamp with time zone, updated_at timestamp with time zone, deleted_at timestamp with time zone ); -- -- Name: cdrs_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE cdrs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: cdrs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE cdrs_id_seq OWNED BY cdrs.id; -- -- Name: raw_supplier_rates; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE raw_supplier_rates ( id bigint NOT NULL, rate double precision, supplier_name character varying(255), prefix character varying(255), description character varying(255), tariff_plan_id bigint, inserted_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: raw_supplier_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE raw_supplier_rates_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: raw_supplier_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE raw_supplier_rates_id_seq OWNED BY raw_supplier_rates.id; -- -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE schema_migrations ( version bigint NOT NULL, inserted_at timestamp without time zone ); -- -- Name: sessions_costs; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE sessions_costs ( id integer NOT NULL, cgrid character varying(40) NOT NULL, run_id character varying(64) NOT NULL, origin_host character varying(64) NOT NULL, origin_id character varying(128) NOT NULL, cost_source character varying(64) NOT NULL, usage bigint NOT NULL, cost_details jsonb, created_at timestamp with time zone, deleted_at timestamp with time zone ); -- -- Name: sessions_costs_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE sessions_costs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: sessions_costs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE sessions_costs_id_seq OWNED BY sessions_costs.id; -- -- Name: tariff_plans; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tariff_plans ( id bigint NOT NULL, alias character varying(255), name character varying(255), description character varying(255), inserted_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: tariff_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tariff_plans_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tariff_plans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tariff_plans_id_seq OWNED BY tariff_plans.id; -- -- Name: tp_account_actions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_account_actions ( id integer NOT NULL, tpid character varying(64) NOT NULL, loadid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, account character varying(64) NOT NULL, action_plan_tag character varying(64), action_triggers_tag character varying(64), allow_negative boolean NOT NULL, disabled boolean NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_account_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_account_actions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_account_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_account_actions_id_seq OWNED BY tp_account_actions.id; -- -- Name: tp_action_plans; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_action_plans ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, actions_tag character varying(64) NOT NULL, timing_tag character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_action_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_action_plans_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_action_plans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_action_plans_id_seq OWNED BY tp_action_plans.id; -- -- Name: tp_action_triggers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_action_triggers ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, unique_id character varying(64) NOT NULL, threshold_type character varying(64) NOT NULL, threshold_value numeric(20,4) NOT NULL, recurrent boolean NOT NULL, min_sleep character varying(16) NOT NULL, expiry_time character varying(24) NOT NULL, activation_time character varying(24) NOT NULL, balance_tag character varying(64) NOT NULL, balance_type character varying(24) NOT NULL, balance_directions character varying(8) NOT NULL, balance_categories character varying(32) NOT NULL, balance_destination_tags character varying(64) NOT NULL, balance_rating_subject character varying(64) NOT NULL, balance_shared_groups character varying(64) NOT NULL, balance_expiry_time character varying(24) NOT NULL, balance_timing_tags character varying(128) NOT NULL, balance_weight character varying(10) NOT NULL, balance_blocker character varying(5) NOT NULL, balance_disabled character varying(5) NOT NULL, min_queued_items integer NOT NULL, actions_tag character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_action_triggers_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_action_triggers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_action_triggers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_action_triggers_id_seq OWNED BY tp_action_triggers.id; -- -- Name: tp_actions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_actions ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, action character varying(24) NOT NULL, balance_tag character varying(64) NOT NULL, balance_type character varying(24) NOT NULL, directions character varying(8) NOT NULL, units character varying(256) NOT NULL, expiry_time character varying(24) NOT NULL, timing_tags character varying(128) NOT NULL, destination_tags character varying(64) NOT NULL, rating_subject character varying(64) NOT NULL, categories character varying(32) NOT NULL, shared_groups character varying(64) NOT NULL, balance_weight character varying(10) NOT NULL, balance_blocker character varying(5) NOT NULL, balance_disabled character varying(5) NOT NULL, extra_parameters character varying(256) NOT NULL, filter character varying(256) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_actions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_actions_id_seq OWNED BY tp_actions.id; -- -- Name: tp_aliases; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_aliases ( id integer NOT NULL, tpid character varying(64) NOT NULL, direction character varying(8) NOT NULL, tenant character varying(64) NOT NULL, category character varying(64) NOT NULL, account character varying(64) NOT NULL, subject character varying(64) NOT NULL, destination_id character varying(64) NOT NULL, context character varying(64) NOT NULL, target character varying(64) NOT NULL, original character varying(64) NOT NULL, alias character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_aliases_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_aliases_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_aliases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_aliases_id_seq OWNED BY tp_aliases.id; -- -- Name: tp_attributes; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_attributes ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, contexts character varying(64) NOT NULL, filter_ids character varying(64) NOT NULL, activation_interval character varying(64) NOT NULL, field_name character varying(64) NOT NULL, initial character varying(64) NOT NULL, substitute character varying(64) NOT NULL, append boolean NOT NULL, blocker boolean NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_attributes_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_attributes_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_attributes_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_attributes_pk_seq OWNED BY tp_attributes.pk; -- -- Name: tp_cdr_stats; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_cdr_stats ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, queue_length integer NOT NULL, time_window character varying(8) NOT NULL, save_interval character varying(8) NOT NULL, metrics character varying(64) NOT NULL, setup_interval character varying(64) NOT NULL, tors character varying(64) NOT NULL, cdr_hosts character varying(64) NOT NULL, cdr_sources character varying(64) NOT NULL, req_types character varying(64) NOT NULL, directions character varying(8) NOT NULL, tenants character varying(64) NOT NULL, categories character varying(32) NOT NULL, accounts character varying(255) NOT NULL, subjects character varying(64) NOT NULL, destination_ids character varying(64) NOT NULL, pdd_interval character varying(64) NOT NULL, usage_interval character varying(64) NOT NULL, suppliers character varying(64) NOT NULL, disconnect_causes character varying(64) NOT NULL, mediation_runids character varying(64) NOT NULL, rated_accounts character varying(255) NOT NULL, rated_subjects character varying(64) NOT NULL, cost_interval character varying(24) NOT NULL, action_triggers character varying(64) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_cdr_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_cdr_stats_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_cdr_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_cdr_stats_id_seq OWNED BY tp_cdr_stats.id; -- -- Name: tp_chargers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_chargers ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, filter_ids character varying(64) NOT NULL, activation_interval character varying(64) NOT NULL, run_id character varying(64) NOT NULL, attribute_ids character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_chargers_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_chargers_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_chargers_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_chargers_pk_seq OWNED BY tp_chargers.pk; -- -- Name: tp_derived_chargers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_derived_chargers ( id integer NOT NULL, tpid character varying(64) NOT NULL, loadid character varying(64) NOT NULL, direction character varying(8) NOT NULL, tenant character varying(64) NOT NULL, category character varying(32) NOT NULL, account character varying(64) NOT NULL, subject character varying(64) NOT NULL, destination_ids character varying(64) NOT NULL, runid character varying(24) NOT NULL, run_filters character varying(256) NOT NULL, req_type_field character varying(64) NOT NULL, direction_field character varying(64) NOT NULL, tenant_field character varying(64) NOT NULL, category_field character varying(64) NOT NULL, account_field character varying(64) NOT NULL, subject_field character varying(64) NOT NULL, destination_field character varying(64) NOT NULL, setup_time_field character varying(64) NOT NULL, pdd_field character varying(64) NOT NULL, answer_time_field character varying(64) NOT NULL, usage_field character varying(64) NOT NULL, supplier_field character varying(64) NOT NULL, disconnect_cause_field character varying(64) NOT NULL, rated_field character varying(64) NOT NULL, cost_field character varying(64) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_derived_chargers_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_derived_chargers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_derived_chargers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_derived_chargers_id_seq OWNED BY tp_derived_chargers.id; -- -- Name: tp_destination_rates; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_destination_rates ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, destinations_tag character varying(64) NOT NULL, rates_tag character varying(64) NOT NULL, rounding_method character varying(255) NOT NULL, rounding_decimals smallint NOT NULL, max_cost numeric(7,4) NOT NULL, max_cost_strategy character varying(16) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_destination_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_destination_rates_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_destination_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_destination_rates_id_seq OWNED BY tp_destination_rates.id; -- -- Name: tp_destinations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_destinations ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, prefix character varying(24) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_destinations_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_destinations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_destinations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_destinations_id_seq OWNED BY tp_destinations.id; -- -- Name: tp_filters; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_filters ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, filter_type character varying(16) NOT NULL, filter_field_name character varying(64) NOT NULL, filter_field_values character varying(256) NOT NULL, activation_interval character varying(64) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_filters_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_filters_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_filters_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_filters_pk_seq OWNED BY tp_filters.pk; -- -- Name: tp_lcr_rules; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_lcr_rules ( id integer NOT NULL, tpid character varying(64) NOT NULL, direction character varying(8) NOT NULL, tenant character varying(64) NOT NULL, category character varying(32) NOT NULL, account character varying(64) NOT NULL, subject character varying(64) NOT NULL, destination_tag character varying(64) NOT NULL, rp_category character varying(32) NOT NULL, strategy character varying(18) NOT NULL, strategy_params character varying(256) NOT NULL, activation_time character varying(24) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_lcr_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_lcr_rules_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_lcr_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_lcr_rules_id_seq OWNED BY tp_lcr_rules.id; -- -- Name: tp_rates; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_rates ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, connect_fee numeric(7,4) NOT NULL, rate numeric(10,4) NOT NULL, rate_unit character varying(16) NOT NULL, rate_increment character varying(16) NOT NULL, group_interval_start character varying(16) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_rates_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_rates_id_seq OWNED BY tp_rates.id; -- -- Name: tp_rating_plans; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_rating_plans ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, destrates_tag character varying(64) NOT NULL, timing_tag character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_rating_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_rating_plans_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_rating_plans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_rating_plans_id_seq OWNED BY tp_rating_plans.id; -- -- Name: tp_rating_profiles; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_rating_profiles ( id integer NOT NULL, tpid character varying(64) NOT NULL, loadid character varying(64) NOT NULL, direction character varying(8) NOT NULL, tenant character varying(64) NOT NULL, category character varying(32) NOT NULL, subject character varying(64) NOT NULL, activation_time character varying(24) NOT NULL, rating_plan_tag character varying(64) NOT NULL, fallback_subjects character varying(64), cdr_stat_queue_ids character varying(64), created_at timestamp with time zone ); -- -- Name: tp_rating_profiles_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_rating_profiles_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_rating_profiles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_rating_profiles_id_seq OWNED BY tp_rating_profiles.id; -- -- Name: tp_resources; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_resources ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, filter_ids character varying(64) NOT NULL, activation_interval character varying(64) NOT NULL, usage_ttl character varying(32) NOT NULL, "limit" character varying(64) NOT NULL, allocation_message character varying(64) NOT NULL, blocker boolean NOT NULL, stored boolean NOT NULL, weight numeric(8,2) NOT NULL, threshold_ids character varying(64) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_resources_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_resources_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_resources_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_resources_pk_seq OWNED BY tp_resources.pk; -- -- Name: tp_shared_groups; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_shared_groups ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, account character varying(64) NOT NULL, strategy character varying(24) NOT NULL, rating_subject character varying(24) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_shared_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_shared_groups_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_shared_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_shared_groups_id_seq OWNED BY tp_shared_groups.id; -- -- Name: tp_stats; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_stats ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, filter_ids character varying(64) NOT NULL, activation_interval character varying(64) NOT NULL, queue_length integer NOT NULL, ttl character varying(32) NOT NULL, metrics character varying(128) NOT NULL, parameters character varying(128) NOT NULL, blocker boolean NOT NULL, stored boolean NOT NULL, weight numeric(8,2) NOT NULL, min_items integer NOT NULL, threshold_ids character varying(64) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_stats_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_stats_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_stats_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_stats_pk_seq OWNED BY tp_stats.pk; -- -- Name: tp_suppliers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_suppliers ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, filter_ids character varying(64) NOT NULL, activation_interval character varying(64) NOT NULL, sorting character varying(32) NOT NULL, sorting_parameters character varying(64) NOT NULL, supplier_id character varying(32) NOT NULL, supplier_filter_ids character varying(64) NOT NULL, supplier_account_ids character varying(64) NOT NULL, supplier_ratingplan_ids character varying(64) NOT NULL, supplier_resource_ids character varying(64) NOT NULL, supplier_stat_ids character varying(64) NOT NULL, supplier_weight numeric(8,2) NOT NULL, supplier_blocker boolean NOT NULL, supplier_parameters character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_suppliers_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_suppliers_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_suppliers_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_suppliers_pk_seq OWNED BY tp_suppliers.pk; -- -- Name: tp_thresholds; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_thresholds ( pk integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, id character varying(64) NOT NULL, filter_ids character varying(64) NOT NULL, activation_interval character varying(64) NOT NULL, max_hits integer NOT NULL, min_hits integer NOT NULL, min_sleep character varying(16) NOT NULL, blocker boolean NOT NULL, weight numeric(8,2) NOT NULL, action_ids character varying(64) NOT NULL, async boolean NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_thresholds_pk_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_thresholds_pk_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_thresholds_pk_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_thresholds_pk_seq OWNED BY tp_thresholds.pk; -- -- Name: tp_timings; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_timings ( id integer NOT NULL, tpid character varying(64) NOT NULL, tag character varying(64) NOT NULL, years character varying(255) NOT NULL, months character varying(255) NOT NULL, month_days character varying(255) NOT NULL, week_days character varying(255) NOT NULL, "time" character varying(32) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_timings_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_timings_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_timings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_timings_id_seq OWNED BY tp_timings.id; -- -- Name: tp_users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tp_users ( id integer NOT NULL, tpid character varying(64) NOT NULL, tenant character varying(64) NOT NULL, user_name character varying(64) NOT NULL, masked boolean NOT NULL, attribute_name character varying(64) NOT NULL, attribute_value character varying(64) NOT NULL, weight numeric(8,2) NOT NULL, created_at timestamp with time zone ); -- -- Name: tp_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE tp_users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: tp_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE tp_users_id_seq OWNED BY tp_users.id; -- -- Name: users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE users ( id bigint NOT NULL, email character varying(255), password_encrypted character varying(255), inserted_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE users_id_seq OWNED BY users.id; -- -- Name: versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE versions ( id integer NOT NULL, item character varying(64) NOT NULL, version integer NOT NULL ); -- -- Name: versions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE versions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE versions_id_seq OWNED BY versions.id; -- -- Name: cdrs id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY cdrs ALTER COLUMN id SET DEFAULT nextval('cdrs_id_seq'::regclass); -- -- Name: raw_supplier_rates id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY raw_supplier_rates ALTER COLUMN id SET DEFAULT nextval('raw_supplier_rates_id_seq'::regclass); -- -- Name: sessions_costs id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY sessions_costs ALTER COLUMN id SET DEFAULT nextval('sessions_costs_id_seq'::regclass); -- -- Name: tariff_plans id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tariff_plans ALTER COLUMN id SET DEFAULT nextval('tariff_plans_id_seq'::regclass); -- -- Name: tp_account_actions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_account_actions ALTER COLUMN id SET DEFAULT nextval('tp_account_actions_id_seq'::regclass); -- -- Name: tp_action_plans id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_action_plans ALTER COLUMN id SET DEFAULT nextval('tp_action_plans_id_seq'::regclass); -- -- Name: tp_action_triggers id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_action_triggers ALTER COLUMN id SET DEFAULT nextval('tp_action_triggers_id_seq'::regclass); -- -- Name: tp_actions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_actions ALTER COLUMN id SET DEFAULT nextval('tp_actions_id_seq'::regclass); -- -- Name: tp_aliases id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_aliases ALTER COLUMN id SET DEFAULT nextval('tp_aliases_id_seq'::regclass); -- -- Name: tp_attributes pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_attributes ALTER COLUMN pk SET DEFAULT nextval('tp_attributes_pk_seq'::regclass); -- -- Name: tp_cdr_stats id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_cdr_stats ALTER COLUMN id SET DEFAULT nextval('tp_cdr_stats_id_seq'::regclass); -- -- Name: tp_chargers pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_chargers ALTER COLUMN pk SET DEFAULT nextval('tp_chargers_pk_seq'::regclass); -- -- Name: tp_derived_chargers id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_derived_chargers ALTER COLUMN id SET DEFAULT nextval('tp_derived_chargers_id_seq'::regclass); -- -- Name: tp_destination_rates id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_destination_rates ALTER COLUMN id SET DEFAULT nextval('tp_destination_rates_id_seq'::regclass); -- -- Name: tp_destinations id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_destinations ALTER COLUMN id SET DEFAULT nextval('tp_destinations_id_seq'::regclass); -- -- Name: tp_filters pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_filters ALTER COLUMN pk SET DEFAULT nextval('tp_filters_pk_seq'::regclass); -- -- Name: tp_lcr_rules id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_lcr_rules ALTER COLUMN id SET DEFAULT nextval('tp_lcr_rules_id_seq'::regclass); -- -- Name: tp_rates id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rates ALTER COLUMN id SET DEFAULT nextval('tp_rates_id_seq'::regclass); -- -- Name: tp_rating_plans id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rating_plans ALTER COLUMN id SET DEFAULT nextval('tp_rating_plans_id_seq'::regclass); -- -- Name: tp_rating_profiles id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rating_profiles ALTER COLUMN id SET DEFAULT nextval('tp_rating_profiles_id_seq'::regclass); -- -- Name: tp_resources pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_resources ALTER COLUMN pk SET DEFAULT nextval('tp_resources_pk_seq'::regclass); -- -- Name: tp_shared_groups id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_shared_groups ALTER COLUMN id SET DEFAULT nextval('tp_shared_groups_id_seq'::regclass); -- -- Name: tp_stats pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_stats ALTER COLUMN pk SET DEFAULT nextval('tp_stats_pk_seq'::regclass); -- -- Name: tp_suppliers pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_suppliers ALTER COLUMN pk SET DEFAULT nextval('tp_suppliers_pk_seq'::regclass); -- -- Name: tp_thresholds pk; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_thresholds ALTER COLUMN pk SET DEFAULT nextval('tp_thresholds_pk_seq'::regclass); -- -- Name: tp_timings id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_timings ALTER COLUMN id SET DEFAULT nextval('tp_timings_id_seq'::regclass); -- -- Name: tp_users id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_users ALTER COLUMN id SET DEFAULT nextval('tp_users_id_seq'::regclass); -- -- Name: users id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass); -- -- Name: versions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY versions ALTER COLUMN id SET DEFAULT nextval('versions_id_seq'::regclass); -- -- Name: cdrs cdrs_cgrid_run_id_origin_id_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY cdrs ADD CONSTRAINT cdrs_cgrid_run_id_origin_id_key UNIQUE (cgrid, run_id, origin_id); -- -- Name: cdrs cdrs_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY cdrs ADD CONSTRAINT cdrs_pkey PRIMARY KEY (id); -- -- Name: raw_supplier_rates raw_supplier_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY raw_supplier_rates ADD CONSTRAINT raw_supplier_rates_pkey PRIMARY KEY (id); -- -- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY schema_migrations ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); -- -- Name: sessions_costs sessions_costs_cgrid_run_id_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY sessions_costs ADD CONSTRAINT sessions_costs_cgrid_run_id_key UNIQUE (cgrid, run_id); -- -- Name: sessions_costs sessions_costs_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY sessions_costs ADD CONSTRAINT sessions_costs_pkey PRIMARY KEY (id); -- -- Name: tariff_plans tariff_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tariff_plans ADD CONSTRAINT tariff_plans_pkey PRIMARY KEY (id); -- -- Name: tp_account_actions tp_account_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_account_actions ADD CONSTRAINT tp_account_actions_pkey PRIMARY KEY (id); -- -- Name: tp_account_actions tp_account_actions_tpid_loadid_tenant_account_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_account_actions ADD CONSTRAINT tp_account_actions_tpid_loadid_tenant_account_key UNIQUE (tpid, loadid, tenant, account); -- -- Name: tp_action_plans tp_action_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_action_plans ADD CONSTRAINT tp_action_plans_pkey PRIMARY KEY (id); -- -- Name: tp_action_plans tp_action_plans_tpid_tag_actions_tag_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_action_plans ADD CONSTRAINT tp_action_plans_tpid_tag_actions_tag_key UNIQUE (tpid, tag, actions_tag); -- -- Name: tp_action_triggers tp_action_triggers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_action_triggers ADD CONSTRAINT tp_action_triggers_pkey PRIMARY KEY (id); -- -- Name: tp_action_triggers tp_action_triggers_tpid_tag_balance_tag_balance_type_balanc_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_action_triggers ADD CONSTRAINT tp_action_triggers_tpid_tag_balance_tag_balance_type_balanc_key UNIQUE (tpid, tag, balance_tag, balance_type, balance_directions, threshold_type, threshold_value, balance_destination_tags, actions_tag); -- -- Name: tp_actions tp_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_actions ADD CONSTRAINT tp_actions_pkey PRIMARY KEY (id); -- -- Name: tp_actions tp_actions_tpid_tag_action_balance_tag_balance_type_directi_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_actions ADD CONSTRAINT tp_actions_tpid_tag_action_balance_tag_balance_type_directi_key UNIQUE (tpid, tag, action, balance_tag, balance_type, directions, expiry_time, timing_tags, destination_tags, shared_groups, balance_weight, weight); -- -- Name: tp_aliases tp_aliases_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_aliases ADD CONSTRAINT tp_aliases_pkey PRIMARY KEY (id); -- -- Name: tp_attributes tp_attributes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_attributes ADD CONSTRAINT tp_attributes_pkey PRIMARY KEY (pk); -- -- Name: tp_cdr_stats tp_cdr_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_cdr_stats ADD CONSTRAINT tp_cdr_stats_pkey PRIMARY KEY (id); -- -- Name: tp_chargers tp_chargers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_chargers ADD CONSTRAINT tp_chargers_pkey PRIMARY KEY (pk); -- -- Name: tp_derived_chargers tp_derived_chargers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_derived_chargers ADD CONSTRAINT tp_derived_chargers_pkey PRIMARY KEY (id); -- -- Name: tp_destination_rates tp_destination_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_destination_rates ADD CONSTRAINT tp_destination_rates_pkey PRIMARY KEY (id); -- -- Name: tp_destination_rates tp_destination_rates_tpid_tag_destinations_tag_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_destination_rates ADD CONSTRAINT tp_destination_rates_tpid_tag_destinations_tag_key UNIQUE (tpid, tag, destinations_tag); -- -- Name: tp_destinations tp_destinations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_destinations ADD CONSTRAINT tp_destinations_pkey PRIMARY KEY (id); -- -- Name: tp_destinations tp_destinations_tpid_tag_prefix_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_destinations ADD CONSTRAINT tp_destinations_tpid_tag_prefix_key UNIQUE (tpid, tag, prefix); -- -- Name: tp_filters tp_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_filters ADD CONSTRAINT tp_filters_pkey PRIMARY KEY (pk); -- -- Name: tp_lcr_rules tp_lcr_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_lcr_rules ADD CONSTRAINT tp_lcr_rules_pkey PRIMARY KEY (id); -- -- Name: tp_rates tp_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rates ADD CONSTRAINT tp_rates_pkey PRIMARY KEY (id); -- -- Name: tp_rates tp_rates_tpid_tag_group_interval_start_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rates ADD CONSTRAINT tp_rates_tpid_tag_group_interval_start_key UNIQUE (tpid, tag, group_interval_start); -- -- Name: tp_rating_plans tp_rating_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rating_plans ADD CONSTRAINT tp_rating_plans_pkey PRIMARY KEY (id); -- -- Name: tp_rating_plans tp_rating_plans_tpid_tag_destrates_tag_timing_tag_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rating_plans ADD CONSTRAINT tp_rating_plans_tpid_tag_destrates_tag_timing_tag_key UNIQUE (tpid, tag, destrates_tag, timing_tag); -- -- Name: tp_rating_profiles tp_rating_profiles_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rating_profiles ADD CONSTRAINT tp_rating_profiles_pkey PRIMARY KEY (id); -- -- Name: tp_rating_profiles tp_rating_profiles_tpid_loadid_tenant_category_direction_su_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_rating_profiles ADD CONSTRAINT tp_rating_profiles_tpid_loadid_tenant_category_direction_su_key UNIQUE (tpid, loadid, tenant, category, direction, subject, activation_time); -- -- Name: tp_resources tp_resources_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_resources ADD CONSTRAINT tp_resources_pkey PRIMARY KEY (pk); -- -- Name: tp_shared_groups tp_shared_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_shared_groups ADD CONSTRAINT tp_shared_groups_pkey PRIMARY KEY (id); -- -- Name: tp_shared_groups tp_shared_groups_tpid_tag_account_strategy_rating_subject_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_shared_groups ADD CONSTRAINT tp_shared_groups_tpid_tag_account_strategy_rating_subject_key UNIQUE (tpid, tag, account, strategy, rating_subject); -- -- Name: tp_stats tp_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_stats ADD CONSTRAINT tp_stats_pkey PRIMARY KEY (pk); -- -- Name: tp_suppliers tp_suppliers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_suppliers ADD CONSTRAINT tp_suppliers_pkey PRIMARY KEY (pk); -- -- Name: tp_thresholds tp_thresholds_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_thresholds ADD CONSTRAINT tp_thresholds_pkey PRIMARY KEY (pk); -- -- Name: tp_timings tp_timings_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_timings ADD CONSTRAINT tp_timings_pkey PRIMARY KEY (id); -- -- Name: tp_timings tp_timings_tpid_tag_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_timings ADD CONSTRAINT tp_timings_tpid_tag_key UNIQUE (tpid, tag); -- -- Name: tp_users tp_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tp_users ADD CONSTRAINT tp_users_pkey PRIMARY KEY (id); -- -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: versions versions_id_item_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY versions ADD CONSTRAINT versions_id_item_key UNIQUE (id, item); -- -- Name: versions versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY versions ADD CONSTRAINT versions_pkey PRIMARY KEY (id); -- -- Name: cgrid_sessionscost_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX cgrid_sessionscost_idx ON sessions_costs USING btree (cgrid, run_id); -- -- Name: deleted_at_cp_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX deleted_at_cp_idx ON cdrs USING btree (deleted_at); -- -- Name: deleted_at_sessionscost_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX deleted_at_sessionscost_idx ON sessions_costs USING btree (deleted_at); -- -- Name: origin_sessionscost_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX origin_sessionscost_idx ON sessions_costs USING btree (origin_host, origin_id); -- -- Name: raw_supplier_rates_tariff_plan_id_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX raw_supplier_rates_tariff_plan_id_index ON raw_supplier_rates USING btree (tariff_plan_id); -- -- Name: run_origin_sessionscost_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX run_origin_sessionscost_idx ON sessions_costs USING btree (run_id, origin_id); -- -- Name: tariff_plans_alias_index; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX tariff_plans_alias_index ON tariff_plans USING btree (alias); -- -- Name: tariff_plans_name_index; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX tariff_plans_name_index ON tariff_plans USING btree (name); -- -- Name: tp_attributes_ids; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_attributes_ids ON tp_attributes USING btree (tpid); -- -- Name: tp_attributes_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_attributes_unique ON tp_attributes USING btree (tpid, tenant, id, filter_ids, field_name, initial, substitute); -- -- Name: tp_chargers_ids; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_chargers_ids ON tp_chargers USING btree (tpid); -- -- Name: tp_chargers_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_chargers_unique ON tp_chargers USING btree (tpid, tenant, id, filter_ids, run_id, attribute_ids); -- -- Name: tp_filters_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_filters_idx ON tp_filters USING btree (tpid); -- -- Name: tp_filters_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_filters_unique ON tp_filters USING btree (tpid, tenant, id, filter_type, filter_field_name); -- -- Name: tp_resources_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_resources_idx ON tp_resources USING btree (tpid); -- -- Name: tp_resources_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_resources_unique ON tp_resources USING btree (tpid, tenant, id, filter_ids); -- -- Name: tp_stats_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_stats_idx ON tp_stats USING btree (tpid); -- -- Name: tp_stats_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_stats_unique ON tp_stats USING btree (tpid, tenant, id, filter_ids); -- -- Name: tp_suppliers_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_suppliers_idx ON tp_suppliers USING btree (tpid); -- -- Name: tp_suppliers_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_suppliers_unique ON tp_suppliers USING btree (tpid, tenant, id, filter_ids, supplier_id, supplier_filter_ids, supplier_account_ids, supplier_ratingplan_ids, supplier_resource_ids, supplier_stat_ids); -- -- Name: tp_thresholds_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_thresholds_idx ON tp_thresholds USING btree (tpid); -- -- Name: tp_thresholds_unique; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tp_thresholds_unique ON tp_thresholds USING btree (tpid, tenant, id, filter_ids, action_ids); -- -- Name: tpaccountactions_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpaccountactions_idx ON tp_account_actions USING btree (tpid, loadid, tenant, account); -- -- Name: tpaccountactions_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpaccountactions_tpid_idx ON tp_account_actions USING btree (tpid); -- -- Name: tpactionplans_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpactionplans_idx ON tp_action_plans USING btree (tpid, tag); -- -- Name: tpactionplans_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpactionplans_tpid_idx ON tp_action_plans USING btree (tpid); -- -- Name: tpactions_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpactions_idx ON tp_actions USING btree (tpid, tag); -- -- Name: tpactions_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpactions_tpid_idx ON tp_actions USING btree (tpid); -- -- Name: tpactiontrigers_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpactiontrigers_idx ON tp_action_triggers USING btree (tpid, tag); -- -- Name: tpactiontrigers_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpactiontrigers_tpid_idx ON tp_action_triggers USING btree (tpid); -- -- Name: tpaliases_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpaliases_idx ON tp_aliases USING btree (tpid, direction, tenant, category, account, subject, context, target); -- -- Name: tpaliases_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpaliases_tpid_idx ON tp_aliases USING btree (tpid); -- -- Name: tpcdrstats_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpcdrstats_idx ON tp_cdr_stats USING btree (tpid, tag); -- -- Name: tpcdrstats_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpcdrstats_tpid_idx ON tp_cdr_stats USING btree (tpid); -- -- Name: tpderivedchargers_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpderivedchargers_idx ON tp_derived_chargers USING btree (tpid, loadid, direction, tenant, category, account, subject); -- -- Name: tpderivedchargers_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpderivedchargers_tpid_idx ON tp_derived_chargers USING btree (tpid); -- -- Name: tpdestrates_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpdestrates_idx ON tp_destination_rates USING btree (tpid, tag); -- -- Name: tpdestrates_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpdestrates_tpid_idx ON tp_destination_rates USING btree (tpid); -- -- Name: tpdests_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpdests_idx ON tp_destinations USING btree (tpid, tag); -- -- Name: tpdests_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpdests_tpid_idx ON tp_destinations USING btree (tpid); -- -- Name: tplcr_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tplcr_idx ON tp_lcr_rules USING btree (tpid, tenant, category, direction, account, subject, destination_tag); -- -- Name: tplcr_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tplcr_tpid_idx ON tp_lcr_rules USING btree (tpid); -- -- Name: tprates_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tprates_idx ON tp_rates USING btree (tpid, tag); -- -- Name: tprates_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tprates_tpid_idx ON tp_rates USING btree (tpid); -- -- Name: tpratingplans_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpratingplans_idx ON tp_rating_plans USING btree (tpid, tag); -- -- Name: tpratingplans_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpratingplans_tpid_idx ON tp_rating_plans USING btree (tpid); -- -- Name: tpratingprofiles_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpratingprofiles_idx ON tp_rating_profiles USING btree (tpid, loadid, direction, tenant, category, subject); -- -- Name: tpratingprofiles_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpratingprofiles_tpid_idx ON tp_rating_profiles USING btree (tpid); -- -- Name: tpsharedgroups_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpsharedgroups_idx ON tp_shared_groups USING btree (tpid, tag); -- -- Name: tpsharedgroups_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpsharedgroups_tpid_idx ON tp_shared_groups USING btree (tpid); -- -- Name: tptimings_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tptimings_idx ON tp_timings USING btree (tpid, tag); -- -- Name: tptimings_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tptimings_tpid_idx ON tp_timings USING btree (tpid); -- -- Name: tpusers_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpusers_idx ON tp_users USING btree (tpid, tenant, user_name); -- -- Name: tpusers_tpid_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX tpusers_tpid_idx ON tp_users USING btree (tpid); -- -- Name: users_email_index; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX users_email_index ON users USING btree (email); -- -- Name: raw_supplier_rates raw_supplier_rates_tariff_plan_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY raw_supplier_rates ADD CONSTRAINT raw_supplier_rates_tariff_plan_id_fkey FOREIGN KEY (tariff_plan_id) REFERENCES tariff_plans(id); -- -- PostgreSQL database dump complete -- INSERT INTO "schema_migrations" (version) VALUES (20170905093653), (20170908061508), (20180220044803);
<reponame>nerocui/youchatt2.0 DELETE FROM moments WHERE id=$1
<gh_stars>0 DROP TABLE improvement IF EXISTS; CREATE TABLE improvement ( id INT AUTO_INCREMENT PRIMARY KEY, content VARCHAR(200) NOT NULL, created_at DATE ) ENGINE = INNODB;
<gh_stars>0 -- Write insert queries to populate Libraries INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Sky Zone Fort Lauderdale', 'https://www.skyzone.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Rapids Water Park', 'https://www.rapidswaterpark.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Xtreme Action Park', 'https://xtremeactionpark.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Young at Art Museum', 'http://www.youngatartmuseum.org/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Monster Mini Golf', 'http://monsterminigolf.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Sawgrass Recreation Park', 'https://www.evergladestours.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Lion Country Safari', 'https://www.lioncountrysafari.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ("Monkey Joe's", 'http://www.monkeyjoes.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Brunswick Bowling', 'http://www.brunswickbowling.com/home/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('GameRoom', 'https://www.gameroomsawgrass.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Party at Laser Quest', 'https://www.laserquest.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Double Flush Stables, LLC', 'https://www.equinenow.com/farm-id-593340.htm', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('The Wow Alley', 'http://wowfactoryfun.com/wow-alley-bowling/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Frost Museum of Science', 'https://www.frostscience.org/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Miami Seaquarium', 'https://www.miamiseaquarium.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Jump!Zone', 'http://www.jumpzoneparty.com/Birthday-Party-for-Kids.php?jzpcity=Sunrise&jzpid=027', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Butterfly World', 'https://www.butterflyworld.com/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Gumbo Limbo', 'https://www.gumbolimbo.org/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Calypso-Cove', 'http://margatefl.com/528/Calypso-Cove', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Coconut Cove Water Park', 'http://discover.pbcgov.org/parks/Pages/Waterparks.aspxhttp://margatefl.com/528/Calypso-Cove', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Museum of Discovery and Science', 'https://mods.org/', true, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Crystal Collectors Game', 'https://dsemoin.github.io/week-4-game/', false, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Science Activities', 'https://www.education.com/activity/science/', false, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Math Activities', 'https://www.education.com/activity/math/', false, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Reading Activities', 'http://www.pbs.org/parents/education/reading-language/reading-activities/reading-activities-at-home/', false, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Social Studies Activities', 'https://www.education.com/activity/social-studies/', false, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO Libraries (title, url, field_trip, createdAt, updatedAt) VALUES ('Language Learning tips', 'https://www.fluentu.com/blog/educator-french/teaching-french-to-elementary-students/', false, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
-- Create databases which are not automatically created out of the code CREATE DATABASE ippr; CREATE DATABASE ippr_security; CREATE DATABASE ippr_store; -- Create User for the services to access the DB CREATE USER 'ippr'@'localhost' IDENTIFIED WITH mysql_native_password BY '<PASSWORD>'; GRANT ALL PRIVILEGES ON * . * TO 'ippr'@'localhost'; CREATE USER 'ippr'@'%' IDENTIFIED WITH mysql_native_password BY '<PASSWORD>'; GRANT ALL PRIVILEGES ON * . * TO 'ippr'@'%'; FLUSH PRIVILEGES;
;with valTbl as ( select * from ( values (0, 'NoChartGeneration') , (1, 'RegularChartGeneration') , (2, 'ForceChartGeneration') ) as a (notificationTypeId, notificationTypeName) ) insert into NotificationType select valTbl.* from valTbl left outer join NotificationType on valTbl.notificationTypeId = NotificationType.notificationTypeId where NotificationType.notificationTypeId is null go
<filename>brief04/database/structure.sql drop database if exists brief4db; create database brief4db DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; use brief4db; drop table if exists users; create table users ( usersId int(16) primary key auto_increment not null, usersLevel int(1) not null, usersEmail varchar(128) not null, usersUid varchar(128) not null, usersPwd varchar(128) not null ); drop table if exists classes; create table classes ( classesId int(16) primary key auto_increment not null, classesName varchar(128) not null ); drop table if exists teachers; create table teachers ( teachersId int primary key, teachersClassId int, teachersFName varchar(128) not null, teachersLName varchar(128) not null, teachersAddress varchar(128) not null, teachersPhone int(10) not null, foreign key (teachersId) references users (usersId), foreign key (teachersClassId) references classes (classesId) ); drop table if exists students; create table students ( studentsId int primary key, studentsClassId int, studentsFName varchar(128) not null, studentsLName varchar(128) not null, studentsAddress varchar(128) not null, studentsGender varchar(128) not null, studentsBirthday date not null, studentsPhone int(10) not null, foreign key (studentsId) references users (usersId), foreign key (studentsClassId) references classes (classesId) ); drop table if exists assignments; create table assignments ( assignmentsId int(16) primary key auto_increment, assignmentsClassId int, assignmentsTitle tinytext not null, assignmentsDesc longtext not null, foreign key (assignmentsClassId) references classes (classesId) ); select count(*) from users;
CREATE TABLE [AppPlot] ( [PlotNum] DOUBLE CONSTRAINT [PrimaryKey] PRIMARY KEY UNIQUE NOT NULL )
<reponame>Shuttl-Tech/antlr_psql<gh_stars>10-100 -- file:rangetypes.sql ln:485 expect:true create function inoutparam_succeed(out i anyelement, inout r anyrange) as $$ select upper($1), $1 $$ language sql
-- -- Copyright © 2020 <NAME> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- https://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- CREATE TABLE IF NOT EXISTS User( id UUID NOT NULL PRIMARY KEY, name VARCHAR( 256 ) NOT NULL ); CREATE TABLE IF NOT EXISTS Conversation( id UUID NOT NULL PRIMARY KEY, next_message_id INTEGER NOT NULL ); CREATE TABLE IF NOT EXISTS Conversation_Participant( conversation_id UUID NOT NULL, user_id UUID NOT NULL, FOREIGN KEY( conversation_id ) REFERENCES Conversation( id ) ON DELETE CASCADE, FOREIGN KEY( user_id ) REFERENCES User( id ) ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS Message( ts TIMESTAMP NOT NULL, from_id UUID NOT NULL, body VARCHAR( 8192 ) NOT NULL, conversation_id UUID NOT NULL, id INTEGER NOT NULL, FOREIGN KEY( from_id ) REFERENCES User( id ) ON DELETE CASCADE, FOREIGN KEY( conversation_id ) REFERENCES Conversation( id ) ON DELETE CASCADE, PRIMARY KEY( conversation_id, id ) );
drop table if exists computer; drop table if exists company; create table company ( id bigint not null auto_increment, name varchar(255), constraint pk_company primary key (id) ) ; create table computer ( id bigint not null auto_increment, name varchar(255), introduced timestamp NULL, discontinued timestamp NULL, company_id bigint default NULL, constraint pk_computer primary key (id) ) ; alter table computer add constraint fk_computer_company_1 foreign key (company_id) references company (id) on delete restrict on update restrict; create index ix_computer_company_1 on computer (company_id);
create table ACT_RU_JOBDEF ( ID_ varchar(64) NOT NULL, REV_ integer, PROC_DEF_ID_ varchar(64) NOT NULL, PROC_DEF_KEY_ varchar(255) NOT NULL, ACT_ID_ varchar(255) NOT NULL, JOB_TYPE_ varchar(255) NOT NULL, JOB_CONFIGURATION_ varchar(255), SUSPENSION_STATE_ integer, primary key (ID_) ); -- add new columns to job table -- alter table ACT_RU_JOB add PROCESS_DEF_ID_ varchar(64); alter table ACT_RU_JOB add PROCESS_DEF_KEY_ varchar(64); alter table ACT_RU_JOB add SUSPENSION_STATE_ integer; alter table ACT_RU_JOB add JOB_DEF_ID_ varchar(64); -- update job table with values from execution table -- UPDATE ACT_RU_JOB J SET PROCESS_DEF_ID_ = ( SELECT PI.PROC_DEF_ID_ FROM ACT_RU_EXECUTION PI WHERE PI.ID_ = J.PROCESS_INSTANCE_ID_ ), SUSPENSION_STATE_ = ( SELECT PI.SUSPENSION_STATE_ FROM ACT_RU_EXECUTION PI WHERE PI.ID_ = J.PROCESS_INSTANCE_ID_ ); UPDATE ACT_RU_JOB J SET PROCESS_DEF_KEY_ = ( SELECT PD.KEY_ FROM ACT_RE_PROCDEF PD WHERE PD.ID_ = J.PROCESS_DEF_ID_ );
<reponame>yymmiinngg/wikift<filename>wikift-server/src/main/resources/wikift-update.sql # wikift 1.0.0 update schema USE wikift; SET FOREIGN_KEY_CHECKS = 0; ALTER TABLE users ADD u_email VARCHAR(50); ALTER TABLE users ADD u_active BOOLEAN DEFAULT TRUE COMMENT '该账号是否激活'; ALTER TABLE users ADD u_lock BOOLEAN DEFAULT FALSE COMMENT '该账号是否锁定'; DROP TABLE IF EXISTS `users_type`; CREATE TABLE `users_type` ( `ut_id` bigint(20) NOT NULL AUTO_INCREMENT, `ut_code` varchar(20) NOT NULL, `ut_name` varchar(100) NOT NULL, `ut_active` tinyint(1) NOT NULL DEFAULT '1', `ut_type` tinyint(1) DEFAULT '1' COMMENT '类型true为内置, false为第三方', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`ut_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; INSERT INTO `users_type` VALUES ('1', 'EMBEDDED', '内置', '1', '1', '2018-01-22 14:44:24'), ('2', 'LDAP', 'LDAP', '1', '0', '2018-01-22 14:44:44'); DROP TABLE IF EXISTS `users_type_relation`; CREATE TABLE `users_type_relation` ( `utr_users_id` bigint(20) NOT NULL AUTO_INCREMENT, `utr_users_type_id` bigint(20) NOT NULL, KEY `utr_users_type_id` (`utr_users_type_id`), KEY `utr_users_id` (`utr_users_id`), CONSTRAINT `FK_utr_users_relation_id` FOREIGN KEY (`utr_users_id`) REFERENCES `users` (`u_id`) ON DELETE CASCADE, CONSTRAINT `FK_utr_users_type_relation_id` FOREIGN KEY (`utr_users_type_id`) REFERENCES `users_type` (`ut_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO users_type_relation(utr_users_id, utr_users_type_id) SELECT u.u_id, 1 FROM users AS u; SET FOREIGN_KEY_CHECKS = 1;
CREATE DATABASE IF NOT EXISTS ${DB}; USE ${DB}; DROP TABLE IF EXISTS AIRLINE_PERF_EXT; -- NOTE: This version of the create seems to cause issue when submitted through JDBC with -- applications like DBVis or Squirrel. Beeline works fine. A trimmed (commentless) version -- is available through create_alt.sql CREATE EXTERNAL TABLE AIRLINE_PERF_EXT ( Year_ STRING COMMENT "Year", Quarter STRING COMMENT "Quarter (1-4)", Month_ STRING COMMENT "Month", DayofMonth STRING COMMENT "Day of Month", DayOfWeek STRING COMMENT "Day of Week", FlightDate STRING COMMENT "Flight Date (yyyymmdd)", Marketing_Airline_Network STRING COMMENT "Unique Marketing Carrier Code. When the same code has been used by multiple carriers, a numeric suffix is used for earlier users, for example, PA, PA(1), PA(2). Use this field for analysis across a range of years.", Operated_or_Branded_Code_Share_Partners STRING COMMENT "Reporting Carrier Operated or Branded Code Share Partners", DOT_ID_Marketing_Airline STRING COMMENT "An identification number assigned by US DOT to identify a unique airline (carrier). A unique airline (carrier) is defined as one holding and reporting under the same DOT certificate regardless of its Code, Name, or holding company/corporation.", IATA_Code_Marketing_Airline STRING COMMENT "Code assigned by IATA and commonly used to identify a carrier. As the same code may have been assigned to different carriers over time, the code is not always unique. For analysis, use the Unique Carrier Code.", Flight_Number_Marketing_Airline STRING COMMENT "Flight Number", Originally_Scheduled_Code_Share_Airline STRING COMMENT "Unique Scheduled Operating Carrier Code. When the same code has been used by multiple carriers, a numeric suffix is used for earlier users,for example, PA, PA(1), PA(2). Use this field for analysis across a range of years.", DOT_ID_Originally_Scheduled_Code_Share_Airline STRING COMMENT "An identification number assigned by US DOT to identify a unique airline (carrier). A unique airline (carrier) is defined as one holding and reporting under the same DOT certificate regardless of its Code, Name, or holding company/corporation.", IATA_Code_Originally_Scheduled_Code_Share_Airline STRING COMMENT "Code assigned by IATA and commonly used to identify a carrier. As the same code may have been assigned to different carriers over time, the code is not always unique. For analysis, use the Unique Carrier Code.", Flight_Num_Originally_Scheduled_Code_Share_Airline STRING COMMENT "Flight Number", Operating_Airline STRING COMMENT "Unique Carrier Code. When the same code has been used by multiple carriers, a numeric suffix is used for earlier users, for example, PA, PA(1), PA(2). Use this field for analysis across a range of years.", DOT_ID_Operating_Airline STRING COMMENT "An identification number assigned by US DOT to identify a unique airline (carrier). A unique airline (carrier) is defined as one holding and reporting under the same DOT certificate regardless of its Code, Name, or holding company/corporation.", IATA_Code_Operating_Airline STRING COMMENT "Code assigned by IATA and commonly used to identify a carrier. As the same code may have been assigned to different carriers over time, the code is not always unique. For analysis, use the Unique Carrier Code.", Tail_Number STRING COMMENT "Tail Number", Flight_Number_Operating_Airline STRING COMMENT "Flight Number", OriginAirportID STRING COMMENT "Origin Airport, Airport ID. An identification number assigned by US DOT to identify a unique airport. Use this field for airport analysis across a range of years because an airport can change its airport code and airport codes can be reused.", OriginAirportSeqID STRING COMMENT "Origin Airport, Airport Sequence ID. An identification number assigned by US DOT to identify a unique airport at a given point of time. Airport attributes, such as airport name or coordinates, may change over time.", OriginCityMarketID STRING COMMENT "Origin Airport, City Market ID. City Market ID is an identification number assigned by US DOT to identify a city market. Use this field to consolidate airports serving the same city market.", Origin STRING COMMENT "Origin Airport", OriginCityName STRING COMMENT "Origin Airport City Name", OriginState STRING COMMENT "Origin Airport State Code", OriginStateFips STRING COMMENT "Origin Airport State Fips", OriginStateName STRING COMMENT "Origin Airport State Name", OriginWac STRING COMMENT "Origin Airport World Area Code", DestAirportID STRING COMMENT "Destination Airport Airport ID. An identification number assigned by US DOT to identify a unique airport. Use this field for airport analysis across a range of years because an airport can change its airport code and airport codes can be reused.", DestAirportSeqID STRING COMMENT "Destination Airport, Airport Sequence ID. An identification number assigned by US DOT to identify a unique airport at a given point of time. Airport attributes, such as airport name or coordinates, may change over time.", DestCityMarketID STRING COMMENT "Destination Airport, City Market ID. City Market ID is an identification number assigned by US DOT to identify a city market. Use this field to consolidate airports serving the same city market.", Dest STRING COMMENT "Destination Airport", DestCityName STRING COMMENT "Destination Airport, City Name", DestState STRING COMMENT "Destination Airport, State Code", DestStateFips STRING COMMENT "Destination Airport, State Fips", DestStateName STRING COMMENT "Destination Airport, State Name", DestWac STRING COMMENT "Destination Airport, World Area Code", CRSDepTime STRING COMMENT "CRS Departure Time (local time: hhmm)", DepTime STRING COMMENT "Actual Departure Time (local time: hhmm)", DepDelay STRING COMMENT "Difference in minutes between scheduled and actual departure time. Early departures show negative numbers.", DepDelayMinutes STRING COMMENT "Difference in minutes between scheduled and actual departure time. Early departures set to 0.", DepDel15 STRING COMMENT "Departure Delay Indicator, 15 Minutes or More (1=Yes)", DepartureDelayGroups STRING COMMENT "Departure Delay intervals, every (15 minutes from <-15 to >180)", DepTimeBlk STRING COMMENT "CRS Departure Time Block, Hourly Intervals", TaxiOut STRING COMMENT "Taxi Out Time, in Minutes", WheelsOff STRING COMMENT "Wheels Off Time (local time: hhmm)", WheelsOn STRING COMMENT "Wheels On Time (local time: hhmm)", TaxiIn STRING COMMENT "Taxi In Time, in Minutes", CRSArrTime STRING COMMENT "CRS Arrival Time (local time: hhmm)", ArrTime STRING COMMENT "Actual Arrival Time (local time: hhmm)", ArrDelay STRING COMMENT "Difference in minutes between scheduled and actual arrival time. Early arrivals show negative numbers.", ArrDelayMinutes STRING COMMENT "Difference in minutes between scheduled and actual arrival time. Early arrivals set to 0.", ArrDel15 STRING COMMENT "Arrival Delay Indicator, 15 Minutes or More (1=Yes)", ArrivalDelayGroups STRING COMMENT "Arrival Delay intervals, every (15-minutes from <-15 to >180)", ArrTimeBlk STRING COMMENT "CRS Arrival Time Block, Hourly Intervals", Cancelled STRING COMMENT "Cancelled Flight Indicator (1=Yes)", CancellationCode STRING COMMENT "Specifies The Reason For Cancellation", Diverted STRING COMMENT "Diverted Flight Indicator (1=Yes)", CRSElapsedTime STRING COMMENT "CRS Elapsed Time of Flight, in Minutes", ActualElapsedTime STRING COMMENT "Elapsed Time of Flight, in Minutes", AirTime STRING COMMENT "Flight Time, in Minutes", Flights STRING COMMENT "Number of Flights", Distance STRING COMMENT "Distance between airports (miles)", DistanceGroup STRING COMMENT "Distance Intervals, every 250 Miles, for Flight Segment", CarrierDelay STRING COMMENT "Carrier Delay, in Minutes", WeatherDelay STRING COMMENT "Weather Delay, in Minutes", NASDelay STRING COMMENT "National Air System Delay, in Minutes", SecurityDelay STRING COMMENT "Security Delay, in Minutes", LateAircraftDelay STRING COMMENT "Late Aircraft Delay, in Minutes", FirstDepTime STRING COMMENT "First Gate Departure Time at Origin Airport", TotalAddGTime STRING COMMENT "Total Ground Time Away from Gate for Gate Return or Cancelled Flight", LongestAddGTime STRING COMMENT "Longest Time Away from Gate for Gate Return or Cancelled Flight", DivAirportLandings STRING COMMENT "Number of Diverted Airport Landings", DivReachedDest STRING COMMENT "Diverted Flight Reaching Scheduled Destination Indicator (1=Yes)", DivActualElapsedTime STRING COMMENT "Elapsed Time of Diverted Flight Reaching Scheduled Destination, in Minutes. The ActualElapsedTime column remains NULL for all diverted flights.", DivArrDelay STRING COMMENT "Difference in minutes between scheduled and actual arrival time for a diverted flight reaching scheduled destination. The ArrDelay column remains NULL for all diverted flights.", DivDistance STRING COMMENT "Distance between scheduled destination and final diverted airport (miles). Value will be 0 for diverted flight reaching scheduled destination.", Div1Airport STRING COMMENT "Diverted Airport Code1", Div1AirportID STRING COMMENT "Airport ID of Diverted Airport 1. Airport ID is a Unique Key for an Airport", Div1AirportSeqID STRING COMMENT "Airport Sequence ID of Diverted Airport 1. Unique Key for Time Specific Information for an Airport", Div1WheelsOn STRING COMMENT "Wheels On Time (local time: hhmm) at Diverted Airport Code1", Div1TotalGTime STRING COMMENT "Total Ground Time Away from Gate at Diverted Airport Code1", Div1LongestGTime STRING COMMENT "Longest Ground Time Away from Gate at Diverted Airport Code1", Div1WheelsOff STRING COMMENT "Wheels Off Time (local time: hhmm) at Diverted Airport Code1", Div1TailNum STRING COMMENT "Aircraft Tail Number for Diverted Airport Code1", Div2Airport STRING COMMENT "Diverted Airport Code2", Div2AirportID STRING COMMENT "Airport ID of Diverted Airport 2. Airport ID is a Unique Key for an Airport", Div2AirportSeqID STRING COMMENT "Airport Sequence ID of Diverted Airport 2. Unique Key for Time Specific Information for an Airport", Div2WheelsOn STRING COMMENT "Wheels On Time (local time: hhmm) at Diverted Airport Code2", Div2TotalGTime STRING COMMENT "Total Ground Time Away from Gate at Diverted Airport Code2", Div2LongestGTime STRING COMMENT "Longest Ground Time Away from Gate at Diverted Airport Code2", Div2WheelsOff STRING COMMENT "Wheels Off Time (local time: hhmm) at Diverted Airport Code2", Div2TailNum STRING COMMENT "Aircraft Tail Number for Diverted Airport Code2", Div3Airport STRING COMMENT "Diverted Airport Code3", Div3AirportID STRING COMMENT "Airport ID of Diverted Airport 3. Airport ID is a Unique Key for an Airport", Div3AirportSeqID STRING COMMENT "Airport Sequence ID of Diverted Airport 3. Unique Key for Time Specific Information for an Airport", Div3WheelsOn STRING COMMENT "Wheels On Time (local time: hhmm) at Diverted Airport Code3", Div3TotalGTime STRING COMMENT "Total Ground Time Away from Gate at Diverted Airport Code3", Div3LongestGTime STRING COMMENT "Longest Ground Time Away from Gate at Diverted Airport Code3", Div3WheelsOff STRING COMMENT "Wheels Off Time (local time: hhmm) at Diverted Airport Code3", Div3TailNum STRING COMMENT "Aircraft Tail Number for Diverted Airport Code3", Div4Airport STRING COMMENT "Diverted Airport Code4", Div4AirportID STRING COMMENT "Airport ID of Diverted Airport 4. Airport ID is a Unique Key for an Airport", Div4AirportSeqID STRING COMMENT "Airport Sequence ID of Diverted Airport 4. Unique Key for Time Specific Information for an Airport", Div4WheelsOn STRING COMMENT "Wheels On Time (local time: hhmm) at Diverted Airport Code4", Div4TotalGTime STRING COMMENT "Total Ground Time Away from Gate at Diverted Airport Code4", Div4LongestGTime STRING COMMENT "Longest Ground Time Away from Gate at Diverted Airport Code4", Div4WheelsOff STRING COMMENT "Wheels Off Time (local time: hhmm) at Diverted Airport Code4", Div4TailNum STRING COMMENT "Aircraft Tail Number for Diverted Airport Code4", Div5Airport STRING COMMENT "Diverted Airport Code5", Div5AirportID STRING COMMENT "Airport ID of Diverted Airport 5. Airport ID is a Unique Key for an Airport", Div5AirportSeqID STRING COMMENT "Airport Sequence ID of Diverted Airport 5. Unique Key for Time Specific Information for an Airport", Div5WheelsOn STRING COMMENT "Wheels On Time (local time: hhmm) at Diverted Airport Code5", Div5TotalGTime STRING COMMENT "Total Ground Time Away from Gate at Diverted Airport Code5", Div5LongestGTime STRING COMMENT "Longest Ground Time Away from Gate at Diverted Airport Code5", Div5WheelsOff STRING COMMENT "Wheels Off Time (local time: hhmm) at Diverted Airport Code5", Div5TailNum STRING COMMENT "Aircraft Tail Number for Diverted Airport Code5", Duplicate STRING COMMENT "Duplicate flag marked Y if the flight is swapped based on Form-3A data" ) PARTITIONED BY (year_month String) ROW FORMAT SERDE "org.apache.hadoop.hive.serde2.OpenCSVSerde" WITH SERDEPROPERTIES ( "separatorChar" = "," ) STORED AS TEXTFILE LOCATION "${BASEDIR}/${DB}.db/airline_perf_ext" TBLPROPERTIES ( "skip.header.line.count"="1" );
create table tab_a ( tab_a_id number(9) not null, tab_a_a_id number(8), constraint pk_tab_a primary key (tab_a_id), constraint fk_recursive foreign key (tab_a_a_id) references tab_a (tab_a_id) );
ALTER TABLE `m_savings_product` CHANGE COLUMN `allow_overdraft_min_balance` `enforce_min_required_balance` TINYINT(1) NOT NULL DEFAULT '0' AFTER `min_required_balance`; ALTER TABLE `m_savings_account` CHANGE COLUMN `allow_overdraft_min_balance` `enforce_min_required_balance` TINYINT(1) NOT NULL DEFAULT '0' AFTER `min_required_balance`;
<filename>src/test/isolation2/sql/gdd/dml_locks_only_targeted_table_in_query.sql DROP TABLE IF EXISTS part_tbl_upd_del; -- check gdd is on show gp_enable_global_deadlock_detector; CREATE TABLE part_tbl_upd_del (a int, b int, c int) PARTITION BY RANGE(b) (START(1) END(2) EVERY(1)); INSERT INTO part_tbl_upd_del SELECT i, 1, i FROM generate_series(1,10)i; 1: BEGIN; 1: DELETE FROM part_tbl_upd_del; -- on QD, there's a lock on the root and the target partition 1: SELECT 1 FROM pg_locks WHERE relation='part_tbl_upd_del_1_prt_1'::regclass::oid AND gp_segment_id = -1; 1: SELECT 1 FROM pg_locks WHERE relation='part_tbl_upd_del'::regclass::oid AND gp_segment_id = -1; 1: ROLLBACK; 1: BEGIN; 1: UPDATE part_tbl_upd_del SET c = 1 WHERE c = 1; -- on QD, there's a lock on the root and the target partition 1: SELECT 1 FROM pg_locks WHERE relation='part_tbl_upd_del_1_prt_1'::regclass::oid AND gp_segment_id = -1; 1: SELECT 1 FROM pg_locks WHERE relation='part_tbl_upd_del'::regclass::oid AND gp_segment_id = -1; 1: ROLLBACK; 1: BEGIN; 1: DELETE FROM part_tbl_upd_del_1_prt_1; -- since the delete operation is on leaf part, there will be a lock on QD 1: SELECT 1 FROM pg_locks WHERE relation='part_tbl_upd_del_1_prt_1'::regclass::oid AND gp_segment_id = -1 AND mode='RowExclusiveLock'; 1: ROLLBACK; 1: BEGIN; 1: UPDATE part_tbl_upd_del_1_prt_1 SET c = 1 WHERE c = 1; -- since the update operation is on leaf part, there will be a lock on QD 1: SELECT 1 FROM pg_locks WHERE relation='part_tbl_upd_del_1_prt_1'::regclass::oid AND gp_segment_id = -1 AND mode='RowExclusiveLock'; 1: ROLLBACK;
-- @testpoint: next_day函数参数week为英文 select next_day('2019-08-08','Sunday'),next_day('2019-08-08','Monday'),next_day('2019-08-08','Tuesday'),next_day('2019-08-08','Wednesday'),next_day('2019-08-08','Thursday'),next_day('2019-08-08','Friday'),next_day('2019-08-08','Saturday') from sys_dummy;
CREATE TABLE alter_table ( id INT, name VARCHAR(50), fKey INT ); CREATE TABLE table_fk ( id INT );
-- phpMyAdmin SQL Dump -- version 4.6.5.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 14, 2017 at 02:27 PM -- Server version: 10.1.21-MariaDB -- PHP Version: 5.6.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!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 */; CREATE DATABASE uppharmadown; USE uppharmadown; -- -- Database: `uppharmadown` -- -- -------------------------------------------------------- -- -- Table structure for table `product` -- CREATE TABLE `product` ( `product_id` int(11) NOT NULL, `name` varchar(20) CHARACTER SET utf8 DEFAULT NULL, `price` decimal(10,2) DEFAULT NULL, `dosage` varchar(20) CHARACTER SET utf8 DEFAULT NULL, `generic_name` varchar(20) CHARACTER SET utf8 DEFAULT NULL, `brand` varchar(20) CHARACTER SET utf8 DEFAULT NULL, `expiry_date` date DEFAULT NULL, `quantity` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `product` -- INSERT INTO `product` (`product_id`, `name`, `price`, `dosage`, `generic_name`, `brand`, `expiry_date`, `quantity`) VALUES (1, 'Biogesic', '5.00', '500mg', 'Paracetamol', 'Unilab', '2025-03-20', 200), (2, 'Medicol', '7.50', '200mg', 'Ibuprofen', 'Unilab', '2025-03-20', 100), (3, '<NAME>', '8.50', '350mg', 'Dextromethorphan', 'Unilab', '2025-03-25', 100), (5, 'Clear', '40.00', '500ml', '', 'Unilever', '2017-06-12', 15); -- -------------------------------------------------------- -- -- Table structure for table `product_list` -- CREATE TABLE `product_list` ( `list_no` int(11) NOT NULL, `product_id` int(11) NOT NULL, `product_qnty` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `product_list` -- INSERT INTO `product_list` (`list_no`, `product_id`, `product_qnty`) VALUES (1, 1, 12), (1, 2, 10), (1, 3, 1), (1, 5, 2), (2, 1, 12), (2, 2, 10), (2, 3, 1), (2, 5, 2); -- -------------------------------------------------------- -- -- Table structure for table `product_supplier` -- CREATE TABLE `product_supplier` ( `product_id` int(11) DEFAULT NULL, `supplier_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `supplier` -- CREATE TABLE `supplier` ( `supplier_id` int(11) NOT NULL, `company_name` varchar(20) CHARACTER SET utf8 DEFAULT NULL, `address` varchar(30) CHARACTER SET utf8 DEFAULT NULL, `contact_no` varchar(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `transac` -- CREATE TABLE `transac` ( `transaction_no` int(11) NOT NULL, `date_of_transaction` date DEFAULT NULL, `transaction_status` enum('PAID','NOTPAID') DEFAULT NULL, `list_no` int(11) NOT NULL, `consumer_id` int(11) NOT NULL, `discount` decimal(5,2) DEFAULT NULL, `grand_total` decimal(10,2) DEFAULT NULL, `delivery_location` varchar(100) CHARACTER SET utf8 DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `transac` -- INSERT INTO `transac` (`transaction_no`, `date_of_transaction`, `transaction_status`, `list_no`, `consumer_id`, `discount`, `grand_total`, `delivery_location`) VALUES (1, '2017-04-14', 'PAID', 1, 1, '0.00', '223.50', 'Puso Center Mactan, Lapu-Lapu City'), (2, '2017-04-14', 'NOTPAID', 2, 1, '0.00', '223.50', 'Puso Center Mactan, Lapu-Lapu City'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `user_id` int(11) NOT NULL, `password` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `name` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `dob` date DEFAULT NULL, `email` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `address` varchar(100) CHARACTER SET utf8 DEFAULT NULL, `contact_no` varchar(11) DEFAULT NULL, `type` enum('admin','consumer') DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`user_id`, `password`, `name`, `dob`, `email`, `address`, `contact_no`, `type`) VALUES (1, 'a8a15b230947dffe7d28e9beba511832', '<NAME>', '1998-10-19', '<EMAIL>', 'Puso Center Mactan, Lapu-Lapu City', '09561332497', 'consumer'), (11, '25f9e794323b453885f5181f1b624d0b', '<NAME>', '1998-04-04', '<EMAIL>', 'Consolacion, Cebu', '09055177511', 'consumer'), (15, '787c74a2e618a696e34e025adda33ad3', 'Sunny Rainday', '0000-00-00', '<EMAIL>', '', '09228092100', 'admin'); -- -- Indexes for dumped tables -- -- -- Indexes for table `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`product_id`); -- -- Indexes for table `product_list` -- ALTER TABLE `product_list` ADD KEY `fk_product_id` (`product_id`); -- -- Indexes for table `product_supplier` -- ALTER TABLE `product_supplier` ADD KEY `fk_prod_id` (`product_id`), ADD KEY `fk_supp_id` (`supplier_id`); -- -- Indexes for table `supplier` -- ALTER TABLE `supplier` ADD PRIMARY KEY (`supplier_id`); -- -- Indexes for table `transac` -- ALTER TABLE `transac` ADD PRIMARY KEY (`transaction_no`), ADD KEY `fk_dl` (`delivery_location`), ADD KEY `fk_ci` (`consumer_id`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`user_id`), ADD KEY `address` (`address`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `product` -- ALTER TABLE `product` MODIFY `product_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `supplier` -- ALTER TABLE `supplier` MODIFY `supplier_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transac` -- ALTER TABLE `transac` MODIFY `transaction_no` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- Constraints for dumped tables -- -- -- Constraints for table `product_list` -- ALTER TABLE `product_list` ADD CONSTRAINT `fk_product_id` FOREIGN KEY (`product_id`) REFERENCES `product` (`product_id`); -- -- Constraints for table `product_supplier` -- ALTER TABLE `product_supplier` ADD CONSTRAINT `fk_prod_id` FOREIGN KEY (`product_id`) REFERENCES `product` (`product_id`) ON DELETE CASCADE, ADD CONSTRAINT `fk_supp_id` FOREIGN KEY (`supplier_id`) REFERENCES `supplier` (`supplier_id`) ON DELETE CASCADE; -- -- Constraints for table `transac` -- ALTER TABLE `transac` ADD CONSTRAINT `fk_ci` FOREIGN KEY (`consumer_id`) REFERENCES `user` (`user_id`), ADD CONSTRAINT `fk_dl` FOREIGN KEY (`delivery_location`) REFERENCES `user` (`address`); /*!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 */;
<gh_stars>0 EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2017-09-30',@EPS = N'0.27',@EPSDeduct = N'0',@Revenue = N'12.30亿',@RevenueYoy = N'48.45',@RevenueQoq = N'5.43',@Profit = N'9740.10万',@ProfitYoy = N'104.46',@ProfiltQoq = N'-9.16',@NAVPerUnit = N'2.3973',@ROE = N'12.50',@CashPerUnit = N'0.4750',@GrossProfitRate = N'29.73',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2017-06-30',@EPS = N'0.19',@EPSDeduct = N'0.18',@Revenue = N'7.93亿',@RevenueYoy = N'63.08',@RevenueQoq = N'9.42',@Profit = N'6802.69万',@ProfitYoy = N'231.56',@ProfiltQoq = N'-9.39',@NAVPerUnit = N'2.2184',@ROE = N'9.01',@CashPerUnit = N'0.3973',@GrossProfitRate = N'30.75',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-09-06' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2016-12-31',@EPS = N'0.21',@EPSDeduct = N'0.2',@Revenue = N'11.98亿',@RevenueYoy = N'87.23',@RevenueQoq = N'7.95',@Profit = N'7720.96万',@ProfitYoy = N'161.14',@ProfiltQoq = N'9.04',@NAVPerUnit = N'2.0291',@ROE = N'10.22',@CashPerUnit = N'0.4491',@GrossProfitRate = N'32.95',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-08-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2016-09-30',@EPS = N'0.13',@EPSDeduct = N'0',@Revenue = N'8.28亿',@RevenueYoy = N'-',@RevenueQoq = N'-',@Profit = N'4763.70万',@ProfitYoy = N'-',@ProfiltQoq = N'-',@NAVPerUnit = N'0.0000',@ROE = N'7.03',@CashPerUnit = N'0.0000',@GrossProfitRate = N'34.46',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-28' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2017-03-31',@EPS = N'0.1',@EPSDeduct = N'0.09',@Revenue = N'3.79亿',@RevenueYoy = N'-',@RevenueQoq = N'2.51',@Profit = N'3568.97万',@ProfitYoy = N'-',@ProfiltQoq = N'20.68',@NAVPerUnit = N'2.1283',@ROE = N'4.53',@CashPerUnit = N'0.0595',@GrossProfitRate = N'31.04',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-08-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2014-12-31',@EPS = N'0.19',@EPSDeduct = N'0',@Revenue = N'4.20亿',@RevenueYoy = N'84.80',@RevenueQoq = N'-',@Profit = N'5745.57万',@ProfitYoy = N'10.03',@ProfiltQoq = N'-',@NAVPerUnit = N'9.1151',@ROE = N'42.29',@CashPerUnit = N'5.3776',@GrossProfitRate = N'50.24',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-08-30' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2013-12-31',@EPS = N'0.17',@EPSDeduct = N'0',@Revenue = N'2.27亿',@RevenueYoy = N'-',@RevenueQoq = N'-',@Profit = N'5221.93万',@ProfitYoy = N'-',@ProfiltQoq = N'-',@NAVPerUnit = N'12.7545',@ROE = N'52.05',@CashPerUnit = N'5.2603',@GrossProfitRate = N'51.48',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-06-17' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2016-06-30',@EPS = N'0.06',@EPSDeduct = N'0.06',@Revenue = N'4.86亿',@RevenueYoy = N'-',@RevenueQoq = N'-',@Profit = N'2051.71万',@ProfitYoy = N'-',@ProfiltQoq = N'-',@NAVPerUnit = N'0.0000',@ROE = N'3.09',@CashPerUnit = N'0.1900',@GrossProfitRate = N'34.99',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-09-06' EXEC [EST].[Proc_yjbb_Ins] @Code = N'603533',@CutoffDate = N'2015-12-31',@EPS = N'0.1',@EPSDeduct = N'0.2',@Revenue = N'6.40亿',@RevenueYoy = N'52.44',@RevenueQoq = N'-',@Profit = N'2956.63万',@ProfitYoy = N'-48.54',@ProfiltQoq = N'-',@NAVPerUnit = N'5.5350',@ROE = N'40.39',@CashPerUnit = N'1.0455',@GrossProfitRate = N'48.45',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-08-30'
<reponame>narbit/Dapper.GraphQL<gh_stars>0 INSERT INTO Person (Id, MergedToPersonId, FirstName, LastName, SupervisorId, CareerCounselorId, CreateDate) VALUES (1, 1, 'Hyrum', 'Clyde', NULL, NULL, '2019-01-01'); INSERT INTO Person (Id, MergedToPersonId, FirstName, LastName, SupervisorId, CareerCounselorId, CreateDate) VALUES (2, 2, 'Doug', 'Day', NULL, NULL, '2019-01-02'); INSERT INTO Person (Id, MergedToPersonId, FirstName, LastName, SupervisorId, CareerCounselorId, CreateDate) VALUES (3, 3, 'Kevin', 'Russon', 1, 2, '2019-01-03'); INSERT INTO Person (Id, MergedToPersonId, FirstName, LastName, SupervisorId, CareerCounselorId, CreateDate) VALUES (4, 4, 'Douglas', 'Day', NULL, 1, '2019-01-04'); -- Update the identity value SELECT setval(pg_get_serial_sequence('person', 'id'), (SELECT MAX(Id) FROM Person)); -- Merge people (Doug == Douglas) UPDATE Person SET MergedToPersonId = 4 WHERE Id = 2; INSERT INTO Company (Id, Name) VALUES (1, 'Landmark Home Warranty, LLC'); INSERT INTO Company (Id, Name) VALUES (2, 'Navitaire, LLC'); SELECT setval(pg_get_serial_sequence('company', 'id'), (SELECT MAX(Id) FROM Company)); INSERT INTO PersonCompany (Id, PersonId, CompanyId, StartDate, EndDate) VALUES (1, 1, 1, '2016-01-01', NULL); INSERT INTO PersonCompany (Id, PersonId, CompanyId, StartDate, EndDate) VALUES (2, 2, 1, '2016-05-16', NULL); INSERT INTO PersonCompany (Id, PersonId, CompanyId, StartDate, EndDate) VALUES (3, 3, 1, '2016-10-05', NULL); INSERT INTO PersonCompany (Id, PersonId, CompanyId, StartDate, EndDate) VALUES (4, 4, 2, '2011-04-06', '2016-05-13'); INSERT INTO PersonCompany (Id, PersonId, CompanyId, StartDate, EndDate) VALUES (5, 3, 2, '2011-08-15', '2016-10-02'); SELECT setval(pg_get_serial_sequence('personcompany', 'id'), (SELECT MAX(Id) FROM PersonCompany)); INSERT INTO Email (Id, Address) VALUES (1, '<EMAIL>'); INSERT INTO Email (Id, Address) VALUES (2, '<EMAIL>'); INSERT INTO Email (Id, Address) VALUES (3, '<EMAIL>'); INSERT INTO Email (Id, Address) VALUES (4, '<EMAIL>'); INSERT INTO Email (Id, Address) VALUES (5, '<EMAIL>'); INSERT INTO Email (Id, Address) VALUES (6, '<EMAIL>'); SELECT setval(pg_get_serial_sequence('email', 'id'), (SELECT MAX(Id) FROM Email)); INSERT INTO PersonEmail (Id, EmailId, PersonId) VALUES (1, 1, 1); INSERT INTO PersonEmail (Id, EmailId, PersonId) VALUES (2, 2, 2); INSERT INTO PersonEmail (Id, EmailId, PersonId) VALUES (3, 3, 4); INSERT INTO PersonEmail (Id, EmailId, PersonId) VALUES (4, 4, 3); SELECT setval(pg_get_serial_sequence('personemail', 'id'), (SELECT MAX(Id) FROM PersonEmail)); INSERT INTO CompanyEmail (Id, CompanyId, EmailId) VALUES (1, 1, 5); INSERT INTO CompanyEmail (Id, CompanyId, EmailId) VALUES (2, 2, 6); SELECT setval(pg_get_serial_sequence('companyemail', 'id'), (SELECT MAX(Id) FROM CompanyEmail)); INSERT INTO Phone (Id, Number, Type) VALUES (1, '8011234567', 3); INSERT INTO Phone (Id, Number, Type) VALUES (2, '8019876543', 3); INSERT INTO Phone (Id, Number, Type) VALUES (3, '8011111111', 1); INSERT INTO Phone (Id, Number, Type) VALUES (4, '8663062999', 1); INSERT INTO Phone (Id, Number, Type) VALUES (5, '8019477800', 1); SELECT setval(pg_get_serial_sequence('phone', 'id'), (SELECT MAX(Id) FROM Phone)); INSERT INTO PersonPhone (Id, PhoneId, PersonId) VALUES (1, 1, 2); INSERT INTO PersonPhone (Id, PhoneId, PersonId) VALUES (2, 2, 3); INSERT INTO PersonPhone (Id, PhoneId, PersonId) VALUES (3, 3, 3); SELECT setval(pg_get_serial_sequence('personphone', 'id'), (SELECT MAX(Id) FROM PersonPhone)); INSERT INTO CompanyPhone (Id, PhoneId, CompanyId) VALUES (1, 4, 1); INSERT INTO CompanyPhone (Id, PhoneId, CompanyId) VALUES (2, 5, 2); SELECT setval(pg_get_serial_sequence('companyphone', 'id'), (SELECT MAX(Id) FROM CompanyPhone));
<filename>src/main/resources/SkillBankDB.sql .open SKILLBANK.db CREATE TABLE USER ( user_id INT, username VARCHAR(30), PRIMARY KEY (user_id) ); CREATE TABLE SKILL ( user_id INT, skill_id INT, skill_name VARCHAR(30), hours DOUBLE CHECK (hours >= 0), UNIQUE (skill_name), PRIMARY KEY (user_id, skill_id) ); PRAGMA foreign_keys=1;
<filename>prisma/migrations/20220527001031_one_to_many_verification/migration.sql /* Warnings: - You are about to drop the column `verification_request_id` on the `BookPublication` table. All the data in the column will be lost. - You are about to drop the column `verification_request_id` on the `ExternalResearch` table. All the data in the column will be lost. - You are about to drop the column `verification_request_id` on the `JournalPublication` table. All the data in the column will be lost. - You are about to drop the column `verification_request_id` on the `ResearchDissemination` table. All the data in the column will be lost. - You are about to drop the column `verification_request_id` on the `ResearchEventAttendance` table. All the data in the column will be lost. - You are about to drop the column `verification_request_id` on the `ResearchPresentation` table. All the data in the column will be lost. */ -- DropForeignKey ALTER TABLE "BookPublication" DROP CONSTRAINT "BookPublication_verification_request_id_fkey"; -- DropForeignKey ALTER TABLE "ExternalResearch" DROP CONSTRAINT "ExternalResearch_verification_request_id_fkey"; -- DropForeignKey ALTER TABLE "JournalPublication" DROP CONSTRAINT "JournalPublication_verification_request_id_fkey"; -- DropForeignKey ALTER TABLE "ResearchDissemination" DROP CONSTRAINT "ResearchDissemination_verification_request_id_fkey"; -- DropForeignKey ALTER TABLE "ResearchEventAttendance" DROP CONSTRAINT "ResearchEventAttendance_verification_request_id_fkey"; -- DropForeignKey ALTER TABLE "ResearchPresentation" DROP CONSTRAINT "ResearchPresentation_verification_request_id_fkey"; -- DropIndex DROP INDEX "BookPublication_verification_request_id_key"; -- DropIndex DROP INDEX "ExternalResearch_verification_request_id_key"; -- DropIndex DROP INDEX "JournalPublication_verification_request_id_key"; -- DropIndex DROP INDEX "ResearchDissemination_verification_request_id_key"; -- DropIndex DROP INDEX "ResearchEventAttendance_verification_request_id_key"; -- DropIndex DROP INDEX "ResearchPresentation_verification_request_id_key"; -- AlterTable ALTER TABLE "BookPublication" DROP COLUMN "verification_request_id"; -- AlterTable ALTER TABLE "ExternalResearch" DROP COLUMN "verification_request_id"; -- AlterTable ALTER TABLE "JournalPublication" DROP COLUMN "verification_request_id"; -- AlterTable ALTER TABLE "ResearchDissemination" DROP COLUMN "verification_request_id"; -- AlterTable ALTER TABLE "ResearchEventAttendance" DROP COLUMN "verification_request_id"; -- AlterTable ALTER TABLE "ResearchPresentation" DROP COLUMN "verification_request_id"; -- AlterTable ALTER TABLE "VerificationRequest" ADD COLUMN "book_publication_id" TEXT, ADD COLUMN "external_research_id" TEXT, ADD COLUMN "journal_publication_id" TEXT, ADD COLUMN "research_dissemination_id" TEXT, ADD COLUMN "research_event_attendance_id" TEXT, ADD COLUMN "research_presentation_id" TEXT; -- AddForeignKey ALTER TABLE "VerificationRequest" ADD CONSTRAINT "VerificationRequest_external_research_id_fkey" FOREIGN KEY ("external_research_id") REFERENCES "ExternalResearch"("id") ON DELETE SET NULL ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "VerificationRequest" ADD CONSTRAINT "VerificationRequest_research_event_attendance_id_fkey" FOREIGN KEY ("research_event_attendance_id") REFERENCES "ResearchEventAttendance"("id") ON DELETE SET NULL ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "VerificationRequest" ADD CONSTRAINT "VerificationRequest_research_presentation_id_fkey" FOREIGN KEY ("research_presentation_id") REFERENCES "ResearchPresentation"("id") ON DELETE SET NULL ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "VerificationRequest" ADD CONSTRAINT "VerificationRequest_research_dissemination_id_fkey" FOREIGN KEY ("research_dissemination_id") REFERENCES "ResearchDissemination"("id") ON DELETE SET NULL ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "VerificationRequest" ADD CONSTRAINT "VerificationRequest_journal_publication_id_fkey" FOREIGN KEY ("journal_publication_id") REFERENCES "JournalPublication"("id") ON DELETE SET NULL ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "VerificationRequest" ADD CONSTRAINT "VerificationRequest_book_publication_id_fkey" FOREIGN KEY ("book_publication_id") REFERENCES "BookPublication"("id") ON DELETE SET NULL ON UPDATE CASCADE;
<filename>perdiksi_jumlah_karyawan.sql<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.9.5deb2 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Waktu pembuatan: 26 Nov 2021 pada 14.41 -- Versi server: 8.0.27-0ubuntu0.20.04.1 -- Versi PHP: 7.4.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `ta_hatta` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `logs` -- CREATE TABLE `logs` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `logs` -- INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (10, 4, '2021-09-01 05:04:12', '2021-09-01 05:04:12'), (11, 4, '2021-09-01 05:04:14', '2021-09-01 05:04:14'), (12, 4, '2021-09-01 05:04:15', '2021-09-01 05:04:15'), (13, 4, '2021-09-01 05:04:16', '2021-09-01 05:04:16'), (14, 4, '2021-09-01 05:04:24', '2021-09-01 05:04:24'), (15, 4, '2021-09-01 05:04:26', '2021-09-01 05:04:26'), (16, 4, '2021-09-01 05:04:27', '2021-09-01 05:04:27'), (17, 4, '2021-09-01 05:04:28', '2021-09-01 05:04:28'), (18, 4, '2021-09-01 05:04:32', '2021-09-01 05:04:32'), (19, 4, '2021-09-01 05:04:33', '2021-09-01 05:04:33'), (20, 4, '2021-09-01 05:04:34', '2021-09-01 05:04:34'), (21, 4, '2021-09-01 05:04:34', '2021-09-01 05:04:34'), (22, 4, '2021-09-01 05:04:35', '2021-09-01 05:04:35'), (23, 4, '2021-09-01 05:04:35', '2021-09-01 05:04:35'), (24, 4, '2021-09-01 05:04:36', '2021-09-01 05:04:36'), (25, 4, '2021-09-01 05:05:22', '2021-09-01 05:05:22'), (26, 4, '2021-08-01 05:08:26', '2021-08-01 05:08:26'), (27, 4, '2021-08-01 05:08:37', '2021-08-01 05:08:37'), (28, 4, '2021-08-01 05:08:38', '2021-08-01 05:08:38'), (29, 4, '2021-08-01 05:08:39', '2021-08-01 05:08:39'), (30, 4, '2021-08-01 05:08:40', '2021-08-01 05:08:40'), (31, 4, '2021-08-01 05:08:41', '2021-08-01 05:08:41'), (32, 4, '2021-08-01 05:08:42', '2021-08-01 05:08:42'), (33, 4, '2021-08-01 05:08:43', '2021-08-01 05:08:43'), (34, 4, '2021-08-01 05:08:44', '2021-08-01 05:08:44'), (35, 4, '2021-08-01 05:08:45', '2021-08-01 05:08:45'), (36, 4, '2021-08-01 05:08:46', '2021-08-01 05:08:46'), (37, 4, '2021-08-01 05:08:47', '2021-08-01 05:08:47'), (38, 4, '2021-08-01 05:08:47', '2021-08-01 05:08:47'), (39, 4, '2021-08-01 05:08:48', '2021-08-01 05:08:48'), (40, 4, '2021-08-01 05:08:50', '2021-08-01 05:08:50'), (41, 4, '2021-08-01 05:08:51', '2021-08-01 05:08:51'), (42, 4, '2021-08-01 05:08:52', '2021-08-01 05:08:52'), (43, 4, '2021-08-01 05:08:53', '2021-08-01 05:08:53'), (44, 4, '2021-08-01 05:08:55', '2021-08-01 05:08:55'), (45, 4, '2021-08-01 05:08:56', '2021-08-01 05:08:56'), (46, 4, '2021-08-01 05:08:57', '2021-08-01 05:08:57'), (47, 4, '2021-08-01 05:08:57', '2021-08-01 05:08:57'), (48, 4, '2021-08-01 05:08:58', '2021-08-01 05:08:58'), (49, 4, '2021-08-01 05:08:58', '2021-08-01 05:08:58'), (50, 4, '2021-08-01 05:08:59', '2021-08-01 05:08:59'), (51, 4, '2021-08-01 05:08:59', '2021-08-01 05:08:59'), (52, 4, '2021-08-01 05:09:00', '2021-08-01 05:09:00'), (53, 4, '2021-08-01 05:09:00', '2021-08-01 05:09:00'), (54, 4, '2021-08-01 05:09:01', '2021-08-01 05:09:01'), (55, 4, '2021-08-01 05:09:02', '2021-08-01 05:09:02'), (56, 4, '2021-08-02 05:09:12', '2021-08-02 05:09:12'), (57, 4, '2021-08-02 05:09:13', '2021-08-02 05:09:13'), (58, 4, '2021-08-02 05:09:14', '2021-08-02 05:09:14'), (59, 4, '2021-08-02 05:09:15', '2021-08-02 05:09:15'), (60, 4, '2021-08-02 05:09:15', '2021-08-02 05:09:15'), (61, 4, '2021-08-02 05:09:15', '2021-08-02 05:09:15'), (62, 4, '2021-08-02 05:09:16', '2021-08-02 05:09:16'), (63, 4, '2021-08-02 05:09:16', '2021-08-02 05:09:16'), (64, 4, '2021-08-02 05:09:16', '2021-08-02 05:09:16'), (65, 4, '2021-08-02 05:09:17', '2021-08-02 05:09:17'), (66, 4, '2021-08-02 05:09:17', '2021-08-02 05:09:17'), (67, 4, '2021-08-02 05:09:17', '2021-08-02 05:09:17'), (68, 4, '2021-08-02 05:09:18', '2021-08-02 05:09:18'), (69, 4, '2021-08-02 05:09:18', '2021-08-02 05:09:18'), (70, 4, '2021-08-02 05:09:18', '2021-08-02 05:09:18'), (71, 4, '2021-08-02 05:09:19', '2021-08-02 05:09:19'), (72, 4, '2021-08-02 05:09:19', '2021-08-02 05:09:19'), (73, 4, '2021-08-02 05:09:20', '2021-08-02 05:09:20'), (74, 4, '2021-08-02 05:09:20', '2021-08-02 05:09:20'), (75, 4, '2021-08-02 05:09:21', '2021-08-02 05:09:21'), (76, 4, '2021-08-02 05:09:21', '2021-08-02 05:09:21'), (77, 4, '2021-08-02 05:09:22', '2021-08-02 05:09:22'), (78, 4, '2021-08-02 05:09:22', '2021-08-02 05:09:22'), (79, 4, '2021-08-02 05:09:22', '2021-08-02 05:09:22'), (80, 4, '2021-08-02 05:09:23', '2021-08-02 05:09:23'), (81, 4, '2021-08-02 05:09:23', '2021-08-02 05:09:23'), (82, 4, '2021-08-02 05:09:23', '2021-08-02 05:09:23'), (83, 4, '2021-08-02 05:09:23', '2021-08-02 05:09:23'), (84, 4, '2021-08-02 05:09:23', '2021-08-02 05:09:23'), (85, 4, '2021-08-02 05:09:24', '2021-08-02 05:09:24'), (86, 4, '2021-08-02 05:09:24', '2021-08-02 05:09:24'), (87, 4, '2021-08-02 05:09:24', '2021-08-02 05:09:24'), (88, 4, '2021-08-02 05:09:24', '2021-08-02 05:09:24'), (89, 4, '2021-08-02 05:09:25', '2021-08-02 05:09:25'), (90, 4, '2021-08-02 05:09:25', '2021-08-02 05:09:25'), (91, 4, '2021-08-02 05:09:25', '2021-08-02 05:09:25'), (92, 4, '2021-08-02 05:09:25', '2021-08-02 05:09:25'), (93, 4, '2021-08-02 05:09:25', '2021-08-02 05:09:25'), (94, 4, '2021-08-02 05:09:25', '2021-08-02 05:09:25'), (95, 4, '2021-08-02 05:09:26', '2021-08-02 05:09:26'), (96, 4, '2021-08-02 05:09:26', '2021-08-02 05:09:26'), (97, 4, '2021-08-02 05:09:26', '2021-08-02 05:09:26'), (98, 4, '2021-08-02 05:09:26', '2021-08-02 05:09:26'), (99, 4, '2021-08-02 05:09:27', '2021-08-02 05:09:27'), (100, 4, '2021-08-02 05:09:27', '2021-08-02 05:09:27'), (101, 4, '2021-08-02 05:09:27', '2021-08-02 05:09:27'), (102, 4, '2021-08-02 05:09:27', '2021-08-02 05:09:27'), (103, 4, '2021-08-02 05:09:28', '2021-08-02 05:09:28'), (104, 4, '2021-08-02 05:09:28', '2021-08-02 05:09:28'), (105, 4, '2021-08-02 05:09:28', '2021-08-02 05:09:28'), (106, 4, '2021-08-02 05:09:28', '2021-08-02 05:09:28'), (107, 4, '2021-08-02 05:09:28', '2021-08-02 05:09:28'), (108, 4, '2021-08-02 05:09:29', '2021-08-02 05:09:29'), (109, 4, '2021-08-02 05:09:29', '2021-08-02 05:09:29'), (110, 4, '2021-08-02 05:09:29', '2021-08-02 05:09:29'), (111, 4, '2021-08-02 05:09:29', '2021-08-02 05:09:29'), (112, 4, '2021-08-02 05:09:30', '2021-08-02 05:09:30'), (113, 4, '2021-08-02 05:09:30', '2021-08-02 05:09:30'), (114, 4, '2021-08-02 05:09:30', '2021-08-02 05:09:30'), (115, 4, '2021-08-02 05:09:30', '2021-08-02 05:09:30'), (116, 4, '2021-08-02 05:09:31', '2021-08-02 05:09:31'), (117, 4, '2021-08-02 05:09:31', '2021-08-02 05:09:31'), (118, 4, '2021-08-02 05:09:31', '2021-08-02 05:09:31'), (119, 4, '2021-08-02 05:09:31', '2021-08-02 05:09:31'), (120, 4, '2021-08-02 05:09:32', '2021-08-02 05:09:32'), (121, 4, '2021-08-02 05:09:32', '2021-08-02 05:09:32'), (122, 4, '2021-08-02 05:09:33', '2021-08-02 05:09:33'), (123, 4, '2021-08-02 05:09:33', '2021-08-02 05:09:33'), (124, 4, '2021-08-02 05:09:34', '2021-08-02 05:09:34'), (125, 4, '2021-08-02 05:09:34', '2021-08-02 05:09:34'), (126, 4, '2021-08-02 05:09:35', '2021-08-02 05:09:35'), (127, 4, '2021-08-02 05:09:35', '2021-08-02 05:09:35'), (128, 4, '2021-08-02 05:09:35', '2021-08-02 05:09:35'), (129, 4, '2021-08-02 05:09:36', '2021-08-02 05:09:36'), (130, 4, '2021-08-02 05:09:36', '2021-08-02 05:09:36'), (131, 4, '2021-08-02 05:09:36', '2021-08-02 05:09:36'), (132, 4, '2021-08-02 05:09:36', '2021-08-02 05:09:36'), (133, 4, '2021-08-02 05:09:37', '2021-08-02 05:09:37'), (134, 4, '2021-08-02 05:09:37', '2021-08-02 05:09:37'), (135, 4, '2021-08-02 05:09:38', '2021-08-02 05:09:38'), (136, 4, '2021-08-02 05:09:38', '2021-08-02 05:09:38'), (137, 4, '2021-08-02 05:09:39', '2021-08-02 05:09:39'), (138, 4, '2021-08-02 05:09:39', '2021-08-02 05:09:39'), (139, 4, '2021-08-02 05:09:40', '2021-08-02 05:09:40'), (140, 4, '2021-08-02 05:09:40', '2021-08-02 05:09:40'), (141, 4, '2021-08-02 05:09:40', '2021-08-02 05:09:40'), (142, 4, '2021-08-02 05:09:40', '2021-08-02 05:09:40'), (143, 4, '2021-08-02 05:09:41', '2021-08-02 05:09:41'), (144, 4, '2021-08-02 05:09:41', '2021-08-02 05:09:41'), (145, 4, '2021-08-02 05:09:41', '2021-08-02 05:09:41'), (146, 4, '2021-08-02 05:09:42', '2021-08-02 05:09:42'), (147, 4, '2021-08-02 05:09:42', '2021-08-02 05:09:42'), (148, 4, '2021-08-02 05:09:42', '2021-08-02 05:09:42'), (149, 4, '2021-08-02 05:09:42', '2021-08-02 05:09:42'), (150, 4, '2021-08-02 05:09:43', '2021-08-02 05:09:43'), (151, 4, '2021-08-02 05:09:43', '2021-08-02 05:09:43'), (152, 4, '2021-08-02 05:09:43', '2021-08-02 05:09:43'), (153, 4, '2021-08-02 05:09:44', '2021-08-02 05:09:44'), (154, 4, '2021-08-02 05:09:44', '2021-08-02 05:09:44'), (155, 4, '2021-08-02 05:09:44', '2021-08-02 05:09:44'), (156, 4, '2021-08-02 05:09:45', '2021-08-02 05:09:45'), (157, 4, '2021-08-02 05:09:45', '2021-08-02 05:09:45'), (158, 4, '2021-08-02 05:09:45', '2021-08-02 05:09:45'), (159, 4, '2021-08-02 05:09:51', '2021-08-02 05:09:51'), (160, 4, '2021-08-03 05:09:54', '2021-08-03 05:09:54'), (161, 4, '2021-08-03 05:09:55', '2021-08-03 05:09:55'), (162, 4, '2021-08-03 05:09:56', '2021-08-03 05:09:56'), (163, 4, '2021-08-03 05:09:56', '2021-08-03 05:09:56'), (164, 4, '2021-08-03 05:09:57', '2021-08-03 05:09:57'), (165, 4, '2021-08-03 05:09:57', '2021-08-03 05:09:57'), (166, 4, '2021-08-03 05:09:57', '2021-08-03 05:09:57'), (167, 4, '2021-08-03 05:09:57', '2021-08-03 05:09:57'), (168, 4, '2021-08-03 05:09:58', '2021-08-03 05:09:58'), (169, 4, '2021-08-03 05:10:00', '2021-08-03 05:10:00'), (170, 4, '2021-08-03 05:10:00', '2021-08-03 05:10:00'), (171, 4, '2021-08-03 05:10:00', '2021-08-03 05:10:00'), (172, 4, '2021-08-03 05:10:01', '2021-08-03 05:10:01'), (173, 4, '2021-08-03 05:10:01', '2021-08-03 05:10:01'), (174, 4, '2021-08-03 05:10:01', '2021-08-03 05:10:01'), (175, 4, '2021-08-03 05:10:01', '2021-08-03 05:10:01'), (176, 4, '2021-08-03 05:10:02', '2021-08-03 05:10:02'), (177, 4, '2021-08-03 05:10:02', '2021-08-03 05:10:02'), (178, 4, '2021-08-03 05:10:03', '2021-08-03 05:10:03'), (179, 4, '2021-08-03 05:10:03', '2021-08-03 05:10:03'), (180, 4, '2021-08-03 05:10:03', '2021-08-03 05:10:03'), (181, 4, '2021-08-03 05:10:03', '2021-08-03 05:10:03'), (182, 4, '2021-08-03 05:10:04', '2021-08-03 05:10:04'), (183, 4, '2021-08-03 05:10:04', '2021-08-03 05:10:04'), (184, 4, '2021-08-03 05:10:04', '2021-08-03 05:10:04'), (185, 4, '2021-08-03 05:10:05', '2021-08-03 05:10:05'), (186, 4, '2021-08-03 05:10:05', '2021-08-03 05:10:05'), (187, 4, '2021-08-03 05:10:05', '2021-08-03 05:10:05'), (188, 4, '2021-08-03 05:10:05', '2021-08-03 05:10:05'), (189, 4, '2021-08-03 05:10:06', '2021-08-03 05:10:06'), (190, 4, '2021-08-03 05:10:06', '2021-08-03 05:10:06'), (191, 4, '2021-08-03 05:10:06', '2021-08-03 05:10:06'), (192, 4, '2021-08-03 05:10:07', '2021-08-03 05:10:07'), (193, 4, '2021-08-03 05:10:07', '2021-08-03 05:10:07'), (194, 4, '2021-08-03 05:10:07', '2021-08-03 05:10:07'), (195, 4, '2021-08-03 05:10:08', '2021-08-03 05:10:08'), (196, 4, '2021-08-03 05:10:08', '2021-08-03 05:10:08'), (197, 4, '2021-08-03 05:10:08', '2021-08-03 05:10:08'), (198, 4, '2021-08-03 05:10:08', '2021-08-03 05:10:08'), (199, 4, '2021-08-03 05:10:09', '2021-08-03 05:10:09'), (200, 4, '2021-08-03 05:10:09', '2021-08-03 05:10:09'), (201, 4, '2021-08-03 05:10:09', '2021-08-03 05:10:09'), (202, 4, '2021-08-03 05:10:10', '2021-08-03 05:10:10'), (203, 4, '2021-08-03 05:10:10', '2021-08-03 05:10:10'), (204, 4, '2021-08-03 05:10:10', '2021-08-03 05:10:10'), (205, 4, '2021-08-03 05:10:11', '2021-08-03 05:10:11'), (206, 4, '2021-08-03 05:10:11', '2021-08-03 05:10:11'), (207, 4, '2021-08-03 05:10:11', '2021-08-03 05:10:11'), (208, 4, '2021-08-03 05:10:12', '2021-08-03 05:10:12'), (209, 4, '2021-08-03 05:10:12', '2021-08-03 05:10:12'), (210, 4, '2021-08-03 05:10:12', '2021-08-03 05:10:12'), (211, 4, '2021-08-03 05:10:13', '2021-08-03 05:10:13'), (212, 4, '2021-08-03 05:10:14', '2021-08-03 05:10:14'), (213, 4, '2021-08-03 05:10:15', '2021-08-03 05:10:15'), (214, 4, '2021-08-03 05:10:15', '2021-08-03 05:10:15'), (215, 4, '2021-08-03 05:10:15', '2021-08-03 05:10:15'), (216, 4, '2021-08-03 05:10:16', '2021-08-03 05:10:16'), (217, 4, '2021-08-04 05:10:19', '2021-08-04 05:10:19'), (218, 4, '2021-08-04 05:10:20', '2021-08-04 05:10:20'), (219, 4, '2021-08-04 05:10:21', '2021-08-04 05:10:21'), (220, 4, '2021-08-04 05:10:21', '2021-08-04 05:10:21'), (221, 4, '2021-08-04 05:10:21', '2021-08-04 05:10:21'), (222, 4, '2021-08-04 05:10:22', '2021-08-04 05:10:22'), (223, 4, '2021-08-04 05:10:22', '2021-08-04 05:10:22'), (224, 4, '2021-08-04 05:10:22', '2021-08-04 05:10:22'), (225, 4, '2021-08-04 05:10:23', '2021-08-04 05:10:23'), (226, 4, '2021-08-04 05:10:24', '2021-08-04 05:10:24'), (227, 4, '2021-08-04 05:10:24', '2021-08-04 05:10:24'), (228, 4, '2021-08-04 05:10:24', '2021-08-04 05:10:24'), (229, 4, '2021-08-04 05:10:24', '2021-08-04 05:10:24'), (230, 4, '2021-08-04 05:10:37', '2021-08-04 05:10:37'), (231, 4, '2021-08-04 05:10:37', '2021-08-04 05:10:37'), (232, 4, '2021-08-04 05:10:38', '2021-08-04 05:10:38'), (233, 4, '2021-08-04 05:10:39', '2021-08-04 05:10:39'), (234, 4, '2021-08-04 05:10:39', '2021-08-04 05:10:39'), (235, 4, '2021-08-04 05:10:40', '2021-08-04 05:10:40'), (236, 4, '2021-08-04 05:10:40', '2021-08-04 05:10:40'), (237, 4, '2021-08-04 05:10:41', '2021-08-04 05:10:41'), (238, 4, '2021-08-04 05:10:42', '2021-08-04 05:10:42'), (239, 4, '2021-08-04 05:10:43', '2021-08-04 05:10:43'), (240, 4, '2021-08-04 05:10:43', '2021-08-04 05:10:43'), (241, 4, '2021-08-04 05:10:44', '2021-08-04 05:10:44'), (242, 4, '2021-08-04 05:10:44', '2021-08-04 05:10:44'), (243, 4, '2021-08-04 05:10:45', '2021-08-04 05:10:45'), (244, 4, '2021-08-04 05:10:45', '2021-08-04 05:10:45'), (245, 4, '2021-08-04 05:10:46', '2021-08-04 05:10:46'), (246, 4, '2021-08-04 05:10:46', '2021-08-04 05:10:46'), (247, 4, '2021-08-04 05:10:47', '2021-08-04 05:10:47'), (248, 4, '2021-08-04 05:10:48', '2021-08-04 05:10:48'), (249, 4, '2021-08-04 05:10:48', '2021-08-04 05:10:48'), (250, 4, '2021-08-04 05:10:49', '2021-08-04 05:10:49'), (251, 4, '2021-08-04 05:10:50', '2021-08-04 05:10:50'), (252, 4, '2021-08-04 05:10:50', '2021-08-04 05:10:50'), (253, 4, '2021-08-04 05:10:51', '2021-08-04 05:10:51'), (254, 4, '2021-08-04 05:10:59', '2021-08-04 05:10:59'), (255, 4, '2021-08-04 05:10:59', '2021-08-04 05:10:59'), (256, 4, '2021-08-04 05:11:00', '2021-08-04 05:11:00'), (257, 4, '2021-08-04 05:11:00', '2021-08-04 05:11:00'), (258, 4, '2021-08-04 05:11:02', '2021-08-04 05:11:02'), (259, 4, '2021-08-04 05:11:02', '2021-08-04 05:11:02'), (260, 4, '2021-08-04 05:11:02', '2021-08-04 05:11:02'), (261, 4, '2021-08-04 05:11:03', '2021-08-04 05:11:03'), (262, 4, '2021-08-04 05:11:03', '2021-08-04 05:11:03'), (263, 4, '2021-08-04 05:11:05', '2021-08-04 05:11:05'), (264, 4, '2021-08-05 05:11:08', '2021-08-05 05:11:08'), (265, 4, '2021-08-05 05:11:09', '2021-08-05 05:11:09'), (266, 4, '2021-08-05 05:11:10', '2021-08-05 05:11:10'), (267, 4, '2021-08-05 05:11:11', '2021-08-05 05:11:11'), (268, 4, '2021-08-05 05:11:11', '2021-08-05 05:11:11'), (269, 4, '2021-08-05 05:11:12', '2021-08-05 05:11:12'), (270, 4, '2021-08-05 05:11:12', '2021-08-05 05:11:12'), (271, 4, '2021-08-05 05:11:13', '2021-08-05 05:11:13'), (272, 4, '2021-08-05 05:11:13', '2021-08-05 05:11:13'), (273, 4, '2021-08-05 05:11:14', '2021-08-05 05:11:14'), (274, 4, '2021-08-05 05:11:14', '2021-08-05 05:11:14'), (275, 4, '2021-08-05 05:11:14', '2021-08-05 05:11:14'), (276, 4, '2021-08-05 05:11:15', '2021-08-05 05:11:15'), (277, 4, '2021-08-05 05:11:15', '2021-08-05 05:11:15'), (278, 4, '2021-08-05 05:11:16', '2021-08-05 05:11:16'), (279, 4, '2021-08-05 05:11:17', '2021-08-05 05:11:17'), (280, 4, '2021-08-05 05:11:17', '2021-08-05 05:11:17'), (281, 4, '2021-08-05 05:11:17', '2021-08-05 05:11:17'), (282, 4, '2021-08-05 05:11:18', '2021-08-05 05:11:18'), (283, 4, '2021-08-05 05:11:18', '2021-08-05 05:11:18'), (284, 4, '2021-08-05 05:11:19', '2021-08-05 05:11:19'), (285, 4, '2021-08-05 05:11:19', '2021-08-05 05:11:19'), (286, 4, '2021-08-05 05:11:20', '2021-08-05 05:11:20'), (287, 4, '2021-08-05 05:11:20', '2021-08-05 05:11:20'), (288, 4, '2021-08-05 05:11:20', '2021-08-05 05:11:20'), (289, 4, '2021-08-05 05:11:21', '2021-08-05 05:11:21'), (290, 4, '2021-08-05 05:11:21', '2021-08-05 05:11:21'), (291, 4, '2021-08-05 05:11:22', '2021-08-05 05:11:22'), (292, 4, '2021-08-05 05:11:23', '2021-08-05 05:11:23'), (293, 4, '2021-08-05 05:11:24', '2021-08-05 05:11:24'), (294, 4, '2021-08-05 05:11:24', '2021-08-05 05:11:24'), (295, 4, '2021-08-05 05:11:25', '2021-08-05 05:11:25'), (296, 4, '2021-08-05 05:11:25', '2021-08-05 05:11:25'), (297, 4, '2021-08-05 05:11:25', '2021-08-05 05:11:25'), (298, 4, '2021-08-05 05:11:26', '2021-08-05 05:11:26'), (299, 4, '2021-08-05 05:11:28', '2021-08-05 05:11:28'), (300, 4, '2021-08-05 05:11:29', '2021-08-05 05:11:29'), (301, 4, '2021-08-05 05:11:29', '2021-08-05 05:11:29'), (302, 4, '2021-08-05 05:11:30', '2021-08-05 05:11:30'), (303, 4, '2021-08-05 05:11:31', '2021-08-05 05:11:31'), (304, 4, '2021-08-05 05:11:31', '2021-08-05 05:11:31'), (305, 4, '2021-08-05 05:11:32', '2021-08-05 05:11:32'), (306, 4, '2021-08-05 05:11:33', '2021-08-05 05:11:33'), (307, 4, '2021-08-05 05:11:33', '2021-08-05 05:11:33'), (308, 4, '2021-08-05 05:11:34', '2021-08-05 05:11:34'), (309, 4, '2021-08-05 05:11:34', '2021-08-05 05:11:34'), (310, 4, '2021-08-06 05:11:39', '2021-08-06 05:11:39'), (311, 4, '2021-08-06 05:11:40', '2021-08-06 05:11:40'), (312, 4, '2021-08-06 05:11:41', '2021-08-06 05:11:41'), (313, 4, '2021-08-06 05:11:42', '2021-08-06 05:11:42'), (314, 4, '2021-08-06 05:11:42', '2021-08-06 05:11:42'), (315, 4, '2021-08-06 05:11:45', '2021-08-06 05:11:45'), (316, 4, '2021-08-06 05:11:45', '2021-08-06 05:11:45'), (317, 4, '2021-08-06 05:11:47', '2021-08-06 05:11:47'), (318, 4, '2021-08-06 05:11:48', '2021-08-06 05:11:48'), (319, 4, '2021-08-06 05:11:49', '2021-08-06 05:11:49'), (320, 4, '2021-08-06 05:11:55', '2021-08-06 05:11:55'), (321, 4, '2021-08-06 05:11:58', '2021-08-06 05:11:58'), (322, 4, '2021-08-06 05:11:59', '2021-08-06 05:11:59'), (323, 4, '2021-08-06 05:11:59', '2021-08-06 05:11:59'), (324, 4, '2021-08-06 05:11:59', '2021-08-06 05:11:59'), (325, 4, '2021-08-06 05:12:00', '2021-08-06 05:12:00'), (326, 4, '2021-08-06 05:12:00', '2021-08-06 05:12:00'), (327, 4, '2021-08-06 05:12:00', '2021-08-06 05:12:00'), (328, 4, '2021-08-06 05:12:04', '2021-08-06 05:12:04'), (329, 4, '2021-08-06 05:12:06', '2021-08-06 05:12:06'), (330, 4, '2021-08-06 05:12:08', '2021-08-06 05:12:08'), (331, 4, '2021-08-06 05:12:08', '2021-08-06 05:12:08'), (332, 4, '2021-08-06 05:12:09', '2021-08-06 05:12:09'), (333, 4, '2021-08-06 05:12:10', '2021-08-06 05:12:10'), (334, 4, '2021-08-06 05:12:10', '2021-08-06 05:12:10'), (335, 4, '2021-08-06 05:12:11', '2021-08-06 05:12:11'), (336, 4, '2021-08-06 05:12:19', '2021-08-06 05:12:19'), (337, 4, '2021-08-06 05:12:20', '2021-08-06 05:12:20'), (338, 4, '2021-08-06 05:12:21', '2021-08-06 05:12:21'), (339, 4, '2021-08-06 05:12:21', '2021-08-06 05:12:21'), (340, 4, '2021-08-06 05:12:21', '2021-08-06 05:12:21'), (341, 4, '2021-08-06 05:12:22', '2021-08-06 05:12:22'), (342, 4, '2021-08-06 05:12:23', '2021-08-06 05:12:23'), (343, 4, '2021-08-06 05:12:24', '2021-08-06 05:12:24'), (344, 4, '2021-08-06 05:12:24', '2021-08-06 05:12:24'), (345, 4, '2021-08-06 05:12:29', '2021-08-06 05:12:29'), (346, 4, '2021-08-06 05:12:29', '2021-08-06 05:12:29'), (347, 4, '2021-08-06 05:12:30', '2021-08-06 05:12:30'), (348, 4, '2021-08-06 05:12:31', '2021-08-06 05:12:31'), (349, 4, '2021-08-06 05:12:31', '2021-08-06 05:12:31'), (350, 4, '2021-08-06 05:12:32', '2021-08-06 05:12:32'), (351, 4, '2021-08-06 05:12:33', '2021-08-06 05:12:33'), (352, 4, '2021-08-06 05:12:33', '2021-08-06 05:12:33'), (353, 4, '2021-08-06 05:12:34', '2021-08-06 05:12:34'), (354, 4, '2021-08-06 05:12:34', '2021-08-06 05:12:34'), (355, 4, '2021-08-06 05:12:35', '2021-08-06 05:12:35'), (356, 4, '2021-08-06 05:12:35', '2021-08-06 05:12:35'), (357, 4, '2021-08-06 05:12:36', '2021-08-06 05:12:36'), (358, 4, '2021-08-06 05:12:37', '2021-08-06 05:12:37'), (359, 4, '2021-08-07 05:12:41', '2021-08-07 05:12:41'), (360, 4, '2021-08-07 05:12:43', '2021-08-07 05:12:43'), (361, 4, '2021-08-07 05:12:44', '2021-08-07 05:12:44'), (362, 4, '2021-08-07 05:12:45', '2021-08-07 05:12:45'), (363, 4, '2021-08-07 05:12:46', '2021-08-07 05:12:46'), (364, 4, '2021-08-07 05:12:46', '2021-08-07 05:12:46'), (365, 4, '2021-08-07 05:12:47', '2021-08-07 05:12:47'), (366, 4, '2021-08-07 05:12:47', '2021-08-07 05:12:47'), (367, 4, '2021-08-07 05:12:48', '2021-08-07 05:12:48'), (368, 4, '2021-08-07 05:12:48', '2021-08-07 05:12:48'), (369, 4, '2021-08-07 05:12:49', '2021-08-07 05:12:49'), (370, 4, '2021-08-07 05:12:50', '2021-08-07 05:12:50'), (371, 4, '2021-08-07 05:12:50', '2021-08-07 05:12:50'), (372, 4, '2021-08-07 05:12:51', '2021-08-07 05:12:51'), (373, 4, '2021-08-07 05:12:51', '2021-08-07 05:12:51'), (374, 4, '2021-08-07 05:12:52', '2021-08-07 05:12:52'), (375, 4, '2021-08-07 05:12:53', '2021-08-07 05:12:53'), (376, 4, '2021-08-07 05:12:53', '2021-08-07 05:12:53'), (377, 4, '2021-08-07 05:12:54', '2021-08-07 05:12:54'), (378, 4, '2021-08-07 05:12:55', '2021-08-07 05:12:55'), (379, 4, '2021-08-07 05:12:55', '2021-08-07 05:12:55'), (380, 4, '2021-08-07 05:12:56', '2021-08-07 05:12:56'), (381, 4, '2021-08-07 05:12:56', '2021-08-07 05:12:56'), (382, 4, '2021-08-07 05:12:57', '2021-08-07 05:12:57'), (383, 4, '2021-08-07 05:12:57', '2021-08-07 05:12:57'), (384, 4, '2021-08-07 05:12:58', '2021-08-07 05:12:58'), (385, 4, '2021-08-07 05:12:58', '2021-08-07 05:12:58'), (386, 4, '2021-08-07 05:12:59', '2021-08-07 05:12:59'), (387, 4, '2021-08-07 05:13:00', '2021-08-07 05:13:00'), (388, 4, '2021-08-07 05:13:00', '2021-08-07 05:13:00'), (389, 4, '2021-08-07 05:13:01', '2021-08-07 05:13:01'), (390, 4, '2021-08-07 05:13:01', '2021-08-07 05:13:01'), (391, 4, '2021-08-07 05:13:02', '2021-08-07 05:13:02'), (392, 4, '2021-08-07 05:13:03', '2021-08-07 05:13:03'), (393, 4, '2021-08-07 05:13:03', '2021-08-07 05:13:03'), (394, 4, '2021-08-07 05:13:04', '2021-08-07 05:13:04'), (395, 4, '2021-08-07 05:13:05', '2021-08-07 05:13:05'), (396, 4, '2021-08-07 05:13:06', '2021-08-07 05:13:06'), (397, 4, '2021-08-07 05:13:07', '2021-08-07 05:13:07'), (398, 4, '2021-08-07 05:13:08', '2021-08-07 05:13:08'), (399, 4, '2021-08-07 05:13:09', '2021-08-07 05:13:09'), (400, 4, '2021-08-07 05:13:10', '2021-08-07 05:13:10'), (401, 4, '2021-08-07 05:13:10', '2021-08-07 05:13:10'), (402, 4, '2021-08-07 05:13:11', '2021-08-07 05:13:11'), (403, 4, '2021-08-07 05:13:12', '2021-08-07 05:13:12'), (404, 4, '2021-08-07 05:13:12', '2021-08-07 05:13:12'), (405, 4, '2021-08-07 05:13:13', '2021-08-07 05:13:13'), (406, 4, '2021-08-07 05:13:14', '2021-08-07 05:13:14'), (407, 4, '2021-08-07 05:13:14', '2021-08-07 05:13:14'), (408, 4, '2021-08-07 05:13:14', '2021-08-07 05:13:14'), (409, 4, '2021-08-07 05:13:15', '2021-08-07 05:13:15'), (410, 4, '2021-08-07 05:13:15', '2021-08-07 05:13:15'), (411, 4, '2021-08-07 05:13:16', '2021-08-07 05:13:16'), (412, 4, '2021-08-07 05:13:16', '2021-08-07 05:13:16'), (413, 4, '2021-08-07 05:13:17', '2021-08-07 05:13:17'), (414, 4, '2021-08-07 05:13:17', '2021-08-07 05:13:17'), (415, 4, '2021-08-07 05:13:18', '2021-08-07 05:13:18'), (416, 4, '2021-08-07 05:13:18', '2021-08-07 05:13:18'), (417, 4, '2021-08-07 05:13:19', '2021-08-07 05:13:19'), (418, 4, '2021-08-08 05:13:24', '2021-08-08 05:13:24'), (419, 4, '2021-08-08 05:13:25', '2021-08-08 05:13:25'), (420, 4, '2021-08-08 05:13:25', '2021-08-08 05:13:25'), (421, 4, '2021-08-08 05:13:26', '2021-08-08 05:13:26'), (422, 4, '2021-08-08 05:13:26', '2021-08-08 05:13:26'), (423, 4, '2021-08-08 05:13:27', '2021-08-08 05:13:27'), (424, 4, '2021-08-08 05:13:27', '2021-08-08 05:13:27'), (425, 4, '2021-08-08 05:13:28', '2021-08-08 05:13:28'), (426, 4, '2021-08-08 05:13:28', '2021-08-08 05:13:28'), (427, 4, '2021-08-08 05:13:29', '2021-08-08 05:13:29'), (428, 4, '2021-08-08 05:13:29', '2021-08-08 05:13:29'), (429, 4, '2021-08-08 05:13:30', '2021-08-08 05:13:30'), (430, 4, '2021-08-08 05:13:30', '2021-08-08 05:13:30'), (431, 4, '2021-08-08 05:13:31', '2021-08-08 05:13:31'), (432, 4, '2021-08-08 05:13:31', '2021-08-08 05:13:31'), (433, 4, '2021-08-08 05:13:32', '2021-08-08 05:13:32'), (434, 4, '2021-08-08 05:13:33', '2021-08-08 05:13:33'), (435, 4, '2021-08-08 05:13:33', '2021-08-08 05:13:33'), (436, 4, '2021-08-08 05:13:34', '2021-08-08 05:13:34'), (437, 4, '2021-08-08 05:13:34', '2021-08-08 05:13:34'), (438, 4, '2021-08-08 05:13:36', '2021-08-08 05:13:36'), (439, 4, '2021-08-08 05:13:37', '2021-08-08 05:13:37'), (440, 4, '2021-08-08 05:13:38', '2021-08-08 05:13:38'), (441, 4, '2021-08-08 05:13:38', '2021-08-08 05:13:38'), (442, 4, '2021-08-08 05:13:39', '2021-08-08 05:13:39'), (443, 4, '2021-08-08 05:13:39', '2021-08-08 05:13:39'), (444, 4, '2021-08-08 05:13:41', '2021-08-08 05:13:41'), (445, 4, '2021-08-08 05:13:43', '2021-08-08 05:13:43'), (446, 4, '2021-08-08 05:13:44', '2021-08-08 05:13:44'), (447, 4, '2021-08-08 05:13:44', '2021-08-08 05:13:44'), (448, 4, '2021-08-08 05:13:45', '2021-08-08 05:13:45'), (449, 4, '2021-08-08 05:13:45', '2021-08-08 05:13:45'), (450, 4, '2021-08-08 05:13:46', '2021-08-08 05:13:46'), (451, 4, '2021-08-08 05:13:46', '2021-08-08 05:13:46'), (452, 4, '2021-08-08 05:13:47', '2021-08-08 05:13:47'), (453, 4, '2021-08-08 05:13:48', '2021-08-08 05:13:48'), (454, 4, '2021-08-08 05:13:49', '2021-08-08 05:13:49'), (455, 4, '2021-08-08 05:13:50', '2021-08-08 05:13:50'), (456, 4, '2021-08-08 05:13:50', '2021-08-08 05:13:50'), (457, 4, '2021-08-08 05:13:51', '2021-08-08 05:13:51'), (458, 4, '2021-08-08 05:13:51', '2021-08-08 05:13:51'), (459, 4, '2021-08-08 05:13:52', '2021-08-08 05:13:52'), (460, 4, '2021-08-08 05:13:52', '2021-08-08 05:13:52'), (461, 4, '2021-08-08 05:13:53', '2021-08-08 05:13:53'), (462, 4, '2021-08-08 05:13:53', '2021-08-08 05:13:53'), (463, 4, '2021-08-08 05:13:54', '2021-08-08 05:13:54'), (464, 4, '2021-08-08 05:13:54', '2021-08-08 05:13:54'), (465, 4, '2021-08-08 05:13:55', '2021-08-08 05:13:55'), (466, 4, '2021-08-08 05:13:55', '2021-08-08 05:13:55'), (467, 4, '2021-08-08 05:13:56', '2021-08-08 05:13:56'), (468, 4, '2021-08-08 05:13:56', '2021-08-08 05:13:56'), (469, 4, '2021-08-08 05:13:57', '2021-08-08 05:13:57'), (470, 4, '2021-08-08 05:13:57', '2021-08-08 05:13:57'), (471, 4, '2021-08-08 05:13:58', '2021-08-08 05:13:58'), (472, 4, '2021-08-08 05:13:59', '2021-08-08 05:13:59'), (473, 4, '2021-08-08 05:13:59', '2021-08-08 05:13:59'), (474, 4, '2021-08-09 05:14:03', '2021-08-09 05:14:03'), (475, 4, '2021-08-09 05:14:05', '2021-08-09 05:14:05'), (476, 4, '2021-08-09 05:14:05', '2021-08-09 05:14:05'), (477, 4, '2021-08-09 05:14:06', '2021-08-09 05:14:06'), (478, 4, '2021-08-09 05:14:07', '2021-08-09 05:14:07'), (479, 4, '2021-08-09 05:14:08', '2021-08-09 05:14:08'), (480, 4, '2021-08-09 05:14:08', '2021-08-09 05:14:08'), (481, 4, '2021-08-09 05:14:09', '2021-08-09 05:14:09'), (482, 4, '2021-08-09 05:14:09', '2021-08-09 05:14:09'), (483, 4, '2021-08-09 05:14:10', '2021-08-09 05:14:10'), (484, 4, '2021-08-09 05:14:11', '2021-08-09 05:14:11'), (485, 4, '2021-08-09 05:14:11', '2021-08-09 05:14:11'), (486, 4, '2021-08-09 05:14:12', '2021-08-09 05:14:12'), (487, 4, '2021-08-09 05:14:12', '2021-08-09 05:14:12'), (488, 4, '2021-08-09 05:14:13', '2021-08-09 05:14:13'), (489, 4, '2021-08-09 05:14:13', '2021-08-09 05:14:13'), (490, 4, '2021-08-09 05:14:14', '2021-08-09 05:14:14'), (491, 4, '2021-08-09 05:14:14', '2021-08-09 05:14:14'), (492, 4, '2021-08-09 05:14:15', '2021-08-09 05:14:15'), (493, 4, '2021-08-09 05:14:15', '2021-08-09 05:14:15'), (494, 4, '2021-08-09 05:14:16', '2021-08-09 05:14:16'), (495, 4, '2021-08-09 05:14:16', '2021-08-09 05:14:16'), (496, 4, '2021-08-09 05:14:16', '2021-08-09 05:14:16'), (497, 4, '2021-08-09 05:14:18', '2021-08-09 05:14:18'), (498, 4, '2021-08-09 05:14:19', '2021-08-09 05:14:19'), (499, 4, '2021-08-09 05:14:19', '2021-08-09 05:14:19'), (500, 4, '2021-08-09 05:14:19', '2021-08-09 05:14:19'), (501, 4, '2021-08-09 05:14:19', '2021-08-09 05:14:19'), (502, 4, '2021-08-09 05:14:20', '2021-08-09 05:14:20'), (503, 4, '2021-08-09 05:14:20', '2021-08-09 05:14:20'), (504, 4, '2021-08-09 05:14:20', '2021-08-09 05:14:20'), (505, 4, '2021-08-09 05:14:21', '2021-08-09 05:14:21'), (506, 4, '2021-08-09 05:14:22', '2021-08-09 05:14:22'), (507, 4, '2021-08-09 05:14:22', '2021-08-09 05:14:22'), (508, 4, '2021-08-09 05:14:23', '2021-08-09 05:14:23'), (509, 4, '2021-08-09 05:14:23', '2021-08-09 05:14:23'), (510, 4, '2021-08-09 05:14:24', '2021-08-09 05:14:24'), (511, 4, '2021-08-09 05:14:24', '2021-08-09 05:14:24'), (512, 4, '2021-08-09 05:14:24', '2021-08-09 05:14:24'), (513, 4, '2021-08-09 05:14:25', '2021-08-09 05:14:25'), (514, 4, '2021-08-09 05:14:25', '2021-08-09 05:14:25'), (515, 4, '2021-08-09 05:14:25', '2021-08-09 05:14:25'), (516, 4, '2021-08-09 05:14:25', '2021-08-09 05:14:25'), (517, 4, '2021-08-09 05:14:26', '2021-08-09 05:14:26'), (518, 4, '2021-08-09 05:14:26', '2021-08-09 05:14:26'), (519, 4, '2021-08-09 05:14:26', '2021-08-09 05:14:26'), (520, 4, '2021-08-09 05:14:27', '2021-08-09 05:14:27'), (521, 4, '2021-08-09 05:14:27', '2021-08-09 05:14:27'), (522, 4, '2021-08-09 05:14:27', '2021-08-09 05:14:27'), (523, 4, '2021-08-09 05:14:27', '2021-08-09 05:14:27'), (524, 4, '2021-08-09 05:14:27', '2021-08-09 05:14:27'), (525, 4, '2021-08-09 05:14:28', '2021-08-09 05:14:28'), (526, 4, '2021-08-09 05:14:28', '2021-08-09 05:14:28'), (527, 4, '2021-08-09 05:14:28', '2021-08-09 05:14:28'), (528, 4, '2021-08-09 05:14:29', '2021-08-09 05:14:29'), (529, 4, '2021-08-09 05:14:29', '2021-08-09 05:14:29'), (530, 4, '2021-08-09 05:14:29', '2021-08-09 05:14:29'), (531, 4, '2021-08-09 05:14:30', '2021-08-09 05:14:30'), (532, 4, '2021-08-09 05:14:30', '2021-08-09 05:14:30'), (533, 4, '2021-08-09 05:14:31', '2021-08-09 05:14:31'), (534, 4, '2021-08-10 05:14:36', '2021-08-10 05:14:36'), (535, 4, '2021-08-10 05:14:39', '2021-08-10 05:14:39'), (536, 4, '2021-08-10 05:14:39', '2021-08-10 05:14:39'), (537, 4, '2021-08-10 05:14:40', '2021-08-10 05:14:40'), (538, 4, '2021-08-10 05:14:40', '2021-08-10 05:14:40'), (539, 4, '2021-08-10 05:14:40', '2021-08-10 05:14:40'), (540, 4, '2021-08-10 05:14:40', '2021-08-10 05:14:40'), (541, 4, '2021-08-10 05:14:41', '2021-08-10 05:14:41'), (542, 4, '2021-08-10 05:14:41', '2021-08-10 05:14:41'), (543, 4, '2021-08-10 05:14:41', '2021-08-10 05:14:41'), (544, 4, '2021-08-10 05:14:41', '2021-08-10 05:14:41'), (545, 4, '2021-08-10 05:14:42', '2021-08-10 05:14:42'), (546, 4, '2021-08-10 05:14:42', '2021-08-10 05:14:42'), (547, 4, '2021-08-10 05:14:42', '2021-08-10 05:14:42'), (548, 4, '2021-08-10 05:14:42', '2021-08-10 05:14:42'), (549, 4, '2021-08-10 05:14:43', '2021-08-10 05:14:43'), (550, 4, '2021-08-10 05:14:43', '2021-08-10 05:14:43'), (551, 4, '2021-08-10 05:14:43', '2021-08-10 05:14:43'), (552, 4, '2021-08-10 05:14:43', '2021-08-10 05:14:43'), (553, 4, '2021-08-10 05:14:44', '2021-08-10 05:14:44'), (554, 4, '2021-08-10 05:14:44', '2021-08-10 05:14:44'), (555, 4, '2021-08-10 05:14:44', '2021-08-10 05:14:44'), (556, 4, '2021-08-10 05:14:44', '2021-08-10 05:14:44'), (557, 4, '2021-08-10 05:14:44', '2021-08-10 05:14:44'), (558, 4, '2021-08-10 05:14:45', '2021-08-10 05:14:45'), (559, 4, '2021-08-10 05:14:45', '2021-08-10 05:14:45'), (560, 4, '2021-08-10 05:14:45', '2021-08-10 05:14:45'), (561, 4, '2021-08-10 05:14:45', '2021-08-10 05:14:45'), (562, 4, '2021-08-10 05:14:46', '2021-08-10 05:14:46'), (563, 4, '2021-08-10 05:14:47', '2021-08-10 05:14:47'), (564, 4, '2021-08-10 05:14:47', '2021-08-10 05:14:47'), (565, 4, '2021-08-10 05:14:47', '2021-08-10 05:14:47'), (566, 4, '2021-08-10 05:14:47', '2021-08-10 05:14:47'), (567, 4, '2021-08-10 05:14:48', '2021-08-10 05:14:48'), (568, 4, '2021-08-10 05:14:48', '2021-08-10 05:14:48'), (569, 4, '2021-08-10 05:14:48', '2021-08-10 05:14:48'), (570, 4, '2021-08-10 05:14:49', '2021-08-10 05:14:49'), (571, 4, '2021-08-10 05:14:49', '2021-08-10 05:14:49'), (572, 4, '2021-08-10 05:14:49', '2021-08-10 05:14:49'), (573, 4, '2021-08-10 05:14:50', '2021-08-10 05:14:50'), (574, 4, '2021-08-10 05:14:50', '2021-08-10 05:14:50'), (575, 4, '2021-08-10 05:14:51', '2021-08-10 05:14:51'), (576, 4, '2021-08-10 05:14:51', '2021-08-10 05:14:51'), (577, 4, '2021-08-10 05:14:51', '2021-08-10 05:14:51'), (578, 4, '2021-08-10 05:14:52', '2021-08-10 05:14:52'), (579, 4, '2021-08-10 05:14:52', '2021-08-10 05:14:52'), (580, 4, '2021-08-10 05:14:53', '2021-08-10 05:14:53'), (581, 4, '2021-08-10 05:14:53', '2021-08-10 05:14:53'), (582, 4, '2021-08-10 05:14:53', '2021-08-10 05:14:53'), (583, 4, '2021-08-10 05:14:53', '2021-08-10 05:14:53'), (584, 4, '2021-08-10 05:14:54', '2021-08-10 05:14:54'), (585, 4, '2021-08-10 05:14:54', '2021-08-10 05:14:54'), (586, 4, '2021-08-10 05:14:54', '2021-08-10 05:14:54'), (587, 4, '2021-08-10 05:14:55', '2021-08-10 05:14:55'), (588, 4, '2021-08-10 05:14:55', '2021-08-10 05:14:55'), (589, 4, '2021-08-10 05:14:56', '2021-08-10 05:14:56'), (590, 4, '2021-08-10 05:14:56', '2021-08-10 05:14:56'), (591, 4, '2021-08-10 05:14:56', '2021-08-10 05:14:56'), (592, 4, '2021-08-10 05:14:56', '2021-08-10 05:14:56'), (593, 4, '2021-08-10 05:14:57', '2021-08-10 05:14:57'), (594, 4, '2021-08-10 05:14:57', '2021-08-10 05:14:57'), (595, 4, '2021-08-10 05:14:57', '2021-08-10 05:14:57'), (596, 4, '2021-08-10 05:14:57', '2021-08-10 05:14:57'), (597, 4, '2021-08-10 05:14:58', '2021-08-10 05:14:58'), (598, 4, '2021-08-10 05:14:58', '2021-08-10 05:14:58'), (599, 4, '2021-08-10 05:14:58', '2021-08-10 05:14:58'), (600, 4, '2021-08-10 05:14:59', '2021-08-10 05:14:59'), (601, 4, '2021-08-10 05:14:59', '2021-08-10 05:14:59'), (602, 4, '2021-08-10 05:14:59', '2021-08-10 05:14:59'), (603, 4, '2021-08-10 05:15:00', '2021-08-10 05:15:00'), (604, 4, '2021-08-10 05:15:00', '2021-08-10 05:15:00'), (605, 4, '2021-08-10 05:15:00', '2021-08-10 05:15:00'), (606, 4, '2021-08-10 05:15:00', '2021-08-10 05:15:00'), (607, 4, '2021-08-10 05:15:01', '2021-08-10 05:15:01'), (608, 4, '2021-08-10 05:15:01', '2021-08-10 05:15:01'), (609, 4, '2021-08-10 05:15:01', '2021-08-10 05:15:01'), (610, 4, '2021-08-11 05:15:04', '2021-08-11 05:15:04'), (611, 4, '2021-08-11 05:15:06', '2021-08-11 05:15:06'), (612, 4, '2021-08-11 05:15:09', '2021-08-11 05:15:09'), (613, 4, '2021-08-11 05:15:09', '2021-08-11 05:15:09'), (614, 4, '2021-08-11 05:15:10', '2021-08-11 05:15:10'), (615, 4, '2021-08-11 05:15:10', '2021-08-11 05:15:10'), (616, 4, '2021-08-11 05:15:11', '2021-08-11 05:15:11'), (617, 4, '2021-08-11 05:15:11', '2021-08-11 05:15:11'), (618, 4, '2021-08-11 05:15:11', '2021-08-11 05:15:11'), (619, 4, '2021-08-11 05:15:12', '2021-08-11 05:15:12'), (620, 4, '2021-08-11 05:15:12', '2021-08-11 05:15:12'), (621, 4, '2021-08-11 05:15:12', '2021-08-11 05:15:12'), (622, 4, '2021-08-11 05:15:12', '2021-08-11 05:15:12'), (623, 4, '2021-08-11 05:15:13', '2021-08-11 05:15:13'), (624, 4, '2021-08-11 05:15:13', '2021-08-11 05:15:13'), (625, 4, '2021-08-11 05:15:13', '2021-08-11 05:15:13'), (626, 4, '2021-08-11 05:15:14', '2021-08-11 05:15:14'), (627, 4, '2021-08-11 05:15:14', '2021-08-11 05:15:14'), (628, 4, '2021-08-11 05:15:14', '2021-08-11 05:15:14'), (629, 4, '2021-08-11 05:15:15', '2021-08-11 05:15:15'), (630, 4, '2021-08-11 05:15:15', '2021-08-11 05:15:15'), (631, 4, '2021-08-11 05:15:15', '2021-08-11 05:15:15'), (632, 4, '2021-08-11 05:15:16', '2021-08-11 05:15:16'), (633, 4, '2021-08-11 05:15:16', '2021-08-11 05:15:16'), (634, 4, '2021-08-11 05:15:17', '2021-08-11 05:15:17'), (635, 4, '2021-08-11 05:15:17', '2021-08-11 05:15:17'), (636, 4, '2021-08-11 05:15:18', '2021-08-11 05:15:18'), (637, 4, '2021-08-11 05:15:18', '2021-08-11 05:15:18'), (638, 4, '2021-08-11 05:15:19', '2021-08-11 05:15:19'), (639, 4, '2021-08-11 05:15:19', '2021-08-11 05:15:19'), (640, 4, '2021-08-11 05:15:20', '2021-08-11 05:15:20'), (641, 4, '2021-08-11 05:15:20', '2021-08-11 05:15:20'), (642, 4, '2021-08-11 05:15:21', '2021-08-11 05:15:21'), (643, 4, '2021-08-11 05:15:21', '2021-08-11 05:15:21'), (644, 4, '2021-08-11 05:15:21', '2021-08-11 05:15:21'), (645, 4, '2021-08-11 05:15:22', '2021-08-11 05:15:22'), (646, 4, '2021-08-11 05:15:22', '2021-08-11 05:15:22'), (647, 4, '2021-08-11 05:15:23', '2021-08-11 05:15:23'), (648, 4, '2021-08-11 05:15:23', '2021-08-11 05:15:23'), (649, 4, '2021-08-11 05:15:23', '2021-08-11 05:15:23'), (650, 4, '2021-08-11 05:15:24', '2021-08-11 05:15:24'), (651, 4, '2021-08-11 05:15:24', '2021-08-11 05:15:24'), (652, 4, '2021-08-11 05:15:25', '2021-08-11 05:15:25'), (653, 4, '2021-08-11 05:15:25', '2021-08-11 05:15:25'), (654, 4, '2021-08-11 05:15:26', '2021-08-11 05:15:26'), (655, 4, '2021-08-11 05:15:26', '2021-08-11 05:15:26'), (656, 4, '2021-08-11 05:15:27', '2021-08-11 05:15:27'), (657, 4, '2021-08-11 05:15:27', '2021-08-11 05:15:27'), (658, 4, '2021-08-11 05:15:28', '2021-08-11 05:15:28'), (659, 4, '2021-08-11 05:15:28', '2021-08-11 05:15:28'), (660, 4, '2021-08-11 05:15:28', '2021-08-11 05:15:28'), (661, 4, '2021-08-11 05:15:29', '2021-08-11 05:15:29'), (662, 4, '2021-08-11 05:15:29', '2021-08-11 05:15:29'), (663, 4, '2021-08-11 05:15:30', '2021-08-11 05:15:30'), (664, 4, '2021-08-11 05:15:30', '2021-08-11 05:15:30'), (665, 4, '2021-08-11 05:15:30', '2021-08-11 05:15:30'), (666, 4, '2021-08-11 05:15:31', '2021-08-11 05:15:31'), (667, 4, '2021-08-11 05:15:31', '2021-08-11 05:15:31'), (668, 4, '2021-08-11 05:15:31', '2021-08-11 05:15:31'), (669, 4, '2021-08-11 05:15:32', '2021-08-11 05:15:32'), (670, 4, '2021-08-11 05:15:32', '2021-08-11 05:15:32'), (671, 4, '2021-08-11 05:15:32', '2021-08-11 05:15:32'), (672, 4, '2021-08-11 05:15:32', '2021-08-11 05:15:32'), (673, 4, '2021-08-11 05:15:33', '2021-08-11 05:15:33'), (674, 4, '2021-08-11 05:15:33', '2021-08-11 05:15:33'), (675, 4, '2021-08-11 05:15:33', '2021-08-11 05:15:33'), (676, 4, '2021-08-11 05:15:34', '2021-08-11 05:15:34'), (677, 4, '2021-08-11 05:15:34', '2021-08-11 05:15:34'), (678, 4, '2021-08-11 05:15:34', '2021-08-11 05:15:34'), (679, 4, '2021-08-11 05:15:34', '2021-08-11 05:15:34'), (680, 4, '2021-08-11 05:15:34', '2021-08-11 05:15:34'), (681, 4, '2021-08-11 05:15:35', '2021-08-11 05:15:35'), (682, 4, '2021-08-11 05:15:35', '2021-08-11 05:15:35'), (683, 4, '2021-08-11 05:15:35', '2021-08-11 05:15:35'), (684, 4, '2021-08-11 05:15:36', '2021-08-11 05:15:36'), (685, 4, '2021-08-11 05:15:36', '2021-08-11 05:15:36'), (686, 4, '2021-08-11 05:15:36', '2021-08-11 05:15:36'), (687, 4, '2021-08-11 05:15:37', '2021-08-11 05:15:37'), (688, 4, '2021-08-11 05:15:37', '2021-08-11 05:15:37'), (689, 4, '2021-08-11 05:15:37', '2021-08-11 05:15:37'), (690, 4, '2021-08-11 05:15:38', '2021-08-11 05:15:38'), (691, 4, '2021-08-11 05:15:38', '2021-08-11 05:15:38'), (692, 4, '2021-08-11 05:15:38', '2021-08-11 05:15:38'), (693, 4, '2021-08-11 05:15:39', '2021-08-11 05:15:39'), (694, 4, '2021-08-11 05:15:39', '2021-08-11 05:15:39'), (695, 4, '2021-08-11 05:15:39', '2021-08-11 05:15:39'), (696, 4, '2021-08-11 05:15:39', '2021-08-11 05:15:39'), (697, 4, '2021-08-11 05:15:40', '2021-08-11 05:15:40'), (698, 4, '2021-08-11 05:15:40', '2021-08-11 05:15:40'), (699, 4, '2021-08-11 05:15:40', '2021-08-11 05:15:40'), (700, 4, '2021-08-11 05:15:40', '2021-08-11 05:15:40'), (701, 4, '2021-08-11 05:15:41', '2021-08-11 05:15:41'), (702, 4, '2021-08-11 05:15:41', '2021-08-11 05:15:41'), (703, 4, '2021-08-11 05:15:41', '2021-08-11 05:15:41'), (704, 4, '2021-08-11 05:15:41', '2021-08-11 05:15:41'), (705, 4, '2021-08-11 05:15:42', '2021-08-11 05:15:42'), (706, 4, '2021-08-11 05:15:42', '2021-08-11 05:15:42'), (707, 4, '2021-08-11 05:15:42', '2021-08-11 05:15:42'), (708, 4, '2021-08-11 05:15:42', '2021-08-11 05:15:42'), (709, 4, '2021-08-11 05:15:43', '2021-08-11 05:15:43'), (710, 4, '2021-08-11 05:15:52', '2021-08-11 05:15:52'), (711, 4, '2021-08-11 05:15:52', '2021-08-11 05:15:52'), (712, 4, '2021-08-11 05:15:53', '2021-08-11 05:15:53'), (713, 4, '2021-08-11 05:15:54', '2021-08-11 05:15:54'), (714, 4, '2021-08-12 05:15:57', '2021-08-12 05:15:57'), (715, 4, '2021-08-12 05:15:59', '2021-08-12 05:15:59'), (716, 4, '2021-08-12 05:15:59', '2021-08-12 05:15:59'), (717, 4, '2021-08-12 05:15:59', '2021-08-12 05:15:59'), (718, 4, '2021-08-12 05:16:00', '2021-08-12 05:16:00'), (719, 4, '2021-08-12 05:16:00', '2021-08-12 05:16:00'), (720, 4, '2021-08-12 05:16:01', '2021-08-12 05:16:01'), (721, 4, '2021-08-12 05:16:01', '2021-08-12 05:16:01'), (722, 4, '2021-08-12 05:16:01', '2021-08-12 05:16:01'), (723, 4, '2021-08-12 05:16:02', '2021-08-12 05:16:02'), (724, 4, '2021-08-12 05:16:02', '2021-08-12 05:16:02'), (725, 4, '2021-08-12 05:16:02', '2021-08-12 05:16:02'), (726, 4, '2021-08-12 05:16:02', '2021-08-12 05:16:02'), (727, 4, '2021-08-12 05:16:03', '2021-08-12 05:16:03'), (728, 4, '2021-08-12 05:16:03', '2021-08-12 05:16:03'), (729, 4, '2021-08-12 05:16:03', '2021-08-12 05:16:03'), (730, 4, '2021-08-12 05:16:04', '2021-08-12 05:16:04'), (731, 4, '2021-08-12 05:16:04', '2021-08-12 05:16:04'), (732, 4, '2021-08-12 05:16:05', '2021-08-12 05:16:05'), (733, 4, '2021-08-12 05:16:05', '2021-08-12 05:16:05'), (734, 4, '2021-08-12 05:16:06', '2021-08-12 05:16:06'), (735, 4, '2021-08-12 05:16:06', '2021-08-12 05:16:06'), (736, 4, '2021-08-12 05:16:07', '2021-08-12 05:16:07'), (737, 4, '2021-08-12 05:16:07', '2021-08-12 05:16:07'), (738, 4, '2021-08-12 05:16:08', '2021-08-12 05:16:08'), (739, 4, '2021-08-12 05:16:08', '2021-08-12 05:16:08'), (740, 4, '2021-08-12 05:16:09', '2021-08-12 05:16:09'), (741, 4, '2021-08-12 05:16:09', '2021-08-12 05:16:09'), (742, 4, '2021-08-12 05:16:09', '2021-08-12 05:16:09'), (743, 4, '2021-08-12 05:16:10', '2021-08-12 05:16:10'), (744, 4, '2021-08-12 05:16:10', '2021-08-12 05:16:10'), (745, 4, '2021-08-12 05:16:11', '2021-08-12 05:16:11'), (746, 4, '2021-08-12 05:16:11', '2021-08-12 05:16:11'), (747, 4, '2021-08-12 05:16:12', '2021-08-12 05:16:12'), (748, 4, '2021-08-12 05:16:13', '2021-08-12 05:16:13'), (749, 4, '2021-08-12 05:16:13', '2021-08-12 05:16:13'), (750, 4, '2021-08-12 05:16:14', '2021-08-12 05:16:14'), (751, 4, '2021-08-12 05:16:15', '2021-08-12 05:16:15'), (752, 4, '2021-08-13 05:16:18', '2021-08-13 05:16:18'), (753, 4, '2021-08-13 05:16:20', '2021-08-13 05:16:20'), (754, 4, '2021-08-13 05:16:20', '2021-08-13 05:16:20'), (755, 4, '2021-08-13 05:16:21', '2021-08-13 05:16:21'), (756, 4, '2021-08-13 05:16:21', '2021-08-13 05:16:21'), (757, 4, '2021-08-13 05:16:22', '2021-08-13 05:16:22'), (758, 4, '2021-08-13 05:16:22', '2021-08-13 05:16:22'), (759, 4, '2021-08-13 05:16:22', '2021-08-13 05:16:22'), (760, 4, '2021-08-13 05:16:23', '2021-08-13 05:16:23'), (761, 4, '2021-08-13 05:16:24', '2021-08-13 05:16:24'), (762, 4, '2021-08-13 05:16:24', '2021-08-13 05:16:24'), (763, 4, '2021-08-13 05:16:25', '2021-08-13 05:16:25'), (764, 4, '2021-08-13 05:16:25', '2021-08-13 05:16:25'), (765, 4, '2021-08-13 05:16:26', '2021-08-13 05:16:26'), (766, 4, '2021-08-13 05:16:26', '2021-08-13 05:16:26'), (767, 4, '2021-08-13 05:16:26', '2021-08-13 05:16:26'), (768, 4, '2021-08-13 05:16:27', '2021-08-13 05:16:27'), (769, 4, '2021-08-13 05:16:27', '2021-08-13 05:16:27'), (770, 4, '2021-08-13 05:16:27', '2021-08-13 05:16:27'), (771, 4, '2021-08-13 05:16:28', '2021-08-13 05:16:28'), (772, 4, '2021-08-13 05:16:28', '2021-08-13 05:16:28'), (773, 4, '2021-08-13 05:16:28', '2021-08-13 05:16:28'), (774, 4, '2021-08-13 05:16:29', '2021-08-13 05:16:29'), (775, 4, '2021-08-13 05:16:29', '2021-08-13 05:16:29'), (776, 4, '2021-08-13 05:16:29', '2021-08-13 05:16:29'), (777, 4, '2021-08-13 05:16:30', '2021-08-13 05:16:30'), (778, 4, '2021-08-13 05:16:30', '2021-08-13 05:16:30'), (779, 4, '2021-08-13 05:16:30', '2021-08-13 05:16:30'), (780, 4, '2021-08-13 05:16:31', '2021-08-13 05:16:31'), (781, 4, '2021-08-13 05:16:31', '2021-08-13 05:16:31'), (782, 4, '2021-08-13 05:16:32', '2021-08-13 05:16:32'), (783, 4, '2021-08-13 05:16:32', '2021-08-13 05:16:32'), (784, 4, '2021-08-13 05:16:32', '2021-08-13 05:16:32'), (785, 4, '2021-08-13 05:16:33', '2021-08-13 05:16:33'), (786, 4, '2021-08-13 05:16:33', '2021-08-13 05:16:33'), (787, 4, '2021-08-13 05:16:33', '2021-08-13 05:16:33'), (788, 4, '2021-08-13 05:16:34', '2021-08-13 05:16:34'), (789, 4, '2021-08-13 05:16:34', '2021-08-13 05:16:34'), (790, 4, '2021-08-13 05:16:34', '2021-08-13 05:16:34'), (791, 4, '2021-08-13 05:16:35', '2021-08-13 05:16:35'), (792, 4, '2021-08-13 05:16:35', '2021-08-13 05:16:35'), (793, 4, '2021-08-13 05:16:35', '2021-08-13 05:16:35'), (794, 4, '2021-08-13 05:16:36', '2021-08-13 05:16:36'), (795, 4, '2021-08-13 05:16:36', '2021-08-13 05:16:36'), (796, 4, '2021-08-13 05:16:36', '2021-08-13 05:16:36'), (797, 4, '2021-08-13 05:16:37', '2021-08-13 05:16:37'), (798, 4, '2021-08-13 05:16:37', '2021-08-13 05:16:37'), (799, 4, '2021-08-13 05:16:38', '2021-08-13 05:16:38'), (800, 4, '2021-08-13 05:16:38', '2021-08-13 05:16:38'), (801, 4, '2021-08-13 05:16:39', '2021-08-13 05:16:39'), (802, 4, '2021-08-13 05:16:40', '2021-08-13 05:16:40'), (803, 4, '2021-08-14 05:16:44', '2021-08-14 05:16:44'), (804, 4, '2021-08-14 05:16:45', '2021-08-14 05:16:45'), (805, 4, '2021-08-14 05:16:46', '2021-08-14 05:16:46'), (806, 4, '2021-08-14 05:16:46', '2021-08-14 05:16:46'), (807, 4, '2021-08-14 05:16:46', '2021-08-14 05:16:46'), (808, 4, '2021-08-14 05:16:47', '2021-08-14 05:16:47'), (809, 4, '2021-08-14 05:16:47', '2021-08-14 05:16:47'), (810, 4, '2021-08-14 05:16:47', '2021-08-14 05:16:47'), (811, 4, '2021-08-14 05:16:48', '2021-08-14 05:16:48'), (812, 4, '2021-08-14 05:16:48', '2021-08-14 05:16:48'), (813, 4, '2021-08-14 05:16:48', '2021-08-14 05:16:48'), (814, 4, '2021-08-14 05:16:49', '2021-08-14 05:16:49'), (815, 4, '2021-08-14 05:16:49', '2021-08-14 05:16:49'), (816, 4, '2021-08-14 05:16:50', '2021-08-14 05:16:50'), (817, 4, '2021-08-14 05:16:51', '2021-08-14 05:16:51'), (818, 4, '2021-08-14 05:16:51', '2021-08-14 05:16:51'), (819, 4, '2021-08-14 05:16:52', '2021-08-14 05:16:52'), (820, 4, '2021-08-14 05:16:55', '2021-08-14 05:16:55'), (821, 4, '2021-08-14 05:16:56', '2021-08-14 05:16:56'), (822, 4, '2021-08-14 05:16:56', '2021-08-14 05:16:56'), (823, 4, '2021-08-14 05:16:57', '2021-08-14 05:16:57'), (824, 4, '2021-08-14 05:16:57', '2021-08-14 05:16:57'), (825, 4, '2021-08-14 05:16:57', '2021-08-14 05:16:57'), (826, 4, '2021-08-14 05:16:58', '2021-08-14 05:16:58'), (827, 4, '2021-08-14 05:17:01', '2021-08-14 05:17:01'), (828, 4, '2021-08-15 05:17:08', '2021-08-15 05:17:08'), (829, 4, '2021-08-15 05:17:11', '2021-08-15 05:17:11'), (830, 4, '2021-08-15 05:17:13', '2021-08-15 05:17:13'), (831, 4, '2021-08-15 05:17:14', '2021-08-15 05:17:14'), (832, 4, '2021-08-15 05:17:15', '2021-08-15 05:17:15'), (833, 4, '2021-08-15 05:17:17', '2021-08-15 05:17:17'), (834, 4, '2021-08-15 05:17:18', '2021-08-15 05:17:18'), (835, 4, '2021-08-15 05:17:20', '2021-08-15 05:17:20'), (836, 4, '2021-08-15 05:17:22', '2021-08-15 05:17:22'), (837, 4, '2021-08-15 05:17:23', '2021-08-15 05:17:23'), (838, 4, '2021-08-15 05:17:25', '2021-08-15 05:17:25'), (839, 4, '2021-08-15 05:17:25', '2021-08-15 05:17:25'), (840, 4, '2021-08-15 05:17:27', '2021-08-15 05:17:27'), (841, 4, '2021-08-15 05:17:28', '2021-08-15 05:17:28'), (842, 4, '2021-08-15 05:17:28', '2021-08-15 05:17:28'), (843, 4, '2021-08-15 05:17:29', '2021-08-15 05:17:29'), (844, 4, '2021-08-16 05:17:33', '2021-08-16 05:17:33'), (845, 4, '2021-08-16 05:17:35', '2021-08-16 05:17:35'), (846, 4, '2021-08-16 05:17:37', '2021-08-16 05:17:37'), (847, 4, '2021-08-16 05:17:38', '2021-08-16 05:17:38'), (848, 4, '2021-08-16 05:17:39', '2021-08-16 05:17:39'), (849, 4, '2021-08-16 05:17:40', '2021-08-16 05:17:40'), (850, 4, '2021-08-16 05:17:42', '2021-08-16 05:17:42'), (851, 4, '2021-08-16 05:17:43', '2021-08-16 05:17:43'), (852, 4, '2021-08-16 05:17:43', '2021-08-16 05:17:43'), (853, 4, '2021-08-16 05:17:45', '2021-08-16 05:17:45'), (854, 4, '2021-08-16 05:17:45', '2021-08-16 05:17:45'), (855, 4, '2021-08-16 05:17:46', '2021-08-16 05:17:46'), (856, 4, '2021-08-16 05:17:47', '2021-08-16 05:17:47'), (857, 4, '2021-08-16 05:17:48', '2021-08-16 05:17:48'), (858, 4, '2021-08-16 05:17:49', '2021-08-16 05:17:49'), (859, 4, '2021-08-16 05:17:50', '2021-08-16 05:17:50'), (860, 4, '2021-08-16 05:17:51', '2021-08-16 05:17:51'), (861, 4, '2021-08-16 05:17:51', '2021-08-16 05:17:51'), (862, 4, '2021-08-16 05:17:52', '2021-08-16 05:17:52'), (863, 4, '2021-08-16 05:17:53', '2021-08-16 05:17:53'), (864, 4, '2021-08-16 05:17:54', '2021-08-16 05:17:54'), (865, 4, '2021-08-16 05:17:55', '2021-08-16 05:17:55'), (866, 4, '2021-08-16 05:17:56', '2021-08-16 05:17:56'), (867, 4, '2021-08-16 05:17:57', '2021-08-16 05:17:57'), (868, 4, '2021-08-16 05:17:58', '2021-08-16 05:17:58'), (869, 4, '2021-08-16 05:17:59', '2021-08-16 05:17:59'), (870, 4, '2021-08-17 05:18:05', '2021-08-17 05:18:05'), (871, 4, '2021-08-17 05:18:06', '2021-08-17 05:18:06'), (872, 4, '2021-08-17 05:18:08', '2021-08-17 05:18:08'), (873, 4, '2021-08-17 05:18:10', '2021-08-17 05:18:10'), (874, 4, '2021-08-17 05:18:12', '2021-08-17 05:18:12'), (875, 4, '2021-08-17 05:18:13', '2021-08-17 05:18:13'), (876, 4, '2021-08-17 05:18:14', '2021-08-17 05:18:14'), (877, 4, '2021-08-17 05:18:14', '2021-08-17 05:18:14'), (878, 4, '2021-08-17 05:18:16', '2021-08-17 05:18:16'), (879, 4, '2021-08-17 05:18:17', '2021-08-17 05:18:17'), (880, 4, '2021-08-17 05:18:17', '2021-08-17 05:18:17'), (881, 4, '2021-08-17 05:18:18', '2021-08-17 05:18:18'), (882, 4, '2021-08-17 05:18:19', '2021-08-17 05:18:19'), (883, 4, '2021-08-17 05:18:19', '2021-08-17 05:18:19'), (884, 4, '2021-08-17 05:18:21', '2021-08-17 05:18:21'), (885, 4, '2021-08-17 05:18:22', '2021-08-17 05:18:22'), (886, 4, '2021-08-17 05:18:24', '2021-08-17 05:18:24'), (887, 4, '2021-08-17 05:18:25', '2021-08-17 05:18:25'), (888, 4, '2021-08-17 05:18:26', '2021-08-17 05:18:26'), (889, 4, '2021-08-17 05:18:27', '2021-08-17 05:18:27'), (890, 4, '2021-08-17 05:18:28', '2021-08-17 05:18:28'), (891, 4, '2021-08-17 05:18:29', '2021-08-17 05:18:29'), (892, 4, '2021-08-17 05:18:30', '2021-08-17 05:18:30'), (893, 4, '2021-08-17 05:18:31', '2021-08-17 05:18:31'), (894, 4, '2021-08-17 05:18:31', '2021-08-17 05:18:31'), (895, 4, '2021-08-18 05:18:35', '2021-08-18 05:18:35'), (896, 4, '2021-08-18 05:18:37', '2021-08-18 05:18:37'), (897, 4, '2021-08-18 05:18:39', '2021-08-18 05:18:39'), (898, 4, '2021-08-18 05:18:40', '2021-08-18 05:18:40'), (899, 4, '2021-08-18 05:18:41', '2021-08-18 05:18:41'), (900, 4, '2021-08-18 05:18:42', '2021-08-18 05:18:42'), (901, 4, '2021-08-18 05:18:43', '2021-08-18 05:18:43'), (902, 4, '2021-08-18 05:18:44', '2021-08-18 05:18:44'), (903, 4, '2021-08-18 05:18:45', '2021-08-18 05:18:45'), (904, 4, '2021-08-18 05:18:47', '2021-08-18 05:18:47'), (905, 4, '2021-08-18 05:18:48', '2021-08-18 05:18:48'), (906, 4, '2021-08-18 05:18:49', '2021-08-18 05:18:49'), (907, 4, '2021-08-18 05:18:50', '2021-08-18 05:18:50'), (908, 4, '2021-08-18 05:18:50', '2021-08-18 05:18:50'), (909, 4, '2021-08-18 05:18:51', '2021-08-18 05:18:51'), (910, 4, '2021-08-18 05:18:52', '2021-08-18 05:18:52'), (911, 4, '2021-08-18 05:18:53', '2021-08-18 05:18:53'), (912, 4, '2021-08-18 05:18:54', '2021-08-18 05:18:54'), (913, 4, '2021-08-18 05:18:55', '2021-08-18 05:18:55'), (914, 4, '2021-08-18 05:18:55', '2021-08-18 05:18:55'), (915, 4, '2021-08-18 05:18:56', '2021-08-18 05:18:56'), (916, 4, '2021-08-18 05:18:56', '2021-08-18 05:18:56'), (917, 4, '2021-08-18 05:18:57', '2021-08-18 05:18:57'), (918, 4, '2021-08-18 05:18:57', '2021-08-18 05:18:57'), (919, 4, '2021-08-18 05:18:58', '2021-08-18 05:18:58'), (920, 4, '2021-08-18 05:18:59', '2021-08-18 05:18:59'), (921, 4, '2021-08-18 05:19:01', '2021-08-18 05:19:01'), (922, 4, '2021-08-18 05:19:02', '2021-08-18 05:19:02'), (923, 4, '2021-08-18 05:19:02', '2021-08-18 05:19:02'), (924, 4, '2021-08-18 05:19:04', '2021-08-18 05:19:04'), (925, 4, '2021-08-18 05:19:05', '2021-08-18 05:19:05'), (926, 4, '2021-08-18 05:19:06', '2021-08-18 05:19:06'), (927, 4, '2021-08-18 05:19:07', '2021-08-18 05:19:07'), (928, 4, '2021-08-18 05:19:08', '2021-08-18 05:19:08'), (929, 4, '2021-08-18 05:19:08', '2021-08-18 05:19:08'), (930, 4, '2021-08-18 05:19:09', '2021-08-18 05:19:09'), (931, 4, '2021-08-18 05:19:10', '2021-08-18 05:19:10'), (932, 4, '2021-08-18 05:19:11', '2021-08-18 05:19:11'), (933, 4, '2021-08-18 05:19:12', '2021-08-18 05:19:12'), (934, 4, '2021-08-18 05:19:13', '2021-08-18 05:19:13'), (935, 4, '2021-08-18 05:19:14', '2021-08-18 05:19:14'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (936, 4, '2021-08-18 05:19:15', '2021-08-18 05:19:15'), (937, 4, '2021-08-18 05:19:16', '2021-08-18 05:19:16'), (938, 4, '2021-08-19 05:19:20', '2021-08-19 05:19:20'), (939, 4, '2021-08-19 05:19:23', '2021-08-19 05:19:23'), (940, 4, '2021-08-19 05:19:24', '2021-08-19 05:19:24'), (941, 4, '2021-08-19 05:19:24', '2021-08-19 05:19:24'), (942, 4, '2021-08-19 05:19:25', '2021-08-19 05:19:25'), (943, 4, '2021-08-19 05:19:26', '2021-08-19 05:19:26'), (944, 4, '2021-08-19 05:19:26', '2021-08-19 05:19:26'), (945, 4, '2021-08-19 05:19:27', '2021-08-19 05:19:27'), (946, 4, '2021-08-19 05:19:27', '2021-08-19 05:19:27'), (947, 4, '2021-08-19 05:19:30', '2021-08-19 05:19:30'), (948, 4, '2021-08-19 05:19:30', '2021-08-19 05:19:30'), (949, 4, '2021-08-19 05:19:31', '2021-08-19 05:19:31'), (950, 4, '2021-08-19 05:19:31', '2021-08-19 05:19:31'), (951, 4, '2021-08-19 05:19:32', '2021-08-19 05:19:32'), (952, 4, '2021-08-19 05:19:32', '2021-08-19 05:19:32'), (953, 4, '2021-08-19 05:19:33', '2021-08-19 05:19:33'), (954, 4, '2021-08-19 05:19:36', '2021-08-19 05:19:36'), (955, 4, '2021-08-19 05:19:38', '2021-08-19 05:19:38'), (956, 4, '2021-08-19 05:19:38', '2021-08-19 05:19:38'), (957, 4, '2021-08-19 05:19:39', '2021-08-19 05:19:39'), (958, 4, '2021-08-19 05:19:40', '2021-08-19 05:19:40'), (959, 4, '2021-08-19 05:19:42', '2021-08-19 05:19:42'), (960, 4, '2021-08-19 05:19:43', '2021-08-19 05:19:43'), (961, 4, '2021-08-19 05:19:43', '2021-08-19 05:19:43'), (962, 4, '2021-08-19 05:19:44', '2021-08-19 05:19:44'), (963, 4, '2021-08-19 05:19:44', '2021-08-19 05:19:44'), (964, 4, '2021-08-19 05:19:45', '2021-08-19 05:19:45'), (965, 4, '2021-08-19 05:19:47', '2021-08-19 05:19:47'), (966, 4, '2021-08-19 05:19:48', '2021-08-19 05:19:48'), (967, 4, '2021-08-19 05:19:48', '2021-08-19 05:19:48'), (968, 4, '2021-08-19 05:19:49', '2021-08-19 05:19:49'), (969, 4, '2021-08-19 05:19:50', '2021-08-19 05:19:50'), (970, 4, '2021-08-19 05:19:51', '2021-08-19 05:19:51'), (971, 4, '2021-08-19 05:19:51', '2021-08-19 05:19:51'), (972, 4, '2021-08-19 05:19:53', '2021-08-19 05:19:53'), (973, 4, '2021-08-19 05:19:54', '2021-08-19 05:19:54'), (974, 4, '2021-08-19 05:19:54', '2021-08-19 05:19:54'), (975, 4, '2021-08-19 05:19:55', '2021-08-19 05:19:55'), (976, 4, '2021-08-19 05:19:58', '2021-08-19 05:19:58'), (977, 4, '2021-08-19 05:19:59', '2021-08-19 05:19:59'), (978, 4, '2021-08-19 05:20:00', '2021-08-19 05:20:00'), (979, 4, '2021-08-19 05:20:00', '2021-08-19 05:20:00'), (980, 4, '2021-08-19 05:20:01', '2021-08-19 05:20:01'), (981, 4, '2021-08-19 05:20:01', '2021-08-19 05:20:01'), (982, 4, '2021-08-19 05:20:02', '2021-08-19 05:20:02'), (983, 4, '2021-08-19 05:20:03', '2021-08-19 05:20:03'), (984, 4, '2021-08-19 05:20:03', '2021-08-19 05:20:03'), (985, 4, '2021-08-19 05:20:04', '2021-08-19 05:20:04'), (986, 4, '2021-08-19 05:20:05', '2021-08-19 05:20:05'), (987, 4, '2021-08-20 05:20:12', '2021-08-20 05:20:12'), (988, 4, '2021-08-20 05:20:13', '2021-08-20 05:20:13'), (989, 4, '2021-08-20 05:20:14', '2021-08-20 05:20:14'), (990, 4, '2021-08-20 05:20:15', '2021-08-20 05:20:15'), (991, 4, '2021-08-20 05:20:15', '2021-08-20 05:20:15'), (992, 4, '2021-08-20 05:20:16', '2021-08-20 05:20:16'), (993, 4, '2021-08-20 05:20:16', '2021-08-20 05:20:16'), (994, 4, '2021-08-20 05:20:17', '2021-08-20 05:20:17'), (995, 4, '2021-08-20 05:20:18', '2021-08-20 05:20:18'), (996, 4, '2021-08-20 05:20:19', '2021-08-20 05:20:19'), (997, 4, '2021-08-20 05:20:20', '2021-08-20 05:20:20'), (998, 4, '2021-08-20 05:20:21', '2021-08-20 05:20:21'), (999, 4, '2021-08-20 05:20:21', '2021-08-20 05:20:21'), (1000, 4, '2021-08-20 05:20:23', '2021-08-20 05:20:23'), (1001, 4, '2021-08-20 05:20:24', '2021-08-20 05:20:24'), (1002, 4, '2021-08-20 05:20:25', '2021-08-20 05:20:25'), (1003, 4, '2021-08-20 05:20:26', '2021-08-20 05:20:26'), (1004, 4, '2021-08-20 05:20:28', '2021-08-20 05:20:28'), (1005, 4, '2021-08-20 05:20:28', '2021-08-20 05:20:28'), (1006, 4, '2021-08-20 05:20:29', '2021-08-20 05:20:29'), (1007, 4, '2021-08-20 05:20:31', '2021-08-20 05:20:31'), (1008, 4, '2021-08-20 05:20:31', '2021-08-20 05:20:31'), (1009, 4, '2021-08-20 05:20:33', '2021-08-20 05:20:33'), (1010, 4, '2021-08-20 05:20:34', '2021-08-20 05:20:34'), (1011, 4, '2021-08-20 05:20:35', '2021-08-20 05:20:35'), (1012, 4, '2021-08-20 05:20:36', '2021-08-20 05:20:36'), (1013, 4, '2021-08-20 05:20:37', '2021-08-20 05:20:37'), (1014, 4, '2021-08-20 05:20:38', '2021-08-20 05:20:38'), (1015, 4, '2021-08-20 05:20:38', '2021-08-20 05:20:38'), (1016, 4, '2021-08-20 05:20:39', '2021-08-20 05:20:39'), (1017, 4, '2021-08-20 05:20:40', '2021-08-20 05:20:40'), (1018, 4, '2021-08-20 05:20:41', '2021-08-20 05:20:41'), (1019, 4, '2021-08-20 05:20:42', '2021-08-20 05:20:42'), (1020, 4, '2021-08-20 05:20:43', '2021-08-20 05:20:43'), (1021, 4, '2021-08-20 05:20:44', '2021-08-20 05:20:44'), (1022, 4, '2021-08-20 05:20:45', '2021-08-20 05:20:45'), (1023, 4, '2021-08-20 05:20:46', '2021-08-20 05:20:46'), (1024, 4, '2021-08-20 05:20:49', '2021-08-20 05:20:49'), (1025, 4, '2021-08-20 05:20:50', '2021-08-20 05:20:50'), (1026, 4, '2021-08-20 05:20:50', '2021-08-20 05:20:50'), (1027, 4, '2021-08-20 05:20:51', '2021-08-20 05:20:51'), (1028, 4, '2021-08-20 05:20:51', '2021-08-20 05:20:51'), (1029, 4, '2021-08-21 05:20:55', '2021-08-21 05:20:55'), (1030, 4, '2021-08-21 05:20:57', '2021-08-21 05:20:57'), (1031, 4, '2021-08-21 05:20:58', '2021-08-21 05:20:58'), (1032, 4, '2021-08-21 05:20:59', '2021-08-21 05:20:59'), (1033, 4, '2021-08-21 05:21:00', '2021-08-21 05:21:00'), (1034, 4, '2021-08-21 05:21:00', '2021-08-21 05:21:00'), (1035, 4, '2021-08-21 05:21:02', '2021-08-21 05:21:02'), (1036, 4, '2021-08-21 05:21:02', '2021-08-21 05:21:02'), (1037, 4, '2021-08-21 05:21:03', '2021-08-21 05:21:03'), (1038, 4, '2021-08-21 05:21:04', '2021-08-21 05:21:04'), (1039, 4, '2021-08-21 05:21:05', '2021-08-21 05:21:05'), (1040, 4, '2021-08-21 05:21:05', '2021-08-21 05:21:05'), (1041, 4, '2021-08-21 05:21:06', '2021-08-21 05:21:06'), (1042, 4, '2021-08-21 05:21:08', '2021-08-21 05:21:08'), (1043, 4, '2021-08-21 05:21:08', '2021-08-21 05:21:08'), (1044, 4, '2021-08-21 05:21:09', '2021-08-21 05:21:09'), (1045, 4, '2021-08-21 05:21:10', '2021-08-21 05:21:10'), (1046, 4, '2021-08-21 05:21:10', '2021-08-21 05:21:10'), (1047, 4, '2021-08-21 05:21:11', '2021-08-21 05:21:11'), (1048, 4, '2021-08-21 05:21:18', '2021-08-21 05:21:18'), (1049, 4, '2021-08-21 05:21:19', '2021-08-21 05:21:19'), (1050, 4, '2021-08-21 05:21:20', '2021-08-21 05:21:20'), (1051, 4, '2021-08-21 05:21:22', '2021-08-21 05:21:22'), (1052, 4, '2021-08-21 05:21:22', '2021-08-21 05:21:22'), (1053, 4, '2021-08-21 05:21:24', '2021-08-21 05:21:24'), (1054, 4, '2021-08-21 05:21:25', '2021-08-21 05:21:25'), (1055, 4, '2021-08-21 05:21:26', '2021-08-21 05:21:26'), (1056, 4, '2021-08-21 05:21:27', '2021-08-21 05:21:27'), (1057, 4, '2021-08-21 05:21:27', '2021-08-21 05:21:27'), (1058, 4, '2021-08-21 05:21:30', '2021-08-21 05:21:30'), (1059, 4, '2021-08-21 05:21:30', '2021-08-21 05:21:30'), (1060, 4, '2021-08-21 05:21:32', '2021-08-21 05:21:32'), (1061, 4, '2021-08-21 05:21:34', '2021-08-21 05:21:34'), (1062, 4, '2021-08-21 05:21:35', '2021-08-21 05:21:35'), (1063, 4, '2021-08-21 05:21:35', '2021-08-21 05:21:35'), (1064, 4, '2021-08-21 05:21:37', '2021-08-21 05:21:37'), (1065, 4, '2021-08-22 05:21:40', '2021-08-22 05:21:40'), (1066, 4, '2021-08-22 05:21:42', '2021-08-22 05:21:42'), (1067, 4, '2021-08-22 05:21:43', '2021-08-22 05:21:43'), (1068, 4, '2021-08-22 05:21:47', '2021-08-22 05:21:47'), (1069, 4, '2021-08-22 05:21:48', '2021-08-22 05:21:48'), (1070, 4, '2021-08-22 05:21:48', '2021-08-22 05:21:48'), (1071, 4, '2021-08-22 05:21:49', '2021-08-22 05:21:49'), (1072, 4, '2021-08-22 05:21:50', '2021-08-22 05:21:50'), (1073, 4, '2021-08-22 05:21:51', '2021-08-22 05:21:51'), (1074, 4, '2021-08-22 05:21:52', '2021-08-22 05:21:52'), (1075, 4, '2021-08-22 05:21:52', '2021-08-22 05:21:52'), (1076, 4, '2021-08-22 05:21:54', '2021-08-22 05:21:54'), (1077, 4, '2021-08-22 05:21:55', '2021-08-22 05:21:55'), (1078, 4, '2021-08-22 05:21:55', '2021-08-22 05:21:55'), (1079, 4, '2021-08-22 05:21:56', '2021-08-22 05:21:56'), (1080, 4, '2021-08-22 05:21:57', '2021-08-22 05:21:57'), (1081, 4, '2021-08-22 05:21:57', '2021-08-22 05:21:57'), (1082, 4, '2021-08-22 05:21:58', '2021-08-22 05:21:58'), (1083, 4, '2021-08-22 05:21:58', '2021-08-22 05:21:58'), (1084, 4, '2021-08-22 05:21:58', '2021-08-22 05:21:58'), (1085, 4, '2021-08-22 05:21:59', '2021-08-22 05:21:59'), (1086, 4, '2021-08-22 05:21:59', '2021-08-22 05:21:59'), (1087, 4, '2021-08-22 05:21:59', '2021-08-22 05:21:59'), (1088, 4, '2021-08-22 05:22:00', '2021-08-22 05:22:00'), (1089, 4, '2021-08-22 05:22:01', '2021-08-22 05:22:01'), (1090, 4, '2021-08-22 05:22:01', '2021-08-22 05:22:01'), (1091, 4, '2021-08-22 05:22:01', '2021-08-22 05:22:01'), (1092, 4, '2021-08-22 05:22:02', '2021-08-22 05:22:02'), (1093, 4, '2021-08-22 05:22:03', '2021-08-22 05:22:03'), (1094, 4, '2021-08-22 05:22:04', '2021-08-22 05:22:04'), (1095, 4, '2021-08-22 05:22:04', '2021-08-22 05:22:04'), (1096, 4, '2021-08-22 05:22:05', '2021-08-22 05:22:05'), (1097, 4, '2021-08-22 05:22:05', '2021-08-22 05:22:05'), (1098, 4, '2021-08-22 05:22:05', '2021-08-22 05:22:05'), (1099, 4, '2021-08-22 05:22:06', '2021-08-22 05:22:06'), (1100, 4, '2021-08-22 05:22:06', '2021-08-22 05:22:06'), (1101, 4, '2021-08-22 05:22:07', '2021-08-22 05:22:07'), (1102, 4, '2021-08-22 05:22:08', '2021-08-22 05:22:08'), (1103, 4, '2021-08-22 05:22:08', '2021-08-22 05:22:08'), (1104, 4, '2021-08-22 05:22:09', '2021-08-22 05:22:09'), (1105, 4, '2021-08-22 05:22:09', '2021-08-22 05:22:09'), (1106, 4, '2021-08-22 05:22:10', '2021-08-22 05:22:10'), (1107, 4, '2021-08-22 05:22:11', '2021-08-22 05:22:11'), (1108, 4, '2021-08-22 05:22:11', '2021-08-22 05:22:11'), (1109, 4, '2021-08-22 05:22:12', '2021-08-22 05:22:12'), (1110, 4, '2021-08-22 05:22:12', '2021-08-22 05:22:12'), (1111, 4, '2021-08-22 05:22:12', '2021-08-22 05:22:12'), (1112, 4, '2021-08-22 05:22:12', '2021-08-22 05:22:12'), (1113, 4, '2021-08-22 05:22:13', '2021-08-22 05:22:13'), (1114, 4, '2021-08-22 05:22:14', '2021-08-22 05:22:14'), (1115, 4, '2021-08-22 05:22:15', '2021-08-22 05:22:15'), (1116, 4, '2021-08-22 05:22:15', '2021-08-22 05:22:15'), (1117, 4, '2021-08-22 05:22:15', '2021-08-22 05:22:15'), (1118, 4, '2021-08-23 05:22:19', '2021-08-23 05:22:19'), (1119, 4, '2021-08-23 05:22:21', '2021-08-23 05:22:21'), (1120, 4, '2021-08-23 05:22:22', '2021-08-23 05:22:22'), (1121, 4, '2021-08-23 05:22:22', '2021-08-23 05:22:22'), (1122, 4, '2021-08-23 05:22:22', '2021-08-23 05:22:22'), (1123, 4, '2021-08-23 05:22:23', '2021-08-23 05:22:23'), (1124, 4, '2021-08-23 05:22:23', '2021-08-23 05:22:23'), (1125, 4, '2021-08-23 05:22:24', '2021-08-23 05:22:24'), (1126, 4, '2021-08-23 05:22:24', '2021-08-23 05:22:24'), (1127, 4, '2021-08-23 05:22:24', '2021-08-23 05:22:24'), (1128, 4, '2021-08-23 05:22:24', '2021-08-23 05:22:24'), (1129, 4, '2021-08-23 05:22:25', '2021-08-23 05:22:25'), (1130, 4, '2021-08-23 05:22:26', '2021-08-23 05:22:26'), (1131, 4, '2021-08-23 05:22:26', '2021-08-23 05:22:26'), (1132, 4, '2021-08-23 05:22:27', '2021-08-23 05:22:27'), (1133, 4, '2021-08-23 05:22:27', '2021-08-23 05:22:27'), (1134, 4, '2021-08-23 05:22:28', '2021-08-23 05:22:28'), (1135, 4, '2021-08-23 05:22:28', '2021-08-23 05:22:28'), (1136, 4, '2021-08-23 05:22:29', '2021-08-23 05:22:29'), (1137, 4, '2021-08-23 05:22:30', '2021-08-23 05:22:30'), (1138, 4, '2021-08-23 05:22:31', '2021-08-23 05:22:31'), (1139, 4, '2021-08-23 05:22:32', '2021-08-23 05:22:32'), (1140, 4, '2021-08-23 05:22:32', '2021-08-23 05:22:32'), (1141, 4, '2021-08-23 05:22:32', '2021-08-23 05:22:32'), (1142, 4, '2021-08-23 05:22:33', '2021-08-23 05:22:33'), (1143, 4, '2021-08-23 05:22:33', '2021-08-23 05:22:33'), (1144, 4, '2021-08-23 05:22:34', '2021-08-23 05:22:34'), (1145, 4, '2021-08-23 05:22:35', '2021-08-23 05:22:35'), (1146, 4, '2021-08-23 05:22:36', '2021-08-23 05:22:36'), (1147, 4, '2021-08-23 05:22:37', '2021-08-23 05:22:37'), (1148, 4, '2021-08-23 05:22:38', '2021-08-23 05:22:38'), (1149, 4, '2021-08-23 05:22:39', '2021-08-23 05:22:39'), (1150, 4, '2021-08-23 05:22:39', '2021-08-23 05:22:39'), (1151, 4, '2021-08-23 05:22:40', '2021-08-23 05:22:40'), (1152, 4, '2021-08-23 05:22:41', '2021-08-23 05:22:41'), (1153, 4, '2021-08-23 05:22:42', '2021-08-23 05:22:42'), (1154, 4, '2021-08-23 05:22:42', '2021-08-23 05:22:42'), (1155, 4, '2021-08-23 05:22:43', '2021-08-23 05:22:43'), (1156, 4, '2021-08-23 05:22:44', '2021-08-23 05:22:44'), (1157, 4, '2021-08-23 05:22:44', '2021-08-23 05:22:44'), (1158, 4, '2021-08-23 05:22:45', '2021-08-23 05:22:45'), (1159, 4, '2021-08-23 05:22:45', '2021-08-23 05:22:45'), (1160, 4, '2021-08-23 05:22:46', '2021-08-23 05:22:46'), (1161, 4, '2021-08-23 05:22:46', '2021-08-23 05:22:46'), (1162, 4, '2021-08-23 05:22:47', '2021-08-23 05:22:47'), (1163, 4, '2021-08-23 05:22:47', '2021-08-23 05:22:47'), (1164, 4, '2021-08-23 05:22:48', '2021-08-23 05:22:48'), (1165, 4, '2021-08-23 05:22:48', '2021-08-23 05:22:48'), (1166, 4, '2021-08-23 05:23:00', '2021-08-23 05:23:00'), (1167, 4, '2021-08-23 05:23:00', '2021-08-23 05:23:00'), (1168, 4, '2021-08-23 05:23:01', '2021-08-23 05:23:01'), (1169, 4, '2021-08-23 05:23:01', '2021-08-23 05:23:01'), (1170, 4, '2021-08-23 05:23:01', '2021-08-23 05:23:01'), (1171, 4, '2021-08-23 05:23:05', '2021-08-23 05:23:05'), (1172, 4, '2021-08-23 05:23:05', '2021-08-23 05:23:05'), (1173, 4, '2021-08-23 05:23:06', '2021-08-23 05:23:06'), (1174, 4, '2021-08-23 05:23:06', '2021-08-23 05:23:06'), (1175, 4, '2021-08-23 05:23:06', '2021-08-23 05:23:06'), (1176, 4, '2021-08-23 05:23:07', '2021-08-23 05:23:07'), (1177, 4, '2021-08-24 05:23:10', '2021-08-24 05:23:10'), (1178, 4, '2021-08-24 05:23:12', '2021-08-24 05:23:12'), (1179, 4, '2021-08-24 05:23:12', '2021-08-24 05:23:12'), (1180, 4, '2021-08-24 05:23:12', '2021-08-24 05:23:12'), (1181, 4, '2021-08-24 05:23:12', '2021-08-24 05:23:12'), (1182, 4, '2021-08-24 05:23:13', '2021-08-24 05:23:13'), (1183, 4, '2021-08-24 05:23:13', '2021-08-24 05:23:13'), (1184, 4, '2021-08-24 05:23:13', '2021-08-24 05:23:13'), (1185, 4, '2021-08-24 05:23:13', '2021-08-24 05:23:13'), (1186, 4, '2021-08-24 05:23:13', '2021-08-24 05:23:13'), (1187, 4, '2021-08-24 05:23:14', '2021-08-24 05:23:14'), (1188, 4, '2021-08-24 05:23:14', '2021-08-24 05:23:14'), (1189, 4, '2021-08-24 05:23:14', '2021-08-24 05:23:14'), (1190, 4, '2021-08-24 05:23:14', '2021-08-24 05:23:14'), (1191, 4, '2021-08-24 05:23:15', '2021-08-24 05:23:15'), (1192, 4, '2021-08-24 05:23:15', '2021-08-24 05:23:15'), (1193, 4, '2021-08-24 05:23:15', '2021-08-24 05:23:15'), (1194, 4, '2021-08-24 05:23:16', '2021-08-24 05:23:16'), (1195, 4, '2021-08-24 05:23:16', '2021-08-24 05:23:16'), (1196, 4, '2021-08-24 05:23:17', '2021-08-24 05:23:17'), (1197, 4, '2021-08-24 05:23:18', '2021-08-24 05:23:18'), (1198, 4, '2021-08-24 05:23:18', '2021-08-24 05:23:18'), (1199, 4, '2021-08-24 05:23:18', '2021-08-24 05:23:18'), (1200, 4, '2021-08-24 05:23:18', '2021-08-24 05:23:18'), (1201, 4, '2021-08-24 05:23:18', '2021-08-24 05:23:18'), (1202, 4, '2021-08-24 05:23:19', '2021-08-24 05:23:19'), (1203, 4, '2021-08-24 05:23:19', '2021-08-24 05:23:19'), (1204, 4, '2021-08-24 05:23:19', '2021-08-24 05:23:19'), (1205, 4, '2021-08-24 05:23:20', '2021-08-24 05:23:20'), (1206, 4, '2021-08-24 05:23:20', '2021-08-24 05:23:20'), (1207, 4, '2021-08-24 05:23:21', '2021-08-24 05:23:21'), (1208, 4, '2021-08-24 05:23:21', '2021-08-24 05:23:21'), (1209, 4, '2021-08-24 05:23:21', '2021-08-24 05:23:21'), (1210, 4, '2021-08-24 05:23:22', '2021-08-24 05:23:22'), (1211, 4, '2021-08-24 05:23:23', '2021-08-24 05:23:23'), (1212, 4, '2021-08-24 05:23:23', '2021-08-24 05:23:23'), (1213, 4, '2021-08-24 05:23:23', '2021-08-24 05:23:23'), (1214, 4, '2021-08-24 05:23:23', '2021-08-24 05:23:23'), (1215, 4, '2021-08-24 05:23:24', '2021-08-24 05:23:24'), (1216, 4, '2021-08-24 05:23:24', '2021-08-24 05:23:24'), (1217, 4, '2021-08-24 05:23:25', '2021-08-24 05:23:25'), (1218, 4, '2021-08-24 05:24:20', '2021-08-24 05:24:20'), (1219, 4, '2021-08-24 05:24:20', '2021-08-24 05:24:20'), (1220, 4, '2021-08-24 05:24:21', '2021-08-24 05:24:21'), (1221, 4, '2021-08-24 05:24:22', '2021-08-24 05:24:22'), (1222, 4, '2021-08-24 05:24:23', '2021-08-24 05:24:23'), (1223, 4, '2021-08-24 05:24:24', '2021-08-24 05:24:24'), (1224, 4, '2021-08-24 05:24:31', '2021-08-24 05:24:31'), (1225, 4, '2021-08-24 05:24:31', '2021-08-24 05:24:31'), (1226, 4, '2021-08-24 05:24:32', '2021-08-24 05:24:32'), (1227, 4, '2021-08-24 05:24:32', '2021-08-24 05:24:32'), (1228, 4, '2021-08-24 05:24:33', '2021-08-24 05:24:33'), (1229, 4, '2021-08-24 05:24:33', '2021-08-24 05:24:33'), (1230, 4, '2021-08-24 05:24:34', '2021-08-24 05:24:34'), (1231, 4, '2021-08-24 05:24:34', '2021-08-24 05:24:34'), (1232, 4, '2021-08-24 05:24:35', '2021-08-24 05:24:35'), (1233, 4, '2021-08-24 05:24:35', '2021-08-24 05:24:35'), (1234, 4, '2021-08-24 05:24:36', '2021-08-24 05:24:36'), (1235, 4, '2021-08-24 05:24:36', '2021-08-24 05:24:36'), (1236, 4, '2021-08-24 05:24:36', '2021-08-24 05:24:36'), (1237, 4, '2021-08-24 05:24:43', '2021-08-24 05:24:43'), (1238, 4, '2021-08-24 05:24:43', '2021-08-24 05:24:43'), (1239, 4, '2021-08-24 05:24:44', '2021-08-24 05:24:44'), (1240, 4, '2021-08-24 05:24:45', '2021-08-24 05:24:45'), (1241, 4, '2021-08-24 05:24:46', '2021-08-24 05:24:46'), (1242, 4, '2021-08-24 05:24:47', '2021-08-24 05:24:47'), (1243, 4, '2021-08-24 05:24:47', '2021-08-24 05:24:47'), (1244, 4, '2021-08-24 05:24:48', '2021-08-24 05:24:48'), (1245, 4, '2021-08-24 05:24:50', '2021-08-24 05:24:50'), (1246, 4, '2021-08-24 05:24:51', '2021-08-24 05:24:51'), (1247, 4, '2021-08-24 05:24:51', '2021-08-24 05:24:51'), (1248, 4, '2021-08-24 05:24:52', '2021-08-24 05:24:52'), (1249, 4, '2021-08-25 05:24:59', '2021-08-25 05:24:59'), (1250, 4, '2021-08-25 05:25:01', '2021-08-25 05:25:01'), (1251, 4, '2021-08-25 05:25:01', '2021-08-25 05:25:01'), (1252, 4, '2021-08-25 05:25:09', '2021-08-25 05:25:09'), (1253, 4, '2021-08-25 05:25:15', '2021-08-25 05:25:15'), (1254, 4, '2021-08-25 05:25:20', '2021-08-25 05:25:20'), (1255, 4, '2021-08-25 05:25:20', '2021-08-25 05:25:20'), (1256, 4, '2021-08-25 05:25:24', '2021-08-25 05:25:24'), (1257, 4, '2021-08-25 05:25:24', '2021-08-25 05:25:24'), (1258, 4, '2021-08-25 05:25:25', '2021-08-25 05:25:25'), (1259, 4, '2021-08-25 05:25:25', '2021-08-25 05:25:25'), (1260, 4, '2021-08-25 05:25:26', '2021-08-25 05:25:26'), (1261, 4, '2021-08-25 05:25:31', '2021-08-25 05:25:31'), (1262, 4, '2021-08-25 05:25:31', '2021-08-25 05:25:31'), (1263, 4, '2021-08-25 05:25:32', '2021-08-25 05:25:32'), (1264, 4, '2021-08-25 05:25:33', '2021-08-25 05:25:33'), (1265, 4, '2021-08-25 05:25:33', '2021-08-25 05:25:33'), (1266, 4, '2021-08-25 05:25:34', '2021-08-25 05:25:34'), (1267, 4, '2021-08-25 05:25:34', '2021-08-25 05:25:34'), (1268, 4, '2021-08-25 05:25:35', '2021-08-25 05:25:35'), (1269, 4, '2021-08-25 05:25:37', '2021-08-25 05:25:37'), (1270, 4, '2021-08-25 05:25:38', '2021-08-25 05:25:38'), (1271, 4, '2021-08-25 05:25:38', '2021-08-25 05:25:38'), (1272, 4, '2021-08-25 05:25:41', '2021-08-25 05:25:41'), (1273, 4, '2021-08-25 05:25:42', '2021-08-25 05:25:42'), (1274, 4, '2021-08-25 05:25:42', '2021-08-25 05:25:42'), (1275, 4, '2021-08-25 05:25:43', '2021-08-25 05:25:43'), (1276, 4, '2021-08-25 05:25:44', '2021-08-25 05:25:44'), (1277, 4, '2021-08-25 05:25:44', '2021-08-25 05:25:44'), (1278, 4, '2021-08-25 05:25:49', '2021-08-25 05:25:49'), (1279, 4, '2021-08-25 05:25:50', '2021-08-25 05:25:50'), (1280, 4, '2021-08-25 05:25:51', '2021-08-25 05:25:51'), (1281, 4, '2021-08-25 05:25:53', '2021-08-25 05:25:53'), (1282, 4, '2021-08-25 05:25:57', '2021-08-25 05:25:57'), (1283, 4, '2021-08-25 05:25:57', '2021-08-25 05:25:57'), (1284, 4, '2021-08-25 05:26:00', '2021-08-25 05:26:00'), (1285, 4, '2021-08-25 05:26:00', '2021-08-25 05:26:00'), (1286, 4, '2021-08-25 05:26:00', '2021-08-25 05:26:00'), (1287, 4, '2021-08-25 05:26:01', '2021-08-25 05:26:01'), (1288, 4, '2021-08-25 05:26:02', '2021-08-25 05:26:02'), (1289, 4, '2021-08-25 05:26:04', '2021-08-25 05:26:04'), (1290, 4, '2021-08-25 05:26:04', '2021-08-25 05:26:04'), (1291, 4, '2021-08-25 05:26:05', '2021-08-25 05:26:05'), (1292, 4, '2021-08-25 05:26:06', '2021-08-25 05:26:06'), (1293, 4, '2021-08-25 05:26:07', '2021-08-25 05:26:07'), (1294, 4, '2021-08-25 05:26:08', '2021-08-25 05:26:08'), (1295, 4, '2021-08-25 05:26:09', '2021-08-25 05:26:09'), (1296, 4, '2021-08-25 05:26:11', '2021-08-25 05:26:11'), (1297, 4, '2021-08-25 05:26:12', '2021-08-25 05:26:12'), (1298, 4, '2021-08-25 05:26:15', '2021-08-25 05:26:15'), (1299, 4, '2021-08-25 05:26:20', '2021-08-25 05:26:20'), (1300, 4, '2021-08-25 05:26:20', '2021-08-25 05:26:20'), (1301, 4, '2021-08-25 05:26:22', '2021-08-25 05:26:22'), (1302, 4, '2021-08-25 05:26:22', '2021-08-25 05:26:22'), (1303, 4, '2021-08-25 05:26:23', '2021-08-25 05:26:23'), (1304, 4, '2021-08-25 05:26:28', '2021-08-25 05:26:28'), (1305, 4, '2021-08-25 05:26:31', '2021-08-25 05:26:31'), (1306, 4, '2021-08-25 05:26:31', '2021-08-25 05:26:31'), (1307, 4, '2021-08-25 05:26:32', '2021-08-25 05:26:32'), (1308, 4, '2021-08-25 05:26:32', '2021-08-25 05:26:32'), (1309, 4, '2021-08-25 05:26:33', '2021-08-25 05:26:33'), (1310, 4, '2021-08-25 05:26:33', '2021-08-25 05:26:33'), (1311, 4, '2021-08-25 05:26:34', '2021-08-25 05:26:34'), (1312, 4, '2021-08-25 05:26:35', '2021-08-25 05:26:35'), (1313, 4, '2021-08-25 05:26:39', '2021-08-25 05:26:39'), (1314, 4, '2021-08-25 05:26:41', '2021-08-25 05:26:41'), (1315, 4, '2021-08-25 05:26:42', '2021-08-25 05:26:42'), (1316, 4, '2021-08-26 05:26:47', '2021-08-26 05:26:47'), (1317, 4, '2021-08-26 05:26:49', '2021-08-26 05:26:49'), (1318, 4, '2021-08-26 05:26:52', '2021-08-26 05:26:52'), (1319, 4, '2021-08-26 05:26:52', '2021-08-26 05:26:52'), (1320, 4, '2021-08-26 05:26:53', '2021-08-26 05:26:53'), (1321, 4, '2021-08-26 05:26:57', '2021-08-26 05:26:57'), (1322, 4, '2021-08-26 05:26:58', '2021-08-26 05:26:58'), (1323, 4, '2021-08-26 05:26:59', '2021-08-26 05:26:59'), (1324, 4, '2021-08-26 05:27:01', '2021-08-26 05:27:01'), (1325, 4, '2021-08-26 05:27:02', '2021-08-26 05:27:02'), (1326, 4, '2021-08-26 05:27:02', '2021-08-26 05:27:02'), (1327, 4, '2021-08-26 05:27:02', '2021-08-26 05:27:02'), (1328, 4, '2021-08-26 05:27:03', '2021-08-26 05:27:03'), (1329, 4, '2021-08-26 05:27:04', '2021-08-26 05:27:04'), (1330, 4, '2021-08-26 05:27:05', '2021-08-26 05:27:05'), (1331, 4, '2021-08-26 05:27:05', '2021-08-26 05:27:05'), (1332, 4, '2021-08-26 05:27:10', '2021-08-26 05:27:10'), (1333, 4, '2021-08-26 05:27:11', '2021-08-26 05:27:11'), (1334, 4, '2021-08-26 05:27:11', '2021-08-26 05:27:11'), (1335, 4, '2021-08-26 05:27:12', '2021-08-26 05:27:12'), (1336, 4, '2021-08-26 05:27:12', '2021-08-26 05:27:12'), (1337, 4, '2021-08-26 05:27:13', '2021-08-26 05:27:13'), (1338, 4, '2021-08-26 05:27:13', '2021-08-26 05:27:13'), (1339, 4, '2021-08-26 05:27:13', '2021-08-26 05:27:13'), (1340, 4, '2021-08-26 05:27:14', '2021-08-26 05:27:14'), (1341, 4, '2021-08-26 05:27:14', '2021-08-26 05:27:14'), (1342, 4, '2021-08-26 05:27:15', '2021-08-26 05:27:15'), (1343, 4, '2021-08-26 05:27:17', '2021-08-26 05:27:17'), (1344, 4, '2021-08-26 05:27:18', '2021-08-26 05:27:18'), (1345, 4, '2021-08-26 05:27:18', '2021-08-26 05:27:18'), (1346, 4, '2021-08-26 05:27:21', '2021-08-26 05:27:21'), (1347, 4, '2021-08-26 05:27:21', '2021-08-26 05:27:21'), (1348, 4, '2021-08-26 05:27:22', '2021-08-26 05:27:22'), (1349, 4, '2021-08-26 05:27:23', '2021-08-26 05:27:23'), (1350, 4, '2021-08-26 05:27:27', '2021-08-26 05:27:27'), (1351, 4, '2021-08-26 05:27:27', '2021-08-26 05:27:27'), (1352, 4, '2021-08-26 05:27:28', '2021-08-26 05:27:28'), (1353, 4, '2021-08-26 05:27:28', '2021-08-26 05:27:28'), (1354, 4, '2021-08-26 05:27:28', '2021-08-26 05:27:28'), (1355, 4, '2021-08-26 05:27:29', '2021-08-26 05:27:29'), (1356, 4, '2021-08-26 05:27:30', '2021-08-26 05:27:30'), (1357, 4, '2021-08-26 05:27:30', '2021-08-26 05:27:30'), (1358, 4, '2021-08-26 05:27:31', '2021-08-26 05:27:31'), (1359, 4, '2021-08-26 05:27:32', '2021-08-26 05:27:32'), (1360, 4, '2021-08-26 05:27:32', '2021-08-26 05:27:32'), (1361, 4, '2021-08-26 05:27:33', '2021-08-26 05:27:33'), (1362, 4, '2021-08-26 05:27:34', '2021-08-26 05:27:34'), (1363, 4, '2021-08-26 05:27:35', '2021-08-26 05:27:35'), (1364, 4, '2021-08-26 05:27:35', '2021-08-26 05:27:35'), (1365, 4, '2021-08-26 05:27:36', '2021-08-26 05:27:36'), (1366, 4, '2021-08-26 05:27:36', '2021-08-26 05:27:36'), (1367, 4, '2021-08-26 05:27:37', '2021-08-26 05:27:37'), (1368, 4, '2021-08-26 05:27:37', '2021-08-26 05:27:37'), (1369, 4, '2021-08-26 05:27:38', '2021-08-26 05:27:38'), (1370, 4, '2021-08-26 05:27:39', '2021-08-26 05:27:39'), (1371, 4, '2021-08-26 05:27:40', '2021-08-26 05:27:40'), (1372, 4, '2021-08-26 05:27:41', '2021-08-26 05:27:41'), (1373, 4, '2021-08-26 05:27:42', '2021-08-26 05:27:42'), (1374, 4, '2021-08-26 05:27:42', '2021-08-26 05:27:42'), (1375, 4, '2021-08-26 05:27:43', '2021-08-26 05:27:43'), (1376, 4, '2021-08-26 05:27:43', '2021-08-26 05:27:43'), (1377, 4, '2021-08-26 05:27:44', '2021-08-26 05:27:44'), (1378, 4, '2021-08-26 05:27:44', '2021-08-26 05:27:44'), (1379, 4, '2021-08-26 05:27:44', '2021-08-26 05:27:44'), (1380, 4, '2021-08-26 05:27:45', '2021-08-26 05:27:45'), (1381, 4, '2021-08-26 05:27:46', '2021-08-26 05:27:46'), (1382, 4, '2021-08-26 05:27:46', '2021-08-26 05:27:46'), (1383, 4, '2021-08-26 05:27:47', '2021-08-26 05:27:47'), (1384, 4, '2021-08-26 05:27:47', '2021-08-26 05:27:47'), (1385, 4, '2021-08-26 05:27:50', '2021-08-26 05:27:50'), (1386, 4, '2021-08-26 05:27:50', '2021-08-26 05:27:50'), (1387, 4, '2021-08-26 05:27:51', '2021-08-26 05:27:51'), (1388, 4, '2021-08-26 05:27:51', '2021-08-26 05:27:51'), (1389, 4, '2021-08-26 05:27:52', '2021-08-26 05:27:52'), (1390, 4, '2021-08-26 05:27:52', '2021-08-26 05:27:52'), (1391, 4, '2021-08-26 05:27:53', '2021-08-26 05:27:53'), (1392, 4, '2021-08-26 05:27:53', '2021-08-26 05:27:53'), (1393, 4, '2021-08-26 05:27:54', '2021-08-26 05:27:54'), (1394, 4, '2021-08-26 05:27:54', '2021-08-26 05:27:54'), (1395, 4, '2021-08-26 05:27:55', '2021-08-26 05:27:55'), (1396, 4, '2021-08-26 05:27:55', '2021-08-26 05:27:55'), (1397, 4, '2021-08-26 05:27:56', '2021-08-26 05:27:56'), (1398, 4, '2021-08-26 05:28:04', '2021-08-26 05:28:04'), (1399, 4, '2021-08-26 05:28:04', '2021-08-26 05:28:04'), (1400, 4, '2021-08-26 05:28:04', '2021-08-26 05:28:04'), (1401, 4, '2021-08-26 05:28:11', '2021-08-26 05:28:11'), (1402, 4, '2021-08-26 05:28:11', '2021-08-26 05:28:11'), (1403, 4, '2021-08-26 05:28:13', '2021-08-26 05:28:13'), (1404, 4, '2021-08-26 05:28:13', '2021-08-26 05:28:13'), (1405, 4, '2021-08-26 05:28:14', '2021-08-26 05:28:14'), (1406, 4, '2021-08-26 05:28:14', '2021-08-26 05:28:14'), (1407, 4, '2021-08-26 05:28:15', '2021-08-26 05:28:15'), (1408, 4, '2021-08-26 05:28:16', '2021-08-26 05:28:16'), (1409, 4, '2021-08-26 05:28:16', '2021-08-26 05:28:16'), (1410, 4, '2021-08-26 05:28:17', '2021-08-26 05:28:17'), (1411, 4, '2021-08-26 05:28:17', '2021-08-26 05:28:17'), (1412, 4, '2021-08-26 05:28:18', '2021-08-26 05:28:18'), (1413, 4, '2021-08-26 05:28:20', '2021-08-26 05:28:20'), (1414, 4, '2021-08-26 05:28:23', '2021-08-26 05:28:23'), (1415, 4, '2021-08-26 05:28:25', '2021-08-26 05:28:25'), (1416, 4, '2021-08-26 05:28:28', '2021-08-26 05:28:28'), (1417, 4, '2021-08-26 05:28:29', '2021-08-26 05:28:29'), (1418, 4, '2021-08-26 05:28:32', '2021-08-26 05:28:32'), (1419, 4, '2021-08-26 05:28:33', '2021-08-26 05:28:33'), (1420, 4, '2021-08-26 05:28:35', '2021-08-26 05:28:35'), (1421, 4, '2021-08-26 05:28:36', '2021-08-26 05:28:36'), (1422, 4, '2021-08-26 05:28:36', '2021-08-26 05:28:36'), (1423, 4, '2021-08-26 05:28:36', '2021-08-26 05:28:36'), (1424, 4, '2021-08-26 05:28:47', '2021-08-26 05:28:47'), (1425, 4, '2021-08-26 05:28:47', '2021-08-26 05:28:47'), (1426, 4, '2021-08-26 05:28:48', '2021-08-26 05:28:48'), (1427, 4, '2021-08-26 05:28:52', '2021-08-26 05:28:52'), (1428, 4, '2021-08-26 05:28:53', '2021-08-26 05:28:53'), (1429, 4, '2021-08-26 05:28:53', '2021-08-26 05:28:53'), (1430, 4, '2021-08-26 05:28:54', '2021-08-26 05:28:54'), (1431, 4, '2021-08-27 05:28:58', '2021-08-27 05:28:58'), (1432, 4, '2021-08-27 05:29:00', '2021-08-27 05:29:00'), (1433, 4, '2021-08-27 05:29:00', '2021-08-27 05:29:00'), (1434, 4, '2021-08-27 05:29:00', '2021-08-27 05:29:00'), (1435, 4, '2021-08-27 05:29:01', '2021-08-27 05:29:01'), (1436, 4, '2021-08-27 05:29:03', '2021-08-27 05:29:03'), (1437, 4, '2021-08-27 05:29:04', '2021-08-27 05:29:04'), (1438, 4, '2021-08-27 05:29:06', '2021-08-27 05:29:06'), (1439, 4, '2021-08-27 05:29:06', '2021-08-27 05:29:06'), (1440, 4, '2021-08-27 05:29:07', '2021-08-27 05:29:07'), (1441, 4, '2021-08-27 05:29:08', '2021-08-27 05:29:08'), (1442, 4, '2021-08-27 05:29:08', '2021-08-27 05:29:08'), (1443, 4, '2021-08-27 05:29:09', '2021-08-27 05:29:09'), (1444, 4, '2021-08-27 05:29:10', '2021-08-27 05:29:10'), (1445, 4, '2021-08-27 05:29:11', '2021-08-27 05:29:11'), (1446, 4, '2021-08-27 05:29:13', '2021-08-27 05:29:13'), (1447, 4, '2021-08-27 05:29:13', '2021-08-27 05:29:13'), (1448, 4, '2021-08-27 05:29:14', '2021-08-27 05:29:14'), (1449, 4, '2021-08-27 05:29:14', '2021-08-27 05:29:14'), (1450, 4, '2021-08-27 05:29:16', '2021-08-27 05:29:16'), (1451, 4, '2021-08-27 05:29:17', '2021-08-27 05:29:17'), (1452, 4, '2021-08-27 05:29:17', '2021-08-27 05:29:17'), (1453, 4, '2021-08-27 05:29:18', '2021-08-27 05:29:18'), (1454, 4, '2021-08-27 05:29:18', '2021-08-27 05:29:18'), (1455, 4, '2021-08-27 05:29:20', '2021-08-27 05:29:20'), (1456, 4, '2021-08-27 05:29:21', '2021-08-27 05:29:21'), (1457, 4, '2021-08-27 05:29:21', '2021-08-27 05:29:21'), (1458, 4, '2021-08-27 05:29:22', '2021-08-27 05:29:22'), (1459, 4, '2021-08-27 05:29:22', '2021-08-27 05:29:22'), (1460, 4, '2021-08-27 05:29:22', '2021-08-27 05:29:22'), (1461, 4, '2021-08-27 05:29:23', '2021-08-27 05:29:23'), (1462, 4, '2021-08-27 05:29:23', '2021-08-27 05:29:23'), (1463, 4, '2021-08-27 05:29:24', '2021-08-27 05:29:24'), (1464, 4, '2021-08-27 05:29:24', '2021-08-27 05:29:24'), (1465, 4, '2021-08-27 05:29:24', '2021-08-27 05:29:24'), (1466, 4, '2021-08-27 05:29:25', '2021-08-27 05:29:25'), (1467, 4, '2021-08-27 05:29:25', '2021-08-27 05:29:25'), (1468, 4, '2021-08-27 05:29:26', '2021-08-27 05:29:26'), (1469, 4, '2021-08-27 05:29:26', '2021-08-27 05:29:26'), (1470, 4, '2021-08-27 05:29:26', '2021-08-27 05:29:26'), (1471, 4, '2021-08-27 05:29:27', '2021-08-27 05:29:27'), (1472, 4, '2021-08-27 05:29:27', '2021-08-27 05:29:27'), (1473, 4, '2021-08-27 05:29:28', '2021-08-27 05:29:28'), (1474, 4, '2021-08-27 05:29:28', '2021-08-27 05:29:28'), (1475, 4, '2021-08-27 05:29:29', '2021-08-27 05:29:29'), (1476, 4, '2021-08-27 05:29:29', '2021-08-27 05:29:29'), (1477, 4, '2021-08-27 05:29:30', '2021-08-27 05:29:30'), (1478, 4, '2021-08-27 05:29:30', '2021-08-27 05:29:30'), (1479, 4, '2021-08-27 05:29:31', '2021-08-27 05:29:31'), (1480, 4, '2021-08-27 05:29:35', '2021-08-27 05:29:35'), (1481, 4, '2021-08-27 05:29:35', '2021-08-27 05:29:35'), (1482, 4, '2021-08-27 05:29:36', '2021-08-27 05:29:36'), (1483, 4, '2021-08-27 05:29:38', '2021-08-27 05:29:38'), (1484, 4, '2021-08-27 05:29:39', '2021-08-27 05:29:39'), (1485, 4, '2021-08-27 05:29:40', '2021-08-27 05:29:40'), (1486, 4, '2021-08-27 05:29:40', '2021-08-27 05:29:40'), (1487, 4, '2021-08-27 05:29:43', '2021-08-27 05:29:43'), (1488, 4, '2021-08-27 05:29:44', '2021-08-27 05:29:44'), (1489, 4, '2021-08-27 05:29:44', '2021-08-27 05:29:44'), (1490, 4, '2021-08-27 05:29:45', '2021-08-27 05:29:45'), (1491, 4, '2021-08-27 05:29:45', '2021-08-27 05:29:45'), (1492, 4, '2021-08-27 05:29:46', '2021-08-27 05:29:46'), (1493, 4, '2021-08-27 05:29:46', '2021-08-27 05:29:46'), (1494, 4, '2021-08-27 05:29:47', '2021-08-27 05:29:47'), (1495, 4, '2021-08-27 05:29:49', '2021-08-27 05:29:49'), (1496, 4, '2021-08-27 05:29:50', '2021-08-27 05:29:50'), (1497, 4, '2021-08-27 05:29:51', '2021-08-27 05:29:51'), (1498, 4, '2021-08-27 05:29:51', '2021-08-27 05:29:51'), (1499, 4, '2021-08-27 05:29:51', '2021-08-27 05:29:51'), (1500, 4, '2021-08-27 05:29:52', '2021-08-27 05:29:52'), (1501, 4, '2021-08-27 05:29:52', '2021-08-27 05:29:52'), (1502, 4, '2021-08-27 05:29:53', '2021-08-27 05:29:53'), (1503, 4, '2021-08-27 05:29:53', '2021-08-27 05:29:53'), (1504, 4, '2021-08-27 05:29:54', '2021-08-27 05:29:54'), (1505, 4, '2021-08-27 05:29:54', '2021-08-27 05:29:54'), (1506, 4, '2021-08-27 05:29:55', '2021-08-27 05:29:55'), (1507, 4, '2021-08-27 05:29:55', '2021-08-27 05:29:55'), (1508, 4, '2021-08-27 05:29:56', '2021-08-27 05:29:56'), (1509, 4, '2021-08-27 05:29:57', '2021-08-27 05:29:57'), (1510, 4, '2021-08-27 05:30:00', '2021-08-27 05:30:00'), (1511, 4, '2021-08-27 05:30:01', '2021-08-27 05:30:01'), (1512, 4, '2021-08-27 05:30:01', '2021-08-27 05:30:01'), (1513, 4, '2021-08-27 05:30:02', '2021-08-27 05:30:02'), (1514, 4, '2021-08-27 05:30:02', '2021-08-27 05:30:02'), (1515, 4, '2021-08-27 05:30:03', '2021-08-27 05:30:03'), (1516, 4, '2021-08-27 05:30:04', '2021-08-27 05:30:04'), (1517, 4, '2021-08-27 05:30:04', '2021-08-27 05:30:04'), (1518, 4, '2021-08-27 05:30:07', '2021-08-27 05:30:07'), (1519, 4, '2021-08-27 05:30:08', '2021-08-27 05:30:08'), (1520, 4, '2021-08-27 05:30:09', '2021-08-27 05:30:09'), (1521, 4, '2021-08-27 05:30:10', '2021-08-27 05:30:10'), (1522, 4, '2021-08-27 05:30:10', '2021-08-27 05:30:10'), (1523, 4, '2021-08-27 05:30:11', '2021-08-27 05:30:11'), (1524, 4, '2021-08-27 05:30:12', '2021-08-27 05:30:12'), (1525, 4, '2021-08-27 05:30:12', '2021-08-27 05:30:12'), (1526, 4, '2021-08-27 05:30:13', '2021-08-27 05:30:13'), (1527, 4, '2021-08-27 05:30:13', '2021-08-27 05:30:13'), (1528, 4, '2021-08-27 05:30:14', '2021-08-27 05:30:14'), (1529, 4, '2021-08-27 05:30:14', '2021-08-27 05:30:14'), (1530, 4, '2021-08-27 05:30:15', '2021-08-27 05:30:15'), (1531, 4, '2021-08-27 05:30:16', '2021-08-27 05:30:16'), (1532, 4, '2021-08-27 05:30:16', '2021-08-27 05:30:16'), (1533, 4, '2021-08-28 05:30:23', '2021-08-28 05:30:23'), (1534, 4, '2021-08-28 05:30:26', '2021-08-28 05:30:26'), (1535, 4, '2021-08-28 05:30:27', '2021-08-28 05:30:27'), (1536, 4, '2021-08-28 05:30:27', '2021-08-28 05:30:27'), (1537, 4, '2021-08-28 05:30:28', '2021-08-28 05:30:28'), (1538, 4, '2021-08-28 05:30:28', '2021-08-28 05:30:28'), (1539, 4, '2021-08-28 05:30:29', '2021-08-28 05:30:29'), (1540, 4, '2021-08-28 05:30:29', '2021-08-28 05:30:29'), (1541, 4, '2021-08-28 05:30:30', '2021-08-28 05:30:30'), (1542, 4, '2021-08-28 05:30:30', '2021-08-28 05:30:30'), (1543, 4, '2021-08-28 05:30:31', '2021-08-28 05:30:31'), (1544, 4, '2021-08-28 05:30:31', '2021-08-28 05:30:31'), (1545, 4, '2021-08-28 05:30:32', '2021-08-28 05:30:32'), (1546, 4, '2021-08-28 05:30:33', '2021-08-28 05:30:33'), (1547, 4, '2021-08-28 05:30:33', '2021-08-28 05:30:33'), (1548, 4, '2021-08-28 05:30:33', '2021-08-28 05:30:33'), (1549, 4, '2021-08-28 05:30:34', '2021-08-28 05:30:34'), (1550, 4, '2021-08-28 05:30:34', '2021-08-28 05:30:34'), (1551, 4, '2021-08-28 05:30:34', '2021-08-28 05:30:34'), (1552, 4, '2021-08-28 05:30:34', '2021-08-28 05:30:34'), (1553, 4, '2021-08-28 05:30:34', '2021-08-28 05:30:34'), (1554, 4, '2021-08-28 05:30:35', '2021-08-28 05:30:35'), (1555, 4, '2021-08-28 05:30:35', '2021-08-28 05:30:35'), (1556, 4, '2021-08-28 05:30:35', '2021-08-28 05:30:35'), (1557, 4, '2021-08-28 05:30:35', '2021-08-28 05:30:35'), (1558, 4, '2021-08-28 05:30:36', '2021-08-28 05:30:36'), (1559, 4, '2021-08-28 05:30:36', '2021-08-28 05:30:36'), (1560, 4, '2021-08-28 05:30:36', '2021-08-28 05:30:36'), (1561, 4, '2021-08-28 05:30:37', '2021-08-28 05:30:37'), (1562, 4, '2021-08-28 05:30:37', '2021-08-28 05:30:37'), (1563, 4, '2021-08-28 05:30:37', '2021-08-28 05:30:37'), (1564, 4, '2021-08-28 05:30:37', '2021-08-28 05:30:37'), (1565, 4, '2021-08-28 05:30:38', '2021-08-28 05:30:38'), (1566, 4, '2021-08-28 05:30:38', '2021-08-28 05:30:38'), (1567, 4, '2021-08-28 05:30:38', '2021-08-28 05:30:38'), (1568, 4, '2021-08-28 05:30:38', '2021-08-28 05:30:38'), (1569, 4, '2021-08-28 05:30:38', '2021-08-28 05:30:38'), (1570, 4, '2021-08-28 05:30:39', '2021-08-28 05:30:39'), (1571, 4, '2021-08-28 05:30:39', '2021-08-28 05:30:39'), (1572, 4, '2021-08-28 05:30:39', '2021-08-28 05:30:39'), (1573, 4, '2021-08-28 05:30:39', '2021-08-28 05:30:39'), (1574, 4, '2021-08-28 05:30:40', '2021-08-28 05:30:40'), (1575, 4, '2021-08-28 05:30:40', '2021-08-28 05:30:40'), (1576, 4, '2021-08-28 05:30:40', '2021-08-28 05:30:40'), (1577, 4, '2021-08-28 05:30:40', '2021-08-28 05:30:40'), (1578, 4, '2021-08-28 05:30:40', '2021-08-28 05:30:40'), (1579, 4, '2021-08-28 05:30:41', '2021-08-28 05:30:41'), (1580, 4, '2021-08-28 05:30:41', '2021-08-28 05:30:41'), (1581, 4, '2021-08-28 05:30:41', '2021-08-28 05:30:41'), (1582, 4, '2021-08-28 05:30:41', '2021-08-28 05:30:41'), (1583, 4, '2021-08-28 05:30:41', '2021-08-28 05:30:41'), (1584, 4, '2021-08-28 05:30:42', '2021-08-28 05:30:42'), (1585, 4, '2021-08-28 05:30:42', '2021-08-28 05:30:42'), (1586, 4, '2021-08-28 05:30:42', '2021-08-28 05:30:42'), (1587, 4, '2021-08-28 05:30:42', '2021-08-28 05:30:42'), (1588, 4, '2021-08-28 05:30:42', '2021-08-28 05:30:42'), (1589, 4, '2021-08-28 05:30:43', '2021-08-28 05:30:43'), (1590, 4, '2021-08-28 05:30:43', '2021-08-28 05:30:43'), (1591, 4, '2021-08-28 05:30:43', '2021-08-28 05:30:43'), (1592, 4, '2021-08-28 05:30:43', '2021-08-28 05:30:43'), (1593, 4, '2021-08-28 05:30:44', '2021-08-28 05:30:44'), (1594, 4, '2021-08-28 05:30:44', '2021-08-28 05:30:44'), (1595, 4, '2021-08-28 05:30:44', '2021-08-28 05:30:44'), (1596, 4, '2021-08-28 05:30:44', '2021-08-28 05:30:44'), (1597, 4, '2021-08-28 05:30:44', '2021-08-28 05:30:44'), (1598, 4, '2021-08-28 05:30:45', '2021-08-28 05:30:45'), (1599, 4, '2021-08-28 05:30:45', '2021-08-28 05:30:45'), (1600, 4, '2021-08-28 05:30:45', '2021-08-28 05:30:45'), (1601, 4, '2021-08-28 05:30:45', '2021-08-28 05:30:45'), (1602, 4, '2021-08-28 05:30:45', '2021-08-28 05:30:45'), (1603, 4, '2021-08-28 05:30:45', '2021-08-28 05:30:45'), (1604, 4, '2021-08-28 05:30:46', '2021-08-28 05:30:46'), (1605, 4, '2021-08-28 05:30:46', '2021-08-28 05:30:46'), (1606, 4, '2021-08-28 05:30:46', '2021-08-28 05:30:46'), (1607, 4, '2021-08-28 05:30:46', '2021-08-28 05:30:46'), (1608, 4, '2021-08-28 05:30:46', '2021-08-28 05:30:46'), (1609, 4, '2021-08-28 05:30:47', '2021-08-28 05:30:47'), (1610, 4, '2021-08-28 05:30:47', '2021-08-28 05:30:47'), (1611, 4, '2021-08-28 05:30:47', '2021-08-28 05:30:47'), (1612, 4, '2021-08-28 05:30:47', '2021-08-28 05:30:47'), (1613, 4, '2021-08-28 05:30:47', '2021-08-28 05:30:47'), (1614, 4, '2021-08-28 05:30:48', '2021-08-28 05:30:48'), (1615, 4, '2021-08-28 05:30:48', '2021-08-28 05:30:48'), (1616, 4, '2021-08-28 05:30:48', '2021-08-28 05:30:48'), (1617, 4, '2021-08-28 05:30:48', '2021-08-28 05:30:48'), (1618, 4, '2021-08-28 05:30:49', '2021-08-28 05:30:49'), (1619, 4, '2021-08-28 05:30:49', '2021-08-28 05:30:49'), (1620, 4, '2021-08-28 05:30:49', '2021-08-28 05:30:49'), (1621, 4, '2021-08-28 05:30:49', '2021-08-28 05:30:49'), (1622, 4, '2021-08-29 05:30:54', '2021-08-29 05:30:54'), (1623, 4, '2021-08-29 05:30:55', '2021-08-29 05:30:55'), (1624, 4, '2021-08-29 05:30:56', '2021-08-29 05:30:56'), (1625, 4, '2021-08-29 05:30:56', '2021-08-29 05:30:56'), (1626, 4, '2021-08-29 05:30:56', '2021-08-29 05:30:56'), (1627, 4, '2021-08-29 05:30:56', '2021-08-29 05:30:56'), (1628, 4, '2021-08-29 05:30:57', '2021-08-29 05:30:57'), (1629, 4, '2021-08-29 05:30:57', '2021-08-29 05:30:57'), (1630, 4, '2021-08-29 05:30:57', '2021-08-29 05:30:57'), (1631, 4, '2021-08-29 05:30:57', '2021-08-29 05:30:57'), (1632, 4, '2021-08-29 05:30:57', '2021-08-29 05:30:57'), (1633, 4, '2021-08-29 05:30:58', '2021-08-29 05:30:58'), (1634, 4, '2021-08-29 05:30:58', '2021-08-29 05:30:58'), (1635, 4, '2021-08-29 05:30:58', '2021-08-29 05:30:58'), (1636, 4, '2021-08-29 05:30:58', '2021-08-29 05:30:58'), (1637, 4, '2021-08-29 05:30:59', '2021-08-29 05:30:59'), (1638, 4, '2021-08-29 05:30:59', '2021-08-29 05:30:59'), (1639, 4, '2021-08-29 05:31:00', '2021-08-29 05:31:00'), (1640, 4, '2021-08-29 05:31:00', '2021-08-29 05:31:00'), (1641, 4, '2021-08-29 05:31:00', '2021-08-29 05:31:00'), (1642, 4, '2021-08-29 05:31:01', '2021-08-29 05:31:01'), (1643, 4, '2021-08-29 05:31:02', '2021-08-29 05:31:02'), (1644, 4, '2021-08-29 05:31:02', '2021-08-29 05:31:02'), (1645, 4, '2021-08-29 05:31:02', '2021-08-29 05:31:02'), (1646, 4, '2021-08-29 05:31:02', '2021-08-29 05:31:02'), (1647, 4, '2021-08-29 05:31:03', '2021-08-29 05:31:03'), (1648, 4, '2021-08-29 05:31:03', '2021-08-29 05:31:03'), (1649, 4, '2021-08-29 05:31:03', '2021-08-29 05:31:03'), (1650, 4, '2021-08-29 05:31:03', '2021-08-29 05:31:03'), (1651, 4, '2021-08-29 05:31:04', '2021-08-29 05:31:04'), (1652, 4, '2021-08-29 05:31:04', '2021-08-29 05:31:04'), (1653, 4, '2021-08-29 05:31:04', '2021-08-29 05:31:04'), (1654, 4, '2021-08-29 05:31:04', '2021-08-29 05:31:04'), (1655, 4, '2021-08-29 05:31:06', '2021-08-29 05:31:06'), (1656, 4, '2021-08-29 05:31:07', '2021-08-29 05:31:07'), (1657, 4, '2021-08-29 05:31:08', '2021-08-29 05:31:08'), (1658, 4, '2021-08-29 05:31:08', '2021-08-29 05:31:08'), (1659, 4, '2021-08-29 05:31:09', '2021-08-29 05:31:09'), (1660, 4, '2021-08-29 05:31:09', '2021-08-29 05:31:09'), (1661, 4, '2021-08-29 05:31:09', '2021-08-29 05:31:09'), (1662, 4, '2021-08-29 05:31:10', '2021-08-29 05:31:10'), (1663, 4, '2021-08-29 05:31:10', '2021-08-29 05:31:10'), (1664, 4, '2021-08-29 05:31:10', '2021-08-29 05:31:10'), (1665, 4, '2021-08-29 05:31:10', '2021-08-29 05:31:10'), (1666, 4, '2021-08-29 05:31:11', '2021-08-29 05:31:11'), (1667, 4, '2021-08-29 05:31:11', '2021-08-29 05:31:11'), (1668, 4, '2021-08-29 05:31:11', '2021-08-29 05:31:11'), (1669, 4, '2021-08-29 05:31:11', '2021-08-29 05:31:11'), (1670, 4, '2021-08-29 05:31:11', '2021-08-29 05:31:11'), (1671, 4, '2021-08-29 05:31:11', '2021-08-29 05:31:11'), (1672, 4, '2021-08-29 05:31:12', '2021-08-29 05:31:12'), (1673, 4, '2021-08-29 05:31:12', '2021-08-29 05:31:12'), (1674, 4, '2021-08-29 05:31:12', '2021-08-29 05:31:12'), (1675, 4, '2021-08-29 05:31:12', '2021-08-29 05:31:12'), (1676, 4, '2021-08-29 05:31:12', '2021-08-29 05:31:12'), (1677, 4, '2021-08-29 05:31:13', '2021-08-29 05:31:13'), (1678, 4, '2021-08-29 05:31:13', '2021-08-29 05:31:13'), (1679, 4, '2021-08-29 05:31:13', '2021-08-29 05:31:13'), (1680, 4, '2021-08-29 05:31:13', '2021-08-29 05:31:13'), (1681, 4, '2021-08-29 05:31:13', '2021-08-29 05:31:13'), (1682, 4, '2021-08-29 05:31:14', '2021-08-29 05:31:14'), (1683, 4, '2021-08-29 05:31:15', '2021-08-29 05:31:15'), (1684, 4, '2021-08-29 05:31:16', '2021-08-29 05:31:16'), (1685, 4, '2021-08-29 05:31:18', '2021-08-29 05:31:18'), (1686, 4, '2021-08-29 05:31:18', '2021-08-29 05:31:18'), (1687, 4, '2021-08-29 05:31:19', '2021-08-29 05:31:19'), (1688, 4, '2021-08-29 05:31:19', '2021-08-29 05:31:19'), (1689, 4, '2021-08-29 05:31:19', '2021-08-29 05:31:19'), (1690, 4, '2021-08-29 05:31:19', '2021-08-29 05:31:19'), (1691, 4, '2021-08-29 05:31:19', '2021-08-29 05:31:19'), (1692, 4, '2021-08-29 05:31:20', '2021-08-29 05:31:20'), (1693, 4, '2021-08-29 05:31:20', '2021-08-29 05:31:20'), (1694, 4, '2021-08-29 05:31:20', '2021-08-29 05:31:20'), (1695, 4, '2021-08-29 05:31:21', '2021-08-29 05:31:21'), (1696, 4, '2021-08-29 05:31:21', '2021-08-29 05:31:21'), (1697, 4, '2021-08-29 05:31:21', '2021-08-29 05:31:21'), (1698, 4, '2021-08-29 05:31:21', '2021-08-29 05:31:21'), (1699, 4, '2021-08-29 05:31:22', '2021-08-29 05:31:22'), (1700, 4, '2021-08-29 05:31:22', '2021-08-29 05:31:22'), (1701, 4, '2021-08-29 05:31:22', '2021-08-29 05:31:22'), (1702, 4, '2021-08-29 05:31:22', '2021-08-29 05:31:22'), (1703, 4, '2021-08-29 05:31:22', '2021-08-29 05:31:22'), (1704, 4, '2021-08-29 05:31:23', '2021-08-29 05:31:23'), (1705, 4, '2021-08-29 05:31:23', '2021-08-29 05:31:23'), (1706, 4, '2021-08-29 05:31:23', '2021-08-29 05:31:23'), (1707, 4, '2021-08-29 05:31:23', '2021-08-29 05:31:23'), (1708, 4, '2021-08-29 05:31:23', '2021-08-29 05:31:23'), (1709, 4, '2021-08-29 05:31:24', '2021-08-29 05:31:24'), (1710, 4, '2021-08-29 05:31:24', '2021-08-29 05:31:24'), (1711, 4, '2021-08-29 05:31:24', '2021-08-29 05:31:24'), (1712, 4, '2021-08-29 05:31:24', '2021-08-29 05:31:24'), (1713, 4, '2021-08-29 05:31:24', '2021-08-29 05:31:24'), (1714, 4, '2021-08-29 05:31:25', '2021-08-29 05:31:25'), (1715, 4, '2021-08-29 05:31:25', '2021-08-29 05:31:25'), (1716, 4, '2021-08-29 05:31:25', '2021-08-29 05:31:25'), (1717, 4, '2021-08-29 05:31:25', '2021-08-29 05:31:25'), (1718, 4, '2021-08-29 05:31:25', '2021-08-29 05:31:25'), (1719, 4, '2021-08-29 05:31:26', '2021-08-29 05:31:26'), (1720, 4, '2021-08-29 05:31:26', '2021-08-29 05:31:26'), (1721, 4, '2021-08-29 05:31:26', '2021-08-29 05:31:26'), (1722, 4, '2021-08-29 05:31:26', '2021-08-29 05:31:26'), (1723, 4, '2021-08-29 05:31:27', '2021-08-29 05:31:27'), (1724, 4, '2021-08-29 05:31:27', '2021-08-29 05:31:27'), (1725, 4, '2021-08-29 05:31:27', '2021-08-29 05:31:27'), (1726, 4, '2021-08-29 05:31:27', '2021-08-29 05:31:27'), (1727, 4, '2021-08-29 05:31:28', '2021-08-29 05:31:28'), (1728, 4, '2021-08-29 05:31:28', '2021-08-29 05:31:28'), (1729, 4, '2021-08-29 05:31:29', '2021-08-29 05:31:29'), (1730, 4, '2021-08-29 05:31:29', '2021-08-29 05:31:29'), (1731, 4, '2021-08-29 05:31:29', '2021-08-29 05:31:29'), (1732, 4, '2021-08-29 05:31:29', '2021-08-29 05:31:29'), (1733, 4, '2021-08-29 05:31:29', '2021-08-29 05:31:29'), (1734, 4, '2021-08-29 05:31:30', '2021-08-29 05:31:30'), (1735, 4, '2021-08-29 05:31:30', '2021-08-29 05:31:30'), (1736, 4, '2021-08-29 05:31:30', '2021-08-29 05:31:30'), (1737, 4, '2021-08-29 05:31:30', '2021-08-29 05:31:30'), (1738, 4, '2021-08-29 05:31:30', '2021-08-29 05:31:30'), (1739, 4, '2021-08-30 05:31:37', '2021-08-30 05:31:37'), (1740, 4, '2021-08-30 05:31:38', '2021-08-30 05:31:38'), (1741, 4, '2021-08-30 05:31:38', '2021-08-30 05:31:38'), (1742, 4, '2021-08-30 05:31:38', '2021-08-30 05:31:38'), (1743, 4, '2021-08-30 05:31:38', '2021-08-30 05:31:38'), (1744, 4, '2021-08-30 05:31:39', '2021-08-30 05:31:39'), (1745, 4, '2021-08-30 05:31:39', '2021-08-30 05:31:39'), (1746, 4, '2021-08-30 05:31:39', '2021-08-30 05:31:39'), (1747, 4, '2021-08-30 05:31:39', '2021-08-30 05:31:39'), (1748, 4, '2021-08-30 05:31:39', '2021-08-30 05:31:39'), (1749, 4, '2021-08-30 05:31:39', '2021-08-30 05:31:39'), (1750, 4, '2021-08-30 05:31:40', '2021-08-30 05:31:40'), (1751, 4, '2021-08-30 05:31:40', '2021-08-30 05:31:40'), (1752, 4, '2021-08-30 05:31:40', '2021-08-30 05:31:40'), (1753, 4, '2021-08-30 05:31:40', '2021-08-30 05:31:40'), (1754, 4, '2021-08-30 05:31:40', '2021-08-30 05:31:40'), (1755, 4, '2021-08-30 05:31:41', '2021-08-30 05:31:41'), (1756, 4, '2021-08-30 05:31:41', '2021-08-30 05:31:41'), (1757, 4, '2021-08-30 05:31:41', '2021-08-30 05:31:41'), (1758, 4, '2021-08-30 05:31:41', '2021-08-30 05:31:41'), (1759, 4, '2021-08-30 05:31:41', '2021-08-30 05:31:41'), (1760, 4, '2021-08-30 05:31:42', '2021-08-30 05:31:42'), (1761, 4, '2021-08-30 05:31:42', '2021-08-30 05:31:42'), (1762, 4, '2021-08-30 05:31:42', '2021-08-30 05:31:42'), (1763, 4, '2021-08-30 05:31:42', '2021-08-30 05:31:42'), (1764, 4, '2021-08-30 05:31:42', '2021-08-30 05:31:42'), (1765, 4, '2021-08-30 05:31:43', '2021-08-30 05:31:43'), (1766, 4, '2021-08-30 05:31:43', '2021-08-30 05:31:43'), (1767, 4, '2021-08-30 05:31:43', '2021-08-30 05:31:43'), (1768, 4, '2021-08-30 05:31:43', '2021-08-30 05:31:43'), (1769, 4, '2021-08-30 05:31:44', '2021-08-30 05:31:44'), (1770, 4, '2021-08-30 05:31:44', '2021-08-30 05:31:44'), (1771, 4, '2021-08-30 05:31:44', '2021-08-30 05:31:44'), (1772, 4, '2021-08-30 05:31:44', '2021-08-30 05:31:44'), (1773, 4, '2021-08-30 05:31:45', '2021-08-30 05:31:45'), (1774, 4, '2021-08-30 05:31:45', '2021-08-30 05:31:45'), (1775, 4, '2021-08-30 05:31:45', '2021-08-30 05:31:45'), (1776, 4, '2021-08-30 05:31:45', '2021-08-30 05:31:45'), (1777, 4, '2021-08-30 05:31:46', '2021-08-30 05:31:46'), (1778, 4, '2021-08-30 05:31:46', '2021-08-30 05:31:46'), (1779, 4, '2021-08-30 05:31:46', '2021-08-30 05:31:46'), (1780, 4, '2021-08-30 05:31:46', '2021-08-30 05:31:46'), (1781, 4, '2021-08-30 05:31:47', '2021-08-30 05:31:47'), (1782, 4, '2021-08-30 05:31:47', '2021-08-30 05:31:47'), (1783, 4, '2021-08-30 05:31:47', '2021-08-30 05:31:47'), (1784, 4, '2021-08-30 05:31:47', '2021-08-30 05:31:47'), (1785, 4, '2021-08-30 05:31:47', '2021-08-30 05:31:47'), (1786, 4, '2021-08-30 05:31:48', '2021-08-30 05:31:48'), (1787, 4, '2021-08-30 05:31:48', '2021-08-30 05:31:48'), (1788, 4, '2021-08-30 05:31:48', '2021-08-30 05:31:48'), (1789, 4, '2021-08-30 05:31:49', '2021-08-30 05:31:49'), (1790, 4, '2021-08-30 05:31:49', '2021-08-30 05:31:49'), (1791, 4, '2021-08-30 05:31:50', '2021-08-30 05:31:50'), (1792, 4, '2021-08-30 05:31:50', '2021-08-30 05:31:50'), (1793, 4, '2021-08-30 05:31:50', '2021-08-30 05:31:50'), (1794, 4, '2021-08-30 05:31:50', '2021-08-30 05:31:50'), (1795, 4, '2021-08-30 05:31:50', '2021-08-30 05:31:50'), (1796, 4, '2021-08-30 05:31:51', '2021-08-30 05:31:51'), (1797, 4, '2021-08-30 05:31:51', '2021-08-30 05:31:51'), (1798, 4, '2021-08-30 05:31:51', '2021-08-30 05:31:51'), (1799, 4, '2021-08-30 05:31:51', '2021-08-30 05:31:51'), (1800, 4, '2021-08-30 05:31:52', '2021-08-30 05:31:52'), (1801, 4, '2021-08-30 05:31:52', '2021-08-30 05:31:52'), (1802, 4, '2021-08-30 05:31:52', '2021-08-30 05:31:52'), (1803, 4, '2021-08-30 05:31:52', '2021-08-30 05:31:52'), (1804, 4, '2021-08-30 05:31:52', '2021-08-30 05:31:52'), (1805, 4, '2021-08-30 05:31:53', '2021-08-30 05:31:53'), (1806, 4, '2021-08-30 05:31:53', '2021-08-30 05:31:53'), (1807, 4, '2021-08-30 05:31:53', '2021-08-30 05:31:53'), (1808, 4, '2021-08-30 05:31:53', '2021-08-30 05:31:53'), (1809, 4, '2021-08-30 05:31:53', '2021-08-30 05:31:53'), (1810, 4, '2021-08-30 05:31:54', '2021-08-30 05:31:54'), (1811, 4, '2021-08-30 05:31:54', '2021-08-30 05:31:54'), (1812, 4, '2021-08-30 05:31:54', '2021-08-30 05:31:54'), (1813, 4, '2021-08-30 05:31:54', '2021-08-30 05:31:54'), (1814, 4, '2021-08-30 05:31:55', '2021-08-30 05:31:55'), (1815, 4, '2021-08-30 05:31:55', '2021-08-30 05:31:55'), (1816, 4, '2021-08-30 05:31:55', '2021-08-30 05:31:55'), (1817, 4, '2021-08-30 05:31:55', '2021-08-30 05:31:55'), (1818, 4, '2021-08-30 05:31:55', '2021-08-30 05:31:55'), (1819, 4, '2021-08-30 05:31:56', '2021-08-30 05:31:56'), (1820, 4, '2021-08-30 05:31:56', '2021-08-30 05:31:56'), (1821, 4, '2021-08-30 05:31:56', '2021-08-30 05:31:56'), (1822, 4, '2021-08-30 05:31:56', '2021-08-30 05:31:56'), (1823, 4, '2021-08-30 05:31:57', '2021-08-30 05:31:57'), (1824, 4, '2021-08-30 05:31:57', '2021-08-30 05:31:57'), (1825, 4, '2021-08-30 05:31:57', '2021-08-30 05:31:57'), (1826, 4, '2021-08-30 05:31:58', '2021-08-30 05:31:58'), (1827, 4, '2021-08-30 05:31:58', '2021-08-30 05:31:58'), (1828, 4, '2021-08-30 05:31:58', '2021-08-30 05:31:58'), (1829, 4, '2021-08-30 05:31:58', '2021-08-30 05:31:58'), (1830, 4, '2021-08-30 05:31:59', '2021-08-30 05:31:59'), (1831, 4, '2021-08-30 05:31:59', '2021-08-30 05:31:59'), (1832, 4, '2021-08-30 05:31:59', '2021-08-30 05:31:59'), (1833, 4, '2021-08-30 05:31:59', '2021-08-30 05:31:59'), (1834, 4, '2021-08-30 05:31:59', '2021-08-30 05:31:59'), (1835, 4, '2021-08-30 05:32:00', '2021-08-30 05:32:00'), (1836, 4, '2021-08-30 05:32:00', '2021-08-30 05:32:00'), (1837, 4, '2021-08-30 05:32:00', '2021-08-30 05:32:00'), (1838, 4, '2021-08-30 05:32:00', '2021-08-30 05:32:00'), (1839, 4, '2021-08-30 05:32:01', '2021-08-30 05:32:01'), (1840, 4, '2021-08-30 05:32:01', '2021-08-30 05:32:01'), (1841, 4, '2021-08-30 05:32:01', '2021-08-30 05:32:01'), (1842, 4, '2021-08-30 05:32:01', '2021-08-30 05:32:01'), (1843, 4, '2021-08-30 05:32:05', '2021-08-30 05:32:05'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (1844, 4, '2021-08-30 05:32:05', '2021-08-30 05:32:05'), (1845, 4, '2021-08-30 05:32:05', '2021-08-30 05:32:05'), (1846, 4, '2021-08-30 05:32:06', '2021-08-30 05:32:06'), (1847, 4, '2021-08-30 05:32:06', '2021-08-30 05:32:06'), (1848, 4, '2021-08-30 05:32:06', '2021-08-30 05:32:06'), (1849, 4, '2021-08-30 05:32:07', '2021-08-30 05:32:07'), (1850, 4, '2021-08-30 05:32:07', '2021-08-30 05:32:07'), (1851, 4, '2021-08-30 05:32:07', '2021-08-30 05:32:07'), (1852, 4, '2021-08-30 05:32:07', '2021-08-30 05:32:07'), (1853, 4, '2021-08-30 05:32:08', '2021-08-30 05:32:08'), (1854, 4, '2021-08-30 05:32:13', '2021-08-30 05:32:13'), (1855, 4, '2021-08-30 05:32:18', '2021-08-30 05:32:18'), (1856, 4, '2021-08-30 05:32:20', '2021-08-30 05:32:20'), (1857, 4, '2021-08-30 05:32:21', '2021-08-30 05:32:21'), (1858, 4, '2021-08-30 05:32:21', '2021-08-30 05:32:21'), (1859, 4, '2021-08-30 05:32:22', '2021-08-30 05:32:22'), (1860, 4, '2021-08-30 05:32:23', '2021-08-30 05:32:23'), (1861, 4, '2021-08-30 05:32:23', '2021-08-30 05:32:23'), (1862, 4, '2021-08-30 05:32:24', '2021-08-30 05:32:24'), (1863, 4, '2021-08-30 05:32:24', '2021-08-30 05:32:24'), (1864, 4, '2021-08-30 05:32:24', '2021-08-30 05:32:24'), (1865, 4, '2021-08-30 05:32:24', '2021-08-30 05:32:24'), (1866, 4, '2021-08-30 05:32:24', '2021-08-30 05:32:24'), (1867, 4, '2021-08-30 05:32:25', '2021-08-30 05:32:25'), (1868, 4, '2021-08-30 05:32:25', '2021-08-30 05:32:25'), (1869, 4, '2021-08-30 05:32:25', '2021-08-30 05:32:25'), (1870, 4, '2021-08-30 05:32:25', '2021-08-30 05:32:25'), (1871, 4, '2021-08-30 05:32:26', '2021-08-30 05:32:26'), (1872, 4, '2021-08-30 05:32:29', '2021-08-30 05:32:29'), (1873, 4, '2021-08-30 05:32:29', '2021-08-30 05:32:29'), (1874, 4, '2021-08-30 05:32:29', '2021-08-30 05:32:29'), (1875, 4, '2021-08-30 05:32:29', '2021-08-30 05:32:29'), (1876, 4, '2021-08-30 05:32:30', '2021-08-30 05:32:30'), (1877, 4, '2021-08-30 05:32:30', '2021-08-30 05:32:30'), (1878, 4, '2021-08-30 05:32:30', '2021-08-30 05:32:30'), (1879, 4, '2021-08-30 05:32:30', '2021-08-30 05:32:30'), (1880, 4, '2021-08-30 05:32:31', '2021-08-30 05:32:31'), (1881, 4, '2021-08-30 05:32:31', '2021-08-30 05:32:31'), (1882, 4, '2021-08-30 05:32:31', '2021-08-30 05:32:31'), (1883, 4, '2021-08-30 05:32:31', '2021-08-30 05:32:31'), (1884, 4, '2021-08-30 05:32:32', '2021-08-30 05:32:32'), (1885, 4, '2021-08-30 05:32:32', '2021-08-30 05:32:32'), (1886, 4, '2021-08-30 05:32:32', '2021-08-30 05:32:32'), (1887, 4, '2021-08-30 05:32:32', '2021-08-30 05:32:32'), (1888, 4, '2021-08-30 05:32:32', '2021-08-30 05:32:32'), (1889, 4, '2021-08-30 05:32:32', '2021-08-30 05:32:32'), (1890, 4, '2021-08-30 05:32:33', '2021-08-30 05:32:33'), (1891, 4, '2021-08-30 05:32:33', '2021-08-30 05:32:33'), (1892, 4, '2021-08-30 05:32:33', '2021-08-30 05:32:33'), (1893, 4, '2021-08-30 05:32:34', '2021-08-30 05:32:34'), (1894, 4, '2021-08-30 05:32:34', '2021-08-30 05:32:34'), (1895, 4, '2021-08-30 05:32:35', '2021-08-30 05:32:35'), (1896, 4, '2021-08-30 05:32:35', '2021-08-30 05:32:35'), (1897, 4, '2021-08-30 05:32:35', '2021-08-30 05:32:35'), (1898, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1899, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1900, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1901, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1902, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1903, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1904, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1905, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1906, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1907, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1908, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1909, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1910, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1911, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1912, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1913, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1914, 4, '2021-08-30 05:32:36', '2021-08-30 05:32:36'), (1915, 4, '2021-08-30 05:32:37', '2021-08-30 05:32:37'), (1916, 4, '2021-08-30 05:32:37', '2021-08-30 05:32:37'), (1917, 4, '2021-08-30 05:32:38', '2021-08-30 05:32:38'), (1918, 4, '2021-08-30 05:32:38', '2021-08-30 05:32:38'), (1919, 4, '2021-08-30 05:32:38', '2021-08-30 05:32:38'), (1920, 4, '2021-08-30 05:32:39', '2021-08-30 05:32:39'), (1921, 4, '2021-08-30 05:32:41', '2021-08-30 05:32:41'), (1922, 4, '2021-08-30 05:32:41', '2021-08-30 05:32:41'), (1923, 4, '2021-08-30 05:32:42', '2021-08-30 05:32:42'), (1924, 4, '2021-08-30 05:32:42', '2021-08-30 05:32:42'), (1925, 4, '2021-08-30 05:32:42', '2021-08-30 05:32:42'), (1926, 4, '2021-08-30 05:32:42', '2021-08-30 05:32:42'), (1927, 4, '2021-08-30 05:33:27', '2021-08-30 05:33:27'), (1928, 4, '2021-08-30 05:33:28', '2021-08-30 05:33:28'), (1929, 4, '2021-08-30 05:33:28', '2021-08-30 05:33:28'), (1930, 4, '2021-08-30 05:33:29', '2021-08-30 05:33:29'), (1931, 4, '2021-08-30 05:33:30', '2021-08-30 05:33:30'), (1932, 4, '2021-08-30 05:33:30', '2021-08-30 05:33:30'), (1933, 4, '2021-08-30 05:33:30', '2021-08-30 05:33:30'), (1934, 4, '2021-08-30 05:33:30', '2021-08-30 05:33:30'), (1935, 4, '2021-08-30 05:33:30', '2021-08-30 05:33:30'), (1936, 4, '2021-08-30 05:33:31', '2021-08-30 05:33:31'), (1937, 4, '2021-08-30 05:33:31', '2021-08-30 05:33:31'), (1938, 4, '2021-08-30 05:33:31', '2021-08-30 05:33:31'), (1939, 4, '2021-08-30 05:33:31', '2021-08-30 05:33:31'), (1940, 4, '2021-08-30 05:33:31', '2021-08-30 05:33:31'), (1941, 4, '2021-08-30 05:33:31', '2021-08-30 05:33:31'), (1942, 4, '2021-08-30 05:33:32', '2021-08-30 05:33:32'), (1943, 4, '2021-08-30 05:33:32', '2021-08-30 05:33:32'), (1944, 4, '2021-08-30 05:33:32', '2021-08-30 05:33:32'), (1945, 4, '2021-08-30 05:33:32', '2021-08-30 05:33:32'), (1946, 4, '2021-08-30 05:33:32', '2021-08-30 05:33:32'), (1947, 4, '2021-08-30 05:33:33', '2021-08-30 05:33:33'), (1948, 4, '2021-08-30 05:33:33', '2021-08-30 05:33:33'), (1949, 4, '2021-08-30 05:33:33', '2021-08-30 05:33:33'), (1950, 4, '2021-08-30 05:33:33', '2021-08-30 05:33:33'), (1951, 4, '2021-08-30 05:33:34', '2021-08-30 05:33:34'), (1952, 4, '2021-08-30 05:33:34', '2021-08-30 05:33:34'), (1953, 4, '2021-08-30 05:33:34', '2021-08-30 05:33:34'), (1954, 4, '2021-08-30 05:33:34', '2021-08-30 05:33:34'), (1955, 4, '2021-08-30 05:33:34', '2021-08-30 05:33:34'), (1956, 4, '2021-08-30 05:33:36', '2021-08-30 05:33:36'), (1957, 4, '2021-08-30 05:34:02', '2021-08-30 05:34:02'), (1958, 4, '2021-08-30 05:34:02', '2021-08-30 05:34:02'), (1959, 4, '2021-08-30 05:34:02', '2021-08-30 05:34:02'), (1960, 4, '2021-08-30 05:34:02', '2021-08-30 05:34:02'), (1961, 4, '2021-08-30 05:34:02', '2021-08-30 05:34:02'), (1962, 4, '2021-08-30 05:34:03', '2021-08-30 05:34:03'), (1963, 4, '2021-08-30 05:34:03', '2021-08-30 05:34:03'), (1964, 4, '2021-08-30 05:34:03', '2021-08-30 05:34:03'), (1965, 4, '2021-08-30 05:34:04', '2021-08-30 05:34:04'), (1966, 4, '2021-08-31 05:34:22', '2021-08-31 05:34:22'), (1967, 4, '2021-08-31 05:34:24', '2021-08-31 05:34:24'), (1968, 4, '2021-08-31 05:34:25', '2021-08-31 05:34:25'), (1969, 4, '2021-08-31 05:34:25', '2021-08-31 05:34:25'), (1970, 4, '2021-08-31 05:34:25', '2021-08-31 05:34:25'), (1971, 4, '2021-08-31 05:34:26', '2021-08-31 05:34:26'), (1972, 4, '2021-08-31 05:34:26', '2021-08-31 05:34:26'), (1973, 4, '2021-08-31 05:34:26', '2021-08-31 05:34:26'), (1974, 4, '2021-08-31 05:34:26', '2021-08-31 05:34:26'), (1975, 4, '2021-08-31 05:34:27', '2021-08-31 05:34:27'), (1976, 4, '2021-08-31 05:34:27', '2021-08-31 05:34:27'), (1977, 4, '2021-08-31 05:34:27', '2021-08-31 05:34:27'), (1978, 4, '2021-08-31 05:34:27', '2021-08-31 05:34:27'), (1979, 4, '2021-08-31 05:34:28', '2021-08-31 05:34:28'), (1980, 4, '2021-08-31 05:34:28', '2021-08-31 05:34:28'), (1981, 4, '2021-08-31 05:34:28', '2021-08-31 05:34:28'), (1982, 4, '2021-08-31 05:34:28', '2021-08-31 05:34:28'), (1983, 4, '2021-08-31 05:34:28', '2021-08-31 05:34:28'), (1984, 4, '2021-08-31 05:34:29', '2021-08-31 05:34:29'), (1985, 4, '2021-08-31 05:34:29', '2021-08-31 05:34:29'), (1986, 4, '2021-08-31 05:34:29', '2021-08-31 05:34:29'), (1987, 4, '2021-08-31 05:34:29', '2021-08-31 05:34:29'), (1988, 4, '2021-08-31 05:34:30', '2021-08-31 05:34:30'), (1989, 4, '2021-08-31 05:34:30', '2021-08-31 05:34:30'), (1990, 4, '2021-08-31 05:34:30', '2021-08-31 05:34:30'), (1991, 4, '2021-08-31 05:34:31', '2021-08-31 05:34:31'), (1992, 4, '2021-08-31 05:34:31', '2021-08-31 05:34:31'), (1993, 4, '2021-08-31 05:34:31', '2021-08-31 05:34:31'), (1994, 4, '2021-08-31 05:34:31', '2021-08-31 05:34:31'), (1995, 4, '2021-08-31 05:34:32', '2021-08-31 05:34:32'), (1996, 4, '2021-08-31 05:34:34', '2021-08-31 05:34:34'), (1997, 4, '2021-08-31 05:34:34', '2021-08-31 05:34:34'), (1998, 4, '2021-08-31 05:34:34', '2021-08-31 05:34:34'), (1999, 4, '2021-08-31 05:34:35', '2021-08-31 05:34:35'), (2000, 4, '2021-08-31 05:34:35', '2021-08-31 05:34:35'), (2001, 4, '2021-08-31 05:34:35', '2021-08-31 05:34:35'), (2002, 4, '2021-08-31 05:34:35', '2021-08-31 05:34:35'), (2003, 4, '2021-08-31 05:34:35', '2021-08-31 05:34:35'), (2004, 4, '2021-08-31 05:34:36', '2021-08-31 05:34:36'), (2005, 4, '2021-08-31 05:34:36', '2021-08-31 05:34:36'), (2006, 4, '2021-08-31 05:34:39', '2021-08-31 05:34:39'), (2007, 4, '2021-08-31 05:34:39', '2021-08-31 05:34:39'), (2008, 4, '2021-08-31 05:34:40', '2021-08-31 05:34:40'), (2009, 4, '2021-08-31 05:34:40', '2021-08-31 05:34:40'), (2010, 4, '2021-08-31 05:34:40', '2021-08-31 05:34:40'), (2011, 4, '2021-08-31 05:34:41', '2021-08-31 05:34:41'), (2012, 4, '2021-08-31 05:34:41', '2021-08-31 05:34:41'), (2013, 4, '2021-08-31 05:34:41', '2021-08-31 05:34:41'), (2014, 4, '2021-08-31 05:34:42', '2021-08-31 05:34:42'), (2015, 4, '2021-08-31 05:34:42', '2021-08-31 05:34:42'), (2016, 4, '2021-08-31 05:34:42', '2021-08-31 05:34:42'), (2017, 4, '2021-08-31 05:34:43', '2021-08-31 05:34:43'), (2018, 4, '2021-08-31 05:34:43', '2021-08-31 05:34:43'), (2019, 4, '2021-08-31 05:34:43', '2021-08-31 05:34:43'), (2020, 4, '2021-08-31 05:34:43', '2021-08-31 05:34:43'), (2021, 4, '2021-08-31 05:34:44', '2021-08-31 05:34:44'), (2022, 4, '2021-08-31 05:34:44', '2021-08-31 05:34:44'), (2023, 4, '2021-08-31 05:34:44', '2021-08-31 05:34:44'), (2024, 4, '2021-08-31 05:34:44', '2021-08-31 05:34:44'), (2025, 4, '2021-08-31 05:34:44', '2021-08-31 05:34:44'), (2026, 4, '2021-08-31 05:34:45', '2021-08-31 05:34:45'), (2027, 4, '2021-08-31 05:34:45', '2021-08-31 05:34:45'), (2028, 4, '2021-08-31 05:34:45', '2021-08-31 05:34:45'), (2029, 4, '2021-08-31 05:34:45', '2021-08-31 05:34:45'), (2030, 4, '2021-08-31 05:34:46', '2021-08-31 05:34:46'), (2031, 4, '2021-08-31 05:34:46', '2021-08-31 05:34:46'), (2032, 4, '2021-08-31 05:34:46', '2021-08-31 05:34:46'), (2033, 4, '2021-08-31 05:34:47', '2021-08-31 05:34:47'), (2034, 4, '2021-08-31 05:34:47', '2021-08-31 05:34:47'), (2035, 4, '2021-08-31 05:34:47', '2021-08-31 05:34:47'), (2036, 4, '2021-08-31 05:34:47', '2021-08-31 05:34:47'), (2037, 4, '2021-08-31 05:34:47', '2021-08-31 05:34:47'), (2038, 4, '2021-08-31 05:34:48', '2021-08-31 05:34:48'), (2039, 4, '2021-08-31 05:34:48', '2021-08-31 05:34:48'), (2040, 4, '2021-08-31 05:34:48', '2021-08-31 05:34:48'), (2041, 4, '2021-08-31 05:34:49', '2021-08-31 05:34:49'), (2042, 4, '2021-08-31 05:34:49', '2021-08-31 05:34:49'), (2043, 4, '2021-08-31 05:34:49', '2021-08-31 05:34:49'), (2044, 4, '2021-08-31 05:34:50', '2021-08-31 05:34:50'), (2045, 4, '2021-08-31 05:34:50', '2021-08-31 05:34:50'), (2046, 4, '2021-08-31 05:34:50', '2021-08-31 05:34:50'), (2047, 4, '2021-08-31 05:34:50', '2021-08-31 05:34:50'), (2048, 4, '2021-08-31 05:34:51', '2021-08-31 05:34:51'), (2049, 4, '2021-08-31 05:34:51', '2021-08-31 05:34:51'), (2050, 4, '2021-08-31 05:34:51', '2021-08-31 05:34:51'), (2051, 4, '2021-08-31 05:34:51', '2021-08-31 05:34:51'), (2052, 4, '2021-08-31 05:34:52', '2021-08-31 05:34:52'), (2053, 4, '2021-08-31 05:34:52', '2021-08-31 05:34:52'), (2054, 4, '2021-08-31 05:34:52', '2021-08-31 05:34:52'), (2055, 4, '2021-08-31 05:34:53', '2021-08-31 05:34:53'), (2056, 4, '2021-08-31 05:34:53', '2021-08-31 05:34:53'), (2057, 4, '2021-08-31 05:34:53', '2021-08-31 05:34:53'), (2058, 4, '2021-08-31 05:34:53', '2021-08-31 05:34:53'), (2059, 4, '2021-08-31 05:34:53', '2021-08-31 05:34:53'), (2060, 4, '2021-08-31 05:34:54', '2021-08-31 05:34:54'), (2061, 4, '2021-08-31 05:34:54', '2021-08-31 05:34:54'), (2062, 4, '2021-08-31 05:34:54', '2021-08-31 05:34:54'), (2063, 4, '2021-08-31 05:34:55', '2021-08-31 05:34:55'), (2064, 4, '2021-08-31 05:34:55', '2021-08-31 05:34:55'), (2065, 4, '2021-08-31 05:34:56', '2021-08-31 05:34:56'), (2066, 4, '2021-08-31 05:34:56', '2021-08-31 05:34:56'), (2067, 4, '2021-08-31 05:34:56', '2021-08-31 05:34:56'), (2068, 4, '2021-08-31 05:34:56', '2021-08-31 05:34:56'), (2069, 4, '2021-08-31 05:34:57', '2021-08-31 05:34:57'), (2070, 4, '2021-08-31 05:34:57', '2021-08-31 05:34:57'), (2071, 4, '2021-08-31 05:34:57', '2021-08-31 05:34:57'), (2072, 4, '2021-08-31 05:34:58', '2021-08-31 05:34:58'), (2073, 4, '2021-08-31 05:34:58', '2021-08-31 05:34:58'), (2074, 4, '2021-08-31 05:34:58', '2021-08-31 05:34:58'), (2075, 4, '2021-08-31 05:34:59', '2021-08-31 05:34:59'), (2076, 4, '2021-08-31 05:34:59', '2021-08-31 05:34:59'), (2077, 4, '2021-08-31 05:34:59', '2021-08-31 05:34:59'), (2078, 4, '2021-08-31 05:34:59', '2021-08-31 05:34:59'), (2079, 4, '2021-08-31 05:35:00', '2021-08-31 05:35:00'), (2080, 4, '2021-08-31 05:35:01', '2021-08-31 05:35:01'), (2081, 4, '2021-08-31 05:35:01', '2021-08-31 05:35:01'), (2082, 4, '2021-08-31 05:35:03', '2021-08-31 05:35:03'), (2083, 4, '2021-08-31 05:35:05', '2021-08-31 05:35:05'), (2084, 4, '2021-08-31 05:35:05', '2021-08-31 05:35:05'), (2085, 4, '2021-08-31 05:35:05', '2021-08-31 05:35:05'), (2086, 4, '2021-08-31 05:35:06', '2021-08-31 05:35:06'), (2087, 4, '2021-08-31 05:35:06', '2021-08-31 05:35:06'), (2088, 4, '2021-08-31 05:35:06', '2021-08-31 05:35:06'), (2089, 4, '2021-08-31 05:35:06', '2021-08-31 05:35:06'), (2090, 4, '2021-08-31 05:35:06', '2021-08-31 05:35:06'), (2091, 4, '2021-08-31 05:35:07', '2021-08-31 05:35:07'), (2092, 4, '2021-08-31 05:35:07', '2021-08-31 05:35:07'), (2093, 4, '2021-08-31 05:35:07', '2021-08-31 05:35:07'), (2094, 4, '2021-08-31 05:35:08', '2021-08-31 05:35:08'), (2095, 4, '2021-08-31 05:35:08', '2021-08-31 05:35:08'), (2096, 4, '2021-08-31 05:35:08', '2021-08-31 05:35:08'), (2097, 4, '2021-08-31 05:35:08', '2021-08-31 05:35:08'), (2098, 4, '2021-08-31 05:35:09', '2021-08-31 05:35:09'), (2099, 4, '2021-08-31 05:35:09', '2021-08-31 05:35:09'), (2100, 4, '2021-08-31 05:35:09', '2021-08-31 05:35:09'), (2101, 4, '2021-08-31 05:35:09', '2021-08-31 05:35:09'), (2102, 4, '2021-08-31 05:35:10', '2021-08-31 05:35:10'), (2103, 4, '2021-08-31 05:35:10', '2021-08-31 05:35:10'), (2104, 4, '2021-08-31 05:35:10', '2021-08-31 05:35:10'), (2105, 4, '2021-08-31 05:35:11', '2021-08-31 05:35:11'), (2106, 4, '2021-08-31 05:35:11', '2021-08-31 05:35:11'), (2107, 4, '2021-08-31 05:35:11', '2021-08-31 05:35:11'), (2108, 4, '2021-08-31 05:35:11', '2021-08-31 05:35:11'), (2109, 4, '2021-08-31 05:35:12', '2021-08-31 05:35:12'), (2110, 4, '2021-08-31 05:35:12', '2021-08-31 05:35:12'), (2111, 4, '2021-08-31 05:35:12', '2021-08-31 05:35:12'), (2112, 4, '2021-08-31 05:35:12', '2021-08-31 05:35:12'), (2113, 4, '2021-08-31 05:35:13', '2021-08-31 05:35:13'), (2114, 4, '2021-08-31 05:35:13', '2021-08-31 05:35:13'), (2115, 4, '2021-08-31 05:35:13', '2021-08-31 05:35:13'), (2116, 4, '2021-08-31 05:35:14', '2021-08-31 05:35:14'), (2117, 4, '2021-08-31 05:35:14', '2021-08-31 05:35:14'), (2118, 4, '2021-08-31 05:35:14', '2021-08-31 05:35:14'), (2119, 4, '2021-08-31 05:35:14', '2021-08-31 05:35:14'), (2120, 4, '2021-08-31 05:35:14', '2021-08-31 05:35:14'), (2121, 4, '2021-08-31 05:35:15', '2021-08-31 05:35:15'), (2122, 4, '2021-08-31 05:35:15', '2021-08-31 05:35:15'), (2123, 4, '2021-08-31 05:35:15', '2021-08-31 05:35:15'), (2124, 4, '2021-08-31 05:35:15', '2021-08-31 05:35:15'), (2125, 4, '2021-08-31 05:35:16', '2021-08-31 05:35:16'), (2126, 4, '2021-08-31 05:35:16', '2021-08-31 05:35:16'), (2127, 4, '2021-08-31 05:35:16', '2021-08-31 05:35:16'), (2128, 4, '2021-08-31 05:35:16', '2021-08-31 05:35:16'), (2129, 4, '2021-08-31 05:35:17', '2021-08-31 05:35:17'), (2130, 4, '2021-08-31 05:35:17', '2021-08-31 05:35:17'), (2131, 4, '2021-08-31 05:35:17', '2021-08-31 05:35:17'), (2132, 4, '2021-08-31 05:35:18', '2021-08-31 05:35:18'), (2133, 4, '2021-08-31 05:35:18', '2021-08-31 05:35:18'), (2134, 4, '2021-08-31 05:35:18', '2021-08-31 05:35:18'), (2135, 4, '2021-08-31 05:35:19', '2021-08-31 05:35:19'), (2136, 4, '2021-08-31 05:35:19', '2021-08-31 05:35:19'), (2137, 4, '2021-08-31 05:35:19', '2021-08-31 05:35:19'), (2138, 4, '2021-08-31 05:35:20', '2021-08-31 05:35:20'), (2139, 4, '2021-08-31 05:35:20', '2021-08-31 05:35:20'), (2140, 4, '2021-08-31 05:35:20', '2021-08-31 05:35:20'), (2141, 4, '2021-08-31 05:35:20', '2021-08-31 05:35:20'), (2142, 4, '2021-08-31 05:35:20', '2021-08-31 05:35:20'), (2143, 4, '2021-08-31 05:35:21', '2021-08-31 05:35:21'), (2144, 4, '2021-08-31 05:35:21', '2021-08-31 05:35:21'), (2145, 4, '2021-08-31 05:35:21', '2021-08-31 05:35:21'), (2146, 4, '2021-08-31 05:35:21', '2021-08-31 05:35:21'), (2147, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2148, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2149, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2150, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2151, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2152, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2153, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2154, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2155, 4, '2021-08-31 05:35:22', '2021-08-31 05:35:22'), (2156, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2157, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2158, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2159, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2160, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2161, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2162, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2163, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2164, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2165, 4, '2021-08-31 05:35:23', '2021-08-31 05:35:23'), (2166, 4, '2021-08-31 05:35:24', '2021-08-31 05:35:24'), (2167, 4, '2021-08-31 05:35:24', '2021-08-31 05:35:24'), (2168, 4, '2021-08-31 05:35:24', '2021-08-31 05:35:24'), (2169, 4, '2021-08-31 05:35:24', '2021-08-31 05:35:24'), (2170, 4, '2021-08-31 05:35:24', '2021-08-31 05:35:24'), (2171, 4, '2021-08-31 05:35:25', '2021-08-31 05:35:25'), (2172, 4, '2021-08-31 05:35:25', '2021-08-31 05:35:25'), (2173, 4, '2021-08-31 05:35:25', '2021-08-31 05:35:25'), (2174, 4, '2021-08-31 05:35:26', '2021-08-31 05:35:26'), (2175, 4, '2021-08-31 05:35:26', '2021-08-31 05:35:26'), (2176, 4, '2021-08-31 05:35:26', '2021-08-31 05:35:26'), (2177, 4, '2021-08-31 05:35:26', '2021-08-31 05:35:26'), (2178, 4, '2021-08-31 05:35:26', '2021-08-31 05:35:26'), (2179, 4, '2021-08-31 05:35:27', '2021-08-31 05:35:27'), (2180, 4, '2021-08-31 05:35:27', '2021-08-31 05:35:27'), (2181, 4, '2021-08-31 05:35:27', '2021-08-31 05:35:27'), (2182, 4, '2021-08-31 05:35:27', '2021-08-31 05:35:27'), (2183, 4, '2021-08-31 05:35:27', '2021-08-31 05:35:27'), (2184, 4, '2021-08-31 05:35:28', '2021-08-31 05:35:28'), (2185, 4, '2021-08-31 05:35:28', '2021-08-31 05:35:28'), (2186, 4, '2021-08-31 05:35:28', '2021-08-31 05:35:28'), (2187, 4, '2021-08-31 05:35:28', '2021-08-31 05:35:28'), (2188, 4, '2021-08-31 05:35:28', '2021-08-31 05:35:28'), (2189, 4, '2021-08-31 05:35:29', '2021-08-31 05:35:29'), (2190, 4, '2021-08-31 05:35:29', '2021-08-31 05:35:29'), (2191, 4, '2021-08-31 05:35:29', '2021-08-31 05:35:29'), (2192, 4, '2021-08-31 05:35:29', '2021-08-31 05:35:29'), (2193, 4, '2021-08-31 05:35:30', '2021-08-31 05:35:30'), (2194, 4, '2021-08-31 05:35:30', '2021-08-31 05:35:30'), (2195, 4, '2021-08-31 05:35:30', '2021-08-31 05:35:30'), (2196, 4, '2021-08-31 05:35:30', '2021-08-31 05:35:30'), (2197, 4, '2021-08-31 05:35:31', '2021-08-31 05:35:31'), (2198, 4, '2021-08-31 05:35:31', '2021-08-31 05:35:31'), (2199, 4, '2021-08-31 05:35:33', '2021-08-31 05:35:33'), (2200, 4, '2021-08-31 05:35:33', '2021-08-31 05:35:33'), (2201, 4, '2021-08-31 05:35:33', '2021-08-31 05:35:33'), (2202, 4, '2021-08-31 05:35:34', '2021-08-31 05:35:34'), (2203, 4, '2021-08-31 05:35:35', '2021-08-31 05:35:35'), (2204, 4, '2021-08-31 05:35:35', '2021-08-31 05:35:35'), (2205, 4, '2021-08-31 05:35:35', '2021-08-31 05:35:35'), (2206, 4, '2021-08-31 05:35:35', '2021-08-31 05:35:35'), (2207, 4, '2021-08-31 05:35:35', '2021-08-31 05:35:35'), (2208, 4, '2021-08-31 05:35:36', '2021-08-31 05:35:36'), (2209, 4, '2021-08-31 05:35:36', '2021-08-31 05:35:36'), (2210, 4, '2021-08-31 05:35:36', '2021-08-31 05:35:36'), (2211, 4, '2021-08-31 05:35:36', '2021-08-31 05:35:36'), (2212, 4, '2021-08-31 05:35:37', '2021-08-31 05:35:37'), (2213, 4, '2021-08-31 05:35:37', '2021-08-31 05:35:37'), (2214, 4, '2021-08-31 05:35:37', '2021-08-31 05:35:37'), (2215, 4, '2021-08-31 05:35:37', '2021-08-31 05:35:37'), (2216, 4, '2021-08-31 05:35:38', '2021-08-31 05:35:38'), (2217, 4, '2021-08-31 05:35:38', '2021-08-31 05:35:38'), (2218, 4, '2021-08-31 05:35:39', '2021-08-31 05:35:39'), (2219, 4, '2021-08-31 05:35:39', '2021-08-31 05:35:39'), (2220, 4, '2021-08-31 05:35:39', '2021-08-31 05:35:39'), (2221, 4, '2021-08-31 05:35:39', '2021-08-31 05:35:39'), (2222, 4, '2021-08-31 05:35:40', '2021-08-31 05:35:40'), (2223, 4, '2021-08-31 05:35:40', '2021-08-31 05:35:40'), (2224, 4, '2021-08-31 05:35:40', '2021-08-31 05:35:40'), (2225, 4, '2021-08-31 05:35:41', '2021-08-31 05:35:41'), (2226, 4, '2021-08-31 05:35:41', '2021-08-31 05:35:41'), (2227, 4, '2021-08-31 05:35:41', '2021-08-31 05:35:41'), (2228, 4, '2021-08-31 05:35:41', '2021-08-31 05:35:41'), (2229, 4, '2021-08-31 05:35:42', '2021-08-31 05:35:42'), (2230, 4, '2021-08-31 05:35:42', '2021-08-31 05:35:42'), (2231, 4, '2021-08-31 05:35:42', '2021-08-31 05:35:42'), (2232, 4, '2021-08-31 05:35:42', '2021-08-31 05:35:42'), (2233, 4, '2021-08-31 05:35:43', '2021-08-31 05:35:43'), (2234, 4, '2021-08-31 05:35:43', '2021-08-31 05:35:43'), (2235, 4, '2021-08-31 05:35:43', '2021-08-31 05:35:43'), (2236, 4, '2021-08-31 05:35:43', '2021-08-31 05:35:43'), (2237, 4, '2021-08-31 05:35:44', '2021-08-31 05:35:44'), (2238, 4, '2021-08-31 05:35:44', '2021-08-31 05:35:44'), (2239, 4, '2021-08-31 05:35:45', '2021-08-31 05:35:45'), (2240, 4, '2021-08-31 05:35:45', '2021-08-31 05:35:45'), (2241, 4, '2021-08-31 05:35:45', '2021-08-31 05:35:45'), (2242, 4, '2021-08-31 05:35:45', '2021-08-31 05:35:45'), (2243, 4, '2021-08-31 05:35:46', '2021-08-31 05:35:46'), (2244, 4, '2021-08-31 05:35:46', '2021-08-31 05:35:46'), (2245, 4, '2021-08-31 05:35:46', '2021-08-31 05:35:46'), (2246, 4, '2021-08-31 05:35:46', '2021-08-31 05:35:46'), (2247, 4, '2021-08-31 05:35:46', '2021-08-31 05:35:46'), (2248, 4, '2021-08-31 05:35:47', '2021-08-31 05:35:47'), (2249, 4, '2021-08-31 05:35:47', '2021-08-31 05:35:47'), (2250, 4, '2021-08-31 05:35:47', '2021-08-31 05:35:47'), (2251, 4, '2021-08-31 05:35:47', '2021-08-31 05:35:47'), (2252, 4, '2021-08-31 05:35:48', '2021-08-31 05:35:48'), (2253, 4, '2021-08-31 05:35:48', '2021-08-31 05:35:48'), (2254, 4, '2021-08-31 05:35:48', '2021-08-31 05:35:48'), (2255, 4, '2021-08-31 05:35:48', '2021-08-31 05:35:48'), (2256, 4, '2021-08-31 05:35:49', '2021-08-31 05:35:49'), (2257, 4, '2021-08-31 05:35:50', '2021-08-31 05:35:50'), (2258, 4, '2021-08-31 05:35:51', '2021-08-31 05:35:51'), (2259, 4, '2021-08-31 05:35:51', '2021-08-31 05:35:51'), (2260, 4, '2021-08-31 05:35:51', '2021-08-31 05:35:51'), (2261, 4, '2021-08-31 05:35:51', '2021-08-31 05:35:51'), (2262, 4, '2021-08-31 05:35:52', '2021-08-31 05:35:52'), (2263, 4, '2021-08-31 05:35:52', '2021-08-31 05:35:52'), (2264, 4, '2021-08-31 05:35:53', '2021-08-31 05:35:53'), (2265, 4, '2021-08-31 05:35:53', '2021-08-31 05:35:53'), (2266, 4, '2021-08-31 05:35:54', '2021-08-31 05:35:54'), (2267, 4, '2021-08-31 05:35:54', '2021-08-31 05:35:54'), (2268, 4, '2021-08-31 05:35:55', '2021-08-31 05:35:55'), (2269, 4, '2021-08-31 05:35:55', '2021-08-31 05:35:55'), (2270, 4, '2021-08-31 05:35:55', '2021-08-31 05:35:55'), (2271, 4, '2021-08-31 05:35:56', '2021-08-31 05:35:56'), (2272, 4, '2021-08-31 05:35:56', '2021-08-31 05:35:56'), (2273, 4, '2021-08-31 05:35:56', '2021-08-31 05:35:56'), (2274, 4, '2021-08-31 05:35:56', '2021-08-31 05:35:56'), (2275, 4, '2021-08-31 05:35:57', '2021-08-31 05:35:57'), (2276, 4, '2021-08-31 05:35:57', '2021-08-31 05:35:57'), (2277, 4, '2021-08-31 05:35:57', '2021-08-31 05:35:57'), (2278, 4, '2021-08-31 05:35:57', '2021-08-31 05:35:57'), (2279, 4, '2021-08-31 05:35:58', '2021-08-31 05:35:58'), (2280, 4, '2021-08-31 05:35:58', '2021-08-31 05:35:58'), (2281, 4, '2021-08-31 05:35:58', '2021-08-31 05:35:58'), (2282, 4, '2021-08-31 05:35:58', '2021-08-31 05:35:58'), (2283, 4, '2021-08-31 05:35:59', '2021-08-31 05:35:59'), (2284, 4, '2021-08-31 05:35:59', '2021-08-31 05:35:59'), (2285, 4, '2021-08-31 05:35:59', '2021-08-31 05:35:59'), (2286, 4, '2021-08-31 05:36:00', '2021-08-31 05:36:00'), (2287, 4, '2021-08-31 05:36:00', '2021-08-31 05:36:00'), (2288, 4, '2021-08-31 05:36:00', '2021-08-31 05:36:00'), (2289, 4, '2021-08-31 05:36:00', '2021-08-31 05:36:00'), (2290, 4, '2021-08-31 05:36:01', '2021-08-31 05:36:01'), (2291, 4, '2021-08-31 05:36:01', '2021-08-31 05:36:01'), (2292, 4, '2021-08-31 05:36:01', '2021-08-31 05:36:01'), (2293, 4, '2021-08-31 05:36:01', '2021-08-31 05:36:01'), (2294, 4, '2021-08-31 05:36:02', '2021-08-31 05:36:02'), (2295, 4, '2021-08-31 05:36:02', '2021-08-31 05:36:02'), (2296, 4, '2021-08-31 05:36:03', '2021-08-31 05:36:03'), (2297, 4, '2021-08-31 05:36:03', '2021-08-31 05:36:03'), (2298, 4, '2021-08-31 05:36:03', '2021-08-31 05:36:03'), (2299, 4, '2021-08-31 05:36:04', '2021-08-31 05:36:04'), (2300, 4, '2021-08-31 05:36:04', '2021-08-31 05:36:04'), (2301, 4, '2021-08-31 05:36:04', '2021-08-31 05:36:04'), (2302, 4, '2021-08-31 05:36:05', '2021-08-31 05:36:05'), (2303, 4, '2021-08-31 05:36:06', '2021-08-31 05:36:06'), (2304, 4, '2021-08-31 05:36:06', '2021-08-31 05:36:06'), (2305, 4, '2021-08-31 05:36:06', '2021-08-31 05:36:06'), (2306, 4, '2021-08-31 05:36:06', '2021-08-31 05:36:06'), (2307, 4, '2021-08-31 05:36:07', '2021-08-31 05:36:07'), (2308, 4, '2021-08-31 05:36:07', '2021-08-31 05:36:07'), (2309, 4, '2021-08-31 05:36:09', '2021-08-31 05:36:09'), (2310, 4, '2021-08-31 05:36:09', '2021-08-31 05:36:09'), (2311, 4, '2021-08-31 05:36:09', '2021-08-31 05:36:09'), (2312, 4, '2021-08-31 05:36:09', '2021-08-31 05:36:09'), (2313, 4, '2021-08-31 05:36:10', '2021-08-31 05:36:10'), (2314, 4, '2021-08-31 05:36:10', '2021-08-31 05:36:10'), (2315, 4, '2021-08-31 05:36:10', '2021-08-31 05:36:10'), (2316, 4, '2021-08-31 05:36:11', '2021-08-31 05:36:11'), (2317, 4, '2021-08-31 05:36:11', '2021-08-31 05:36:11'), (2318, 4, '2021-08-31 05:36:11', '2021-08-31 05:36:11'), (2319, 4, '2021-08-31 05:36:11', '2021-08-31 05:36:11'), (2320, 4, '2021-08-31 05:36:11', '2021-08-31 05:36:11'), (2321, 4, '2021-08-31 05:36:12', '2021-08-31 05:36:12'), (2322, 4, '2021-08-31 05:36:12', '2021-08-31 05:36:12'), (2323, 4, '2021-08-31 05:36:12', '2021-08-31 05:36:12'), (2324, 4, '2021-08-31 05:36:12', '2021-08-31 05:36:12'), (2325, 4, '2021-08-31 05:36:12', '2021-08-31 05:36:12'), (2326, 4, '2021-08-31 05:36:13', '2021-08-31 05:36:13'), (2327, 4, '2021-08-31 05:36:13', '2021-08-31 05:36:13'), (2328, 4, '2021-08-31 05:36:13', '2021-08-31 05:36:13'), (2329, 4, '2021-08-31 05:36:13', '2021-08-31 05:36:13'), (2330, 4, '2021-08-31 05:36:14', '2021-08-31 05:36:14'), (2331, 4, '2021-08-31 05:36:14', '2021-08-31 05:36:14'), (2332, 4, '2021-08-31 05:36:14', '2021-08-31 05:36:14'), (2333, 4, '2021-08-31 05:36:14', '2021-08-31 05:36:14'), (2334, 4, '2021-08-31 05:36:15', '2021-08-31 05:36:15'), (2335, 4, '2021-08-31 05:36:15', '2021-08-31 05:36:15'), (2336, 4, '2021-08-31 05:36:15', '2021-08-31 05:36:15'), (2337, 4, '2021-08-31 05:36:15', '2021-08-31 05:36:15'), (2338, 4, '2021-08-31 05:36:16', '2021-08-31 05:36:16'), (2339, 4, '2021-08-31 05:36:16', '2021-08-31 05:36:16'), (2340, 4, '2021-08-31 05:36:16', '2021-08-31 05:36:16'), (2341, 4, '2021-08-31 05:36:16', '2021-08-31 05:36:16'), (2342, 4, '2021-08-31 05:36:17', '2021-08-31 05:36:17'), (2343, 4, '2021-08-31 05:36:17', '2021-08-31 05:36:17'), (2344, 4, '2021-08-31 05:36:17', '2021-08-31 05:36:17'), (2345, 4, '2021-08-31 05:36:18', '2021-08-31 05:36:18'), (2346, 4, '2021-08-31 05:36:18', '2021-08-31 05:36:18'), (2347, 4, '2021-08-31 05:36:18', '2021-08-31 05:36:18'), (2348, 4, '2021-08-31 05:36:18', '2021-08-31 05:36:18'), (2349, 4, '2021-08-31 05:36:19', '2021-08-31 05:36:19'), (2350, 4, '2021-08-31 05:36:19', '2021-08-31 05:36:19'), (2351, 4, '2021-08-31 05:36:19', '2021-08-31 05:36:19'), (2352, 4, '2021-08-31 05:36:20', '2021-08-31 05:36:20'), (2353, 4, '2021-08-31 05:36:20', '2021-08-31 05:36:20'), (2354, 4, '2021-08-31 05:36:20', '2021-08-31 05:36:20'), (2355, 4, '2021-08-31 05:36:20', '2021-08-31 05:36:20'), (2356, 4, '2021-08-31 05:36:21', '2021-08-31 05:36:21'), (2357, 4, '2021-08-31 05:36:21', '2021-08-31 05:36:21'), (2358, 4, '2021-08-31 05:36:22', '2021-08-31 05:36:22'), (2359, 4, '2021-08-31 05:36:22', '2021-08-31 05:36:22'), (2360, 4, '2021-08-31 05:36:22', '2021-08-31 05:36:22'), (2361, 4, '2021-08-31 05:36:22', '2021-08-31 05:36:22'), (2362, 4, '2021-08-31 05:36:22', '2021-08-31 05:36:22'), (2363, 4, '2021-08-31 05:36:23', '2021-08-31 05:36:23'), (2364, 4, '2021-08-31 05:36:23', '2021-08-31 05:36:23'), (2365, 4, '2021-08-31 05:36:23', '2021-08-31 05:36:23'), (2366, 4, '2021-08-31 05:36:23', '2021-08-31 05:36:23'), (2367, 4, '2021-08-31 05:36:24', '2021-08-31 05:36:24'), (2368, 4, '2021-08-31 05:36:24', '2021-08-31 05:36:24'), (2369, 4, '2021-08-31 05:36:24', '2021-08-31 05:36:24'), (2370, 4, '2021-08-31 05:36:24', '2021-08-31 05:36:24'), (2371, 4, '2021-08-31 05:36:25', '2021-08-31 05:36:25'), (2372, 4, '2021-08-31 05:36:25', '2021-08-31 05:36:25'), (2373, 4, '2021-08-31 05:36:25', '2021-08-31 05:36:25'), (2374, 4, '2021-08-31 05:36:25', '2021-08-31 05:36:25'), (2375, 4, '2021-08-31 05:36:25', '2021-08-31 05:36:25'), (2376, 4, '2021-08-31 05:36:26', '2021-08-31 05:36:26'), (2377, 4, '2021-08-31 05:36:26', '2021-08-31 05:36:26'), (2378, 4, '2021-08-31 05:36:26', '2021-08-31 05:36:26'), (2379, 4, '2021-08-31 05:36:26', '2021-08-31 05:36:26'), (2380, 4, '2021-08-31 05:36:27', '2021-08-31 05:36:27'), (2381, 4, '2021-08-31 05:36:28', '2021-08-31 05:36:28'), (2382, 4, '2021-08-31 05:36:28', '2021-08-31 05:36:28'), (2383, 4, '2021-08-31 05:36:28', '2021-08-31 05:36:28'), (2384, 4, '2021-08-31 05:36:29', '2021-08-31 05:36:29'), (2385, 4, '2021-08-31 05:36:29', '2021-08-31 05:36:29'), (2386, 4, '2021-08-31 05:36:30', '2021-08-31 05:36:30'), (2387, 4, '2021-08-31 05:36:30', '2021-08-31 05:36:30'), (2388, 4, '2021-08-31 05:36:31', '2021-08-31 05:36:31'), (2389, 4, '2021-08-31 05:36:31', '2021-08-31 05:36:31'), (2390, 4, '2021-08-31 05:36:32', '2021-08-31 05:36:32'), (2391, 4, '2021-08-31 05:36:32', '2021-08-31 05:36:32'), (2392, 4, '2021-08-31 05:36:33', '2021-08-31 05:36:33'), (2393, 4, '2021-08-31 05:36:33', '2021-08-31 05:36:33'), (2394, 4, '2021-08-31 05:36:34', '2021-08-31 05:36:34'), (2395, 4, '2021-08-31 05:36:35', '2021-08-31 05:36:35'), (2396, 4, '2021-08-31 05:36:35', '2021-08-31 05:36:35'), (2397, 4, '2021-08-31 05:36:36', '2021-08-31 05:36:36'), (2398, 4, '2021-08-31 05:36:37', '2021-08-31 05:36:37'), (2399, 4, '2021-08-31 05:36:38', '2021-08-31 05:36:38'), (2400, 4, '2021-08-31 05:36:39', '2021-08-31 05:36:39'), (2401, 4, '2021-08-31 05:36:39', '2021-08-31 05:36:39'), (2402, 4, '2021-08-31 05:36:41', '2021-08-31 05:36:41'), (2403, 4, '2021-08-31 05:36:41', '2021-08-31 05:36:41'), (2404, 4, '2021-08-31 05:36:42', '2021-08-31 05:36:42'), (2405, 4, '2021-08-31 05:36:42', '2021-08-31 05:36:42'), (2406, 4, '2021-08-31 05:36:42', '2021-08-31 05:36:42'), (2407, 4, '2021-08-31 05:36:43', '2021-08-31 05:36:43'), (2408, 4, '2021-08-31 05:36:43', '2021-08-31 05:36:43'), (2409, 4, '2021-08-31 05:36:43', '2021-08-31 05:36:43'), (2410, 4, '2021-08-31 05:36:43', '2021-08-31 05:36:43'), (2411, 4, '2021-08-31 05:36:44', '2021-08-31 05:36:44'), (2412, 4, '2021-08-31 05:36:44', '2021-08-31 05:36:44'), (2413, 4, '2021-08-31 05:36:44', '2021-08-31 05:36:44'), (2414, 4, '2021-08-31 05:36:44', '2021-08-31 05:36:44'), (2415, 4, '2021-08-31 05:36:45', '2021-08-31 05:36:45'), (2416, 4, '2021-08-31 05:36:45', '2021-08-31 05:36:45'), (2417, 4, '2021-08-31 05:36:45', '2021-08-31 05:36:45'), (2418, 4, '2021-08-31 05:36:45', '2021-08-31 05:36:45'), (2419, 4, '2021-08-31 05:36:46', '2021-08-31 05:36:46'), (2420, 4, '2021-08-31 05:36:46', '2021-08-31 05:36:46'), (2421, 4, '2021-08-31 05:36:46', '2021-08-31 05:36:46'), (2422, 4, '2021-08-31 05:36:46', '2021-08-31 05:36:46'), (2423, 4, '2021-08-31 05:36:47', '2021-08-31 05:36:47'), (2424, 4, '2021-08-31 05:36:47', '2021-08-31 05:36:47'), (2425, 4, '2021-08-31 05:36:47', '2021-08-31 05:36:47'), (2426, 4, '2021-08-31 05:36:47', '2021-08-31 05:36:47'), (2427, 4, '2021-08-31 05:36:48', '2021-08-31 05:36:48'), (2428, 4, '2021-08-31 05:36:48', '2021-08-31 05:36:48'), (2429, 4, '2021-08-31 05:36:48', '2021-08-31 05:36:48'), (2430, 4, '2021-08-31 05:36:48', '2021-08-31 05:36:48'), (2431, 4, '2021-08-31 05:36:48', '2021-08-31 05:36:48'), (2432, 4, '2021-08-31 05:36:49', '2021-08-31 05:36:49'), (2433, 4, '2021-08-31 05:36:49', '2021-08-31 05:36:49'), (2434, 4, '2021-08-31 05:36:49', '2021-08-31 05:36:49'), (2435, 4, '2021-08-31 05:36:49', '2021-08-31 05:36:49'), (2436, 4, '2021-08-31 05:36:49', '2021-08-31 05:36:49'), (2437, 4, '2021-08-31 05:36:50', '2021-08-31 05:36:50'), (2438, 4, '2021-08-31 05:36:50', '2021-08-31 05:36:50'), (2439, 4, '2021-08-31 05:36:50', '2021-08-31 05:36:50'), (2440, 4, '2021-08-31 05:36:50', '2021-08-31 05:36:50'), (2441, 4, '2021-08-31 05:36:51', '2021-08-31 05:36:51'), (2442, 4, '2021-08-31 05:36:51', '2021-08-31 05:36:51'), (2443, 4, '2021-08-31 05:36:51', '2021-08-31 05:36:51'), (2444, 4, '2021-08-31 05:36:52', '2021-08-31 05:36:52'), (2445, 4, '2021-08-31 05:36:52', '2021-08-31 05:36:52'), (2446, 4, '2021-08-31 05:36:53', '2021-08-31 05:36:53'), (2447, 4, '2021-08-31 05:36:54', '2021-08-31 05:36:54'), (2448, 4, '2021-08-31 05:36:54', '2021-08-31 05:36:54'), (2449, 4, '2021-08-31 05:36:55', '2021-08-31 05:36:55'), (2450, 4, '2021-08-31 05:36:55', '2021-08-31 05:36:55'), (2451, 4, '2021-08-31 05:36:55', '2021-08-31 05:36:55'), (2452, 4, '2021-08-31 05:36:56', '2021-08-31 05:36:56'), (2453, 4, '2021-08-31 05:36:56', '2021-08-31 05:36:56'), (2454, 4, '2021-08-31 05:36:56', '2021-08-31 05:36:56'), (2455, 4, '2021-08-31 05:36:56', '2021-08-31 05:36:56'), (2456, 4, '2021-08-31 05:36:57', '2021-08-31 05:36:57'), (2457, 4, '2021-08-31 05:36:57', '2021-08-31 05:36:57'), (2458, 4, '2021-08-31 05:36:57', '2021-08-31 05:36:57'), (2459, 4, '2021-09-01 05:37:08', '2021-09-01 05:37:08'), (2460, 4, '2021-09-01 05:37:11', '2021-09-01 05:37:11'), (2461, 4, '2021-09-01 05:37:11', '2021-09-01 05:37:11'), (2462, 4, '2021-09-01 05:37:11', '2021-09-01 05:37:11'), (2463, 4, '2021-09-01 05:37:11', '2021-09-01 05:37:11'), (2464, 4, '2021-09-01 05:37:12', '2021-09-01 05:37:12'), (2465, 4, '2021-09-01 05:37:12', '2021-09-01 05:37:12'), (2466, 4, '2021-09-01 05:37:13', '2021-09-01 05:37:13'), (2467, 4, '2021-09-01 05:37:13', '2021-09-01 05:37:13'), (2468, 4, '2021-09-01 05:37:13', '2021-09-01 05:37:13'), (2469, 4, '2021-09-01 05:37:14', '2021-09-01 05:37:14'), (2470, 4, '2021-09-01 05:37:14', '2021-09-01 05:37:14'), (2471, 4, '2021-09-01 05:37:15', '2021-09-01 05:37:15'), (2472, 4, '2021-09-01 05:37:15', '2021-09-01 05:37:15'), (2473, 4, '2021-09-01 05:37:15', '2021-09-01 05:37:15'), (2474, 4, '2021-09-01 05:37:15', '2021-09-01 05:37:15'), (2475, 4, '2021-09-01 05:37:16', '2021-09-01 05:37:16'), (2476, 4, '2021-09-01 05:37:16', '2021-09-01 05:37:16'), (2477, 4, '2021-09-01 05:37:17', '2021-09-01 05:37:17'), (2478, 4, '2021-09-01 05:37:17', '2021-09-01 05:37:17'), (2479, 4, '2021-09-01 05:37:17', '2021-09-01 05:37:17'), (2480, 4, '2021-09-01 05:37:17', '2021-09-01 05:37:17'), (2481, 4, '2021-09-01 05:37:18', '2021-09-01 05:37:18'), (2482, 4, '2021-09-01 05:37:18', '2021-09-01 05:37:18'), (2483, 4, '2021-09-01 05:37:18', '2021-09-01 05:37:18'), (2484, 4, '2021-09-01 05:37:19', '2021-09-01 05:37:19'), (2485, 4, '2021-09-01 05:37:19', '2021-09-01 05:37:19'), (2486, 4, '2021-09-01 05:37:19', '2021-09-01 05:37:19'), (2487, 4, '2021-09-01 05:37:20', '2021-09-01 05:37:20'), (2488, 4, '2021-09-01 05:37:20', '2021-09-01 05:37:20'), (2489, 4, '2021-09-01 05:37:20', '2021-09-01 05:37:20'), (2490, 4, '2021-09-01 05:37:20', '2021-09-01 05:37:20'), (2491, 4, '2021-09-01 05:37:21', '2021-09-01 05:37:21'), (2492, 4, '2021-09-01 05:37:21', '2021-09-01 05:37:21'), (2493, 4, '2021-09-01 05:37:21', '2021-09-01 05:37:21'), (2494, 4, '2021-09-01 05:37:21', '2021-09-01 05:37:21'), (2495, 4, '2021-09-01 05:37:22', '2021-09-01 05:37:22'), (2496, 4, '2021-09-01 05:37:22', '2021-09-01 05:37:22'), (2497, 4, '2021-09-01 05:37:22', '2021-09-01 05:37:22'), (2498, 4, '2021-09-01 05:37:22', '2021-09-01 05:37:22'), (2499, 4, '2021-09-01 05:37:23', '2021-09-01 05:37:23'), (2500, 4, '2021-09-01 05:37:24', '2021-09-01 05:37:24'), (2501, 4, '2021-09-01 05:37:24', '2021-09-01 05:37:24'), (2502, 4, '2021-09-01 05:37:24', '2021-09-01 05:37:24'), (2503, 4, '2021-09-01 05:37:24', '2021-09-01 05:37:24'), (2504, 4, '2021-09-01 05:37:25', '2021-09-01 05:37:25'), (2505, 4, '2021-09-01 05:37:25', '2021-09-01 05:37:25'), (2506, 4, '2021-09-01 05:37:25', '2021-09-01 05:37:25'), (2507, 4, '2021-09-01 05:37:25', '2021-09-01 05:37:25'), (2508, 4, '2021-09-01 05:37:25', '2021-09-01 05:37:25'), (2509, 4, '2021-09-01 05:37:26', '2021-09-01 05:37:26'), (2510, 4, '2021-09-01 05:37:26', '2021-09-01 05:37:26'), (2511, 4, '2021-09-01 05:37:26', '2021-09-01 05:37:26'), (2512, 4, '2021-09-01 05:37:27', '2021-09-01 05:37:27'), (2513, 4, '2021-09-01 05:37:27', '2021-09-01 05:37:27'), (2514, 4, '2021-09-01 05:37:27', '2021-09-01 05:37:27'), (2515, 4, '2021-09-01 05:37:27', '2021-09-01 05:37:27'), (2516, 4, '2021-09-01 05:37:28', '2021-09-01 05:37:28'), (2517, 4, '2021-09-01 05:37:28', '2021-09-01 05:37:28'), (2518, 4, '2021-09-01 05:37:28', '2021-09-01 05:37:28'), (2519, 4, '2021-09-01 05:37:29', '2021-09-01 05:37:29'), (2520, 4, '2021-09-01 05:37:29', '2021-09-01 05:37:29'), (2521, 4, '2021-09-01 05:37:30', '2021-09-01 05:37:30'), (2522, 4, '2021-09-01 05:37:30', '2021-09-01 05:37:30'), (2523, 4, '2021-09-01 05:37:30', '2021-09-01 05:37:30'), (2524, 4, '2021-09-01 05:37:30', '2021-09-01 05:37:30'), (2525, 4, '2021-09-01 05:37:31', '2021-09-01 05:37:31'), (2526, 4, '2021-09-01 05:37:31', '2021-09-01 05:37:31'), (2527, 4, '2021-09-01 05:37:31', '2021-09-01 05:37:31'), (2528, 4, '2021-09-01 05:37:31', '2021-09-01 05:37:31'), (2529, 4, '2021-09-01 05:37:32', '2021-09-01 05:37:32'), (2530, 4, '2021-09-01 05:37:32', '2021-09-01 05:37:32'), (2531, 4, '2021-09-01 05:37:32', '2021-09-01 05:37:32'), (2532, 4, '2021-09-01 05:37:33', '2021-09-01 05:37:33'), (2533, 4, '2021-09-01 05:37:33', '2021-09-01 05:37:33'), (2534, 4, '2021-09-01 05:37:33', '2021-09-01 05:37:33'), (2535, 4, '2021-09-01 05:37:34', '2021-09-01 05:37:34'), (2536, 4, '2021-09-01 05:37:34', '2021-09-01 05:37:34'), (2537, 4, '2021-09-01 05:37:34', '2021-09-01 05:37:34'), (2538, 4, '2021-09-01 05:37:35', '2021-09-01 05:37:35'), (2539, 4, '2021-09-01 05:37:35', '2021-09-01 05:37:35'), (2540, 4, '2021-09-01 05:37:35', '2021-09-01 05:37:35'), (2541, 4, '2021-09-01 05:37:36', '2021-09-01 05:37:36'), (2542, 4, '2021-09-01 05:37:36', '2021-09-01 05:37:36'), (2543, 4, '2021-09-01 05:37:36', '2021-09-01 05:37:36'), (2544, 4, '2021-09-01 05:37:37', '2021-09-01 05:37:37'), (2545, 4, '2021-09-01 05:37:37', '2021-09-01 05:37:37'), (2546, 4, '2021-09-01 05:37:37', '2021-09-01 05:37:37'), (2547, 4, '2021-09-01 05:37:37', '2021-09-01 05:37:37'), (2548, 4, '2021-09-01 05:37:38', '2021-09-01 05:37:38'), (2549, 4, '2021-09-01 05:37:38', '2021-09-01 05:37:38'), (2550, 4, '2021-09-01 05:37:39', '2021-09-01 05:37:39'), (2551, 4, '2021-09-01 05:37:39', '2021-09-01 05:37:39'), (2552, 4, '2021-09-01 05:37:40', '2021-09-01 05:37:40'), (2553, 4, '2021-09-01 05:37:40', '2021-09-01 05:37:40'), (2554, 4, '2021-09-01 05:37:40', '2021-09-01 05:37:40'), (2555, 4, '2021-09-01 05:37:40', '2021-09-01 05:37:40'), (2556, 4, '2021-09-01 05:37:40', '2021-09-01 05:37:40'), (2557, 4, '2021-09-01 05:37:41', '2021-09-01 05:37:41'), (2558, 4, '2021-09-01 05:37:42', '2021-09-01 05:37:42'), (2559, 4, '2021-09-01 05:37:42', '2021-09-01 05:37:42'), (2560, 4, '2021-09-01 05:37:42', '2021-09-01 05:37:42'), (2561, 4, '2021-09-01 05:37:42', '2021-09-01 05:37:42'), (2562, 4, '2021-09-01 05:37:42', '2021-09-01 05:37:42'), (2563, 4, '2021-09-01 05:37:43', '2021-09-01 05:37:43'), (2564, 4, '2021-09-01 05:37:43', '2021-09-01 05:37:43'), (2565, 4, '2021-09-01 05:37:43', '2021-09-01 05:37:43'), (2566, 4, '2021-09-01 05:37:43', '2021-09-01 05:37:43'), (2567, 4, '2021-09-01 05:37:44', '2021-09-01 05:37:44'), (2568, 4, '2021-09-01 05:37:44', '2021-09-01 05:37:44'), (2569, 4, '2021-09-01 05:37:44', '2021-09-01 05:37:44'), (2570, 4, '2021-09-01 05:37:44', '2021-09-01 05:37:44'), (2571, 4, '2021-09-01 05:37:45', '2021-09-01 05:37:45'), (2572, 4, '2021-09-01 05:37:45', '2021-09-01 05:37:45'), (2573, 4, '2021-09-01 05:37:45', '2021-09-01 05:37:45'), (2574, 4, '2021-09-01 05:37:45', '2021-09-01 05:37:45'), (2575, 4, '2021-09-01 05:37:46', '2021-09-01 05:37:46'), (2576, 4, '2021-09-01 05:37:46', '2021-09-01 05:37:46'), (2577, 4, '2021-09-01 05:37:46', '2021-09-01 05:37:46'), (2578, 4, '2021-09-01 05:37:47', '2021-09-01 05:37:47'), (2579, 4, '2021-09-01 05:37:47', '2021-09-01 05:37:47'), (2580, 4, '2021-09-01 05:37:47', '2021-09-01 05:37:47'), (2581, 4, '2021-09-01 05:37:47', '2021-09-01 05:37:47'), (2582, 4, '2021-09-01 05:37:48', '2021-09-01 05:37:48'), (2583, 4, '2021-09-01 05:37:48', '2021-09-01 05:37:48'), (2584, 4, '2021-09-01 05:37:48', '2021-09-01 05:37:48'), (2585, 4, '2021-09-01 05:37:48', '2021-09-01 05:37:48'), (2586, 4, '2021-09-01 05:37:49', '2021-09-01 05:37:49'), (2587, 4, '2021-09-01 05:37:49', '2021-09-01 05:37:49'), (2588, 4, '2021-09-01 05:37:50', '2021-09-01 05:37:50'), (2589, 4, '2021-09-01 05:37:51', '2021-09-01 05:37:51'), (2590, 4, '2021-09-01 05:37:52', '2021-09-01 05:37:52'), (2591, 4, '2021-09-01 05:37:52', '2021-09-01 05:37:52'), (2592, 4, '2021-09-01 05:37:52', '2021-09-01 05:37:52'), (2593, 4, '2021-09-01 05:37:53', '2021-09-01 05:37:53'), (2594, 4, '2021-09-01 05:37:53', '2021-09-01 05:37:53'), (2595, 4, '2021-09-01 05:37:53', '2021-09-01 05:37:53'), (2596, 4, '2021-09-01 05:37:54', '2021-09-01 05:37:54'), (2597, 4, '2021-09-01 05:37:54', '2021-09-01 05:37:54'), (2598, 4, '2021-09-01 05:37:55', '2021-09-01 05:37:55'), (2599, 4, '2021-09-01 05:37:55', '2021-09-01 05:37:55'), (2600, 4, '2021-09-01 05:37:55', '2021-09-01 05:37:55'), (2601, 4, '2021-09-01 05:37:56', '2021-09-01 05:37:56'), (2602, 4, '2021-09-01 05:37:56', '2021-09-01 05:37:56'), (2603, 4, '2021-09-01 05:37:56', '2021-09-01 05:37:56'), (2604, 4, '2021-09-01 05:37:56', '2021-09-01 05:37:56'), (2605, 4, '2021-09-01 05:37:57', '2021-09-01 05:37:57'), (2606, 4, '2021-09-01 05:37:57', '2021-09-01 05:37:57'), (2607, 4, '2021-09-01 05:37:57', '2021-09-01 05:37:57'), (2608, 4, '2021-09-01 05:37:57', '2021-09-01 05:37:57'), (2609, 4, '2021-09-01 05:37:58', '2021-09-01 05:37:58'), (2610, 4, '2021-09-01 05:37:58', '2021-09-01 05:37:58'), (2611, 4, '2021-09-01 05:37:58', '2021-09-01 05:37:58'), (2612, 4, '2021-09-01 05:37:59', '2021-09-01 05:37:59'), (2613, 4, '2021-09-01 05:37:59', '2021-09-01 05:37:59'), (2614, 4, '2021-09-01 05:38:00', '2021-09-01 05:38:00'), (2615, 4, '2021-09-01 05:38:00', '2021-09-01 05:38:00'), (2616, 4, '2021-09-01 05:38:01', '2021-09-01 05:38:01'), (2617, 4, '2021-09-01 05:38:01', '2021-09-01 05:38:01'), (2618, 4, '2021-09-01 05:38:02', '2021-09-01 05:38:02'), (2619, 4, '2021-09-01 05:38:02', '2021-09-01 05:38:02'), (2620, 4, '2021-09-01 05:38:03', '2021-09-01 05:38:03'), (2621, 4, '2021-09-01 05:38:03', '2021-09-01 05:38:03'), (2622, 4, '2021-09-01 05:38:04', '2021-09-01 05:38:04'), (2623, 4, '2021-09-01 05:38:05', '2021-09-01 05:38:05'), (2624, 4, '2021-09-01 05:38:05', '2021-09-01 05:38:05'), (2625, 4, '2021-09-01 05:38:06', '2021-09-01 05:38:06'), (2626, 4, '2021-09-01 05:38:06', '2021-09-01 05:38:06'), (2627, 4, '2021-09-01 05:38:06', '2021-09-01 05:38:06'), (2628, 4, '2021-09-01 05:38:06', '2021-09-01 05:38:06'), (2629, 4, '2021-09-01 05:38:06', '2021-09-01 05:38:06'), (2630, 4, '2021-09-01 05:38:07', '2021-09-01 05:38:07'), (2631, 4, '2021-09-01 05:38:07', '2021-09-01 05:38:07'), (2632, 4, '2021-09-01 05:38:07', '2021-09-01 05:38:07'), (2633, 4, '2021-09-01 05:38:07', '2021-09-01 05:38:07'), (2634, 4, '2021-09-01 05:38:08', '2021-09-01 05:38:08'), (2635, 4, '2021-09-01 05:38:08', '2021-09-01 05:38:08'), (2636, 4, '2021-09-01 05:38:08', '2021-09-01 05:38:08'), (2637, 4, '2021-09-01 05:38:08', '2021-09-01 05:38:08'), (2638, 4, '2021-09-01 05:38:08', '2021-09-01 05:38:08'), (2639, 4, '2021-09-01 05:38:09', '2021-09-01 05:38:09'), (2640, 4, '2021-09-01 05:38:09', '2021-09-01 05:38:09'), (2641, 4, '2021-09-01 05:38:09', '2021-09-01 05:38:09'), (2642, 4, '2021-09-01 05:38:10', '2021-09-01 05:38:10'), (2643, 4, '2021-09-01 05:38:10', '2021-09-01 05:38:10'), (2644, 4, '2021-09-01 05:38:10', '2021-09-01 05:38:10'), (2645, 4, '2021-09-01 05:38:10', '2021-09-01 05:38:10'), (2646, 4, '2021-09-01 05:38:10', '2021-09-01 05:38:10'), (2647, 4, '2021-09-01 05:38:10', '2021-09-01 05:38:10'), (2648, 4, '2021-09-01 05:38:11', '2021-09-01 05:38:11'), (2649, 4, '2021-09-01 05:38:11', '2021-09-01 05:38:11'), (2650, 4, '2021-09-01 05:38:11', '2021-09-01 05:38:11'), (2651, 4, '2021-09-01 05:38:11', '2021-09-01 05:38:11'), (2652, 4, '2021-09-01 05:38:12', '2021-09-01 05:38:12'), (2653, 4, '2021-09-01 05:38:12', '2021-09-01 05:38:12'), (2654, 4, '2021-09-01 05:38:12', '2021-09-01 05:38:12'), (2655, 4, '2021-09-01 05:38:12', '2021-09-01 05:38:12'), (2656, 4, '2021-09-01 05:38:13', '2021-09-01 05:38:13'), (2657, 4, '2021-09-01 05:38:13', '2021-09-01 05:38:13'), (2658, 4, '2021-09-01 05:38:14', '2021-09-01 05:38:14'), (2659, 4, '2021-09-01 05:38:14', '2021-09-01 05:38:14'), (2660, 4, '2021-09-01 05:38:14', '2021-09-01 05:38:14'), (2661, 4, '2021-09-01 05:38:15', '2021-09-01 05:38:15'), (2662, 4, '2021-09-01 05:38:15', '2021-09-01 05:38:15'), (2663, 4, '2021-09-01 05:38:15', '2021-09-01 05:38:15'), (2664, 4, '2021-09-01 05:38:15', '2021-09-01 05:38:15'), (2665, 4, '2021-09-01 05:38:16', '2021-09-01 05:38:16'), (2666, 4, '2021-09-01 05:38:16', '2021-09-01 05:38:16'), (2667, 4, '2021-09-01 05:38:16', '2021-09-01 05:38:16'), (2668, 4, '2021-09-01 05:38:16', '2021-09-01 05:38:16'), (2669, 4, '2021-09-01 05:38:17', '2021-09-01 05:38:17'), (2670, 4, '2021-09-01 05:38:17', '2021-09-01 05:38:17'), (2671, 4, '2021-09-01 05:38:18', '2021-09-01 05:38:18'), (2672, 4, '2021-09-01 05:38:18', '2021-09-01 05:38:18'), (2673, 4, '2021-09-01 05:38:18', '2021-09-01 05:38:18'), (2674, 4, '2021-09-01 05:38:18', '2021-09-01 05:38:18'), (2675, 4, '2021-09-01 05:38:18', '2021-09-01 05:38:18'), (2676, 4, '2021-09-01 05:38:18', '2021-09-01 05:38:18'), (2677, 4, '2021-09-01 05:38:19', '2021-09-01 05:38:19'), (2678, 4, '2021-09-01 05:38:19', '2021-09-01 05:38:19'), (2679, 4, '2021-09-01 05:38:19', '2021-09-01 05:38:19'), (2680, 4, '2021-09-01 05:38:19', '2021-09-01 05:38:19'), (2681, 4, '2021-09-01 05:38:20', '2021-09-01 05:38:20'), (2682, 4, '2021-09-01 05:38:20', '2021-09-01 05:38:20'), (2683, 4, '2021-09-01 05:38:20', '2021-09-01 05:38:20'), (2684, 4, '2021-09-01 05:38:21', '2021-09-01 05:38:21'), (2685, 4, '2021-09-01 05:38:21', '2021-09-01 05:38:21'), (2686, 4, '2021-09-01 05:38:21', '2021-09-01 05:38:21'), (2687, 4, '2021-09-01 05:38:21', '2021-09-01 05:38:21'), (2688, 4, '2021-09-01 05:38:22', '2021-09-01 05:38:22'), (2689, 4, '2021-09-01 05:38:22', '2021-09-01 05:38:22'), (2690, 4, '2021-09-01 05:38:22', '2021-09-01 05:38:22'), (2691, 4, '2021-09-01 05:38:22', '2021-09-01 05:38:22'), (2692, 4, '2021-09-01 05:38:23', '2021-09-01 05:38:23'), (2693, 4, '2021-09-01 05:38:23', '2021-09-01 05:38:23'), (2694, 4, '2021-09-01 05:38:23', '2021-09-01 05:38:23'), (2695, 4, '2021-09-01 05:38:23', '2021-09-01 05:38:23'), (2696, 4, '2021-09-01 05:38:24', '2021-09-01 05:38:24'), (2697, 4, '2021-09-01 05:38:24', '2021-09-01 05:38:24'), (2698, 4, '2021-09-01 05:38:25', '2021-09-01 05:38:25'), (2699, 4, '2021-09-01 05:38:25', '2021-09-01 05:38:25'), (2700, 4, '2021-09-01 05:38:25', '2021-09-01 05:38:25'), (2701, 4, '2021-09-01 05:38:25', '2021-09-01 05:38:25'), (2702, 4, '2021-09-01 05:38:25', '2021-09-01 05:38:25'), (2703, 4, '2021-09-01 05:38:26', '2021-09-01 05:38:26'), (2704, 4, '2021-09-01 05:38:26', '2021-09-01 05:38:26'), (2705, 4, '2021-09-01 05:38:26', '2021-09-01 05:38:26'), (2706, 4, '2021-09-02 05:38:32', '2021-09-02 05:38:32'), (2707, 4, '2021-09-02 05:38:33', '2021-09-02 05:38:33'), (2708, 4, '2021-09-02 05:38:33', '2021-09-02 05:38:33'), (2709, 4, '2021-09-02 05:38:34', '2021-09-02 05:38:34'), (2710, 4, '2021-09-02 05:38:34', '2021-09-02 05:38:34'), (2711, 4, '2021-09-02 05:38:34', '2021-09-02 05:38:34'), (2712, 4, '2021-09-02 05:38:35', '2021-09-02 05:38:35'), (2713, 4, '2021-09-02 05:38:35', '2021-09-02 05:38:35'), (2714, 4, '2021-09-02 05:38:35', '2021-09-02 05:38:35'), (2715, 4, '2021-09-02 05:38:35', '2021-09-02 05:38:35'), (2716, 4, '2021-09-02 05:38:36', '2021-09-02 05:38:36'), (2717, 4, '2021-09-02 05:38:36', '2021-09-02 05:38:36'), (2718, 4, '2021-09-02 05:38:37', '2021-09-02 05:38:37'), (2719, 4, '2021-09-02 05:38:37', '2021-09-02 05:38:37'), (2720, 4, '2021-09-02 05:38:37', '2021-09-02 05:38:37'), (2721, 4, '2021-09-02 05:38:38', '2021-09-02 05:38:38'), (2722, 4, '2021-09-02 05:38:38', '2021-09-02 05:38:38'), (2723, 4, '2021-09-02 05:38:38', '2021-09-02 05:38:38'), (2724, 4, '2021-09-02 05:38:38', '2021-09-02 05:38:38'), (2725, 4, '2021-09-02 05:38:39', '2021-09-02 05:38:39'), (2726, 4, '2021-09-02 05:38:39', '2021-09-02 05:38:39'), (2727, 4, '2021-09-02 05:38:39', '2021-09-02 05:38:39'), (2728, 4, '2021-09-02 05:38:40', '2021-09-02 05:38:40'), (2729, 4, '2021-09-02 05:38:40', '2021-09-02 05:38:40'), (2730, 4, '2021-09-02 05:38:40', '2021-09-02 05:38:40'), (2731, 4, '2021-09-02 05:38:41', '2021-09-02 05:38:41'), (2732, 4, '2021-09-02 05:38:41', '2021-09-02 05:38:41'), (2733, 4, '2021-09-02 05:38:41', '2021-09-02 05:38:41'), (2734, 4, '2021-09-02 05:38:41', '2021-09-02 05:38:41'), (2735, 4, '2021-09-02 05:38:42', '2021-09-02 05:38:42'), (2736, 4, '2021-09-02 05:38:42', '2021-09-02 05:38:42'), (2737, 4, '2021-09-02 05:38:42', '2021-09-02 05:38:42'), (2738, 4, '2021-09-02 05:38:43', '2021-09-02 05:38:43'), (2739, 4, '2021-09-02 05:38:43', '2021-09-02 05:38:43'), (2740, 4, '2021-09-02 05:38:43', '2021-09-02 05:38:43'), (2741, 4, '2021-09-02 05:38:43', '2021-09-02 05:38:43'), (2742, 4, '2021-09-02 05:38:43', '2021-09-02 05:38:43'), (2743, 4, '2021-09-02 05:38:44', '2021-09-02 05:38:44'), (2744, 4, '2021-09-02 05:38:44', '2021-09-02 05:38:44'), (2745, 4, '2021-09-02 05:38:44', '2021-09-02 05:38:44'), (2746, 4, '2021-09-02 05:38:44', '2021-09-02 05:38:44'), (2747, 4, '2021-09-02 05:38:45', '2021-09-02 05:38:45'), (2748, 4, '2021-09-02 05:38:45', '2021-09-02 05:38:45'), (2749, 4, '2021-09-02 05:38:45', '2021-09-02 05:38:45'), (2750, 4, '2021-09-02 05:38:45', '2021-09-02 05:38:45'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (2751, 4, '2021-09-02 05:38:46', '2021-09-02 05:38:46'), (2752, 4, '2021-09-02 05:38:46', '2021-09-02 05:38:46'), (2753, 4, '2021-09-02 05:38:46', '2021-09-02 05:38:46'), (2754, 4, '2021-09-02 05:38:47', '2021-09-02 05:38:47'), (2755, 4, '2021-09-02 05:38:47', '2021-09-02 05:38:47'), (2756, 4, '2021-09-02 05:38:47', '2021-09-02 05:38:47'), (2757, 4, '2021-09-02 05:38:47', '2021-09-02 05:38:47'), (2758, 4, '2021-09-02 05:38:48', '2021-09-02 05:38:48'), (2759, 4, '2021-09-02 05:38:48', '2021-09-02 05:38:48'), (2760, 4, '2021-09-02 05:38:48', '2021-09-02 05:38:48'), (2761, 4, '2021-09-02 05:38:48', '2021-09-02 05:38:48'), (2762, 4, '2021-09-02 05:38:49', '2021-09-02 05:38:49'), (2763, 4, '2021-09-02 05:38:49', '2021-09-02 05:38:49'), (2764, 4, '2021-09-02 05:38:49', '2021-09-02 05:38:49'), (2765, 4, '2021-09-02 05:38:50', '2021-09-02 05:38:50'), (2766, 4, '2021-09-02 05:38:50', '2021-09-02 05:38:50'), (2767, 4, '2021-09-02 05:38:50', '2021-09-02 05:38:50'), (2768, 4, '2021-09-02 05:38:50', '2021-09-02 05:38:50'), (2769, 4, '2021-09-02 05:38:50', '2021-09-02 05:38:50'), (2770, 4, '2021-09-02 05:38:51', '2021-09-02 05:38:51'), (2771, 4, '2021-09-02 05:38:51', '2021-09-02 05:38:51'), (2772, 4, '2021-09-02 05:38:51', '2021-09-02 05:38:51'), (2773, 4, '2021-09-02 05:38:52', '2021-09-02 05:38:52'), (2774, 4, '2021-09-02 05:38:52', '2021-09-02 05:38:52'), (2775, 4, '2021-09-02 05:38:52', '2021-09-02 05:38:52'), (2776, 4, '2021-09-02 05:38:52', '2021-09-02 05:38:52'), (2777, 4, '2021-09-02 05:38:52', '2021-09-02 05:38:52'), (2778, 4, '2021-09-02 05:38:53', '2021-09-02 05:38:53'), (2779, 4, '2021-09-02 05:38:53', '2021-09-02 05:38:53'), (2780, 4, '2021-09-02 05:38:53', '2021-09-02 05:38:53'), (2781, 4, '2021-09-02 05:38:53', '2021-09-02 05:38:53'), (2782, 4, '2021-09-02 05:38:54', '2021-09-02 05:38:54'), (2783, 4, '2021-09-02 05:38:54', '2021-09-02 05:38:54'), (2784, 4, '2021-09-02 05:38:54', '2021-09-02 05:38:54'), (2785, 4, '2021-09-02 05:38:54', '2021-09-02 05:38:54'), (2786, 4, '2021-09-02 05:38:55', '2021-09-02 05:38:55'), (2787, 4, '2021-09-02 05:38:55', '2021-09-02 05:38:55'), (2788, 4, '2021-09-02 05:38:56', '2021-09-02 05:38:56'), (2789, 4, '2021-09-02 05:38:56', '2021-09-02 05:38:56'), (2790, 4, '2021-09-02 05:38:56', '2021-09-02 05:38:56'), (2791, 4, '2021-09-02 05:38:57', '2021-09-02 05:38:57'), (2792, 4, '2021-09-02 05:38:57', '2021-09-02 05:38:57'), (2793, 4, '2021-09-02 05:38:57', '2021-09-02 05:38:57'), (2794, 4, '2021-09-02 05:38:57', '2021-09-02 05:38:57'), (2795, 4, '2021-09-03 05:39:03', '2021-09-03 05:39:03'), (2796, 4, '2021-09-03 05:39:05', '2021-09-03 05:39:05'), (2797, 4, '2021-09-03 05:39:06', '2021-09-03 05:39:06'), (2798, 4, '2021-09-03 05:39:06', '2021-09-03 05:39:06'), (2799, 4, '2021-09-03 05:39:07', '2021-09-03 05:39:07'), (2800, 4, '2021-09-03 05:39:07', '2021-09-03 05:39:07'), (2801, 4, '2021-09-03 05:39:08', '2021-09-03 05:39:08'), (2802, 4, '2021-09-03 05:39:08', '2021-09-03 05:39:08'), (2803, 4, '2021-09-03 05:39:08', '2021-09-03 05:39:08'), (2804, 4, '2021-09-03 05:39:09', '2021-09-03 05:39:09'), (2805, 4, '2021-09-03 05:39:09', '2021-09-03 05:39:09'), (2806, 4, '2021-09-03 05:39:09', '2021-09-03 05:39:09'), (2807, 4, '2021-09-03 05:39:09', '2021-09-03 05:39:09'), (2808, 4, '2021-09-03 05:39:09', '2021-09-03 05:39:09'), (2809, 4, '2021-09-03 05:39:10', '2021-09-03 05:39:10'), (2810, 4, '2021-09-03 05:39:10', '2021-09-03 05:39:10'), (2811, 4, '2021-09-03 05:39:10', '2021-09-03 05:39:10'), (2812, 4, '2021-09-03 05:39:10', '2021-09-03 05:39:10'), (2813, 4, '2021-09-03 05:39:11', '2021-09-03 05:39:11'), (2814, 4, '2021-09-03 05:39:11', '2021-09-03 05:39:11'), (2815, 4, '2021-09-03 05:39:11', '2021-09-03 05:39:11'), (2816, 4, '2021-09-03 05:39:11', '2021-09-03 05:39:11'), (2817, 4, '2021-09-03 05:39:12', '2021-09-03 05:39:12'), (2818, 4, '2021-09-03 05:39:12', '2021-09-03 05:39:12'), (2819, 4, '2021-09-03 05:39:12', '2021-09-03 05:39:12'), (2820, 4, '2021-09-03 05:39:12', '2021-09-03 05:39:12'), (2821, 4, '2021-09-03 05:39:12', '2021-09-03 05:39:12'), (2822, 4, '2021-09-03 05:39:13', '2021-09-03 05:39:13'), (2823, 4, '2021-09-03 05:39:13', '2021-09-03 05:39:13'), (2824, 4, '2021-09-03 05:39:14', '2021-09-03 05:39:14'), (2825, 4, '2021-09-03 05:39:14', '2021-09-03 05:39:14'), (2826, 4, '2021-09-03 05:39:14', '2021-09-03 05:39:14'), (2827, 4, '2021-09-03 05:39:14', '2021-09-03 05:39:14'), (2828, 4, '2021-09-03 05:39:14', '2021-09-03 05:39:14'), (2829, 4, '2021-09-03 05:39:14', '2021-09-03 05:39:14'), (2830, 4, '2021-09-03 05:39:15', '2021-09-03 05:39:15'), (2831, 4, '2021-09-03 05:39:15', '2021-09-03 05:39:15'), (2832, 4, '2021-09-03 05:39:15', '2021-09-03 05:39:15'), (2833, 4, '2021-09-03 05:39:15', '2021-09-03 05:39:15'), (2834, 4, '2021-09-03 05:39:16', '2021-09-03 05:39:16'), (2835, 4, '2021-09-03 05:39:16', '2021-09-03 05:39:16'), (2836, 4, '2021-09-03 05:39:16', '2021-09-03 05:39:16'), (2837, 4, '2021-09-03 05:39:16', '2021-09-03 05:39:16'), (2838, 4, '2021-09-03 05:39:17', '2021-09-03 05:39:17'), (2839, 4, '2021-09-03 05:39:17', '2021-09-03 05:39:17'), (2840, 4, '2021-09-03 05:39:17', '2021-09-03 05:39:17'), (2841, 4, '2021-09-03 05:39:17', '2021-09-03 05:39:17'), (2842, 4, '2021-09-03 05:39:18', '2021-09-03 05:39:18'), (2843, 4, '2021-09-03 05:39:18', '2021-09-03 05:39:18'), (2844, 4, '2021-09-03 05:39:18', '2021-09-03 05:39:18'), (2845, 4, '2021-09-03 05:39:18', '2021-09-03 05:39:18'), (2846, 4, '2021-09-03 05:39:19', '2021-09-03 05:39:19'), (2847, 4, '2021-09-03 05:39:19', '2021-09-03 05:39:19'), (2848, 4, '2021-09-03 05:39:19', '2021-09-03 05:39:19'), (2849, 4, '2021-09-03 05:39:20', '2021-09-03 05:39:20'), (2850, 4, '2021-09-03 05:39:20', '2021-09-03 05:39:20'), (2851, 4, '2021-09-03 05:39:20', '2021-09-03 05:39:20'), (2852, 4, '2021-09-03 05:39:20', '2021-09-03 05:39:20'), (2853, 4, '2021-09-03 05:39:21', '2021-09-03 05:39:21'), (2854, 4, '2021-09-03 05:39:21', '2021-09-03 05:39:21'), (2855, 4, '2021-09-03 05:39:21', '2021-09-03 05:39:21'), (2856, 4, '2021-09-03 05:39:22', '2021-09-03 05:39:22'), (2857, 4, '2021-09-03 05:39:22', '2021-09-03 05:39:22'), (2858, 4, '2021-09-03 05:39:22', '2021-09-03 05:39:22'), (2859, 4, '2021-09-03 05:39:22', '2021-09-03 05:39:22'), (2860, 4, '2021-09-03 05:39:22', '2021-09-03 05:39:22'), (2861, 4, '2021-09-03 05:39:23', '2021-09-03 05:39:23'), (2862, 4, '2021-09-03 05:39:23', '2021-09-03 05:39:23'), (2863, 4, '2021-09-03 05:39:23', '2021-09-03 05:39:23'), (2864, 4, '2021-09-03 05:39:23', '2021-09-03 05:39:23'), (2865, 4, '2021-09-03 05:39:24', '2021-09-03 05:39:24'), (2866, 4, '2021-09-03 05:39:24', '2021-09-03 05:39:24'), (2867, 4, '2021-09-03 05:39:24', '2021-09-03 05:39:24'), (2868, 4, '2021-09-03 05:39:24', '2021-09-03 05:39:24'), (2869, 4, '2021-09-03 05:39:25', '2021-09-03 05:39:25'), (2870, 4, '2021-09-03 05:39:25', '2021-09-03 05:39:25'), (2871, 4, '2021-09-03 05:39:25', '2021-09-03 05:39:25'), (2872, 4, '2021-09-03 05:39:26', '2021-09-03 05:39:26'), (2873, 4, '2021-09-03 05:39:26', '2021-09-03 05:39:26'), (2874, 4, '2021-09-03 05:39:26', '2021-09-03 05:39:26'), (2875, 4, '2021-09-03 05:39:26', '2021-09-03 05:39:26'), (2876, 4, '2021-09-03 05:39:27', '2021-09-03 05:39:27'), (2877, 4, '2021-09-03 05:39:27', '2021-09-03 05:39:27'), (2878, 4, '2021-09-03 05:39:27', '2021-09-03 05:39:27'), (2879, 4, '2021-09-03 05:39:27', '2021-09-03 05:39:27'), (2880, 4, '2021-09-03 05:39:28', '2021-09-03 05:39:28'), (2881, 4, '2021-09-03 05:39:28', '2021-09-03 05:39:28'), (2882, 4, '2021-09-03 05:39:28', '2021-09-03 05:39:28'), (2883, 4, '2021-09-03 05:39:28', '2021-09-03 05:39:28'), (2884, 4, '2021-09-03 05:39:29', '2021-09-03 05:39:29'), (2885, 4, '2021-09-03 05:39:29', '2021-09-03 05:39:29'), (2886, 4, '2021-09-03 05:39:29', '2021-09-03 05:39:29'), (2887, 4, '2021-09-03 05:39:30', '2021-09-03 05:39:30'), (2888, 4, '2021-09-03 05:39:30', '2021-09-03 05:39:30'), (2889, 4, '2021-09-03 05:39:30', '2021-09-03 05:39:30'), (2890, 4, '2021-09-03 05:39:30', '2021-09-03 05:39:30'), (2891, 4, '2021-09-03 05:39:31', '2021-09-03 05:39:31'), (2892, 4, '2021-09-03 05:39:31', '2021-09-03 05:39:31'), (2893, 4, '2021-09-03 05:39:31', '2021-09-03 05:39:31'), (2894, 4, '2021-09-03 05:39:32', '2021-09-03 05:39:32'), (2895, 4, '2021-09-03 05:39:32', '2021-09-03 05:39:32'), (2896, 4, '2021-09-03 05:39:32', '2021-09-03 05:39:32'), (2897, 4, '2021-09-03 05:39:33', '2021-09-03 05:39:33'), (2898, 4, '2021-09-03 05:39:33', '2021-09-03 05:39:33'), (2899, 4, '2021-09-03 05:39:33', '2021-09-03 05:39:33'), (2900, 4, '2021-09-03 05:39:33', '2021-09-03 05:39:33'), (2901, 4, '2021-09-03 05:39:34', '2021-09-03 05:39:34'), (2902, 4, '2021-09-03 05:39:34', '2021-09-03 05:39:34'), (2903, 4, '2021-09-03 05:39:34', '2021-09-03 05:39:34'), (2904, 4, '2021-09-03 05:39:34', '2021-09-03 05:39:34'), (2905, 4, '2021-09-03 05:39:35', '2021-09-03 05:39:35'), (2906, 4, '2021-09-03 05:39:35', '2021-09-03 05:39:35'), (2907, 4, '2021-09-03 05:39:35', '2021-09-03 05:39:35'), (2908, 4, '2021-09-03 05:39:35', '2021-09-03 05:39:35'), (2909, 4, '2021-09-03 05:39:36', '2021-09-03 05:39:36'), (2910, 4, '2021-09-03 05:39:36', '2021-09-03 05:39:36'), (2911, 4, '2021-09-03 05:39:37', '2021-09-03 05:39:37'), (2912, 4, '2021-09-03 05:39:37', '2021-09-03 05:39:37'), (2913, 4, '2021-09-03 05:39:37', '2021-09-03 05:39:37'), (2914, 4, '2021-09-03 05:39:38', '2021-09-03 05:39:38'), (2915, 4, '2021-09-03 05:39:38', '2021-09-03 05:39:38'), (2916, 4, '2021-09-03 05:39:38', '2021-09-03 05:39:38'), (2917, 4, '2021-09-03 05:39:39', '2021-09-03 05:39:39'), (2918, 4, '2021-09-03 05:39:39', '2021-09-03 05:39:39'), (2919, 4, '2021-09-03 05:39:39', '2021-09-03 05:39:39'), (2920, 4, '2021-09-03 05:39:40', '2021-09-03 05:39:40'), (2921, 4, '2021-09-03 05:39:40', '2021-09-03 05:39:40'), (2922, 4, '2021-09-03 05:39:40', '2021-09-03 05:39:40'), (2923, 4, '2021-09-03 05:39:40', '2021-09-03 05:39:40'), (2924, 4, '2021-09-03 05:39:41', '2021-09-03 05:39:41'), (2925, 4, '2021-09-03 05:39:41', '2021-09-03 05:39:41'), (2926, 4, '2021-09-03 05:39:41', '2021-09-03 05:39:41'), (2927, 4, '2021-09-03 05:39:41', '2021-09-03 05:39:41'), (2928, 4, '2021-09-03 05:39:42', '2021-09-03 05:39:42'), (2929, 4, '2021-09-03 05:39:42', '2021-09-03 05:39:42'), (2930, 4, '2021-09-03 05:39:42', '2021-09-03 05:39:42'), (2931, 4, '2021-09-03 05:39:42', '2021-09-03 05:39:42'), (2932, 4, '2021-09-03 05:39:43', '2021-09-03 05:39:43'), (2933, 4, '2021-09-03 05:39:43', '2021-09-03 05:39:43'), (2934, 4, '2021-09-03 05:39:44', '2021-09-03 05:39:44'), (2935, 4, '2021-09-03 05:39:44', '2021-09-03 05:39:44'), (2936, 4, '2021-09-03 05:39:44', '2021-09-03 05:39:44'), (2937, 4, '2021-09-03 05:39:45', '2021-09-03 05:39:45'), (2938, 4, '2021-09-03 05:39:45', '2021-09-03 05:39:45'), (2939, 4, '2021-09-03 05:39:45', '2021-09-03 05:39:45'), (2940, 4, '2021-09-03 05:39:46', '2021-09-03 05:39:46'), (2941, 4, '2021-09-03 05:39:46', '2021-09-03 05:39:46'), (2942, 4, '2021-09-03 05:39:46', '2021-09-03 05:39:46'), (2943, 4, '2021-09-03 05:39:47', '2021-09-03 05:39:47'), (2944, 4, '2021-09-03 05:39:47', '2021-09-03 05:39:47'), (2945, 4, '2021-09-03 05:39:47', '2021-09-03 05:39:47'), (2946, 4, '2021-09-03 05:39:48', '2021-09-03 05:39:48'), (2947, 4, '2021-09-04 05:39:52', '2021-09-04 05:39:52'), (2948, 4, '2021-09-04 05:39:54', '2021-09-04 05:39:54'), (2949, 4, '2021-09-04 05:39:55', '2021-09-04 05:39:55'), (2950, 4, '2021-09-04 05:39:59', '2021-09-04 05:39:59'), (2951, 4, '2021-09-04 05:39:59', '2021-09-04 05:39:59'), (2952, 4, '2021-09-04 05:40:00', '2021-09-04 05:40:00'), (2953, 4, '2021-09-04 05:40:00', '2021-09-04 05:40:00'), (2954, 4, '2021-09-04 05:40:00', '2021-09-04 05:40:00'), (2955, 4, '2021-09-04 05:40:01', '2021-09-04 05:40:01'), (2956, 4, '2021-09-04 05:40:01', '2021-09-04 05:40:01'), (2957, 4, '2021-09-04 05:40:01', '2021-09-04 05:40:01'), (2958, 4, '2021-09-04 05:40:01', '2021-09-04 05:40:01'), (2959, 4, '2021-09-04 05:40:02', '2021-09-04 05:40:02'), (2960, 4, '2021-09-04 05:40:02', '2021-09-04 05:40:02'), (2961, 4, '2021-09-04 05:40:03', '2021-09-04 05:40:03'), (2962, 4, '2021-09-04 05:40:05', '2021-09-04 05:40:05'), (2963, 4, '2021-09-04 05:40:05', '2021-09-04 05:40:05'), (2964, 4, '2021-09-04 05:40:05', '2021-09-04 05:40:05'), (2965, 4, '2021-09-04 05:40:06', '2021-09-04 05:40:06'), (2966, 4, '2021-09-04 05:40:06', '2021-09-04 05:40:06'), (2967, 4, '2021-09-04 05:40:06', '2021-09-04 05:40:06'), (2968, 4, '2021-09-04 05:40:06', '2021-09-04 05:40:06'), (2969, 4, '2021-09-04 05:40:07', '2021-09-04 05:40:07'), (2970, 4, '2021-09-04 05:40:07', '2021-09-04 05:40:07'), (2971, 4, '2021-09-04 05:40:07', '2021-09-04 05:40:07'), (2972, 4, '2021-09-04 05:40:07', '2021-09-04 05:40:07'), (2973, 4, '2021-09-04 05:40:08', '2021-09-04 05:40:08'), (2974, 4, '2021-09-04 05:40:08', '2021-09-04 05:40:08'), (2975, 4, '2021-09-04 05:40:09', '2021-09-04 05:40:09'), (2976, 4, '2021-09-04 05:40:09', '2021-09-04 05:40:09'), (2977, 4, '2021-09-04 05:40:09', '2021-09-04 05:40:09'), (2978, 4, '2021-09-04 05:40:09', '2021-09-04 05:40:09'), (2979, 4, '2021-09-04 05:40:09', '2021-09-04 05:40:09'), (2980, 4, '2021-09-04 05:40:10', '2021-09-04 05:40:10'), (2981, 4, '2021-09-04 05:40:10', '2021-09-04 05:40:10'), (2982, 4, '2021-09-04 05:40:11', '2021-09-04 05:40:11'), (2983, 4, '2021-09-04 05:40:11', '2021-09-04 05:40:11'), (2984, 4, '2021-09-04 05:40:12', '2021-09-04 05:40:12'), (2985, 4, '2021-09-04 05:40:12', '2021-09-04 05:40:12'), (2986, 4, '2021-09-04 05:40:12', '2021-09-04 05:40:12'), (2987, 4, '2021-09-04 05:40:12', '2021-09-04 05:40:12'), (2988, 4, '2021-09-04 05:40:13', '2021-09-04 05:40:13'), (2989, 4, '2021-09-04 05:40:13', '2021-09-04 05:40:13'), (2990, 4, '2021-09-04 05:40:13', '2021-09-04 05:40:13'), (2991, 4, '2021-09-04 05:40:13', '2021-09-04 05:40:13'), (2992, 4, '2021-09-04 05:40:13', '2021-09-04 05:40:13'), (2993, 4, '2021-09-04 05:40:14', '2021-09-04 05:40:14'), (2994, 4, '2021-09-04 05:40:14', '2021-09-04 05:40:14'), (2995, 4, '2021-09-04 05:40:15', '2021-09-04 05:40:15'), (2996, 4, '2021-09-04 05:40:15', '2021-09-04 05:40:15'), (2997, 4, '2021-09-04 05:40:16', '2021-09-04 05:40:16'), (2998, 4, '2021-09-04 05:40:16', '2021-09-04 05:40:16'), (2999, 4, '2021-09-04 05:40:16', '2021-09-04 05:40:16'), (3000, 4, '2021-09-04 05:40:16', '2021-09-04 05:40:16'), (3001, 4, '2021-09-04 05:40:16', '2021-09-04 05:40:16'), (3002, 4, '2021-09-04 05:40:17', '2021-09-04 05:40:17'), (3003, 4, '2021-09-04 05:40:17', '2021-09-04 05:40:17'), (3004, 4, '2021-09-04 05:40:17', '2021-09-04 05:40:17'), (3005, 4, '2021-09-04 05:40:17', '2021-09-04 05:40:17'), (3006, 4, '2021-09-04 05:40:18', '2021-09-04 05:40:18'), (3007, 4, '2021-09-04 05:40:18', '2021-09-04 05:40:18'), (3008, 4, '2021-09-04 05:40:18', '2021-09-04 05:40:18'), (3009, 4, '2021-09-04 05:40:18', '2021-09-04 05:40:18'), (3010, 4, '2021-09-04 05:40:19', '2021-09-04 05:40:19'), (3011, 4, '2021-09-04 05:40:19', '2021-09-04 05:40:19'), (3012, 4, '2021-09-04 05:40:19', '2021-09-04 05:40:19'), (3013, 4, '2021-09-04 05:40:20', '2021-09-04 05:40:20'), (3014, 4, '2021-09-04 05:40:20', '2021-09-04 05:40:20'), (3015, 4, '2021-09-04 05:40:20', '2021-09-04 05:40:20'), (3016, 4, '2021-09-04 05:40:20', '2021-09-04 05:40:20'), (3017, 4, '2021-09-04 05:40:21', '2021-09-04 05:40:21'), (3018, 4, '2021-09-04 05:40:21', '2021-09-04 05:40:21'), (3019, 4, '2021-09-04 05:40:21', '2021-09-04 05:40:21'), (3020, 4, '2021-09-04 05:40:22', '2021-09-04 05:40:22'), (3021, 4, '2021-09-04 05:40:22', '2021-09-04 05:40:22'), (3022, 4, '2021-09-04 05:40:22', '2021-09-04 05:40:22'), (3023, 4, '2021-09-04 05:40:22', '2021-09-04 05:40:22'), (3024, 4, '2021-09-04 05:40:23', '2021-09-04 05:40:23'), (3025, 4, '2021-09-04 05:40:23', '2021-09-04 05:40:23'), (3026, 4, '2021-09-04 05:40:23', '2021-09-04 05:40:23'), (3027, 4, '2021-09-04 05:40:24', '2021-09-04 05:40:24'), (3028, 4, '2021-09-04 05:40:24', '2021-09-04 05:40:24'), (3029, 4, '2021-09-04 05:40:24', '2021-09-04 05:40:24'), (3030, 4, '2021-09-04 05:40:25', '2021-09-04 05:40:25'), (3031, 4, '2021-09-04 05:40:25', '2021-09-04 05:40:25'), (3032, 4, '2021-09-04 05:40:25', '2021-09-04 05:40:25'), (3033, 4, '2021-09-04 05:40:25', '2021-09-04 05:40:25'), (3034, 4, '2021-09-04 05:40:26', '2021-09-04 05:40:26'), (3035, 4, '2021-09-04 05:40:26', '2021-09-04 05:40:26'), (3036, 4, '2021-09-04 05:40:26', '2021-09-04 05:40:26'), (3037, 4, '2021-09-04 05:40:27', '2021-09-04 05:40:27'), (3038, 4, '2021-09-04 05:40:27', '2021-09-04 05:40:27'), (3039, 4, '2021-09-04 05:40:27', '2021-09-04 05:40:27'), (3040, 4, '2021-09-04 05:40:27', '2021-09-04 05:40:27'), (3041, 4, '2021-09-04 05:40:27', '2021-09-04 05:40:27'), (3042, 4, '2021-09-04 05:40:28', '2021-09-04 05:40:28'), (3043, 4, '2021-09-04 05:40:28', '2021-09-04 05:40:28'), (3044, 4, '2021-09-04 05:40:28', '2021-09-04 05:40:28'), (3045, 4, '2021-09-04 05:40:28', '2021-09-04 05:40:28'), (3046, 4, '2021-09-04 05:40:29', '2021-09-04 05:40:29'), (3047, 4, '2021-09-04 05:40:29', '2021-09-04 05:40:29'), (3048, 4, '2021-09-04 05:40:29', '2021-09-04 05:40:29'), (3049, 4, '2021-09-04 05:40:30', '2021-09-04 05:40:30'), (3050, 4, '2021-09-04 05:40:30', '2021-09-04 05:40:30'), (3051, 4, '2021-09-04 05:40:30', '2021-09-04 05:40:30'), (3052, 4, '2021-09-04 05:40:31', '2021-09-04 05:40:31'), (3053, 4, '2021-09-04 05:40:31', '2021-09-04 05:40:31'), (3054, 4, '2021-09-04 05:40:31', '2021-09-04 05:40:31'), (3055, 4, '2021-09-04 05:40:31', '2021-09-04 05:40:31'), (3056, 4, '2021-09-04 05:40:31', '2021-09-04 05:40:31'), (3057, 4, '2021-09-04 05:40:31', '2021-09-04 05:40:31'), (3058, 4, '2021-09-04 05:40:32', '2021-09-04 05:40:32'), (3059, 4, '2021-09-04 05:40:32', '2021-09-04 05:40:32'), (3060, 4, '2021-09-04 05:40:32', '2021-09-04 05:40:32'), (3061, 4, '2021-09-04 05:40:32', '2021-09-04 05:40:32'), (3062, 4, '2021-09-04 05:40:33', '2021-09-04 05:40:33'), (3063, 4, '2021-09-04 05:40:33', '2021-09-04 05:40:33'), (3064, 4, '2021-09-04 05:40:33', '2021-09-04 05:40:33'), (3065, 4, '2021-09-04 05:40:34', '2021-09-04 05:40:34'), (3066, 4, '2021-09-04 05:40:34', '2021-09-04 05:40:34'), (3067, 4, '2021-09-04 05:40:34', '2021-09-04 05:40:34'), (3068, 4, '2021-09-04 05:40:34', '2021-09-04 05:40:34'), (3069, 4, '2021-09-04 05:40:34', '2021-09-04 05:40:34'), (3070, 4, '2021-09-04 05:40:35', '2021-09-04 05:40:35'), (3071, 4, '2021-09-04 05:40:35', '2021-09-04 05:40:35'), (3072, 4, '2021-09-04 05:40:35', '2021-09-04 05:40:35'), (3073, 4, '2021-09-04 05:40:35', '2021-09-04 05:40:35'), (3074, 4, '2021-09-04 05:40:36', '2021-09-04 05:40:36'), (3075, 4, '2021-09-04 05:40:36', '2021-09-04 05:40:36'), (3076, 4, '2021-09-04 05:40:36', '2021-09-04 05:40:36'), (3077, 4, '2021-09-04 05:40:36', '2021-09-04 05:40:36'), (3078, 4, '2021-09-04 05:40:37', '2021-09-04 05:40:37'), (3079, 4, '2021-09-04 05:40:37', '2021-09-04 05:40:37'), (3080, 4, '2021-09-04 05:40:37', '2021-09-04 05:40:37'), (3081, 4, '2021-09-04 05:40:37', '2021-09-04 05:40:37'), (3082, 4, '2021-09-04 05:40:38', '2021-09-04 05:40:38'), (3083, 4, '2021-09-04 05:40:38', '2021-09-04 05:40:38'), (3084, 4, '2021-09-04 05:40:38', '2021-09-04 05:40:38'), (3085, 4, '2021-09-04 05:40:38', '2021-09-04 05:40:38'), (3086, 4, '2021-09-04 05:40:39', '2021-09-04 05:40:39'), (3087, 4, '2021-09-04 05:40:39', '2021-09-04 05:40:39'), (3088, 4, '2021-09-04 05:40:40', '2021-09-04 05:40:40'), (3089, 4, '2021-09-04 05:40:40', '2021-09-04 05:40:40'), (3090, 4, '2021-09-04 05:40:40', '2021-09-04 05:40:40'), (3091, 4, '2021-09-04 05:40:40', '2021-09-04 05:40:40'), (3092, 4, '2021-09-04 05:40:40', '2021-09-04 05:40:40'), (3093, 4, '2021-09-04 05:40:41', '2021-09-04 05:40:41'), (3094, 4, '2021-09-04 05:40:41', '2021-09-04 05:40:41'), (3095, 4, '2021-09-04 05:40:41', '2021-09-04 05:40:41'), (3096, 4, '2021-09-04 05:40:42', '2021-09-04 05:40:42'), (3097, 4, '2021-09-04 05:40:42', '2021-09-04 05:40:42'), (3098, 4, '2021-09-04 05:40:42', '2021-09-04 05:40:42'), (3099, 4, '2021-09-04 05:40:44', '2021-09-04 05:40:44'), (3100, 4, '2021-09-04 05:40:44', '2021-09-04 05:40:44'), (3101, 4, '2021-09-04 05:40:44', '2021-09-04 05:40:44'), (3102, 4, '2021-09-04 05:40:44', '2021-09-04 05:40:44'), (3103, 4, '2021-09-04 05:40:44', '2021-09-04 05:40:44'), (3104, 4, '2021-09-04 05:40:44', '2021-09-04 05:40:44'), (3105, 4, '2021-09-04 05:40:45', '2021-09-04 05:40:45'), (3106, 4, '2021-09-04 05:40:45', '2021-09-04 05:40:45'), (3107, 4, '2021-09-04 05:40:45', '2021-09-04 05:40:45'), (3108, 4, '2021-09-04 05:40:46', '2021-09-04 05:40:46'), (3109, 4, '2021-09-04 05:40:46', '2021-09-04 05:40:46'), (3110, 4, '2021-09-04 05:40:46', '2021-09-04 05:40:46'), (3111, 4, '2021-09-04 05:40:47', '2021-09-04 05:40:47'), (3112, 4, '2021-09-04 05:40:49', '2021-09-04 05:40:49'), (3113, 4, '2021-09-05 05:40:56', '2021-09-05 05:40:56'), (3114, 4, '2021-09-05 05:40:58', '2021-09-05 05:40:58'), (3115, 4, '2021-09-05 05:40:59', '2021-09-05 05:40:59'), (3116, 4, '2021-09-05 05:40:59', '2021-09-05 05:40:59'), (3117, 4, '2021-09-05 05:41:00', '2021-09-05 05:41:00'), (3118, 4, '2021-09-05 05:41:00', '2021-09-05 05:41:00'), (3119, 4, '2021-09-05 05:41:00', '2021-09-05 05:41:00'), (3120, 4, '2021-09-05 05:41:00', '2021-09-05 05:41:00'), (3121, 4, '2021-09-05 05:41:01', '2021-09-05 05:41:01'), (3122, 4, '2021-09-05 05:41:01', '2021-09-05 05:41:01'), (3123, 4, '2021-09-05 05:41:01', '2021-09-05 05:41:01'), (3124, 4, '2021-09-05 05:41:01', '2021-09-05 05:41:01'), (3125, 4, '2021-09-05 05:41:02', '2021-09-05 05:41:02'), (3126, 4, '2021-09-05 05:41:02', '2021-09-05 05:41:02'), (3127, 4, '2021-09-05 05:41:02', '2021-09-05 05:41:02'), (3128, 4, '2021-09-05 05:41:02', '2021-09-05 05:41:02'), (3129, 4, '2021-09-05 05:41:03', '2021-09-05 05:41:03'), (3130, 4, '2021-09-05 05:41:03', '2021-09-05 05:41:03'), (3131, 4, '2021-09-05 05:41:04', '2021-09-05 05:41:04'), (3132, 4, '2021-09-05 05:41:04', '2021-09-05 05:41:04'), (3133, 4, '2021-09-05 05:41:05', '2021-09-05 05:41:05'), (3134, 4, '2021-09-05 05:41:07', '2021-09-05 05:41:07'), (3135, 4, '2021-09-05 05:41:08', '2021-09-05 05:41:08'), (3136, 4, '2021-09-05 05:41:08', '2021-09-05 05:41:08'), (3137, 4, '2021-09-05 05:41:08', '2021-09-05 05:41:08'), (3138, 4, '2021-09-05 05:41:08', '2021-09-05 05:41:08'), (3139, 4, '2021-09-05 05:41:09', '2021-09-05 05:41:09'), (3140, 4, '2021-09-05 05:41:09', '2021-09-05 05:41:09'), (3141, 4, '2021-09-05 05:41:11', '2021-09-05 05:41:11'), (3142, 4, '2021-09-05 05:41:11', '2021-09-05 05:41:11'), (3143, 4, '2021-09-05 05:41:11', '2021-09-05 05:41:11'), (3144, 4, '2021-09-05 05:41:12', '2021-09-05 05:41:12'), (3145, 4, '2021-09-05 05:41:12', '2021-09-05 05:41:12'), (3146, 4, '2021-09-05 05:41:12', '2021-09-05 05:41:12'), (3147, 4, '2021-09-05 05:41:12', '2021-09-05 05:41:12'), (3148, 4, '2021-09-05 05:41:13', '2021-09-05 05:41:13'), (3149, 4, '2021-09-05 05:41:13', '2021-09-05 05:41:13'), (3150, 4, '2021-09-05 05:41:13', '2021-09-05 05:41:13'), (3151, 4, '2021-09-05 05:41:14', '2021-09-05 05:41:14'), (3152, 4, '2021-09-05 05:41:14', '2021-09-05 05:41:14'), (3153, 4, '2021-09-05 05:41:14', '2021-09-05 05:41:14'), (3154, 4, '2021-09-05 05:41:14', '2021-09-05 05:41:14'), (3155, 4, '2021-09-05 05:41:14', '2021-09-05 05:41:14'), (3156, 4, '2021-09-05 05:41:14', '2021-09-05 05:41:14'), (3157, 4, '2021-09-05 05:41:15', '2021-09-05 05:41:15'), (3158, 4, '2021-09-05 05:41:15', '2021-09-05 05:41:15'), (3159, 4, '2021-09-05 05:41:15', '2021-09-05 05:41:15'), (3160, 4, '2021-09-05 05:41:16', '2021-09-05 05:41:16'), (3161, 4, '2021-09-05 05:41:16', '2021-09-05 05:41:16'), (3162, 4, '2021-09-05 05:41:16', '2021-09-05 05:41:16'), (3163, 4, '2021-09-05 05:41:17', '2021-09-05 05:41:17'), (3164, 4, '2021-09-05 05:41:17', '2021-09-05 05:41:17'), (3165, 4, '2021-09-05 05:41:17', '2021-09-05 05:41:17'), (3166, 4, '2021-09-05 05:41:17', '2021-09-05 05:41:17'), (3167, 4, '2021-09-05 05:41:17', '2021-09-05 05:41:17'), (3168, 4, '2021-09-05 05:41:18', '2021-09-05 05:41:18'), (3169, 4, '2021-09-05 05:41:18', '2021-09-05 05:41:18'), (3170, 4, '2021-09-05 05:41:18', '2021-09-05 05:41:18'), (3171, 4, '2021-09-05 05:41:18', '2021-09-05 05:41:18'), (3172, 4, '2021-09-05 05:41:19', '2021-09-05 05:41:19'), (3173, 4, '2021-09-05 05:41:19', '2021-09-05 05:41:19'), (3174, 4, '2021-09-05 05:41:19', '2021-09-05 05:41:19'), (3175, 4, '2021-09-05 05:41:20', '2021-09-05 05:41:20'), (3176, 4, '2021-09-05 05:41:20', '2021-09-05 05:41:20'), (3177, 4, '2021-09-05 05:41:20', '2021-09-05 05:41:20'), (3178, 4, '2021-09-05 05:41:20', '2021-09-05 05:41:20'), (3179, 4, '2021-09-05 05:41:21', '2021-09-05 05:41:21'), (3180, 4, '2021-09-05 05:41:21', '2021-09-05 05:41:21'), (3181, 4, '2021-09-05 05:41:21', '2021-09-05 05:41:21'), (3182, 4, '2021-09-05 05:41:21', '2021-09-05 05:41:21'), (3183, 4, '2021-09-05 05:41:21', '2021-09-05 05:41:21'), (3184, 4, '2021-09-05 05:41:21', '2021-09-05 05:41:21'), (3185, 4, '2021-09-05 05:41:22', '2021-09-05 05:41:22'), (3186, 4, '2021-09-05 05:41:22', '2021-09-05 05:41:22'), (3187, 4, '2021-09-05 05:41:22', '2021-09-05 05:41:22'), (3188, 4, '2021-09-05 05:41:23', '2021-09-05 05:41:23'), (3189, 4, '2021-09-05 05:41:23', '2021-09-05 05:41:23'), (3190, 4, '2021-09-05 05:41:23', '2021-09-05 05:41:23'), (3191, 4, '2021-09-05 05:41:23', '2021-09-05 05:41:23'), (3192, 4, '2021-09-05 05:41:24', '2021-09-05 05:41:24'), (3193, 4, '2021-09-05 05:41:24', '2021-09-05 05:41:24'), (3194, 4, '2021-09-05 05:41:24', '2021-09-05 05:41:24'), (3195, 4, '2021-09-05 05:41:24', '2021-09-05 05:41:24'), (3196, 4, '2021-09-05 05:41:25', '2021-09-05 05:41:25'), (3197, 4, '2021-09-05 05:41:25', '2021-09-05 05:41:25'), (3198, 4, '2021-09-05 05:41:26', '2021-09-05 05:41:26'), (3199, 4, '2021-09-05 05:41:26', '2021-09-05 05:41:26'), (3200, 4, '2021-09-05 05:41:27', '2021-09-05 05:41:27'), (3201, 4, '2021-09-05 05:41:27', '2021-09-05 05:41:27'), (3202, 4, '2021-09-05 05:41:28', '2021-09-05 05:41:28'), (3203, 4, '2021-09-05 05:41:29', '2021-09-05 05:41:29'), (3204, 4, '2021-09-05 05:41:29', '2021-09-05 05:41:29'), (3205, 4, '2021-09-05 05:41:30', '2021-09-05 05:41:30'), (3206, 4, '2021-09-05 05:41:31', '2021-09-05 05:41:31'), (3207, 4, '2021-09-05 05:41:31', '2021-09-05 05:41:31'), (3208, 4, '2021-09-05 05:41:32', '2021-09-05 05:41:32'), (3209, 4, '2021-09-05 05:41:32', '2021-09-05 05:41:32'), (3210, 4, '2021-09-05 05:41:33', '2021-09-05 05:41:33'), (3211, 4, '2021-09-05 05:41:34', '2021-09-05 05:41:34'), (3212, 4, '2021-09-05 05:41:35', '2021-09-05 05:41:35'), (3213, 4, '2021-09-05 05:41:35', '2021-09-05 05:41:35'), (3214, 4, '2021-09-05 05:41:35', '2021-09-05 05:41:35'), (3215, 4, '2021-09-05 05:41:35', '2021-09-05 05:41:35'), (3216, 4, '2021-09-05 05:41:36', '2021-09-05 05:41:36'), (3217, 4, '2021-09-05 05:41:36', '2021-09-05 05:41:36'), (3218, 4, '2021-09-05 05:41:36', '2021-09-05 05:41:36'), (3219, 4, '2021-09-05 05:41:37', '2021-09-05 05:41:37'), (3220, 4, '2021-09-05 05:41:37', '2021-09-05 05:41:37'), (3221, 4, '2021-09-05 05:41:37', '2021-09-05 05:41:37'), (3222, 4, '2021-09-05 05:41:38', '2021-09-05 05:41:38'), (3223, 4, '2021-09-05 05:41:38', '2021-09-05 05:41:38'), (3224, 4, '2021-09-05 05:41:38', '2021-09-05 05:41:38'), (3225, 4, '2021-09-05 05:41:38', '2021-09-05 05:41:38'), (3226, 4, '2021-09-05 05:41:39', '2021-09-05 05:41:39'), (3227, 4, '2021-09-05 05:41:39', '2021-09-05 05:41:39'), (3228, 4, '2021-09-05 05:41:39', '2021-09-05 05:41:39'), (3229, 4, '2021-09-05 05:41:39', '2021-09-05 05:41:39'), (3230, 4, '2021-09-05 05:41:40', '2021-09-05 05:41:40'), (3231, 4, '2021-09-05 05:41:40', '2021-09-05 05:41:40'), (3232, 4, '2021-09-05 05:41:40', '2021-09-05 05:41:40'), (3233, 4, '2021-09-05 05:41:41', '2021-09-05 05:41:41'), (3234, 4, '2021-09-05 05:41:41', '2021-09-05 05:41:41'), (3235, 4, '2021-09-05 05:41:41', '2021-09-05 05:41:41'), (3236, 4, '2021-09-05 05:41:41', '2021-09-05 05:41:41'), (3237, 4, '2021-09-05 05:41:42', '2021-09-05 05:41:42'), (3238, 4, '2021-09-05 05:41:42', '2021-09-05 05:41:42'), (3239, 4, '2021-09-05 05:41:42', '2021-09-05 05:41:42'), (3240, 4, '2021-09-05 05:41:42', '2021-09-05 05:41:42'), (3241, 4, '2021-09-05 05:41:42', '2021-09-05 05:41:42'), (3242, 4, '2021-09-05 05:41:43', '2021-09-05 05:41:43'), (3243, 4, '2021-09-05 05:41:43', '2021-09-05 05:41:43'), (3244, 4, '2021-09-05 05:41:43', '2021-09-05 05:41:43'), (3245, 4, '2021-09-05 05:41:44', '2021-09-05 05:41:44'), (3246, 4, '2021-09-05 05:41:44', '2021-09-05 05:41:44'), (3247, 4, '2021-09-05 05:41:44', '2021-09-05 05:41:44'), (3248, 4, '2021-09-05 05:41:44', '2021-09-05 05:41:44'), (3249, 4, '2021-09-05 05:41:45', '2021-09-05 05:41:45'), (3250, 4, '2021-09-05 05:41:45', '2021-09-05 05:41:45'), (3251, 4, '2021-09-05 05:41:45', '2021-09-05 05:41:45'), (3252, 4, '2021-09-05 05:41:45', '2021-09-05 05:41:45'), (3253, 4, '2021-09-05 05:41:46', '2021-09-05 05:41:46'), (3254, 4, '2021-09-05 05:41:46', '2021-09-05 05:41:46'), (3255, 4, '2021-09-05 05:41:46', '2021-09-05 05:41:46'), (3256, 4, '2021-09-05 05:41:47', '2021-09-05 05:41:47'), (3257, 4, '2021-09-05 05:41:47', '2021-09-05 05:41:47'), (3258, 4, '2021-09-05 05:41:47', '2021-09-05 05:41:47'), (3259, 4, '2021-09-05 05:41:47', '2021-09-05 05:41:47'), (3260, 4, '2021-09-05 05:41:48', '2021-09-05 05:41:48'), (3261, 4, '2021-09-05 05:41:48', '2021-09-05 05:41:48'), (3262, 4, '2021-09-05 05:41:48', '2021-09-05 05:41:48'), (3263, 4, '2021-09-05 05:41:49', '2021-09-05 05:41:49'), (3264, 4, '2021-09-05 05:41:49', '2021-09-05 05:41:49'), (3265, 4, '2021-09-05 05:41:49', '2021-09-05 05:41:49'), (3266, 4, '2021-09-05 05:41:50', '2021-09-05 05:41:50'), (3267, 4, '2021-09-05 05:41:50', '2021-09-05 05:41:50'), (3268, 4, '2021-09-05 05:41:51', '2021-09-05 05:41:51'), (3269, 4, '2021-09-05 05:41:52', '2021-09-05 05:41:52'), (3270, 4, '2021-09-05 05:41:53', '2021-09-05 05:41:53'), (3271, 4, '2021-09-05 05:41:55', '2021-09-05 05:41:55'), (3272, 4, '2021-09-05 05:41:55', '2021-09-05 05:41:55'), (3273, 4, '2021-09-06 05:42:02', '2021-09-06 05:42:02'), (3274, 4, '2021-09-06 05:42:04', '2021-09-06 05:42:04'), (3275, 4, '2021-09-06 05:42:04', '2021-09-06 05:42:04'), (3276, 4, '2021-09-06 05:42:04', '2021-09-06 05:42:04'), (3277, 4, '2021-09-06 05:42:05', '2021-09-06 05:42:05'), (3278, 4, '2021-09-06 05:42:06', '2021-09-06 05:42:06'), (3279, 4, '2021-09-06 05:42:06', '2021-09-06 05:42:06'), (3280, 4, '2021-09-06 05:42:06', '2021-09-06 05:42:06'), (3281, 4, '2021-09-06 05:42:06', '2021-09-06 05:42:06'), (3282, 4, '2021-09-06 05:42:07', '2021-09-06 05:42:07'), (3283, 4, '2021-09-06 05:42:07', '2021-09-06 05:42:07'), (3284, 4, '2021-09-06 05:42:07', '2021-09-06 05:42:07'), (3285, 4, '2021-09-06 05:42:07', '2021-09-06 05:42:07'), (3286, 4, '2021-09-06 05:42:08', '2021-09-06 05:42:08'), (3287, 4, '2021-09-06 05:42:08', '2021-09-06 05:42:08'), (3288, 4, '2021-09-06 05:42:08', '2021-09-06 05:42:08'), (3289, 4, '2021-09-06 05:42:08', '2021-09-06 05:42:08'), (3290, 4, '2021-09-06 05:42:08', '2021-09-06 05:42:08'), (3291, 4, '2021-09-06 05:42:09', '2021-09-06 05:42:09'), (3292, 4, '2021-09-06 05:42:09', '2021-09-06 05:42:09'), (3293, 4, '2021-09-06 05:42:09', '2021-09-06 05:42:09'), (3294, 4, '2021-09-06 05:42:09', '2021-09-06 05:42:09'), (3295, 4, '2021-09-06 05:42:10', '2021-09-06 05:42:10'), (3296, 4, '2021-09-06 05:42:10', '2021-09-06 05:42:10'), (3297, 4, '2021-09-06 05:42:10', '2021-09-06 05:42:10'), (3298, 4, '2021-09-06 05:42:10', '2021-09-06 05:42:10'), (3299, 4, '2021-09-06 05:42:10', '2021-09-06 05:42:10'), (3300, 4, '2021-09-06 05:42:11', '2021-09-06 05:42:11'), (3301, 4, '2021-09-06 05:42:11', '2021-09-06 05:42:11'), (3302, 4, '2021-09-06 05:42:11', '2021-09-06 05:42:11'), (3303, 4, '2021-09-06 05:42:12', '2021-09-06 05:42:12'), (3304, 4, '2021-09-06 05:42:12', '2021-09-06 05:42:12'), (3305, 4, '2021-09-06 05:42:12', '2021-09-06 05:42:12'), (3306, 4, '2021-09-06 05:42:12', '2021-09-06 05:42:12'), (3307, 4, '2021-09-06 05:42:12', '2021-09-06 05:42:12'), (3308, 4, '2021-09-06 05:42:13', '2021-09-06 05:42:13'), (3309, 4, '2021-09-06 05:42:13', '2021-09-06 05:42:13'), (3310, 4, '2021-09-06 05:42:13', '2021-09-06 05:42:13'), (3311, 4, '2021-09-06 05:42:13', '2021-09-06 05:42:13'), (3312, 4, '2021-09-06 05:42:14', '2021-09-06 05:42:14'), (3313, 4, '2021-09-06 05:42:14', '2021-09-06 05:42:14'), (3314, 4, '2021-09-06 05:42:14', '2021-09-06 05:42:14'), (3315, 4, '2021-09-06 05:42:14', '2021-09-06 05:42:14'), (3316, 4, '2021-09-06 05:42:15', '2021-09-06 05:42:15'), (3317, 4, '2021-09-06 05:42:15', '2021-09-06 05:42:15'), (3318, 4, '2021-09-06 05:42:15', '2021-09-06 05:42:15'), (3319, 4, '2021-09-06 05:42:15', '2021-09-06 05:42:15'), (3320, 4, '2021-09-06 05:42:15', '2021-09-06 05:42:15'), (3321, 4, '2021-09-06 05:42:16', '2021-09-06 05:42:16'), (3322, 4, '2021-09-06 05:42:16', '2021-09-06 05:42:16'), (3323, 4, '2021-09-06 05:42:16', '2021-09-06 05:42:16'), (3324, 4, '2021-09-06 05:42:17', '2021-09-06 05:42:17'), (3325, 4, '2021-09-06 05:42:17', '2021-09-06 05:42:17'), (3326, 4, '2021-09-06 05:42:17', '2021-09-06 05:42:17'), (3327, 4, '2021-09-06 05:42:18', '2021-09-06 05:42:18'), (3328, 4, '2021-09-06 05:42:18', '2021-09-06 05:42:18'), (3329, 4, '2021-09-06 05:42:18', '2021-09-06 05:42:18'), (3330, 4, '2021-09-06 05:42:19', '2021-09-06 05:42:19'), (3331, 4, '2021-09-06 05:42:19', '2021-09-06 05:42:19'), (3332, 4, '2021-09-06 05:42:19', '2021-09-06 05:42:19'), (3333, 4, '2021-09-06 05:42:20', '2021-09-06 05:42:20'), (3334, 4, '2021-09-06 05:42:20', '2021-09-06 05:42:20'), (3335, 4, '2021-09-06 05:42:20', '2021-09-06 05:42:20'), (3336, 4, '2021-09-06 05:42:20', '2021-09-06 05:42:20'), (3337, 4, '2021-09-06 05:42:20', '2021-09-06 05:42:20'), (3338, 4, '2021-09-06 05:42:21', '2021-09-06 05:42:21'), (3339, 4, '2021-09-06 05:42:21', '2021-09-06 05:42:21'), (3340, 4, '2021-09-06 05:42:26', '2021-09-06 05:42:26'), (3341, 4, '2021-09-06 05:42:26', '2021-09-06 05:42:26'), (3342, 4, '2021-09-06 05:42:26', '2021-09-06 05:42:26'), (3343, 4, '2021-09-06 05:42:26', '2021-09-06 05:42:26'), (3344, 4, '2021-09-06 05:42:27', '2021-09-06 05:42:27'), (3345, 4, '2021-09-06 05:42:27', '2021-09-06 05:42:27'), (3346, 4, '2021-09-06 05:42:28', '2021-09-06 05:42:28'), (3347, 4, '2021-09-06 05:42:28', '2021-09-06 05:42:28'), (3348, 4, '2021-09-06 05:42:28', '2021-09-06 05:42:28'), (3349, 4, '2021-09-06 05:42:28', '2021-09-06 05:42:28'), (3350, 4, '2021-09-06 05:42:29', '2021-09-06 05:42:29'), (3351, 4, '2021-09-06 05:42:29', '2021-09-06 05:42:29'), (3352, 4, '2021-09-06 05:42:29', '2021-09-06 05:42:29'), (3353, 4, '2021-09-06 05:42:29', '2021-09-06 05:42:29'), (3354, 4, '2021-09-06 05:42:30', '2021-09-06 05:42:30'), (3355, 4, '2021-09-06 05:42:30', '2021-09-06 05:42:30'), (3356, 4, '2021-09-06 05:42:30', '2021-09-06 05:42:30'), (3357, 4, '2021-09-06 05:42:31', '2021-09-06 05:42:31'), (3358, 4, '2021-09-06 05:42:31', '2021-09-06 05:42:31'), (3359, 4, '2021-09-06 05:42:31', '2021-09-06 05:42:31'), (3360, 4, '2021-09-06 05:42:31', '2021-09-06 05:42:31'), (3361, 4, '2021-09-06 05:42:31', '2021-09-06 05:42:31'), (3362, 4, '2021-09-06 05:42:32', '2021-09-06 05:42:32'), (3363, 4, '2021-09-06 05:42:32', '2021-09-06 05:42:32'), (3364, 4, '2021-09-06 05:42:32', '2021-09-06 05:42:32'), (3365, 4, '2021-09-06 05:42:32', '2021-09-06 05:42:32'), (3366, 4, '2021-09-06 05:42:33', '2021-09-06 05:42:33'), (3367, 4, '2021-09-06 05:42:33', '2021-09-06 05:42:33'), (3368, 4, '2021-09-06 05:42:33', '2021-09-06 05:42:33'), (3369, 4, '2021-09-06 05:42:34', '2021-09-06 05:42:34'), (3370, 4, '2021-09-06 05:42:34', '2021-09-06 05:42:34'), (3371, 4, '2021-09-06 05:42:34', '2021-09-06 05:42:34'), (3372, 4, '2021-09-06 05:42:35', '2021-09-06 05:42:35'), (3373, 4, '2021-09-06 05:42:35', '2021-09-06 05:42:35'), (3374, 4, '2021-09-06 05:42:35', '2021-09-06 05:42:35'), (3375, 4, '2021-09-06 05:42:36', '2021-09-06 05:42:36'), (3376, 4, '2021-09-06 05:42:36', '2021-09-06 05:42:36'), (3377, 4, '2021-09-06 05:42:36', '2021-09-06 05:42:36'), (3378, 4, '2021-09-06 05:42:37', '2021-09-06 05:42:37'), (3379, 4, '2021-09-06 05:42:37', '2021-09-06 05:42:37'), (3380, 4, '2021-09-06 05:42:37', '2021-09-06 05:42:37'), (3381, 4, '2021-09-06 05:42:37', '2021-09-06 05:42:37'), (3382, 4, '2021-09-06 05:42:38', '2021-09-06 05:42:38'), (3383, 4, '2021-09-06 05:42:38', '2021-09-06 05:42:38'), (3384, 4, '2021-09-06 05:42:38', '2021-09-06 05:42:38'), (3385, 4, '2021-09-06 05:42:39', '2021-09-06 05:42:39'), (3386, 4, '2021-09-06 05:42:39', '2021-09-06 05:42:39'), (3387, 4, '2021-09-06 05:42:39', '2021-09-06 05:42:39'), (3388, 4, '2021-09-06 05:42:39', '2021-09-06 05:42:39'), (3389, 4, '2021-09-06 05:42:39', '2021-09-06 05:42:39'), (3390, 4, '2021-09-06 05:42:40', '2021-09-06 05:42:40'), (3391, 4, '2021-09-06 05:42:40', '2021-09-06 05:42:40'), (3392, 4, '2021-09-06 05:42:40', '2021-09-06 05:42:40'), (3393, 4, '2021-09-06 05:42:40', '2021-09-06 05:42:40'), (3394, 4, '2021-09-06 05:42:41', '2021-09-06 05:42:41'), (3395, 4, '2021-09-06 05:42:41', '2021-09-06 05:42:41'), (3396, 4, '2021-09-06 05:42:41', '2021-09-06 05:42:41'), (3397, 4, '2021-09-06 05:42:41', '2021-09-06 05:42:41'), (3398, 4, '2021-09-06 05:42:42', '2021-09-06 05:42:42'), (3399, 4, '2021-09-06 05:42:42', '2021-09-06 05:42:42'), (3400, 4, '2021-09-06 05:42:42', '2021-09-06 05:42:42'), (3401, 4, '2021-09-06 05:42:42', '2021-09-06 05:42:42'), (3402, 4, '2021-09-06 05:42:43', '2021-09-06 05:42:43'), (3403, 4, '2021-09-06 05:42:43', '2021-09-06 05:42:43'), (3404, 4, '2021-09-06 05:42:43', '2021-09-06 05:42:43'), (3405, 4, '2021-09-06 05:42:44', '2021-09-06 05:42:44'), (3406, 4, '2021-09-06 05:42:44', '2021-09-06 05:42:44'), (3407, 4, '2021-09-06 05:42:45', '2021-09-06 05:42:45'), (3408, 4, '2021-09-06 05:42:45', '2021-09-06 05:42:45'), (3409, 4, '2021-09-06 05:42:45', '2021-09-06 05:42:45'), (3410, 4, '2021-09-06 05:42:46', '2021-09-06 05:42:46'), (3411, 4, '2021-09-06 05:42:46', '2021-09-06 05:42:46'), (3412, 4, '2021-09-06 05:42:47', '2021-09-06 05:42:47'), (3413, 4, '2021-09-06 05:42:47', '2021-09-06 05:42:47'), (3414, 4, '2021-09-06 05:42:48', '2021-09-06 05:42:48'), (3415, 4, '2021-09-06 05:42:48', '2021-09-06 05:42:48'), (3416, 4, '2021-09-06 05:42:48', '2021-09-06 05:42:48'), (3417, 4, '2021-09-06 05:42:49', '2021-09-06 05:42:49'), (3418, 4, '2021-09-06 05:42:49', '2021-09-06 05:42:49'), (3419, 4, '2021-09-06 05:42:50', '2021-09-06 05:42:50'), (3420, 4, '2021-09-06 05:42:51', '2021-09-06 05:42:51'), (3421, 4, '2021-09-06 05:42:52', '2021-09-06 05:42:52'), (3422, 4, '2021-09-06 05:42:52', '2021-09-06 05:42:52'), (3423, 4, '2021-09-06 05:42:52', '2021-09-06 05:42:52'), (3424, 4, '2021-09-06 05:42:52', '2021-09-06 05:42:52'), (3425, 4, '2021-09-06 05:42:53', '2021-09-06 05:42:53'), (3426, 4, '2021-09-06 05:42:53', '2021-09-06 05:42:53'), (3427, 4, '2021-09-06 05:42:53', '2021-09-06 05:42:53'), (3428, 4, '2021-09-06 05:42:53', '2021-09-06 05:42:53'), (3429, 4, '2021-09-06 05:42:54', '2021-09-06 05:42:54'), (3430, 4, '2021-09-06 05:42:54', '2021-09-06 05:42:54'), (3431, 4, '2021-09-06 05:42:54', '2021-09-06 05:42:54'), (3432, 4, '2021-09-06 05:42:55', '2021-09-06 05:42:55'), (3433, 4, '2021-09-06 05:42:55', '2021-09-06 05:42:55'), (3434, 4, '2021-09-06 05:42:55', '2021-09-06 05:42:55'), (3435, 4, '2021-09-06 05:42:57', '2021-09-06 05:42:57'), (3436, 4, '2021-09-06 05:42:57', '2021-09-06 05:42:57'), (3437, 4, '2021-09-06 05:42:57', '2021-09-06 05:42:57'), (3438, 4, '2021-09-06 05:42:58', '2021-09-06 05:42:58'), (3439, 4, '2021-09-06 05:42:58', '2021-09-06 05:42:58'), (3440, 4, '2021-09-06 05:42:58', '2021-09-06 05:42:58'), (3441, 4, '2021-09-06 05:42:58', '2021-09-06 05:42:58'), (3442, 4, '2021-09-06 05:42:58', '2021-09-06 05:42:58'), (3443, 4, '2021-09-06 05:42:59', '2021-09-06 05:42:59'), (3444, 4, '2021-09-06 05:42:59', '2021-09-06 05:42:59'), (3445, 4, '2021-09-06 05:42:59', '2021-09-06 05:42:59'), (3446, 4, '2021-09-06 05:43:00', '2021-09-06 05:43:00'), (3447, 4, '2021-09-06 05:43:00', '2021-09-06 05:43:00'), (3448, 4, '2021-09-06 05:43:00', '2021-09-06 05:43:00'), (3449, 4, '2021-09-06 05:43:01', '2021-09-06 05:43:01'), (3450, 4, '2021-09-06 05:43:01', '2021-09-06 05:43:01'), (3451, 4, '2021-09-07 05:43:06', '2021-09-07 05:43:06'), (3452, 4, '2021-09-07 05:43:07', '2021-09-07 05:43:07'), (3453, 4, '2021-09-07 05:43:08', '2021-09-07 05:43:08'), (3454, 4, '2021-09-07 05:43:08', '2021-09-07 05:43:08'), (3455, 4, '2021-09-07 05:43:08', '2021-09-07 05:43:08'), (3456, 4, '2021-09-07 05:43:09', '2021-09-07 05:43:09'), (3457, 4, '2021-09-07 05:43:09', '2021-09-07 05:43:09'), (3458, 4, '2021-09-07 05:43:09', '2021-09-07 05:43:09'), (3459, 4, '2021-09-07 05:43:10', '2021-09-07 05:43:10'), (3460, 4, '2021-09-07 05:43:10', '2021-09-07 05:43:10'), (3461, 4, '2021-09-07 05:43:10', '2021-09-07 05:43:10'), (3462, 4, '2021-09-07 05:43:10', '2021-09-07 05:43:10'), (3463, 4, '2021-09-07 05:43:11', '2021-09-07 05:43:11'), (3464, 4, '2021-09-07 05:43:11', '2021-09-07 05:43:11'), (3465, 4, '2021-09-07 05:43:11', '2021-09-07 05:43:11'), (3466, 4, '2021-09-07 05:43:11', '2021-09-07 05:43:11'), (3467, 4, '2021-09-07 05:43:12', '2021-09-07 05:43:12'), (3468, 4, '2021-09-07 05:43:12', '2021-09-07 05:43:12'), (3469, 4, '2021-09-07 05:43:13', '2021-09-07 05:43:13'), (3470, 4, '2021-09-07 05:43:13', '2021-09-07 05:43:13'), (3471, 4, '2021-09-07 05:43:13', '2021-09-07 05:43:13'), (3472, 4, '2021-09-07 05:43:13', '2021-09-07 05:43:13'), (3473, 4, '2021-09-07 05:43:13', '2021-09-07 05:43:13'), (3474, 4, '2021-09-07 05:43:14', '2021-09-07 05:43:14'), (3475, 4, '2021-09-07 05:43:14', '2021-09-07 05:43:14'), (3476, 4, '2021-09-07 05:43:14', '2021-09-07 05:43:14'), (3477, 4, '2021-09-07 05:43:14', '2021-09-07 05:43:14'), (3478, 4, '2021-09-07 05:43:15', '2021-09-07 05:43:15'), (3479, 4, '2021-09-07 05:43:15', '2021-09-07 05:43:15'), (3480, 4, '2021-09-07 05:43:15', '2021-09-07 05:43:15'), (3481, 4, '2021-09-07 05:43:15', '2021-09-07 05:43:15'), (3482, 4, '2021-09-07 05:43:16', '2021-09-07 05:43:16'), (3483, 4, '2021-09-07 05:43:16', '2021-09-07 05:43:16'), (3484, 4, '2021-09-07 05:43:16', '2021-09-07 05:43:16'), (3485, 4, '2021-09-07 05:43:16', '2021-09-07 05:43:16'), (3486, 4, '2021-09-07 05:43:17', '2021-09-07 05:43:17'), (3487, 4, '2021-09-07 05:43:17', '2021-09-07 05:43:17'), (3488, 4, '2021-09-07 05:43:17', '2021-09-07 05:43:17'), (3489, 4, '2021-09-07 05:43:17', '2021-09-07 05:43:17'), (3490, 4, '2021-09-07 05:43:18', '2021-09-07 05:43:18'), (3491, 4, '2021-09-07 05:43:18', '2021-09-07 05:43:18'), (3492, 4, '2021-09-07 05:43:18', '2021-09-07 05:43:18'), (3493, 4, '2021-09-07 05:43:19', '2021-09-07 05:43:19'), (3494, 4, '2021-09-07 05:43:19', '2021-09-07 05:43:19'), (3495, 4, '2021-09-07 05:43:19', '2021-09-07 05:43:19'), (3496, 4, '2021-09-07 05:43:19', '2021-09-07 05:43:19'), (3497, 4, '2021-09-07 05:43:20', '2021-09-07 05:43:20'), (3498, 4, '2021-09-07 05:43:20', '2021-09-07 05:43:20'), (3499, 4, '2021-09-07 05:43:20', '2021-09-07 05:43:20'), (3500, 4, '2021-09-07 05:43:20', '2021-09-07 05:43:20'), (3501, 4, '2021-09-07 05:43:20', '2021-09-07 05:43:20'), (3502, 4, '2021-09-07 05:43:21', '2021-09-07 05:43:21'), (3503, 4, '2021-09-07 05:43:21', '2021-09-07 05:43:21'), (3504, 4, '2021-09-07 05:43:21', '2021-09-07 05:43:21'), (3505, 4, '2021-09-07 05:43:21', '2021-09-07 05:43:21'), (3506, 4, '2021-09-07 05:43:22', '2021-09-07 05:43:22'), (3507, 4, '2021-09-07 05:43:22', '2021-09-07 05:43:22'), (3508, 4, '2021-09-07 05:43:22', '2021-09-07 05:43:22'), (3509, 4, '2021-09-07 05:43:22', '2021-09-07 05:43:22'), (3510, 4, '2021-09-07 05:43:23', '2021-09-07 05:43:23'), (3511, 4, '2021-09-07 05:43:23', '2021-09-07 05:43:23'), (3512, 4, '2021-09-07 05:43:23', '2021-09-07 05:43:23'), (3513, 4, '2021-09-07 05:43:23', '2021-09-07 05:43:23'), (3514, 4, '2021-09-07 05:43:23', '2021-09-07 05:43:23'), (3515, 4, '2021-09-07 05:43:24', '2021-09-07 05:43:24'), (3516, 4, '2021-09-07 05:43:24', '2021-09-07 05:43:24'), (3517, 4, '2021-09-07 05:43:24', '2021-09-07 05:43:24'), (3518, 4, '2021-09-07 05:43:24', '2021-09-07 05:43:24'), (3519, 4, '2021-09-07 05:43:25', '2021-09-07 05:43:25'), (3520, 4, '2021-09-07 05:43:25', '2021-09-07 05:43:25'), (3521, 4, '2021-09-07 05:43:25', '2021-09-07 05:43:25'), (3522, 4, '2021-09-07 05:43:26', '2021-09-07 05:43:26'), (3523, 4, '2021-09-07 05:43:26', '2021-09-07 05:43:26'), (3524, 4, '2021-09-07 05:43:26', '2021-09-07 05:43:26'), (3525, 4, '2021-09-07 05:43:26', '2021-09-07 05:43:26'), (3526, 4, '2021-09-07 05:43:26', '2021-09-07 05:43:26'), (3527, 4, '2021-09-07 05:43:27', '2021-09-07 05:43:27'), (3528, 4, '2021-09-07 05:43:27', '2021-09-07 05:43:27'), (3529, 4, '2021-09-07 05:43:27', '2021-09-07 05:43:27'), (3530, 4, '2021-09-07 05:43:28', '2021-09-07 05:43:28'), (3531, 4, '2021-09-07 05:43:28', '2021-09-07 05:43:28'), (3532, 4, '2021-09-07 05:43:28', '2021-09-07 05:43:28'), (3533, 4, '2021-09-07 05:43:28', '2021-09-07 05:43:28'), (3534, 4, '2021-09-07 05:43:29', '2021-09-07 05:43:29'), (3535, 4, '2021-09-07 05:43:29', '2021-09-07 05:43:29'), (3536, 4, '2021-09-07 05:43:29', '2021-09-07 05:43:29'), (3537, 4, '2021-09-07 05:43:29', '2021-09-07 05:43:29'), (3538, 4, '2021-09-07 05:43:30', '2021-09-07 05:43:30'), (3539, 4, '2021-09-07 05:43:30', '2021-09-07 05:43:30'), (3540, 4, '2021-09-07 05:43:30', '2021-09-07 05:43:30'), (3541, 4, '2021-09-07 05:43:30', '2021-09-07 05:43:30'), (3542, 4, '2021-09-07 05:43:31', '2021-09-07 05:43:31'), (3543, 4, '2021-09-07 05:43:31', '2021-09-07 05:43:31'), (3544, 4, '2021-09-07 05:43:31', '2021-09-07 05:43:31'), (3545, 4, '2021-09-07 05:43:31', '2021-09-07 05:43:31'), (3546, 4, '2021-09-07 05:43:32', '2021-09-07 05:43:32'), (3547, 4, '2021-09-07 05:43:33', '2021-09-07 05:43:33'), (3548, 4, '2021-09-07 05:43:33', '2021-09-07 05:43:33'), (3549, 4, '2021-09-08 05:43:38', '2021-09-08 05:43:38'), (3550, 4, '2021-09-08 05:43:39', '2021-09-08 05:43:39'), (3551, 4, '2021-09-08 05:43:40', '2021-09-08 05:43:40'), (3552, 4, '2021-09-08 05:43:40', '2021-09-08 05:43:40'), (3553, 4, '2021-09-08 05:43:40', '2021-09-08 05:43:40'), (3554, 4, '2021-09-08 05:43:40', '2021-09-08 05:43:40'), (3555, 4, '2021-09-08 05:43:41', '2021-09-08 05:43:41'), (3556, 4, '2021-09-08 05:43:41', '2021-09-08 05:43:41'), (3557, 4, '2021-09-08 05:43:41', '2021-09-08 05:43:41'), (3558, 4, '2021-09-08 05:43:42', '2021-09-08 05:43:42'), (3559, 4, '2021-09-08 05:43:42', '2021-09-08 05:43:42'), (3560, 4, '2021-09-08 05:43:43', '2021-09-08 05:43:43'), (3561, 4, '2021-09-08 05:43:44', '2021-09-08 05:43:44'), (3562, 4, '2021-09-08 05:43:44', '2021-09-08 05:43:44'), (3563, 4, '2021-09-08 05:43:44', '2021-09-08 05:43:44'), (3564, 4, '2021-09-08 05:43:45', '2021-09-08 05:43:45'), (3565, 4, '2021-09-08 05:43:45', '2021-09-08 05:43:45'), (3566, 4, '2021-09-08 05:43:45', '2021-09-08 05:43:45'), (3567, 4, '2021-09-08 05:43:46', '2021-09-08 05:43:46'), (3568, 4, '2021-09-08 05:43:47', '2021-09-08 05:43:47'), (3569, 4, '2021-09-08 05:43:47', '2021-09-08 05:43:47'), (3570, 4, '2021-09-08 05:43:47', '2021-09-08 05:43:47'), (3571, 4, '2021-09-08 05:43:47', '2021-09-08 05:43:47'), (3572, 4, '2021-09-08 05:43:48', '2021-09-08 05:43:48'), (3573, 4, '2021-09-08 05:43:48', '2021-09-08 05:43:48'), (3574, 4, '2021-09-08 05:43:48', '2021-09-08 05:43:48'), (3575, 4, '2021-09-08 05:43:49', '2021-09-08 05:43:49'), (3576, 4, '2021-09-08 05:43:49', '2021-09-08 05:43:49'), (3577, 4, '2021-09-08 05:43:53', '2021-09-08 05:43:53'), (3578, 4, '2021-09-08 05:43:53', '2021-09-08 05:43:53'), (3579, 4, '2021-09-08 05:43:53', '2021-09-08 05:43:53'), (3580, 4, '2021-09-08 05:43:54', '2021-09-08 05:43:54'), (3581, 4, '2021-09-08 05:43:54', '2021-09-08 05:43:54'), (3582, 4, '2021-09-08 05:43:54', '2021-09-08 05:43:54'), (3583, 4, '2021-09-08 05:43:54', '2021-09-08 05:43:54'), (3584, 4, '2021-09-08 05:43:55', '2021-09-08 05:43:55'), (3585, 4, '2021-09-08 05:43:55', '2021-09-08 05:43:55'), (3586, 4, '2021-09-08 05:43:55', '2021-09-08 05:43:55'), (3587, 4, '2021-09-08 05:43:56', '2021-09-08 05:43:56'), (3588, 4, '2021-09-08 05:43:56', '2021-09-08 05:43:56'), (3589, 4, '2021-09-08 05:43:56', '2021-09-08 05:43:56'), (3590, 4, '2021-09-08 05:43:57', '2021-09-08 05:43:57'), (3591, 4, '2021-09-08 05:43:57', '2021-09-08 05:43:57'), (3592, 4, '2021-09-08 05:43:57', '2021-09-08 05:43:57'), (3593, 4, '2021-09-08 05:43:57', '2021-09-08 05:43:57'), (3594, 4, '2021-09-08 05:43:58', '2021-09-08 05:43:58'), (3595, 4, '2021-09-08 05:43:58', '2021-09-08 05:43:58'), (3596, 4, '2021-09-08 05:43:58', '2021-09-08 05:43:58'), (3597, 4, '2021-09-08 05:43:58', '2021-09-08 05:43:58'), (3598, 4, '2021-09-08 05:43:58', '2021-09-08 05:43:58'), (3599, 4, '2021-09-08 05:43:59', '2021-09-08 05:43:59'), (3600, 4, '2021-09-08 05:43:59', '2021-09-08 05:43:59'), (3601, 4, '2021-09-08 05:43:59', '2021-09-08 05:43:59'), (3602, 4, '2021-09-08 05:43:59', '2021-09-08 05:43:59'), (3603, 4, '2021-09-08 05:44:00', '2021-09-08 05:44:00'), (3604, 4, '2021-09-08 05:44:00', '2021-09-08 05:44:00'), (3605, 4, '2021-09-08 05:44:00', '2021-09-08 05:44:00'), (3606, 4, '2021-09-08 05:44:00', '2021-09-08 05:44:00'), (3607, 4, '2021-09-08 05:44:01', '2021-09-08 05:44:01'), (3608, 4, '2021-09-08 05:44:01', '2021-09-08 05:44:01'), (3609, 4, '2021-09-08 05:44:01', '2021-09-08 05:44:01'), (3610, 4, '2021-09-08 05:44:01', '2021-09-08 05:44:01'), (3611, 4, '2021-09-08 05:44:02', '2021-09-08 05:44:02'), (3612, 4, '2021-09-08 05:44:02', '2021-09-08 05:44:02'), (3613, 4, '2021-09-08 05:44:02', '2021-09-08 05:44:02'), (3614, 4, '2021-09-08 05:44:03', '2021-09-08 05:44:03'), (3615, 4, '2021-09-08 05:44:03', '2021-09-08 05:44:03'), (3616, 4, '2021-09-08 05:44:03', '2021-09-08 05:44:03'), (3617, 4, '2021-09-08 05:44:03', '2021-09-08 05:44:03'), (3618, 4, '2021-09-08 05:44:03', '2021-09-08 05:44:03'), (3619, 4, '2021-09-08 05:44:04', '2021-09-08 05:44:04'), (3620, 4, '2021-09-08 05:44:04', '2021-09-08 05:44:04'), (3621, 4, '2021-09-08 05:44:04', '2021-09-08 05:44:04'), (3622, 4, '2021-09-08 05:44:04', '2021-09-08 05:44:04'), (3623, 4, '2021-09-08 05:44:05', '2021-09-08 05:44:05'), (3624, 4, '2021-09-08 05:44:05', '2021-09-08 05:44:05'), (3625, 4, '2021-09-08 05:44:05', '2021-09-08 05:44:05'), (3626, 4, '2021-09-08 05:44:05', '2021-09-08 05:44:05'), (3627, 4, '2021-09-08 05:44:06', '2021-09-08 05:44:06'), (3628, 4, '2021-09-08 05:44:06', '2021-09-08 05:44:06'), (3629, 4, '2021-09-08 05:44:06', '2021-09-08 05:44:06'), (3630, 4, '2021-09-08 05:44:06', '2021-09-08 05:44:06'), (3631, 4, '2021-09-08 05:44:07', '2021-09-08 05:44:07'), (3632, 4, '2021-09-08 05:44:07', '2021-09-08 05:44:07'), (3633, 4, '2021-09-08 05:44:08', '2021-09-08 05:44:08'), (3634, 4, '2021-09-08 05:44:08', '2021-09-08 05:44:08'), (3635, 4, '2021-09-08 05:44:09', '2021-09-08 05:44:09'), (3636, 4, '2021-09-08 05:44:09', '2021-09-08 05:44:09'), (3637, 4, '2021-09-08 05:44:09', '2021-09-08 05:44:09'), (3638, 4, '2021-09-08 05:44:09', '2021-09-08 05:44:09'), (3639, 4, '2021-09-08 05:44:09', '2021-09-08 05:44:09'), (3640, 4, '2021-09-08 05:44:10', '2021-09-08 05:44:10'), (3641, 4, '2021-09-08 05:44:10', '2021-09-08 05:44:10'), (3642, 4, '2021-09-08 05:44:10', '2021-09-08 05:44:10'), (3643, 4, '2021-09-08 05:44:10', '2021-09-08 05:44:10'), (3644, 4, '2021-09-08 05:44:11', '2021-09-08 05:44:11'), (3645, 4, '2021-09-08 05:44:11', '2021-09-08 05:44:11'), (3646, 4, '2021-09-08 05:44:14', '2021-09-08 05:44:14'), (3647, 4, '2021-09-08 05:44:14', '2021-09-08 05:44:14'), (3648, 4, '2021-09-08 05:44:15', '2021-09-08 05:44:15'), (3649, 4, '2021-09-08 05:44:15', '2021-09-08 05:44:15'), (3650, 4, '2021-09-08 05:44:15', '2021-09-08 05:44:15'), (3651, 4, '2021-09-08 05:44:16', '2021-09-08 05:44:16'), (3652, 4, '2021-09-08 05:44:16', '2021-09-08 05:44:16'), (3653, 4, '2021-09-08 05:44:17', '2021-09-08 05:44:17'), (3654, 4, '2021-09-08 05:44:17', '2021-09-08 05:44:17'), (3655, 4, '2021-09-09 05:44:21', '2021-09-09 05:44:21'), (3656, 4, '2021-09-09 05:44:22', '2021-09-09 05:44:22'), (3657, 4, '2021-09-09 05:44:23', '2021-09-09 05:44:23'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (3658, 4, '2021-09-09 05:44:23', '2021-09-09 05:44:23'), (3659, 4, '2021-09-09 05:44:23', '2021-09-09 05:44:23'), (3660, 4, '2021-09-09 05:44:24', '2021-09-09 05:44:24'), (3661, 4, '2021-09-09 05:44:24', '2021-09-09 05:44:24'), (3662, 4, '2021-09-09 05:44:24', '2021-09-09 05:44:24'), (3663, 4, '2021-09-09 05:44:25', '2021-09-09 05:44:25'), (3664, 4, '2021-09-09 05:44:25', '2021-09-09 05:44:25'), (3665, 4, '2021-09-09 05:44:25', '2021-09-09 05:44:25'), (3666, 4, '2021-09-09 05:44:25', '2021-09-09 05:44:25'), (3667, 4, '2021-09-09 05:44:26', '2021-09-09 05:44:26'), (3668, 4, '2021-09-09 05:44:26', '2021-09-09 05:44:26'), (3669, 4, '2021-09-09 05:44:27', '2021-09-09 05:44:27'), (3670, 4, '2021-09-09 05:44:27', '2021-09-09 05:44:27'), (3671, 4, '2021-09-09 05:44:27', '2021-09-09 05:44:27'), (3672, 4, '2021-09-09 05:44:28', '2021-09-09 05:44:28'), (3673, 4, '2021-09-09 05:44:28', '2021-09-09 05:44:28'), (3674, 4, '2021-09-09 05:44:28', '2021-09-09 05:44:28'), (3675, 4, '2021-09-09 05:44:29', '2021-09-09 05:44:29'), (3676, 4, '2021-09-09 05:44:29', '2021-09-09 05:44:29'), (3677, 4, '2021-09-09 05:44:29', '2021-09-09 05:44:29'), (3678, 4, '2021-09-09 05:44:30', '2021-09-09 05:44:30'), (3679, 4, '2021-09-09 05:44:30', '2021-09-09 05:44:30'), (3680, 4, '2021-09-09 05:44:30', '2021-09-09 05:44:30'), (3681, 4, '2021-09-09 05:44:30', '2021-09-09 05:44:30'), (3682, 4, '2021-09-09 05:44:31', '2021-09-09 05:44:31'), (3683, 4, '2021-09-09 05:44:31', '2021-09-09 05:44:31'), (3684, 4, '2021-09-09 05:44:32', '2021-09-09 05:44:32'), (3685, 4, '2021-09-09 05:44:33', '2021-09-09 05:44:33'), (3686, 4, '2021-09-09 05:44:33', '2021-09-09 05:44:33'), (3687, 4, '2021-09-09 05:44:34', '2021-09-09 05:44:34'), (3688, 4, '2021-09-09 05:44:34', '2021-09-09 05:44:34'), (3689, 4, '2021-09-09 05:44:34', '2021-09-09 05:44:34'), (3690, 4, '2021-09-09 05:44:34', '2021-09-09 05:44:34'), (3691, 4, '2021-09-09 05:44:35', '2021-09-09 05:44:35'), (3692, 4, '2021-09-09 05:44:35', '2021-09-09 05:44:35'), (3693, 4, '2021-09-09 05:44:35', '2021-09-09 05:44:35'), (3694, 4, '2021-09-09 05:44:35', '2021-09-09 05:44:35'), (3695, 4, '2021-09-09 05:44:36', '2021-09-09 05:44:36'), (3696, 4, '2021-09-09 05:44:36', '2021-09-09 05:44:36'), (3697, 4, '2021-09-09 05:44:36', '2021-09-09 05:44:36'), (3698, 4, '2021-09-09 05:44:36', '2021-09-09 05:44:36'), (3699, 4, '2021-09-09 05:44:37', '2021-09-09 05:44:37'), (3700, 4, '2021-09-09 05:44:37', '2021-09-09 05:44:37'), (3701, 4, '2021-09-09 05:44:37', '2021-09-09 05:44:37'), (3702, 4, '2021-09-09 05:44:37', '2021-09-09 05:44:37'), (3703, 4, '2021-09-09 05:44:38', '2021-09-09 05:44:38'), (3704, 4, '2021-09-09 05:44:38', '2021-09-09 05:44:38'), (3705, 4, '2021-09-09 05:44:38', '2021-09-09 05:44:38'), (3706, 4, '2021-09-09 05:44:39', '2021-09-09 05:44:39'), (3707, 4, '2021-09-09 05:44:39', '2021-09-09 05:44:39'), (3708, 4, '2021-09-09 05:44:39', '2021-09-09 05:44:39'), (3709, 4, '2021-09-09 05:44:39', '2021-09-09 05:44:39'), (3710, 4, '2021-09-09 05:44:40', '2021-09-09 05:44:40'), (3711, 4, '2021-09-09 05:44:40', '2021-09-09 05:44:40'), (3712, 4, '2021-09-09 05:44:40', '2021-09-09 05:44:40'), (3713, 4, '2021-09-09 05:44:41', '2021-09-09 05:44:41'), (3714, 4, '2021-09-09 05:44:41', '2021-09-09 05:44:41'), (3715, 4, '2021-09-09 05:44:41', '2021-09-09 05:44:41'), (3716, 4, '2021-09-09 05:44:41', '2021-09-09 05:44:41'), (3717, 4, '2021-09-09 05:44:42', '2021-09-09 05:44:42'), (3718, 4, '2021-09-09 05:44:42', '2021-09-09 05:44:42'), (3719, 4, '2021-09-09 05:44:42', '2021-09-09 05:44:42'), (3720, 4, '2021-09-09 05:44:42', '2021-09-09 05:44:42'), (3721, 4, '2021-09-09 05:44:43', '2021-09-09 05:44:43'), (3722, 4, '2021-09-09 05:44:43', '2021-09-09 05:44:43'), (3723, 4, '2021-09-09 05:44:43', '2021-09-09 05:44:43'), (3724, 4, '2021-09-09 05:44:43', '2021-09-09 05:44:43'), (3725, 4, '2021-09-09 05:44:44', '2021-09-09 05:44:44'), (3726, 4, '2021-09-09 05:44:44', '2021-09-09 05:44:44'), (3727, 4, '2021-09-09 05:44:44', '2021-09-09 05:44:44'), (3728, 4, '2021-09-09 05:44:44', '2021-09-09 05:44:44'), (3729, 4, '2021-09-09 05:44:45', '2021-09-09 05:44:45'), (3730, 4, '2021-09-09 05:44:45', '2021-09-09 05:44:45'), (3731, 4, '2021-09-09 05:44:45', '2021-09-09 05:44:45'), (3732, 4, '2021-09-09 05:44:46', '2021-09-09 05:44:46'), (3733, 4, '2021-09-09 05:44:46', '2021-09-09 05:44:46'), (3734, 4, '2021-09-09 05:44:46', '2021-09-09 05:44:46'), (3735, 4, '2021-09-09 05:44:46', '2021-09-09 05:44:46'), (3736, 4, '2021-09-09 05:44:46', '2021-09-09 05:44:46'), (3737, 4, '2021-09-09 05:44:47', '2021-09-09 05:44:47'), (3738, 4, '2021-09-09 05:44:47', '2021-09-09 05:44:47'), (3739, 4, '2021-09-09 05:44:47', '2021-09-09 05:44:47'), (3740, 4, '2021-09-09 05:44:47', '2021-09-09 05:44:47'), (3741, 4, '2021-09-09 05:44:48', '2021-09-09 05:44:48'), (3742, 4, '2021-09-09 05:44:48', '2021-09-09 05:44:48'), (3743, 4, '2021-09-09 05:44:48', '2021-09-09 05:44:48'), (3744, 4, '2021-09-09 05:44:49', '2021-09-09 05:44:49'), (3745, 4, '2021-09-09 05:44:49', '2021-09-09 05:44:49'), (3746, 4, '2021-09-09 05:44:49', '2021-09-09 05:44:49'), (3747, 4, '2021-09-09 05:44:49', '2021-09-09 05:44:49'), (3748, 4, '2021-09-09 05:44:50', '2021-09-09 05:44:50'), (3749, 4, '2021-09-09 05:44:50', '2021-09-09 05:44:50'), (3750, 4, '2021-09-09 05:44:50', '2021-09-09 05:44:50'), (3751, 4, '2021-09-09 05:44:50', '2021-09-09 05:44:50'), (3752, 4, '2021-09-09 05:44:50', '2021-09-09 05:44:50'), (3753, 4, '2021-09-09 05:44:51', '2021-09-09 05:44:51'), (3754, 4, '2021-09-09 05:44:51', '2021-09-09 05:44:51'), (3755, 4, '2021-09-09 05:44:51', '2021-09-09 05:44:51'), (3756, 4, '2021-09-09 05:44:51', '2021-09-09 05:44:51'), (3757, 4, '2021-09-09 05:44:52', '2021-09-09 05:44:52'), (3758, 4, '2021-09-09 05:44:52', '2021-09-09 05:44:52'), (3759, 4, '2021-09-09 05:44:52', '2021-09-09 05:44:52'), (3760, 4, '2021-09-09 05:44:52', '2021-09-09 05:44:52'), (3761, 4, '2021-09-09 05:44:53', '2021-09-09 05:44:53'), (3762, 4, '2021-09-09 05:44:53', '2021-09-09 05:44:53'), (3763, 4, '2021-09-09 05:44:53', '2021-09-09 05:44:53'), (3764, 4, '2021-09-09 05:44:54', '2021-09-09 05:44:54'), (3765, 4, '2021-09-09 05:44:54', '2021-09-09 05:44:54'), (3766, 4, '2021-09-09 05:44:54', '2021-09-09 05:44:54'), (3767, 4, '2021-09-09 05:44:54', '2021-09-09 05:44:54'), (3768, 4, '2021-09-09 05:44:55', '2021-09-09 05:44:55'), (3769, 4, '2021-09-09 05:44:55', '2021-09-09 05:44:55'), (3770, 4, '2021-09-09 05:44:55', '2021-09-09 05:44:55'), (3771, 4, '2021-09-09 05:44:56', '2021-09-09 05:44:56'), (3772, 4, '2021-09-09 05:44:56', '2021-09-09 05:44:56'), (3773, 4, '2021-09-09 05:44:56', '2021-09-09 05:44:56'), (3774, 4, '2021-09-09 05:44:56', '2021-09-09 05:44:56'), (3775, 4, '2021-09-09 05:44:57', '2021-09-09 05:44:57'), (3776, 4, '2021-09-09 05:44:57', '2021-09-09 05:44:57'), (3777, 4, '2021-09-09 05:44:57', '2021-09-09 05:44:57'), (3778, 4, '2021-09-09 05:44:58', '2021-09-09 05:44:58'), (3779, 4, '2021-09-09 05:44:58', '2021-09-09 05:44:58'), (3780, 4, '2021-09-09 05:44:58', '2021-09-09 05:44:58'), (3781, 4, '2021-09-09 05:44:59', '2021-09-09 05:44:59'), (3782, 4, '2021-09-09 05:45:02', '2021-09-09 05:45:02'), (3783, 4, '2021-09-09 05:45:02', '2021-09-09 05:45:02'), (3784, 4, '2021-09-09 05:45:02', '2021-09-09 05:45:02'), (3785, 4, '2021-09-09 05:45:03', '2021-09-09 05:45:03'), (3786, 4, '2021-09-09 05:45:04', '2021-09-09 05:45:04'), (3787, 4, '2021-09-09 05:45:04', '2021-09-09 05:45:04'), (3788, 4, '2021-09-09 05:45:04', '2021-09-09 05:45:04'), (3789, 4, '2021-09-09 05:45:04', '2021-09-09 05:45:04'), (3790, 4, '2021-09-09 05:45:04', '2021-09-09 05:45:04'), (3791, 4, '2021-09-09 05:45:05', '2021-09-09 05:45:05'), (3792, 4, '2021-09-09 05:45:05', '2021-09-09 05:45:05'), (3793, 4, '2021-09-09 05:45:05', '2021-09-09 05:45:05'), (3794, 4, '2021-09-09 05:45:05', '2021-09-09 05:45:05'), (3795, 4, '2021-09-09 05:45:06', '2021-09-09 05:45:06'), (3796, 4, '2021-09-09 05:45:06', '2021-09-09 05:45:06'), (3797, 4, '2021-09-09 05:45:06', '2021-09-09 05:45:06'), (3798, 4, '2021-09-09 05:45:06', '2021-09-09 05:45:06'), (3799, 4, '2021-09-09 05:45:07', '2021-09-09 05:45:07'), (3800, 4, '2021-09-09 05:45:07', '2021-09-09 05:45:07'), (3801, 4, '2021-09-09 05:45:07', '2021-09-09 05:45:07'), (3802, 4, '2021-09-10 05:45:12', '2021-09-10 05:45:12'), (3803, 4, '2021-09-10 05:45:14', '2021-09-10 05:45:14'), (3804, 4, '2021-09-10 05:45:15', '2021-09-10 05:45:15'), (3805, 4, '2021-09-10 05:45:15', '2021-09-10 05:45:15'), (3806, 4, '2021-09-10 05:45:15', '2021-09-10 05:45:15'), (3807, 4, '2021-09-10 05:45:16', '2021-09-10 05:45:16'), (3808, 4, '2021-09-10 05:45:16', '2021-09-10 05:45:16'), (3809, 4, '2021-09-10 05:45:16', '2021-09-10 05:45:16'), (3810, 4, '2021-09-10 05:45:17', '2021-09-10 05:45:17'), (3811, 4, '2021-09-10 05:45:17', '2021-09-10 05:45:17'), (3812, 4, '2021-09-10 05:45:17', '2021-09-10 05:45:17'), (3813, 4, '2021-09-10 05:45:18', '2021-09-10 05:45:18'), (3814, 4, '2021-09-10 05:45:18', '2021-09-10 05:45:18'), (3815, 4, '2021-09-10 05:45:18', '2021-09-10 05:45:18'), (3816, 4, '2021-09-10 05:45:19', '2021-09-10 05:45:19'), (3817, 4, '2021-09-10 05:45:19', '2021-09-10 05:45:19'), (3818, 4, '2021-09-10 05:45:19', '2021-09-10 05:45:19'), (3819, 4, '2021-09-10 05:45:20', '2021-09-10 05:45:20'), (3820, 4, '2021-09-10 05:45:20', '2021-09-10 05:45:20'), (3821, 4, '2021-09-10 05:45:24', '2021-09-10 05:45:24'), (3822, 4, '2021-09-10 05:45:24', '2021-09-10 05:45:24'), (3823, 4, '2021-09-10 05:45:24', '2021-09-10 05:45:24'), (3824, 4, '2021-09-10 05:45:24', '2021-09-10 05:45:24'), (3825, 4, '2021-09-10 05:45:24', '2021-09-10 05:45:24'), (3826, 4, '2021-09-10 05:45:25', '2021-09-10 05:45:25'), (3827, 4, '2021-09-10 05:45:26', '2021-09-10 05:45:26'), (3828, 4, '2021-09-10 05:45:26', '2021-09-10 05:45:26'), (3829, 4, '2021-09-10 05:45:26', '2021-09-10 05:45:26'), (3830, 4, '2021-09-10 05:45:26', '2021-09-10 05:45:26'), (3831, 4, '2021-09-10 05:45:26', '2021-09-10 05:45:26'), (3832, 4, '2021-09-10 05:45:27', '2021-09-10 05:45:27'), (3833, 4, '2021-09-10 05:45:27', '2021-09-10 05:45:27'), (3834, 4, '2021-09-10 05:45:28', '2021-09-10 05:45:28'), (3835, 4, '2021-09-10 05:45:29', '2021-09-10 05:45:29'), (3836, 4, '2021-09-10 05:45:29', '2021-09-10 05:45:29'), (3837, 4, '2021-09-10 05:45:29', '2021-09-10 05:45:29'), (3838, 4, '2021-09-10 05:45:29', '2021-09-10 05:45:29'), (3839, 4, '2021-09-10 05:45:30', '2021-09-10 05:45:30'), (3840, 4, '2021-09-10 05:45:30', '2021-09-10 05:45:30'), (3841, 4, '2021-09-10 05:45:30', '2021-09-10 05:45:30'), (3842, 4, '2021-09-10 05:45:31', '2021-09-10 05:45:31'), (3843, 4, '2021-09-10 05:45:32', '2021-09-10 05:45:32'), (3844, 4, '2021-09-10 05:45:32', '2021-09-10 05:45:32'), (3845, 4, '2021-09-10 05:45:32', '2021-09-10 05:45:32'), (3846, 4, '2021-09-10 05:45:33', '2021-09-10 05:45:33'), (3847, 4, '2021-09-10 05:45:33', '2021-09-10 05:45:33'), (3848, 4, '2021-09-10 05:45:33', '2021-09-10 05:45:33'), (3849, 4, '2021-09-10 05:45:33', '2021-09-10 05:45:33'), (3850, 4, '2021-09-10 05:45:34', '2021-09-10 05:45:34'), (3851, 4, '2021-09-10 05:45:35', '2021-09-10 05:45:35'), (3852, 4, '2021-09-10 05:45:35', '2021-09-10 05:45:35'), (3853, 4, '2021-09-10 05:45:35', '2021-09-10 05:45:35'), (3854, 4, '2021-09-10 05:45:35', '2021-09-10 05:45:35'), (3855, 4, '2021-09-10 05:45:36', '2021-09-10 05:45:36'), (3856, 4, '2021-09-10 05:45:36', '2021-09-10 05:45:36'), (3857, 4, '2021-09-10 05:45:36', '2021-09-10 05:45:36'), (3858, 4, '2021-09-10 05:45:36', '2021-09-10 05:45:36'), (3859, 4, '2021-09-10 05:45:37', '2021-09-10 05:45:37'), (3860, 4, '2021-09-10 05:45:37', '2021-09-10 05:45:37'), (3861, 4, '2021-09-10 05:45:37', '2021-09-10 05:45:37'), (3862, 4, '2021-09-10 05:45:37', '2021-09-10 05:45:37'), (3863, 4, '2021-09-10 05:45:37', '2021-09-10 05:45:37'), (3864, 4, '2021-09-10 05:45:38', '2021-09-10 05:45:38'), (3865, 4, '2021-09-10 05:45:38', '2021-09-10 05:45:38'), (3866, 4, '2021-09-10 05:45:38', '2021-09-10 05:45:38'), (3867, 4, '2021-09-10 05:45:39', '2021-09-10 05:45:39'), (3868, 4, '2021-09-10 05:45:40', '2021-09-10 05:45:40'), (3869, 4, '2021-09-10 05:45:41', '2021-09-10 05:45:41'), (3870, 4, '2021-09-10 05:45:41', '2021-09-10 05:45:41'), (3871, 4, '2021-09-10 05:45:41', '2021-09-10 05:45:41'), (3872, 4, '2021-09-10 05:45:42', '2021-09-10 05:45:42'), (3873, 4, '2021-09-10 05:45:42', '2021-09-10 05:45:42'), (3874, 4, '2021-09-10 05:45:43', '2021-09-10 05:45:43'), (3875, 4, '2021-09-10 05:45:44', '2021-09-10 05:45:44'), (3876, 4, '2021-09-10 05:45:44', '2021-09-10 05:45:44'), (3877, 4, '2021-09-10 05:45:44', '2021-09-10 05:45:44'), (3878, 4, '2021-09-10 05:45:44', '2021-09-10 05:45:44'), (3879, 4, '2021-09-10 05:45:44', '2021-09-10 05:45:44'), (3880, 4, '2021-09-10 05:45:45', '2021-09-10 05:45:45'), (3881, 4, '2021-09-10 05:45:45', '2021-09-10 05:45:45'), (3882, 4, '2021-09-10 05:45:45', '2021-09-10 05:45:45'), (3883, 4, '2021-09-10 05:45:45', '2021-09-10 05:45:45'), (3884, 4, '2021-09-10 05:45:46', '2021-09-10 05:45:46'), (3885, 4, '2021-09-10 05:45:46', '2021-09-10 05:45:46'), (3886, 4, '2021-09-10 05:45:46', '2021-09-10 05:45:46'), (3887, 4, '2021-09-10 05:45:47', '2021-09-10 05:45:47'), (3888, 4, '2021-09-10 05:45:47', '2021-09-10 05:45:47'), (3889, 4, '2021-09-10 05:45:47', '2021-09-10 05:45:47'), (3890, 4, '2021-09-10 05:45:47', '2021-09-10 05:45:47'), (3891, 4, '2021-09-10 05:45:48', '2021-09-10 05:45:48'), (3892, 4, '2021-09-10 05:45:48', '2021-09-10 05:45:48'), (3893, 4, '2021-09-10 05:45:48', '2021-09-10 05:45:48'), (3894, 4, '2021-09-10 05:45:48', '2021-09-10 05:45:48'), (3895, 4, '2021-09-10 05:45:48', '2021-09-10 05:45:48'), (3896, 4, '2021-09-10 05:45:49', '2021-09-10 05:45:49'), (3897, 4, '2021-09-10 05:45:49', '2021-09-10 05:45:49'), (3898, 4, '2021-09-10 05:45:49', '2021-09-10 05:45:49'), (3899, 4, '2021-09-10 05:45:49', '2021-09-10 05:45:49'), (3900, 4, '2021-09-10 05:45:50', '2021-09-10 05:45:50'), (3901, 4, '2021-09-10 05:45:50', '2021-09-10 05:45:50'), (3902, 4, '2021-09-10 05:45:51', '2021-09-10 05:45:51'), (3903, 4, '2021-09-10 05:45:51', '2021-09-10 05:45:51'), (3904, 4, '2021-09-10 05:45:52', '2021-09-10 05:45:52'), (3905, 4, '2021-09-10 05:45:52', '2021-09-10 05:45:52'), (3906, 4, '2021-09-10 05:45:52', '2021-09-10 05:45:52'), (3907, 4, '2021-09-10 05:45:52', '2021-09-10 05:45:52'), (3908, 4, '2021-09-10 05:45:53', '2021-09-10 05:45:53'), (3909, 4, '2021-09-10 05:45:53', '2021-09-10 05:45:53'), (3910, 4, '2021-09-10 05:45:53', '2021-09-10 05:45:53'), (3911, 4, '2021-09-10 05:45:54', '2021-09-10 05:45:54'), (3912, 4, '2021-09-10 05:45:54', '2021-09-10 05:45:54'), (3913, 4, '2021-09-10 05:45:54', '2021-09-10 05:45:54'), (3914, 4, '2021-09-10 05:45:54', '2021-09-10 05:45:54'), (3915, 4, '2021-09-10 05:45:55', '2021-09-10 05:45:55'), (3916, 4, '2021-09-10 05:45:55', '2021-09-10 05:45:55'), (3917, 4, '2021-09-10 05:45:55', '2021-09-10 05:45:55'), (3918, 4, '2021-09-10 05:45:55', '2021-09-10 05:45:55'), (3919, 4, '2021-09-10 05:45:56', '2021-09-10 05:45:56'), (3920, 4, '2021-09-10 05:45:56', '2021-09-10 05:45:56'), (3921, 4, '2021-09-10 05:45:56', '2021-09-10 05:45:56'), (3922, 4, '2021-09-10 05:45:56', '2021-09-10 05:45:56'), (3923, 4, '2021-09-10 05:45:57', '2021-09-10 05:45:57'), (3924, 4, '2021-09-10 05:45:57', '2021-09-10 05:45:57'), (3925, 4, '2021-09-10 05:45:57', '2021-09-10 05:45:57'), (3926, 4, '2021-09-10 05:45:57', '2021-09-10 05:45:57'), (3927, 4, '2021-09-10 05:45:58', '2021-09-10 05:45:58'), (3928, 4, '2021-09-10 05:45:58', '2021-09-10 05:45:58'), (3929, 4, '2021-09-10 05:45:58', '2021-09-10 05:45:58'), (3930, 4, '2021-09-10 05:45:58', '2021-09-10 05:45:58'), (3931, 4, '2021-09-10 05:45:59', '2021-09-10 05:45:59'), (3932, 4, '2021-09-10 05:45:59', '2021-09-10 05:45:59'), (3933, 4, '2021-09-10 05:45:59', '2021-09-10 05:45:59'), (3934, 4, '2021-09-10 05:45:59', '2021-09-10 05:45:59'), (3935, 4, '2021-09-10 05:46:00', '2021-09-10 05:46:00'), (3936, 4, '2021-09-10 05:46:00', '2021-09-10 05:46:00'), (3937, 4, '2021-09-10 05:46:00', '2021-09-10 05:46:00'), (3938, 4, '2021-09-10 05:46:00', '2021-09-10 05:46:00'), (3939, 4, '2021-09-10 05:46:00', '2021-09-10 05:46:00'), (3940, 4, '2021-09-10 05:46:01', '2021-09-10 05:46:01'), (3941, 4, '2021-09-10 05:46:01', '2021-09-10 05:46:01'), (3942, 4, '2021-09-10 05:46:01', '2021-09-10 05:46:01'), (3943, 4, '2021-09-10 05:46:01', '2021-09-10 05:46:01'), (3944, 4, '2021-09-10 05:46:02', '2021-09-10 05:46:02'), (3945, 4, '2021-09-10 05:46:02', '2021-09-10 05:46:02'), (3946, 4, '2021-09-10 05:46:02', '2021-09-10 05:46:02'), (3947, 4, '2021-09-10 05:46:02', '2021-09-10 05:46:02'), (3948, 4, '2021-09-10 05:46:03', '2021-09-10 05:46:03'), (3949, 4, '2021-09-10 05:46:03', '2021-09-10 05:46:03'), (3950, 4, '2021-09-10 05:46:04', '2021-09-10 05:46:04'), (3951, 4, '2021-09-10 05:46:04', '2021-09-10 05:46:04'), (3952, 4, '2021-09-10 05:46:05', '2021-09-10 05:46:05'), (3953, 4, '2021-09-10 05:46:05', '2021-09-10 05:46:05'), (3954, 4, '2021-09-10 05:46:05', '2021-09-10 05:46:05'), (3955, 4, '2021-09-10 05:46:06', '2021-09-10 05:46:06'), (3956, 4, '2021-09-10 05:46:06', '2021-09-10 05:46:06'), (3957, 4, '2021-09-10 05:46:07', '2021-09-10 05:46:07'), (3958, 4, '2021-09-10 05:46:07', '2021-09-10 05:46:07'), (3959, 4, '2021-09-10 05:46:08', '2021-09-10 05:46:08'), (3960, 4, '2021-09-10 05:46:08', '2021-09-10 05:46:08'), (3961, 4, '2021-09-10 05:46:09', '2021-09-10 05:46:09'), (3962, 4, '2021-09-10 05:46:09', '2021-09-10 05:46:09'), (3963, 4, '2021-09-10 05:46:10', '2021-09-10 05:46:10'), (3964, 4, '2021-09-11 05:46:14', '2021-09-11 05:46:14'), (3965, 4, '2021-09-11 05:46:15', '2021-09-11 05:46:15'), (3966, 4, '2021-09-11 05:46:15', '2021-09-11 05:46:15'), (3967, 4, '2021-09-11 05:46:16', '2021-09-11 05:46:16'), (3968, 4, '2021-09-11 05:46:16', '2021-09-11 05:46:16'), (3969, 4, '2021-09-11 05:46:16', '2021-09-11 05:46:16'), (3970, 4, '2021-09-11 05:46:17', '2021-09-11 05:46:17'), (3971, 4, '2021-09-11 05:46:18', '2021-09-11 05:46:18'), (3972, 4, '2021-09-11 05:46:18', '2021-09-11 05:46:18'), (3973, 4, '2021-09-11 05:46:19', '2021-09-11 05:46:19'), (3974, 4, '2021-09-11 05:46:20', '2021-09-11 05:46:20'), (3975, 4, '2021-09-11 05:46:20', '2021-09-11 05:46:20'), (3976, 4, '2021-09-11 05:46:20', '2021-09-11 05:46:20'), (3977, 4, '2021-09-11 05:46:20', '2021-09-11 05:46:20'), (3978, 4, '2021-09-11 05:46:20', '2021-09-11 05:46:20'), (3979, 4, '2021-09-11 05:46:21', '2021-09-11 05:46:21'), (3980, 4, '2021-09-11 05:46:21', '2021-09-11 05:46:21'), (3981, 4, '2021-09-11 05:46:21', '2021-09-11 05:46:21'), (3982, 4, '2021-09-11 05:46:21', '2021-09-11 05:46:21'), (3983, 4, '2021-09-11 05:46:22', '2021-09-11 05:46:22'), (3984, 4, '2021-09-11 05:46:22', '2021-09-11 05:46:22'), (3985, 4, '2021-09-11 05:46:22', '2021-09-11 05:46:22'), (3986, 4, '2021-09-11 05:46:22', '2021-09-11 05:46:22'), (3987, 4, '2021-09-11 05:46:22', '2021-09-11 05:46:22'), (3988, 4, '2021-09-11 05:46:23', '2021-09-11 05:46:23'), (3989, 4, '2021-09-11 05:46:23', '2021-09-11 05:46:23'), (3990, 4, '2021-09-11 05:46:23', '2021-09-11 05:46:23'), (3991, 4, '2021-09-11 05:46:23', '2021-09-11 05:46:23'), (3992, 4, '2021-09-11 05:46:24', '2021-09-11 05:46:24'), (3993, 4, '2021-09-11 05:46:24', '2021-09-11 05:46:24'), (3994, 4, '2021-09-11 05:46:24', '2021-09-11 05:46:24'), (3995, 4, '2021-09-11 05:46:25', '2021-09-11 05:46:25'), (3996, 4, '2021-09-11 05:46:25', '2021-09-11 05:46:25'), (3997, 4, '2021-09-11 05:46:25', '2021-09-11 05:46:25'), (3998, 4, '2021-09-11 05:46:25', '2021-09-11 05:46:25'), (3999, 4, '2021-09-11 05:46:26', '2021-09-11 05:46:26'), (4000, 4, '2021-09-11 05:46:26', '2021-09-11 05:46:26'), (4001, 4, '2021-09-11 05:46:26', '2021-09-11 05:46:26'), (4002, 4, '2021-09-11 05:46:26', '2021-09-11 05:46:26'), (4003, 4, '2021-09-11 05:46:26', '2021-09-11 05:46:26'), (4004, 4, '2021-09-11 05:46:27', '2021-09-11 05:46:27'), (4005, 4, '2021-09-11 05:46:27', '2021-09-11 05:46:27'), (4006, 4, '2021-09-11 05:46:27', '2021-09-11 05:46:27'), (4007, 4, '2021-09-11 05:46:28', '2021-09-11 05:46:28'), (4008, 4, '2021-09-11 05:46:28', '2021-09-11 05:46:28'), (4009, 4, '2021-09-11 05:46:28', '2021-09-11 05:46:28'), (4010, 4, '2021-09-11 05:46:28', '2021-09-11 05:46:28'), (4011, 4, '2021-09-11 05:46:28', '2021-09-11 05:46:28'), (4012, 4, '2021-09-11 05:46:29', '2021-09-11 05:46:29'), (4013, 4, '2021-09-11 05:46:29', '2021-09-11 05:46:29'), (4014, 4, '2021-09-11 05:46:29', '2021-09-11 05:46:29'), (4015, 4, '2021-09-11 05:46:29', '2021-09-11 05:46:29'), (4016, 4, '2021-09-11 05:46:30', '2021-09-11 05:46:30'), (4017, 4, '2021-09-11 05:46:30', '2021-09-11 05:46:30'), (4018, 4, '2021-09-11 05:46:30', '2021-09-11 05:46:30'), (4019, 4, '2021-09-11 05:46:30', '2021-09-11 05:46:30'), (4020, 4, '2021-09-11 05:46:31', '2021-09-11 05:46:31'), (4021, 4, '2021-09-11 05:46:31', '2021-09-11 05:46:31'), (4022, 4, '2021-09-11 05:46:31', '2021-09-11 05:46:31'), (4023, 4, '2021-09-11 05:46:32', '2021-09-11 05:46:32'), (4024, 4, '2021-09-11 05:46:32', '2021-09-11 05:46:32'), (4025, 4, '2021-09-11 05:46:32', '2021-09-11 05:46:32'), (4026, 4, '2021-09-11 05:46:32', '2021-09-11 05:46:32'), (4027, 4, '2021-09-11 05:46:32', '2021-09-11 05:46:32'), (4028, 4, '2021-09-11 05:46:33', '2021-09-11 05:46:33'), (4029, 4, '2021-09-11 05:46:33', '2021-09-11 05:46:33'), (4030, 4, '2021-09-11 05:46:33', '2021-09-11 05:46:33'), (4031, 4, '2021-09-11 05:46:34', '2021-09-11 05:46:34'), (4032, 4, '2021-09-11 05:46:34', '2021-09-11 05:46:34'), (4033, 4, '2021-09-11 05:46:34', '2021-09-11 05:46:34'), (4034, 4, '2021-09-11 05:46:35', '2021-09-11 05:46:35'), (4035, 4, '2021-09-11 05:46:35', '2021-09-11 05:46:35'), (4036, 4, '2021-09-11 05:46:35', '2021-09-11 05:46:35'), (4037, 4, '2021-09-11 05:46:36', '2021-09-11 05:46:36'), (4038, 4, '2021-09-11 05:46:36', '2021-09-11 05:46:36'), (4039, 4, '2021-09-11 05:46:36', '2021-09-11 05:46:36'), (4040, 4, '2021-09-11 05:46:36', '2021-09-11 05:46:36'), (4041, 4, '2021-09-11 05:46:37', '2021-09-11 05:46:37'), (4042, 4, '2021-09-11 05:46:37', '2021-09-11 05:46:37'), (4043, 4, '2021-09-11 05:46:37', '2021-09-11 05:46:37'), (4044, 4, '2021-09-11 05:46:37', '2021-09-11 05:46:37'), (4045, 4, '2021-09-11 05:46:38', '2021-09-11 05:46:38'), (4046, 4, '2021-09-11 05:46:38', '2021-09-11 05:46:38'), (4047, 4, '2021-09-11 05:46:38', '2021-09-11 05:46:38'), (4048, 4, '2021-09-11 05:46:39', '2021-09-11 05:46:39'), (4049, 4, '2021-09-11 05:46:39', '2021-09-11 05:46:39'), (4050, 4, '2021-09-11 05:46:39', '2021-09-11 05:46:39'), (4051, 4, '2021-09-11 05:46:39', '2021-09-11 05:46:39'), (4052, 4, '2021-09-11 05:46:39', '2021-09-11 05:46:39'), (4053, 4, '2021-09-11 05:46:40', '2021-09-11 05:46:40'), (4054, 4, '2021-09-11 05:46:40', '2021-09-11 05:46:40'), (4055, 4, '2021-09-11 05:46:40', '2021-09-11 05:46:40'), (4056, 4, '2021-09-11 05:46:40', '2021-09-11 05:46:40'), (4057, 4, '2021-09-11 05:46:41', '2021-09-11 05:46:41'), (4058, 4, '2021-09-11 05:46:41', '2021-09-11 05:46:41'), (4059, 4, '2021-09-11 05:46:41', '2021-09-11 05:46:41'), (4060, 4, '2021-09-11 05:46:41', '2021-09-11 05:46:41'), (4061, 4, '2021-09-11 05:46:41', '2021-09-11 05:46:41'), (4062, 4, '2021-09-11 05:46:42', '2021-09-11 05:46:42'), (4063, 4, '2021-09-11 05:46:42', '2021-09-11 05:46:42'), (4064, 4, '2021-09-11 05:46:43', '2021-09-11 05:46:43'), (4065, 4, '2021-09-11 05:46:43', '2021-09-11 05:46:43'), (4066, 4, '2021-09-11 05:46:43', '2021-09-11 05:46:43'), (4067, 4, '2021-09-11 05:46:43', '2021-09-11 05:46:43'), (4068, 4, '2021-09-11 05:46:44', '2021-09-11 05:46:44'), (4069, 4, '2021-09-11 05:46:44', '2021-09-11 05:46:44'), (4070, 4, '2021-09-11 05:46:44', '2021-09-11 05:46:44'), (4071, 4, '2021-09-11 05:46:45', '2021-09-11 05:46:45'), (4072, 4, '2021-09-11 05:46:45', '2021-09-11 05:46:45'), (4073, 4, '2021-09-11 05:46:45', '2021-09-11 05:46:45'), (4074, 4, '2021-09-11 05:46:46', '2021-09-11 05:46:46'), (4075, 4, '2021-09-11 05:46:46', '2021-09-11 05:46:46'), (4076, 4, '2021-09-11 05:46:47', '2021-09-11 05:46:47'), (4077, 4, '2021-09-11 05:46:47', '2021-09-11 05:46:47'), (4078, 4, '2021-09-11 05:46:47', '2021-09-11 05:46:47'), (4079, 4, '2021-09-11 05:46:48', '2021-09-11 05:46:48'), (4080, 4, '2021-09-11 05:46:48', '2021-09-11 05:46:48'), (4081, 4, '2021-09-11 05:46:48', '2021-09-11 05:46:48'), (4082, 4, '2021-09-11 05:46:49', '2021-09-11 05:46:49'), (4083, 4, '2021-09-11 05:46:49', '2021-09-11 05:46:49'), (4084, 4, '2021-09-11 05:46:49', '2021-09-11 05:46:49'), (4085, 4, '2021-09-11 05:46:49', '2021-09-11 05:46:49'), (4086, 4, '2021-09-11 05:46:50', '2021-09-11 05:46:50'), (4087, 4, '2021-09-11 05:46:50', '2021-09-11 05:46:50'), (4088, 4, '2021-09-11 05:46:50', '2021-09-11 05:46:50'), (4089, 4, '2021-09-11 05:46:50', '2021-09-11 05:46:50'), (4090, 4, '2021-09-11 05:46:51', '2021-09-11 05:46:51'), (4091, 4, '2021-09-11 05:46:51', '2021-09-11 05:46:51'), (4092, 4, '2021-09-11 05:46:51', '2021-09-11 05:46:51'), (4093, 4, '2021-09-11 05:46:52', '2021-09-11 05:46:52'), (4094, 4, '2021-09-11 05:46:52', '2021-09-11 05:46:52'), (4095, 4, '2021-09-11 05:46:52', '2021-09-11 05:46:52'), (4096, 4, '2021-09-11 05:46:52', '2021-09-11 05:46:52'), (4097, 4, '2021-09-11 05:46:52', '2021-09-11 05:46:52'), (4098, 4, '2021-09-11 05:46:53', '2021-09-11 05:46:53'), (4099, 4, '2021-09-11 05:46:53', '2021-09-11 05:46:53'), (4100, 4, '2021-09-11 05:46:53', '2021-09-11 05:46:53'), (4101, 4, '2021-09-11 05:46:53', '2021-09-11 05:46:53'), (4102, 4, '2021-09-11 05:46:54', '2021-09-11 05:46:54'), (4103, 4, '2021-09-12 05:46:57', '2021-09-12 05:46:57'), (4104, 4, '2021-09-12 05:47:01', '2021-09-12 05:47:01'), (4105, 4, '2021-09-12 05:47:02', '2021-09-12 05:47:02'), (4106, 4, '2021-09-12 05:47:02', '2021-09-12 05:47:02'), (4107, 4, '2021-09-12 05:47:03', '2021-09-12 05:47:03'), (4108, 4, '2021-09-12 05:47:03', '2021-09-12 05:47:03'), (4109, 4, '2021-09-12 05:47:03', '2021-09-12 05:47:03'), (4110, 4, '2021-09-12 05:47:04', '2021-09-12 05:47:04'), (4111, 4, '2021-09-12 05:47:04', '2021-09-12 05:47:04'), (4112, 4, '2021-09-12 05:47:04', '2021-09-12 05:47:04'), (4113, 4, '2021-09-12 05:47:04', '2021-09-12 05:47:04'), (4114, 4, '2021-09-12 05:47:05', '2021-09-12 05:47:05'), (4115, 4, '2021-09-12 05:47:05', '2021-09-12 05:47:05'), (4116, 4, '2021-09-12 05:47:05', '2021-09-12 05:47:05'), (4117, 4, '2021-09-12 05:47:05', '2021-09-12 05:47:05'), (4118, 4, '2021-09-12 05:47:06', '2021-09-12 05:47:06'), (4119, 4, '2021-09-12 05:47:06', '2021-09-12 05:47:06'), (4120, 4, '2021-09-12 05:47:07', '2021-09-12 05:47:07'), (4121, 4, '2021-09-12 05:47:07', '2021-09-12 05:47:07'), (4122, 4, '2021-09-12 05:47:07', '2021-09-12 05:47:07'), (4123, 4, '2021-09-12 05:47:08', '2021-09-12 05:47:08'), (4124, 4, '2021-09-12 05:47:08', '2021-09-12 05:47:08'), (4125, 4, '2021-09-12 05:47:08', '2021-09-12 05:47:08'), (4126, 4, '2021-09-12 05:47:09', '2021-09-12 05:47:09'), (4127, 4, '2021-09-12 05:47:09', '2021-09-12 05:47:09'), (4128, 4, '2021-09-12 05:47:09', '2021-09-12 05:47:09'), (4129, 4, '2021-09-12 05:47:09', '2021-09-12 05:47:09'), (4130, 4, '2021-09-12 05:47:10', '2021-09-12 05:47:10'), (4131, 4, '2021-09-12 05:47:10', '2021-09-12 05:47:10'), (4132, 4, '2021-09-12 05:47:10', '2021-09-12 05:47:10'), (4133, 4, '2021-09-12 05:47:10', '2021-09-12 05:47:10'), (4134, 4, '2021-09-12 05:47:11', '2021-09-12 05:47:11'), (4135, 4, '2021-09-12 05:47:11', '2021-09-12 05:47:11'), (4136, 4, '2021-09-12 05:47:11', '2021-09-12 05:47:11'), (4137, 4, '2021-09-12 05:47:11', '2021-09-12 05:47:11'), (4138, 4, '2021-09-12 05:47:12', '2021-09-12 05:47:12'), (4139, 4, '2021-09-12 05:47:12', '2021-09-12 05:47:12'), (4140, 4, '2021-09-12 05:47:12', '2021-09-12 05:47:12'), (4141, 4, '2021-09-12 05:47:13', '2021-09-12 05:47:13'), (4142, 4, '2021-09-12 05:47:13', '2021-09-12 05:47:13'), (4143, 4, '2021-09-12 05:47:13', '2021-09-12 05:47:13'), (4144, 4, '2021-09-12 05:47:13', '2021-09-12 05:47:13'), (4145, 4, '2021-09-12 05:47:14', '2021-09-12 05:47:14'), (4146, 4, '2021-09-12 05:47:14', '2021-09-12 05:47:14'), (4147, 4, '2021-09-12 05:47:14', '2021-09-12 05:47:14'), (4148, 4, '2021-09-12 05:47:16', '2021-09-12 05:47:16'), (4149, 4, '2021-09-12 05:47:17', '2021-09-12 05:47:17'), (4150, 4, '2021-09-12 05:47:17', '2021-09-12 05:47:17'), (4151, 4, '2021-09-12 05:47:17', '2021-09-12 05:47:17'), (4152, 4, '2021-09-12 05:47:17', '2021-09-12 05:47:17'), (4153, 4, '2021-09-12 05:47:18', '2021-09-12 05:47:18'), (4154, 4, '2021-09-12 05:47:18', '2021-09-12 05:47:18'), (4155, 4, '2021-09-12 05:47:19', '2021-09-12 05:47:19'), (4156, 4, '2021-09-12 05:47:19', '2021-09-12 05:47:19'), (4157, 4, '2021-09-12 05:47:20', '2021-09-12 05:47:20'), (4158, 4, '2021-09-12 05:47:20', '2021-09-12 05:47:20'), (4159, 4, '2021-09-12 05:47:23', '2021-09-12 05:47:23'), (4160, 4, '2021-09-12 05:47:23', '2021-09-12 05:47:23'), (4161, 4, '2021-09-12 05:47:23', '2021-09-12 05:47:23'), (4162, 4, '2021-09-12 05:47:23', '2021-09-12 05:47:23'), (4163, 4, '2021-09-12 05:47:23', '2021-09-12 05:47:23'), (4164, 4, '2021-09-12 05:47:24', '2021-09-12 05:47:24'), (4165, 4, '2021-09-12 05:47:24', '2021-09-12 05:47:24'), (4166, 4, '2021-09-12 05:47:24', '2021-09-12 05:47:24'), (4167, 4, '2021-09-12 05:47:24', '2021-09-12 05:47:24'), (4168, 4, '2021-09-12 05:48:05', '2021-09-12 05:48:05'), (4169, 4, '2021-09-12 05:48:07', '2021-09-12 05:48:07'), (4170, 4, '2021-09-12 05:48:07', '2021-09-12 05:48:07'), (4171, 4, '2021-09-12 05:48:08', '2021-09-12 05:48:08'), (4172, 4, '2021-09-12 05:48:08', '2021-09-12 05:48:08'), (4173, 4, '2021-09-12 05:48:09', '2021-09-12 05:48:09'), (4174, 4, '2021-09-12 05:48:09', '2021-09-12 05:48:09'), (4175, 4, '2021-09-12 05:48:09', '2021-09-12 05:48:09'), (4176, 4, '2021-09-12 05:48:10', '2021-09-12 05:48:10'), (4177, 4, '2021-09-12 05:48:11', '2021-09-12 05:48:11'), (4178, 4, '2021-09-12 05:48:11', '2021-09-12 05:48:11'), (4179, 4, '2021-09-12 05:48:11', '2021-09-12 05:48:11'), (4180, 4, '2021-09-12 05:48:12', '2021-09-12 05:48:12'), (4181, 4, '2021-09-12 05:48:12', '2021-09-12 05:48:12'), (4182, 4, '2021-09-12 05:48:12', '2021-09-12 05:48:12'), (4183, 4, '2021-09-12 05:48:12', '2021-09-12 05:48:12'), (4184, 4, '2021-09-12 05:48:13', '2021-09-12 05:48:13'), (4185, 4, '2021-09-12 05:48:13', '2021-09-12 05:48:13'), (4186, 4, '2021-09-12 05:48:13', '2021-09-12 05:48:13'), (4187, 4, '2021-09-12 05:48:13', '2021-09-12 05:48:13'), (4188, 4, '2021-09-12 05:48:14', '2021-09-12 05:48:14'), (4189, 4, '2021-09-12 05:48:14', '2021-09-12 05:48:14'), (4190, 4, '2021-09-12 05:48:14', '2021-09-12 05:48:14'), (4191, 4, '2021-09-12 05:48:14', '2021-09-12 05:48:14'), (4192, 4, '2021-09-12 05:48:15', '2021-09-12 05:48:15'), (4193, 4, '2021-09-12 05:48:15', '2021-09-12 05:48:15'), (4194, 4, '2021-09-12 05:48:16', '2021-09-12 05:48:16'), (4195, 4, '2021-09-12 05:48:16', '2021-09-12 05:48:16'), (4196, 4, '2021-09-12 05:48:17', '2021-09-12 05:48:17'), (4197, 4, '2021-09-12 05:48:17', '2021-09-12 05:48:17'), (4198, 4, '2021-09-12 05:48:18', '2021-09-12 05:48:18'), (4199, 4, '2021-09-12 05:48:18', '2021-09-12 05:48:18'), (4200, 4, '2021-09-12 05:48:19', '2021-09-12 05:48:19'), (4201, 4, '2021-09-12 05:48:19', '2021-09-12 05:48:19'), (4202, 4, '2021-09-12 05:48:20', '2021-09-12 05:48:20'), (4203, 4, '2021-09-12 05:48:21', '2021-09-12 05:48:21'), (4204, 4, '2021-09-12 05:48:21', '2021-09-12 05:48:21'), (4205, 4, '2021-09-12 05:48:22', '2021-09-12 05:48:22'), (4206, 4, '2021-09-12 05:48:23', '2021-09-12 05:48:23'), (4207, 4, '2021-09-12 05:48:24', '2021-09-12 05:48:24'), (4208, 4, '2021-09-12 05:48:24', '2021-09-12 05:48:24'), (4209, 4, '2021-09-12 05:48:24', '2021-09-12 05:48:24'), (4210, 4, '2021-09-12 05:48:25', '2021-09-12 05:48:25'), (4211, 4, '2021-09-12 05:48:25', '2021-09-12 05:48:25'), (4212, 4, '2021-09-12 05:48:25', '2021-09-12 05:48:25'), (4213, 4, '2021-09-12 05:48:27', '2021-09-12 05:48:27'), (4214, 4, '2021-09-12 05:48:27', '2021-09-12 05:48:27'), (4215, 4, '2021-09-12 05:48:27', '2021-09-12 05:48:27'), (4216, 4, '2021-09-12 05:48:28', '2021-09-12 05:48:28'), (4217, 4, '2021-09-12 05:48:28', '2021-09-12 05:48:28'), (4218, 4, '2021-09-12 05:48:29', '2021-09-12 05:48:29'), (4219, 4, '2021-09-12 05:48:29', '2021-09-12 05:48:29'), (4220, 4, '2021-09-12 05:48:29', '2021-09-12 05:48:29'), (4221, 4, '2021-09-12 05:48:30', '2021-09-12 05:48:30'), (4222, 4, '2021-09-12 05:48:30', '2021-09-12 05:48:30'), (4223, 4, '2021-09-12 05:48:30', '2021-09-12 05:48:30'), (4224, 4, '2021-09-13 05:48:35', '2021-09-13 05:48:35'), (4225, 4, '2021-09-13 05:48:36', '2021-09-13 05:48:36'), (4226, 4, '2021-09-13 05:48:37', '2021-09-13 05:48:37'), (4227, 4, '2021-09-13 05:48:37', '2021-09-13 05:48:37'), (4228, 4, '2021-09-13 05:48:38', '2021-09-13 05:48:38'), (4229, 4, '2021-09-13 05:48:38', '2021-09-13 05:48:38'), (4230, 4, '2021-09-13 05:48:39', '2021-09-13 05:48:39'), (4231, 4, '2021-09-13 05:48:39', '2021-09-13 05:48:39'), (4232, 4, '2021-09-13 05:48:40', '2021-09-13 05:48:40'), (4233, 4, '2021-09-13 05:48:40', '2021-09-13 05:48:40'), (4234, 4, '2021-09-13 05:48:41', '2021-09-13 05:48:41'), (4235, 4, '2021-09-13 05:48:41', '2021-09-13 05:48:41'), (4236, 4, '2021-09-13 05:48:42', '2021-09-13 05:48:42'), (4237, 4, '2021-09-13 05:48:42', '2021-09-13 05:48:42'), (4238, 4, '2021-09-13 05:48:42', '2021-09-13 05:48:42'), (4239, 4, '2021-09-13 05:48:42', '2021-09-13 05:48:42'), (4240, 4, '2021-09-13 05:48:43', '2021-09-13 05:48:43'), (4241, 4, '2021-09-13 05:48:43', '2021-09-13 05:48:43'), (4242, 4, '2021-09-13 05:48:43', '2021-09-13 05:48:43'), (4243, 4, '2021-09-13 05:48:43', '2021-09-13 05:48:43'), (4244, 4, '2021-09-13 05:48:44', '2021-09-13 05:48:44'), (4245, 4, '2021-09-13 05:48:44', '2021-09-13 05:48:44'), (4246, 4, '2021-09-13 05:48:44', '2021-09-13 05:48:44'), (4247, 4, '2021-09-13 05:48:44', '2021-09-13 05:48:44'), (4248, 4, '2021-09-13 05:48:45', '2021-09-13 05:48:45'), (4249, 4, '2021-09-13 05:48:45', '2021-09-13 05:48:45'), (4250, 4, '2021-09-13 05:48:45', '2021-09-13 05:48:45'), (4251, 4, '2021-09-13 05:48:45', '2021-09-13 05:48:45'), (4252, 4, '2021-09-13 05:48:46', '2021-09-13 05:48:46'), (4253, 4, '2021-09-13 05:48:46', '2021-09-13 05:48:46'), (4254, 4, '2021-09-13 05:48:46', '2021-09-13 05:48:46'), (4255, 4, '2021-09-13 05:48:46', '2021-09-13 05:48:46'), (4256, 4, '2021-09-13 05:48:47', '2021-09-13 05:48:47'), (4257, 4, '2021-09-13 05:48:47', '2021-09-13 05:48:47'), (4258, 4, '2021-09-13 05:48:47', '2021-09-13 05:48:47'), (4259, 4, '2021-09-13 05:48:48', '2021-09-13 05:48:48'), (4260, 4, '2021-09-13 05:48:48', '2021-09-13 05:48:48'), (4261, 4, '2021-09-13 05:48:48', '2021-09-13 05:48:48'), (4262, 4, '2021-09-13 05:48:48', '2021-09-13 05:48:48'), (4263, 4, '2021-09-13 05:48:49', '2021-09-13 05:48:49'), (4264, 4, '2021-09-13 05:48:49', '2021-09-13 05:48:49'), (4265, 4, '2021-09-13 05:48:49', '2021-09-13 05:48:49'), (4266, 4, '2021-09-13 05:48:50', '2021-09-13 05:48:50'), (4267, 4, '2021-09-13 05:48:53', '2021-09-13 05:48:53'), (4268, 4, '2021-09-13 05:48:54', '2021-09-13 05:48:54'), (4269, 4, '2021-09-13 05:48:54', '2021-09-13 05:48:54'), (4270, 4, '2021-09-13 05:48:54', '2021-09-13 05:48:54'), (4271, 4, '2021-09-13 05:48:54', '2021-09-13 05:48:54'), (4272, 4, '2021-09-13 05:48:55', '2021-09-13 05:48:55'), (4273, 4, '2021-09-13 05:48:55', '2021-09-13 05:48:55'), (4274, 4, '2021-09-13 05:48:55', '2021-09-13 05:48:55'), (4275, 4, '2021-09-13 05:48:56', '2021-09-13 05:48:56'), (4276, 4, '2021-09-13 05:48:56', '2021-09-13 05:48:56'), (4277, 4, '2021-09-13 05:48:56', '2021-09-13 05:48:56'), (4278, 4, '2021-09-13 05:48:56', '2021-09-13 05:48:56'), (4279, 4, '2021-09-13 05:48:57', '2021-09-13 05:48:57'), (4280, 4, '2021-09-13 05:48:57', '2021-09-13 05:48:57'), (4281, 4, '2021-09-13 05:48:58', '2021-09-13 05:48:58'), (4282, 4, '2021-09-13 05:48:58', '2021-09-13 05:48:58'), (4283, 4, '2021-09-13 05:48:58', '2021-09-13 05:48:58'), (4284, 4, '2021-09-13 05:48:58', '2021-09-13 05:48:58'), (4285, 4, '2021-09-13 05:48:59', '2021-09-13 05:48:59'), (4286, 4, '2021-09-13 05:48:59', '2021-09-13 05:48:59'), (4287, 4, '2021-09-13 05:48:59', '2021-09-13 05:48:59'), (4288, 4, '2021-09-13 05:48:59', '2021-09-13 05:48:59'), (4289, 4, '2021-09-13 05:48:59', '2021-09-13 05:48:59'), (4290, 4, '2021-09-13 05:49:00', '2021-09-13 05:49:00'), (4291, 4, '2021-09-13 05:49:00', '2021-09-13 05:49:00'), (4292, 4, '2021-09-13 05:49:00', '2021-09-13 05:49:00'), (4293, 4, '2021-09-13 05:49:01', '2021-09-13 05:49:01'), (4294, 4, '2021-09-13 05:49:01', '2021-09-13 05:49:01'), (4295, 4, '2021-09-13 05:49:01', '2021-09-13 05:49:01'), (4296, 4, '2021-09-13 05:49:01', '2021-09-13 05:49:01'), (4297, 4, '2021-09-13 05:49:03', '2021-09-13 05:49:03'), (4298, 4, '2021-09-13 05:49:03', '2021-09-13 05:49:03'), (4299, 4, '2021-09-13 05:49:03', '2021-09-13 05:49:03'), (4300, 4, '2021-09-13 05:49:04', '2021-09-13 05:49:04'), (4301, 4, '2021-09-13 05:49:04', '2021-09-13 05:49:04'), (4302, 4, '2021-09-13 05:49:04', '2021-09-13 05:49:04'), (4303, 4, '2021-09-13 05:49:04', '2021-09-13 05:49:04'), (4304, 4, '2021-09-13 05:49:05', '2021-09-13 05:49:05'), (4305, 4, '2021-09-13 05:49:05', '2021-09-13 05:49:05'), (4306, 4, '2021-09-13 05:49:05', '2021-09-13 05:49:05'), (4307, 4, '2021-09-13 05:49:06', '2021-09-13 05:49:06'), (4308, 4, '2021-09-13 05:49:06', '2021-09-13 05:49:06'), (4309, 4, '2021-09-13 05:49:06', '2021-09-13 05:49:06'), (4310, 4, '2021-09-13 05:49:07', '2021-09-13 05:49:07'), (4311, 4, '2021-09-13 05:49:08', '2021-09-13 05:49:08'), (4312, 4, '2021-09-13 05:49:08', '2021-09-13 05:49:08'), (4313, 4, '2021-09-13 05:49:08', '2021-09-13 05:49:08'), (4314, 4, '2021-09-13 05:49:08', '2021-09-13 05:49:08'), (4315, 4, '2021-09-13 05:49:09', '2021-09-13 05:49:09'), (4316, 4, '2021-09-13 05:49:09', '2021-09-13 05:49:09'), (4317, 4, '2021-09-13 05:49:10', '2021-09-13 05:49:10'), (4318, 4, '2021-09-13 05:49:10', '2021-09-13 05:49:10'), (4319, 4, '2021-09-13 05:49:10', '2021-09-13 05:49:10'), (4320, 4, '2021-09-13 05:49:10', '2021-09-13 05:49:10'), (4321, 4, '2021-09-13 05:49:11', '2021-09-13 05:49:11'), (4322, 4, '2021-09-13 05:49:11', '2021-09-13 05:49:11'), (4323, 4, '2021-09-13 05:49:11', '2021-09-13 05:49:11'), (4324, 4, '2021-09-13 05:49:11', '2021-09-13 05:49:11'), (4325, 4, '2021-09-13 05:49:12', '2021-09-13 05:49:12'), (4326, 4, '2021-09-13 05:49:12', '2021-09-13 05:49:12'), (4327, 4, '2021-09-13 05:49:13', '2021-09-13 05:49:13'), (4328, 4, '2021-09-13 05:49:13', '2021-09-13 05:49:13'), (4329, 4, '2021-09-13 05:49:13', '2021-09-13 05:49:13'), (4330, 4, '2021-09-13 05:49:13', '2021-09-13 05:49:13'), (4331, 4, '2021-09-13 05:49:13', '2021-09-13 05:49:13'), (4332, 4, '2021-09-13 05:49:13', '2021-09-13 05:49:13'), (4333, 4, '2021-09-13 05:49:14', '2021-09-13 05:49:14'), (4334, 4, '2021-09-13 05:49:14', '2021-09-13 05:49:14'), (4335, 4, '2021-09-13 05:49:14', '2021-09-13 05:49:14'), (4336, 4, '2021-09-13 05:49:15', '2021-09-13 05:49:15'), (4337, 4, '2021-09-13 05:49:15', '2021-09-13 05:49:15'), (4338, 4, '2021-09-13 05:49:15', '2021-09-13 05:49:15'), (4339, 4, '2021-09-13 05:49:16', '2021-09-13 05:49:16'), (4340, 4, '2021-09-13 05:49:16', '2021-09-13 05:49:16'), (4341, 4, '2021-09-13 05:49:16', '2021-09-13 05:49:16'), (4342, 4, '2021-09-13 05:49:17', '2021-09-13 05:49:17'), (4343, 4, '2021-09-13 05:49:17', '2021-09-13 05:49:17'), (4344, 4, '2021-09-13 05:49:17', '2021-09-13 05:49:17'), (4345, 4, '2021-09-13 05:49:17', '2021-09-13 05:49:17'), (4346, 4, '2021-09-13 05:49:18', '2021-09-13 05:49:18'), (4347, 4, '2021-09-13 05:49:18', '2021-09-13 05:49:18'), (4348, 4, '2021-09-13 05:49:18', '2021-09-13 05:49:18'), (4349, 4, '2021-09-13 05:49:18', '2021-09-13 05:49:18'), (4350, 4, '2021-09-13 05:49:19', '2021-09-13 05:49:19'), (4351, 4, '2021-09-13 05:49:19', '2021-09-13 05:49:19'), (4352, 4, '2021-09-13 05:49:19', '2021-09-13 05:49:19'), (4353, 4, '2021-09-13 05:49:20', '2021-09-13 05:49:20'), (4354, 4, '2021-09-13 05:49:20', '2021-09-13 05:49:20'), (4355, 4, '2021-09-13 05:49:20', '2021-09-13 05:49:20'), (4356, 4, '2021-09-13 05:49:21', '2021-09-13 05:49:21'), (4357, 4, '2021-09-13 05:49:21', '2021-09-13 05:49:21'), (4358, 4, '2021-09-13 05:49:21', '2021-09-13 05:49:21'), (4359, 4, '2021-09-13 05:49:22', '2021-09-13 05:49:22'), (4360, 4, '2021-09-13 05:49:23', '2021-09-13 05:49:23'), (4361, 4, '2021-09-13 05:49:23', '2021-09-13 05:49:23'), (4362, 4, '2021-09-13 05:49:23', '2021-09-13 05:49:23'), (4363, 4, '2021-09-13 05:49:23', '2021-09-13 05:49:23'), (4364, 4, '2021-09-13 05:49:24', '2021-09-13 05:49:24'), (4365, 4, '2021-09-13 05:49:25', '2021-09-13 05:49:25'), (4366, 4, '2021-09-13 05:49:26', '2021-09-13 05:49:26'), (4367, 4, '2021-09-13 05:49:26', '2021-09-13 05:49:26'), (4368, 4, '2021-09-13 05:49:26', '2021-09-13 05:49:26'), (4369, 4, '2021-09-13 05:49:27', '2021-09-13 05:49:27'), (4370, 4, '2021-09-13 05:49:28', '2021-09-13 05:49:28'), (4371, 4, '2021-09-13 05:49:28', '2021-09-13 05:49:28'), (4372, 4, '2021-09-13 05:49:29', '2021-09-13 05:49:29'), (4373, 4, '2021-09-13 05:49:29', '2021-09-13 05:49:29'), (4374, 4, '2021-09-13 05:49:30', '2021-09-13 05:49:30'), (4375, 4, '2021-09-13 05:49:30', '2021-09-13 05:49:30'), (4376, 4, '2021-09-13 05:49:31', '2021-09-13 05:49:31'), (4377, 4, '2021-09-13 05:49:31', '2021-09-13 05:49:31'), (4378, 4, '2021-09-13 05:49:32', '2021-09-13 05:49:32'), (4379, 4, '2021-09-13 05:49:32', '2021-09-13 05:49:32'), (4380, 4, '2021-09-13 05:49:34', '2021-09-13 05:49:34'), (4381, 4, '2021-09-13 05:49:34', '2021-09-13 05:49:34'), (4382, 4, '2021-09-13 05:49:34', '2021-09-13 05:49:34'), (4383, 4, '2021-09-13 05:49:35', '2021-09-13 05:49:35'), (4384, 4, '2021-09-13 05:49:35', '2021-09-13 05:49:35'), (4385, 4, '2021-09-13 05:49:35', '2021-09-13 05:49:35'), (4386, 4, '2021-09-13 05:49:35', '2021-09-13 05:49:35'), (4387, 4, '2021-09-13 05:49:36', '2021-09-13 05:49:36'), (4388, 4, '2021-09-13 05:49:37', '2021-09-13 05:49:37'), (4389, 4, '2021-09-13 05:49:38', '2021-09-13 05:49:38'), (4390, 4, '2021-09-13 05:49:38', '2021-09-13 05:49:38'), (4391, 4, '2021-09-13 05:49:38', '2021-09-13 05:49:38'), (4392, 4, '2021-09-13 05:49:39', '2021-09-13 05:49:39'), (4393, 4, '2021-09-13 05:49:39', '2021-09-13 05:49:39'), (4394, 4, '2021-09-13 05:49:39', '2021-09-13 05:49:39'), (4395, 4, '2021-09-13 05:49:39', '2021-09-13 05:49:39'), (4396, 4, '2021-09-13 05:49:40', '2021-09-13 05:49:40'), (4397, 4, '2021-09-13 05:49:40', '2021-09-13 05:49:40'), (4398, 4, '2021-09-13 05:49:40', '2021-09-13 05:49:40'), (4399, 4, '2021-09-13 05:49:41', '2021-09-13 05:49:41'), (4400, 4, '2021-09-13 05:49:41', '2021-09-13 05:49:41'), (4401, 4, '2021-09-13 05:49:41', '2021-09-13 05:49:41'), (4402, 4, '2021-09-13 05:49:41', '2021-09-13 05:49:41'), (4403, 4, '2021-09-14 05:49:45', '2021-09-14 05:49:45'), (4404, 4, '2021-09-14 05:49:46', '2021-09-14 05:49:46'), (4405, 4, '2021-09-14 05:49:46', '2021-09-14 05:49:46'), (4406, 4, '2021-09-14 05:49:46', '2021-09-14 05:49:46'), (4407, 4, '2021-09-14 05:49:47', '2021-09-14 05:49:47'), (4408, 4, '2021-09-14 05:49:47', '2021-09-14 05:49:47'), (4409, 4, '2021-09-14 05:49:47', '2021-09-14 05:49:47'), (4410, 4, '2021-09-14 05:49:48', '2021-09-14 05:49:48'), (4411, 4, '2021-09-14 05:49:48', '2021-09-14 05:49:48'), (4412, 4, '2021-09-14 05:49:48', '2021-09-14 05:49:48'), (4413, 4, '2021-09-14 05:49:49', '2021-09-14 05:49:49'), (4414, 4, '2021-09-14 05:49:49', '2021-09-14 05:49:49'), (4415, 4, '2021-09-14 05:49:49', '2021-09-14 05:49:49'), (4416, 4, '2021-09-14 05:49:49', '2021-09-14 05:49:49'), (4417, 4, '2021-09-14 05:49:50', '2021-09-14 05:49:50'), (4418, 4, '2021-09-14 05:49:50', '2021-09-14 05:49:50'), (4419, 4, '2021-09-14 05:49:50', '2021-09-14 05:49:50'), (4420, 4, '2021-09-14 05:49:50', '2021-09-14 05:49:50'), (4421, 4, '2021-09-14 05:49:51', '2021-09-14 05:49:51'), (4422, 4, '2021-09-14 05:49:51', '2021-09-14 05:49:51'), (4423, 4, '2021-09-14 05:49:51', '2021-09-14 05:49:51'), (4424, 4, '2021-09-14 05:49:52', '2021-09-14 05:49:52'), (4425, 4, '2021-09-14 05:49:52', '2021-09-14 05:49:52'), (4426, 4, '2021-09-14 05:49:52', '2021-09-14 05:49:52'), (4427, 4, '2021-09-14 05:49:52', '2021-09-14 05:49:52'), (4428, 4, '2021-09-14 05:49:53', '2021-09-14 05:49:53'), (4429, 4, '2021-09-14 05:49:53', '2021-09-14 05:49:53'), (4430, 4, '2021-09-14 05:49:53', '2021-09-14 05:49:53'), (4431, 4, '2021-09-14 05:49:54', '2021-09-14 05:49:54'), (4432, 4, '2021-09-14 05:49:54', '2021-09-14 05:49:54'), (4433, 4, '2021-09-14 05:49:54', '2021-09-14 05:49:54'), (4434, 4, '2021-09-14 05:49:55', '2021-09-14 05:49:55'), (4435, 4, '2021-09-14 05:49:55', '2021-09-14 05:49:55'), (4436, 4, '2021-09-14 05:49:55', '2021-09-14 05:49:55'), (4437, 4, '2021-09-14 05:49:55', '2021-09-14 05:49:55'), (4438, 4, '2021-09-14 05:49:56', '2021-09-14 05:49:56'), (4439, 4, '2021-09-14 05:49:56', '2021-09-14 05:49:56'), (4440, 4, '2021-09-14 05:49:56', '2021-09-14 05:49:56'), (4441, 4, '2021-09-14 05:49:56', '2021-09-14 05:49:56'), (4442, 4, '2021-09-14 05:49:58', '2021-09-14 05:49:58'), (4443, 4, '2021-09-14 05:49:58', '2021-09-14 05:49:58'), (4444, 4, '2021-09-14 05:49:58', '2021-09-14 05:49:58'), (4445, 4, '2021-09-14 05:49:58', '2021-09-14 05:49:58'), (4446, 4, '2021-09-14 05:49:59', '2021-09-14 05:49:59'), (4447, 4, '2021-09-14 05:49:59', '2021-09-14 05:49:59'), (4448, 4, '2021-09-14 05:49:59', '2021-09-14 05:49:59'), (4449, 4, '2021-09-14 05:50:00', '2021-09-14 05:50:00'), (4450, 4, '2021-09-14 05:50:00', '2021-09-14 05:50:00'), (4451, 4, '2021-09-14 05:50:00', '2021-09-14 05:50:00'), (4452, 4, '2021-09-14 05:50:01', '2021-09-14 05:50:01'), (4453, 4, '2021-09-14 05:50:01', '2021-09-14 05:50:01'), (4454, 4, '2021-09-14 05:50:01', '2021-09-14 05:50:01'), (4455, 4, '2021-09-14 05:50:01', '2021-09-14 05:50:01'), (4456, 4, '2021-09-14 05:50:02', '2021-09-14 05:50:02'), (4457, 4, '2021-09-14 05:50:02', '2021-09-14 05:50:02'), (4458, 4, '2021-09-14 05:50:02', '2021-09-14 05:50:02'), (4459, 4, '2021-09-14 05:50:18', '2021-09-14 05:50:18'), (4460, 4, '2021-09-14 05:50:19', '2021-09-14 05:50:19'), (4461, 4, '2021-09-14 05:50:19', '2021-09-14 05:50:19'), (4462, 4, '2021-09-14 05:50:21', '2021-09-14 05:50:21'), (4463, 4, '2021-09-14 05:50:21', '2021-09-14 05:50:21'), (4464, 4, '2021-09-14 05:50:22', '2021-09-14 05:50:22'), (4465, 4, '2021-09-14 05:50:22', '2021-09-14 05:50:22'), (4466, 4, '2021-09-14 05:50:22', '2021-09-14 05:50:22'), (4467, 4, '2021-09-14 05:50:24', '2021-09-14 05:50:24'), (4468, 4, '2021-09-14 05:50:26', '2021-09-14 05:50:26'), (4469, 4, '2021-09-14 05:50:26', '2021-09-14 05:50:26'), (4470, 4, '2021-09-14 05:50:26', '2021-09-14 05:50:26'), (4471, 4, '2021-09-14 05:50:26', '2021-09-14 05:50:26'), (4472, 4, '2021-09-14 05:50:27', '2021-09-14 05:50:27'), (4473, 4, '2021-09-14 05:50:27', '2021-09-14 05:50:27'), (4474, 4, '2021-09-14 05:50:28', '2021-09-14 05:50:28'), (4475, 4, '2021-09-14 05:50:28', '2021-09-14 05:50:28'), (4476, 4, '2021-09-14 05:50:29', '2021-09-14 05:50:29'), (4477, 4, '2021-09-14 05:50:29', '2021-09-14 05:50:29'), (4478, 4, '2021-09-14 05:50:30', '2021-09-14 05:50:30'), (4479, 4, '2021-09-14 05:50:30', '2021-09-14 05:50:30'), (4480, 4, '2021-09-14 05:50:30', '2021-09-14 05:50:30'), (4481, 4, '2021-09-14 05:50:30', '2021-09-14 05:50:30'), (4482, 4, '2021-09-14 05:50:31', '2021-09-14 05:50:31'), (4483, 4, '2021-09-14 05:50:31', '2021-09-14 05:50:31'), (4484, 4, '2021-09-14 05:50:31', '2021-09-14 05:50:31'), (4485, 4, '2021-09-14 05:50:31', '2021-09-14 05:50:31'), (4486, 4, '2021-09-14 05:50:32', '2021-09-14 05:50:32'), (4487, 4, '2021-09-14 05:50:32', '2021-09-14 05:50:32'), (4488, 4, '2021-09-14 05:50:32', '2021-09-14 05:50:32'), (4489, 4, '2021-09-14 05:50:33', '2021-09-14 05:50:33'), (4490, 4, '2021-09-14 05:50:33', '2021-09-14 05:50:33'), (4491, 4, '2021-09-14 05:50:33', '2021-09-14 05:50:33'), (4492, 4, '2021-09-14 05:50:33', '2021-09-14 05:50:33'), (4493, 4, '2021-09-14 05:50:33', '2021-09-14 05:50:33'), (4494, 4, '2021-09-14 05:50:34', '2021-09-14 05:50:34'), (4495, 4, '2021-09-14 05:50:34', '2021-09-14 05:50:34'), (4496, 4, '2021-09-14 05:50:34', '2021-09-14 05:50:34'), (4497, 4, '2021-09-14 05:50:34', '2021-09-14 05:50:34'), (4498, 4, '2021-09-14 05:50:35', '2021-09-14 05:50:35'), (4499, 4, '2021-09-14 05:50:35', '2021-09-14 05:50:35'), (4500, 4, '2021-09-14 05:50:35', '2021-09-14 05:50:35'), (4501, 4, '2021-09-14 05:50:35', '2021-09-14 05:50:35'), (4502, 4, '2021-09-14 05:50:36', '2021-09-14 05:50:36'), (4503, 4, '2021-09-14 05:50:36', '2021-09-14 05:50:36'), (4504, 4, '2021-09-14 05:50:36', '2021-09-14 05:50:36'), (4505, 4, '2021-09-14 05:50:36', '2021-09-14 05:50:36'), (4506, 4, '2021-09-14 05:50:36', '2021-09-14 05:50:36'), (4507, 4, '2021-09-14 05:50:37', '2021-09-14 05:50:37'), (4508, 4, '2021-09-14 05:50:37', '2021-09-14 05:50:37'), (4509, 4, '2021-09-14 05:50:38', '2021-09-14 05:50:38'), (4510, 4, '2021-09-14 05:50:38', '2021-09-14 05:50:38'), (4511, 4, '2021-09-14 05:50:38', '2021-09-14 05:50:38'), (4512, 4, '2021-09-14 05:50:39', '2021-09-14 05:50:39'), (4513, 4, '2021-09-14 05:50:39', '2021-09-14 05:50:39'), (4514, 4, '2021-09-14 05:50:39', '2021-09-14 05:50:39'), (4515, 4, '2021-09-14 05:50:39', '2021-09-14 05:50:39'), (4516, 4, '2021-09-14 05:50:40', '2021-09-14 05:50:40'), (4517, 4, '2021-09-14 05:50:40', '2021-09-14 05:50:40'), (4518, 4, '2021-09-14 05:50:40', '2021-09-14 05:50:40'), (4519, 4, '2021-09-14 05:50:40', '2021-09-14 05:50:40'), (4520, 4, '2021-09-14 05:50:41', '2021-09-14 05:50:41'), (4521, 4, '2021-09-14 05:50:41', '2021-09-14 05:50:41'), (4522, 4, '2021-09-14 05:50:41', '2021-09-14 05:50:41'), (4523, 4, '2021-09-14 05:50:41', '2021-09-14 05:50:41'), (4524, 4, '2021-09-14 05:50:42', '2021-09-14 05:50:42'), (4525, 4, '2021-09-14 05:50:42', '2021-09-14 05:50:42'), (4526, 4, '2021-09-14 05:50:42', '2021-09-14 05:50:42'), (4527, 4, '2021-09-14 05:50:42', '2021-09-14 05:50:42'), (4528, 4, '2021-09-14 05:50:43', '2021-09-14 05:50:43'), (4529, 4, '2021-09-14 05:50:43', '2021-09-14 05:50:43'), (4530, 4, '2021-09-14 05:50:43', '2021-09-14 05:50:43'), (4531, 4, '2021-09-14 05:50:43', '2021-09-14 05:50:43'), (4532, 4, '2021-09-14 05:50:44', '2021-09-14 05:50:44'), (4533, 4, '2021-09-14 05:50:44', '2021-09-14 05:50:44'), (4534, 4, '2021-09-14 05:50:44', '2021-09-14 05:50:44'), (4535, 4, '2021-09-14 05:50:44', '2021-09-14 05:50:44'), (4536, 4, '2021-09-15 05:50:51', '2021-09-15 05:50:51'), (4537, 4, '2021-09-15 05:50:57', '2021-09-15 05:50:57'), (4538, 4, '2021-09-15 05:50:58', '2021-09-15 05:50:58'), (4539, 4, '2021-09-15 05:50:59', '2021-09-15 05:50:59'), (4540, 4, '2021-09-15 05:50:59', '2021-09-15 05:50:59'), (4541, 4, '2021-09-15 05:50:59', '2021-09-15 05:50:59'), (4542, 4, '2021-09-15 05:51:00', '2021-09-15 05:51:00'), (4543, 4, '2021-09-15 05:51:00', '2021-09-15 05:51:00'), (4544, 4, '2021-09-15 05:51:00', '2021-09-15 05:51:00'), (4545, 4, '2021-09-15 05:51:01', '2021-09-15 05:51:01'), (4546, 4, '2021-09-15 05:51:01', '2021-09-15 05:51:01'), (4547, 4, '2021-09-15 05:51:01', '2021-09-15 05:51:01'), (4548, 4, '2021-09-15 05:51:02', '2021-09-15 05:51:02'), (4549, 4, '2021-09-15 05:51:02', '2021-09-15 05:51:02'), (4550, 4, '2021-09-15 05:51:02', '2021-09-15 05:51:02'), (4551, 4, '2021-09-15 05:51:02', '2021-09-15 05:51:02'), (4552, 4, '2021-09-15 05:51:02', '2021-09-15 05:51:02'), (4553, 4, '2021-09-15 05:51:03', '2021-09-15 05:51:03'), (4554, 4, '2021-09-15 05:51:04', '2021-09-15 05:51:04'), (4555, 4, '2021-09-15 05:51:04', '2021-09-15 05:51:04'), (4556, 4, '2021-09-15 05:51:04', '2021-09-15 05:51:04'), (4557, 4, '2021-09-15 05:51:04', '2021-09-15 05:51:04'), (4558, 4, '2021-09-15 05:51:05', '2021-09-15 05:51:05'), (4559, 4, '2021-09-15 05:51:05', '2021-09-15 05:51:05'), (4560, 4, '2021-09-15 05:51:05', '2021-09-15 05:51:05'), (4561, 4, '2021-09-15 05:51:06', '2021-09-15 05:51:06'), (4562, 4, '2021-09-15 05:51:06', '2021-09-15 05:51:06'), (4563, 4, '2021-09-15 05:51:07', '2021-09-15 05:51:07'), (4564, 4, '2021-09-15 05:51:07', '2021-09-15 05:51:07'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (4565, 4, '2021-09-15 05:51:07', '2021-09-15 05:51:07'), (4566, 4, '2021-09-15 05:51:08', '2021-09-15 05:51:08'), (4567, 4, '2021-09-15 05:51:08', '2021-09-15 05:51:08'), (4568, 4, '2021-09-15 05:51:08', '2021-09-15 05:51:08'), (4569, 4, '2021-09-15 05:51:08', '2021-09-15 05:51:08'), (4570, 4, '2021-09-15 05:51:08', '2021-09-15 05:51:08'), (4571, 4, '2021-09-15 05:51:09', '2021-09-15 05:51:09'), (4572, 4, '2021-09-15 05:51:09', '2021-09-15 05:51:09'), (4573, 4, '2021-09-15 05:51:09', '2021-09-15 05:51:09'), (4574, 4, '2021-09-15 05:51:10', '2021-09-15 05:51:10'), (4575, 4, '2021-09-15 05:51:10', '2021-09-15 05:51:10'), (4576, 4, '2021-09-15 05:51:10', '2021-09-15 05:51:10'), (4577, 4, '2021-09-15 05:51:10', '2021-09-15 05:51:10'), (4578, 4, '2021-09-15 05:51:10', '2021-09-15 05:51:10'), (4579, 4, '2021-09-15 05:51:11', '2021-09-15 05:51:11'), (4580, 4, '2021-09-15 05:51:11', '2021-09-15 05:51:11'), (4581, 4, '2021-09-15 05:51:11', '2021-09-15 05:51:11'), (4582, 4, '2021-09-15 05:51:11', '2021-09-15 05:51:11'), (4583, 4, '2021-09-15 05:51:12', '2021-09-15 05:51:12'), (4584, 4, '2021-09-15 05:51:12', '2021-09-15 05:51:12'), (4585, 4, '2021-09-15 05:51:12', '2021-09-15 05:51:12'), (4586, 4, '2021-09-15 05:51:12', '2021-09-15 05:51:12'), (4587, 4, '2021-09-15 05:51:12', '2021-09-15 05:51:12'), (4588, 4, '2021-09-15 05:51:12', '2021-09-15 05:51:12'), (4589, 4, '2021-09-15 05:51:13', '2021-09-15 05:51:13'), (4590, 4, '2021-09-15 05:51:13', '2021-09-15 05:51:13'), (4591, 4, '2021-09-15 05:51:13', '2021-09-15 05:51:13'), (4592, 4, '2021-09-15 05:51:13', '2021-09-15 05:51:13'), (4593, 4, '2021-09-15 05:51:14', '2021-09-15 05:51:14'), (4594, 4, '2021-09-15 05:51:14', '2021-09-15 05:51:14'), (4595, 4, '2021-09-15 05:51:14', '2021-09-15 05:51:14'), (4596, 4, '2021-09-15 05:51:14', '2021-09-15 05:51:14'), (4597, 4, '2021-09-15 05:51:14', '2021-09-15 05:51:14'), (4598, 4, '2021-09-15 05:51:15', '2021-09-15 05:51:15'), (4599, 4, '2021-09-15 05:51:15', '2021-09-15 05:51:15'), (4600, 4, '2021-09-15 05:51:15', '2021-09-15 05:51:15'), (4601, 4, '2021-09-15 05:51:15', '2021-09-15 05:51:15'), (4602, 4, '2021-09-15 05:51:16', '2021-09-15 05:51:16'), (4603, 4, '2021-09-15 05:51:16', '2021-09-15 05:51:16'), (4604, 4, '2021-09-15 05:51:16', '2021-09-15 05:51:16'), (4605, 4, '2021-09-15 05:51:16', '2021-09-15 05:51:16'), (4606, 4, '2021-09-15 05:51:17', '2021-09-15 05:51:17'), (4607, 4, '2021-09-15 05:51:17', '2021-09-15 05:51:17'), (4608, 4, '2021-09-15 05:51:18', '2021-09-15 05:51:18'), (4609, 4, '2021-09-15 05:51:18', '2021-09-15 05:51:18'), (4610, 4, '2021-09-15 05:51:18', '2021-09-15 05:51:18'), (4611, 4, '2021-09-15 05:51:18', '2021-09-15 05:51:18'), (4612, 4, '2021-09-15 05:51:18', '2021-09-15 05:51:18'), (4613, 4, '2021-09-15 05:51:19', '2021-09-15 05:51:19'), (4614, 4, '2021-09-15 05:51:19', '2021-09-15 05:51:19'), (4615, 4, '2021-09-15 05:51:19', '2021-09-15 05:51:19'), (4616, 4, '2021-09-15 05:51:20', '2021-09-15 05:51:20'), (4617, 4, '2021-09-15 05:51:20', '2021-09-15 05:51:20'), (4618, 4, '2021-09-15 05:51:20', '2021-09-15 05:51:20'), (4619, 4, '2021-09-15 05:51:20', '2021-09-15 05:51:20'), (4620, 4, '2021-09-15 05:51:21', '2021-09-15 05:51:21'), (4621, 4, '2021-09-15 05:51:21', '2021-09-15 05:51:21'), (4622, 4, '2021-09-15 05:51:21', '2021-09-15 05:51:21'), (4623, 4, '2021-09-15 05:51:21', '2021-09-15 05:51:21'), (4624, 4, '2021-09-15 05:51:22', '2021-09-15 05:51:22'), (4625, 4, '2021-09-15 05:51:22', '2021-09-15 05:51:22'), (4626, 4, '2021-09-15 05:51:22', '2021-09-15 05:51:22'), (4627, 4, '2021-09-15 05:51:22', '2021-09-15 05:51:22'), (4628, 4, '2021-09-15 05:51:23', '2021-09-15 05:51:23'), (4629, 4, '2021-09-15 05:51:23', '2021-09-15 05:51:23'), (4630, 4, '2021-09-15 05:51:24', '2021-09-15 05:51:24'), (4631, 4, '2021-09-15 05:51:24', '2021-09-15 05:51:24'), (4632, 4, '2021-09-15 05:51:24', '2021-09-15 05:51:24'), (4633, 4, '2021-09-15 05:51:25', '2021-09-15 05:51:25'), (4634, 4, '2021-09-15 05:51:25', '2021-09-15 05:51:25'), (4635, 4, '2021-09-15 05:51:25', '2021-09-15 05:51:25'), (4636, 4, '2021-09-15 05:51:26', '2021-09-15 05:51:26'), (4637, 4, '2021-09-15 05:51:26', '2021-09-15 05:51:26'), (4638, 4, '2021-09-15 05:51:27', '2021-09-15 05:51:27'), (4639, 4, '2021-09-15 05:51:27', '2021-09-15 05:51:27'), (4640, 4, '2021-09-15 05:51:27', '2021-09-15 05:51:27'), (4641, 4, '2021-09-15 05:51:28', '2021-09-15 05:51:28'), (4642, 4, '2021-09-15 05:51:28', '2021-09-15 05:51:28'), (4643, 4, '2021-09-15 05:51:28', '2021-09-15 05:51:28'), (4644, 4, '2021-09-15 05:51:28', '2021-09-15 05:51:28'), (4645, 4, '2021-09-15 05:51:28', '2021-09-15 05:51:28'), (4646, 4, '2021-09-15 05:51:29', '2021-09-15 05:51:29'), (4647, 4, '2021-09-15 05:51:29', '2021-09-15 05:51:29'), (4648, 4, '2021-09-15 05:51:29', '2021-09-15 05:51:29'), (4649, 4, '2021-09-15 05:51:29', '2021-09-15 05:51:29'), (4650, 4, '2021-09-15 05:51:29', '2021-09-15 05:51:29'), (4651, 4, '2021-09-15 05:51:30', '2021-09-15 05:51:30'), (4652, 4, '2021-09-15 05:51:30', '2021-09-15 05:51:30'), (4653, 4, '2021-09-15 05:51:31', '2021-09-15 05:51:31'), (4654, 4, '2021-09-15 05:51:31', '2021-09-15 05:51:31'), (4655, 4, '2021-09-15 05:51:31', '2021-09-15 05:51:31'), (4656, 4, '2021-09-15 05:51:31', '2021-09-15 05:51:31'), (4657, 4, '2021-09-15 05:51:31', '2021-09-15 05:51:31'), (4658, 4, '2021-09-15 05:51:31', '2021-09-15 05:51:31'), (4659, 4, '2021-09-15 05:51:32', '2021-09-15 05:51:32'), (4660, 4, '2021-09-15 05:51:32', '2021-09-15 05:51:32'), (4661, 4, '2021-09-15 05:51:32', '2021-09-15 05:51:32'), (4662, 4, '2021-09-15 05:51:33', '2021-09-15 05:51:33'), (4663, 4, '2021-09-15 05:51:33', '2021-09-15 05:51:33'), (4664, 4, '2021-09-16 05:51:36', '2021-09-16 05:51:36'), (4665, 4, '2021-09-16 05:51:37', '2021-09-16 05:51:37'), (4666, 4, '2021-09-16 05:51:38', '2021-09-16 05:51:38'), (4667, 4, '2021-09-16 05:51:38', '2021-09-16 05:51:38'), (4668, 4, '2021-09-16 05:51:38', '2021-09-16 05:51:38'), (4669, 4, '2021-09-16 05:51:39', '2021-09-16 05:51:39'), (4670, 4, '2021-09-16 05:51:39', '2021-09-16 05:51:39'), (4671, 4, '2021-09-16 05:51:39', '2021-09-16 05:51:39'), (4672, 4, '2021-09-16 05:51:40', '2021-09-16 05:51:40'), (4673, 4, '2021-09-16 05:51:40', '2021-09-16 05:51:40'), (4674, 4, '2021-09-16 05:51:40', '2021-09-16 05:51:40'), (4675, 4, '2021-09-16 05:51:40', '2021-09-16 05:51:40'), (4676, 4, '2021-09-16 05:51:41', '2021-09-16 05:51:41'), (4677, 4, '2021-09-16 05:51:41', '2021-09-16 05:51:41'), (4678, 4, '2021-09-16 05:51:41', '2021-09-16 05:51:41'), (4679, 4, '2021-09-16 05:51:41', '2021-09-16 05:51:41'), (4680, 4, '2021-09-16 05:51:41', '2021-09-16 05:51:41'), (4681, 4, '2021-09-16 05:51:42', '2021-09-16 05:51:42'), (4682, 4, '2021-09-16 05:51:42', '2021-09-16 05:51:42'), (4683, 4, '2021-09-16 05:51:42', '2021-09-16 05:51:42'), (4684, 4, '2021-09-16 05:51:43', '2021-09-16 05:51:43'), (4685, 4, '2021-09-16 05:51:43', '2021-09-16 05:51:43'), (4686, 4, '2021-09-16 05:51:44', '2021-09-16 05:51:44'), (4687, 4, '2021-09-16 05:51:44', '2021-09-16 05:51:44'), (4688, 4, '2021-09-16 05:51:44', '2021-09-16 05:51:44'), (4689, 4, '2021-09-16 05:51:44', '2021-09-16 05:51:44'), (4690, 4, '2021-09-16 05:51:45', '2021-09-16 05:51:45'), (4691, 4, '2021-09-16 05:51:45', '2021-09-16 05:51:45'), (4692, 4, '2021-09-16 05:51:46', '2021-09-16 05:51:46'), (4693, 4, '2021-09-16 05:51:46', '2021-09-16 05:51:46'), (4694, 4, '2021-09-16 05:51:46', '2021-09-16 05:51:46'), (4695, 4, '2021-09-16 05:51:47', '2021-09-16 05:51:47'), (4696, 4, '2021-09-16 05:51:47', '2021-09-16 05:51:47'), (4697, 4, '2021-09-16 05:51:47', '2021-09-16 05:51:47'), (4698, 4, '2021-09-16 05:51:48', '2021-09-16 05:51:48'), (4699, 4, '2021-09-16 05:51:48', '2021-09-16 05:51:48'), (4700, 4, '2021-09-16 05:51:49', '2021-09-16 05:51:49'), (4701, 4, '2021-09-16 05:51:49', '2021-09-16 05:51:49'), (4702, 4, '2021-09-16 05:51:50', '2021-09-16 05:51:50'), (4703, 4, '2021-09-16 05:51:50', '2021-09-16 05:51:50'), (4704, 4, '2021-09-16 05:51:51', '2021-09-16 05:51:51'), (4705, 4, '2021-09-16 05:51:51', '2021-09-16 05:51:51'), (4706, 4, '2021-09-16 05:51:52', '2021-09-16 05:51:52'), (4707, 4, '2021-09-16 05:51:53', '2021-09-16 05:51:53'), (4708, 4, '2021-09-16 05:51:54', '2021-09-16 05:51:54'), (4709, 4, '2021-09-16 05:51:54', '2021-09-16 05:51:54'), (4710, 4, '2021-09-16 05:51:54', '2021-09-16 05:51:54'), (4711, 4, '2021-09-16 05:51:55', '2021-09-16 05:51:55'), (4712, 4, '2021-09-16 05:51:55', '2021-09-16 05:51:55'), (4713, 4, '2021-09-16 05:51:56', '2021-09-16 05:51:56'), (4714, 4, '2021-09-16 05:51:56', '2021-09-16 05:51:56'), (4715, 4, '2021-09-16 05:51:57', '2021-09-16 05:51:57'), (4716, 4, '2021-09-16 05:51:57', '2021-09-16 05:51:57'), (4717, 4, '2021-09-16 05:51:58', '2021-09-16 05:51:58'), (4718, 4, '2021-09-16 05:51:58', '2021-09-16 05:51:58'), (4719, 4, '2021-09-17 05:52:04', '2021-09-17 05:52:04'), (4720, 4, '2021-09-17 05:52:09', '2021-09-17 05:52:09'), (4721, 4, '2021-09-17 05:52:10', '2021-09-17 05:52:10'), (4722, 4, '2021-09-17 05:52:11', '2021-09-17 05:52:11'), (4723, 4, '2021-09-17 05:52:12', '2021-09-17 05:52:12'), (4724, 4, '2021-09-17 05:52:12', '2021-09-17 05:52:12'), (4725, 4, '2021-09-17 05:52:12', '2021-09-17 05:52:12'), (4726, 4, '2021-09-17 05:52:12', '2021-09-17 05:52:12'), (4727, 4, '2021-09-17 05:52:12', '2021-09-17 05:52:12'), (4728, 4, '2021-09-17 05:52:13', '2021-09-17 05:52:13'), (4729, 4, '2021-09-17 05:52:13', '2021-09-17 05:52:13'), (4730, 4, '2021-09-17 05:52:13', '2021-09-17 05:52:13'), (4731, 4, '2021-09-17 05:52:13', '2021-09-17 05:52:13'), (4732, 4, '2021-09-17 05:52:14', '2021-09-17 05:52:14'), (4733, 4, '2021-09-17 05:52:14', '2021-09-17 05:52:14'), (4734, 4, '2021-09-17 05:52:14', '2021-09-17 05:52:14'), (4735, 4, '2021-09-17 05:52:14', '2021-09-17 05:52:14'), (4736, 4, '2021-09-17 05:52:14', '2021-09-17 05:52:14'), (4737, 4, '2021-09-17 05:52:15', '2021-09-17 05:52:15'), (4738, 4, '2021-09-17 05:52:15', '2021-09-17 05:52:15'), (4739, 4, '2021-09-17 05:52:15', '2021-09-17 05:52:15'), (4740, 4, '2021-09-17 05:52:16', '2021-09-17 05:52:16'), (4741, 4, '2021-09-17 05:52:16', '2021-09-17 05:52:16'), (4742, 4, '2021-09-17 05:52:16', '2021-09-17 05:52:16'), (4743, 4, '2021-09-17 05:52:16', '2021-09-17 05:52:16'), (4744, 4, '2021-09-17 05:52:17', '2021-09-17 05:52:17'), (4745, 4, '2021-09-17 05:52:17', '2021-09-17 05:52:17'), (4746, 4, '2021-09-17 05:52:17', '2021-09-17 05:52:17'), (4747, 4, '2021-09-17 05:52:18', '2021-09-17 05:52:18'), (4748, 4, '2021-09-17 05:52:18', '2021-09-17 05:52:18'), (4749, 4, '2021-09-17 05:52:18', '2021-09-17 05:52:18'), (4750, 4, '2021-09-17 05:52:19', '2021-09-17 05:52:19'), (4751, 4, '2021-09-17 05:52:19', '2021-09-17 05:52:19'), (4752, 4, '2021-09-17 05:52:19', '2021-09-17 05:52:19'), (4753, 4, '2021-09-17 05:52:19', '2021-09-17 05:52:19'), (4754, 4, '2021-09-17 05:52:20', '2021-09-17 05:52:20'), (4755, 4, '2021-09-17 05:52:20', '2021-09-17 05:52:20'), (4756, 4, '2021-09-17 05:52:20', '2021-09-17 05:52:20'), (4757, 4, '2021-09-17 05:52:21', '2021-09-17 05:52:21'), (4758, 4, '2021-09-17 05:52:21', '2021-09-17 05:52:21'), (4759, 4, '2021-09-17 05:52:21', '2021-09-17 05:52:21'), (4760, 4, '2021-09-17 05:52:22', '2021-09-17 05:52:22'), (4761, 4, '2021-09-17 05:52:22', '2021-09-17 05:52:22'), (4762, 4, '2021-09-17 05:52:22', '2021-09-17 05:52:22'), (4763, 4, '2021-09-17 05:52:23', '2021-09-17 05:52:23'), (4764, 4, '2021-09-17 05:52:23', '2021-09-17 05:52:23'), (4765, 4, '2021-09-17 05:52:24', '2021-09-17 05:52:24'), (4766, 4, '2021-09-17 05:52:24', '2021-09-17 05:52:24'), (4767, 4, '2021-09-17 05:52:24', '2021-09-17 05:52:24'), (4768, 4, '2021-09-17 05:52:25', '2021-09-17 05:52:25'), (4769, 4, '2021-09-17 05:52:25', '2021-09-17 05:52:25'), (4770, 4, '2021-09-17 05:52:25', '2021-09-17 05:52:25'), (4771, 4, '2021-09-17 05:52:26', '2021-09-17 05:52:26'), (4772, 4, '2021-09-17 05:52:26', '2021-09-17 05:52:26'), (4773, 4, '2021-09-17 05:52:26', '2021-09-17 05:52:26'), (4774, 4, '2021-09-17 05:52:27', '2021-09-17 05:52:27'), (4775, 4, '2021-09-17 05:52:27', '2021-09-17 05:52:27'), (4776, 4, '2021-09-17 05:52:27', '2021-09-17 05:52:27'), (4777, 4, '2021-09-17 05:52:28', '2021-09-17 05:52:28'), (4778, 4, '2021-09-17 05:52:29', '2021-09-17 05:52:29'), (4779, 4, '2021-09-17 05:52:29', '2021-09-17 05:52:29'), (4780, 4, '2021-09-17 05:52:29', '2021-09-17 05:52:29'), (4781, 4, '2021-09-17 05:52:30', '2021-09-17 05:52:30'), (4782, 4, '2021-09-17 05:52:30', '2021-09-17 05:52:30'), (4783, 4, '2021-09-17 05:52:31', '2021-09-17 05:52:31'), (4784, 4, '2021-09-17 05:52:31', '2021-09-17 05:52:31'), (4785, 4, '2021-09-17 05:52:32', '2021-09-17 05:52:32'), (4786, 4, '2021-09-17 05:52:32', '2021-09-17 05:52:32'), (4787, 4, '2021-09-17 05:52:32', '2021-09-17 05:52:32'), (4788, 4, '2021-09-17 05:52:33', '2021-09-17 05:52:33'), (4789, 4, '2021-09-17 05:52:33', '2021-09-17 05:52:33'), (4790, 4, '2021-09-17 05:52:33', '2021-09-17 05:52:33'), (4791, 4, '2021-09-17 05:52:34', '2021-09-17 05:52:34'), (4792, 4, '2021-09-17 05:52:34', '2021-09-17 05:52:34'), (4793, 4, '2021-09-17 05:52:35', '2021-09-17 05:52:35'), (4794, 4, '2021-09-17 05:52:35', '2021-09-17 05:52:35'), (4795, 4, '2021-09-17 05:52:35', '2021-09-17 05:52:35'), (4796, 4, '2021-09-17 05:52:36', '2021-09-17 05:52:36'), (4797, 4, '2021-09-17 05:52:36', '2021-09-17 05:52:36'), (4798, 4, '2021-09-17 05:52:37', '2021-09-17 05:52:37'), (4799, 4, '2021-09-17 05:52:37', '2021-09-17 05:52:37'), (4800, 4, '2021-09-17 05:52:38', '2021-09-17 05:52:38'), (4801, 4, '2021-09-17 05:52:38', '2021-09-17 05:52:38'), (4802, 4, '2021-09-17 05:52:39', '2021-09-17 05:52:39'), (4803, 4, '2021-09-17 05:52:39', '2021-09-17 05:52:39'), (4804, 4, '2021-09-17 05:52:40', '2021-09-17 05:52:40'), (4805, 4, '2021-09-17 05:52:40', '2021-09-17 05:52:40'), (4806, 4, '2021-09-17 05:52:40', '2021-09-17 05:52:40'), (4807, 4, '2021-09-17 05:52:41', '2021-09-17 05:52:41'), (4808, 4, '2021-09-17 05:52:41', '2021-09-17 05:52:41'), (4809, 4, '2021-09-17 05:52:42', '2021-09-17 05:52:42'), (4810, 4, '2021-09-17 05:52:42', '2021-09-17 05:52:42'), (4811, 4, '2021-09-17 05:52:43', '2021-09-17 05:52:43'), (4812, 4, '2021-09-17 05:52:43', '2021-09-17 05:52:43'), (4813, 4, '2021-09-17 05:52:44', '2021-09-17 05:52:44'), (4814, 4, '2021-09-17 05:52:44', '2021-09-17 05:52:44'), (4815, 4, '2021-09-18 05:52:54', '2021-09-18 05:52:54'), (4816, 4, '2021-09-18 05:52:55', '2021-09-18 05:52:55'), (4817, 4, '2021-09-18 05:52:55', '2021-09-18 05:52:55'), (4818, 4, '2021-09-18 05:52:56', '2021-09-18 05:52:56'), (4819, 4, '2021-09-18 05:52:56', '2021-09-18 05:52:56'), (4820, 4, '2021-09-18 05:52:57', '2021-09-18 05:52:57'), (4821, 4, '2021-09-18 05:52:57', '2021-09-18 05:52:57'), (4822, 4, '2021-09-18 05:52:57', '2021-09-18 05:52:57'), (4823, 4, '2021-09-18 05:52:57', '2021-09-18 05:52:57'), (4824, 4, '2021-09-18 05:52:58', '2021-09-18 05:52:58'), (4825, 4, '2021-09-18 05:52:58', '2021-09-18 05:52:58'), (4826, 4, '2021-09-18 05:52:59', '2021-09-18 05:52:59'), (4827, 4, '2021-09-18 05:52:59', '2021-09-18 05:52:59'), (4828, 4, '2021-09-18 05:53:00', '2021-09-18 05:53:00'), (4829, 4, '2021-09-18 05:53:00', '2021-09-18 05:53:00'), (4830, 4, '2021-09-18 05:53:00', '2021-09-18 05:53:00'), (4831, 4, '2021-09-18 05:53:01', '2021-09-18 05:53:01'), (4832, 4, '2021-09-18 05:53:01', '2021-09-18 05:53:01'), (4833, 4, '2021-09-18 05:53:01', '2021-09-18 05:53:01'), (4834, 4, '2021-09-18 05:53:01', '2021-09-18 05:53:01'), (4835, 4, '2021-09-18 05:53:02', '2021-09-18 05:53:02'), (4836, 4, '2021-09-18 05:53:02', '2021-09-18 05:53:02'), (4837, 4, '2021-09-18 05:53:02', '2021-09-18 05:53:02'), (4838, 4, '2021-09-18 05:53:03', '2021-09-18 05:53:03'), (4839, 4, '2021-09-18 05:53:03', '2021-09-18 05:53:03'), (4840, 4, '2021-09-18 05:53:03', '2021-09-18 05:53:03'), (4841, 4, '2021-09-18 05:53:04', '2021-09-18 05:53:04'), (4842, 4, '2021-09-18 05:53:04', '2021-09-18 05:53:04'), (4843, 4, '2021-09-18 05:53:04', '2021-09-18 05:53:04'), (4844, 4, '2021-09-18 05:53:05', '2021-09-18 05:53:05'), (4845, 4, '2021-09-18 05:53:05', '2021-09-18 05:53:05'), (4846, 4, '2021-09-18 05:53:05', '2021-09-18 05:53:05'), (4847, 4, '2021-09-18 05:53:06', '2021-09-18 05:53:06'), (4848, 4, '2021-09-18 05:53:06', '2021-09-18 05:53:06'), (4849, 4, '2021-09-18 05:53:06', '2021-09-18 05:53:06'), (4850, 4, '2021-09-18 05:53:06', '2021-09-18 05:53:06'), (4851, 4, '2021-09-18 05:53:07', '2021-09-18 05:53:07'), (4852, 4, '2021-09-18 05:53:07', '2021-09-18 05:53:07'), (4853, 4, '2021-09-18 05:53:07', '2021-09-18 05:53:07'), (4854, 4, '2021-09-18 05:53:08', '2021-09-18 05:53:08'), (4855, 4, '2021-09-18 05:53:08', '2021-09-18 05:53:08'), (4856, 4, '2021-09-18 05:53:08', '2021-09-18 05:53:08'), (4857, 4, '2021-09-18 05:53:08', '2021-09-18 05:53:08'), (4858, 4, '2021-09-18 05:53:09', '2021-09-18 05:53:09'), (4859, 4, '2021-09-18 05:53:09', '2021-09-18 05:53:09'), (4860, 4, '2021-09-18 05:53:09', '2021-09-18 05:53:09'), (4861, 4, '2021-09-18 05:53:09', '2021-09-18 05:53:09'), (4862, 4, '2021-09-18 05:53:10', '2021-09-18 05:53:10'), (4863, 4, '2021-09-18 05:53:10', '2021-09-18 05:53:10'), (4864, 4, '2021-09-18 05:53:52', '2021-09-18 05:53:52'), (4865, 4, '2021-09-18 05:53:58', '2021-09-18 05:53:58'), (4866, 4, '2021-09-18 05:53:59', '2021-09-18 05:53:59'), (4867, 4, '2021-09-18 05:53:59', '2021-09-18 05:53:59'), (4868, 4, '2021-09-18 05:53:59', '2021-09-18 05:53:59'), (4869, 4, '2021-09-18 05:53:59', '2021-09-18 05:53:59'), (4870, 4, '2021-09-18 05:54:00', '2021-09-18 05:54:00'), (4871, 4, '2021-09-18 05:54:00', '2021-09-18 05:54:00'), (4872, 4, '2021-09-18 05:54:02', '2021-09-18 05:54:02'), (4873, 4, '2021-09-18 05:54:03', '2021-09-18 05:54:03'), (4874, 4, '2021-09-18 05:54:03', '2021-09-18 05:54:03'), (4875, 4, '2021-09-18 05:54:03', '2021-09-18 05:54:03'), (4876, 4, '2021-09-18 05:54:04', '2021-09-18 05:54:04'), (4877, 4, '2021-09-19 05:54:10', '2021-09-19 05:54:10'), (4878, 4, '2021-09-19 05:54:12', '2021-09-19 05:54:12'), (4879, 4, '2021-09-19 05:54:12', '2021-09-19 05:54:12'), (4880, 4, '2021-09-19 05:54:13', '2021-09-19 05:54:13'), (4881, 4, '2021-09-19 05:54:14', '2021-09-19 05:54:14'), (4882, 4, '2021-09-19 05:54:14', '2021-09-19 05:54:14'), (4883, 4, '2021-09-19 05:54:15', '2021-09-19 05:54:15'), (4884, 4, '2021-09-19 05:54:15', '2021-09-19 05:54:15'), (4885, 4, '2021-09-19 05:54:16', '2021-09-19 05:54:16'), (4886, 4, '2021-09-19 05:54:17', '2021-09-19 05:54:17'), (4887, 4, '2021-09-19 05:54:17', '2021-09-19 05:54:17'), (4888, 4, '2021-09-19 05:54:18', '2021-09-19 05:54:18'), (4889, 4, '2021-09-19 05:54:19', '2021-09-19 05:54:19'), (4890, 4, '2021-09-19 05:54:19', '2021-09-19 05:54:19'), (4891, 4, '2021-09-19 05:54:20', '2021-09-19 05:54:20'), (4892, 4, '2021-09-19 05:54:22', '2021-09-19 05:54:22'), (4893, 4, '2021-09-19 05:54:23', '2021-09-19 05:54:23'), (4894, 4, '2021-09-19 05:54:24', '2021-09-19 05:54:24'), (4895, 4, '2021-09-19 05:54:24', '2021-09-19 05:54:24'), (4896, 4, '2021-09-19 05:54:24', '2021-09-19 05:54:24'), (4897, 4, '2021-09-19 05:54:25', '2021-09-19 05:54:25'), (4898, 4, '2021-09-19 05:54:26', '2021-09-19 05:54:26'), (4899, 4, '2021-09-19 05:54:26', '2021-09-19 05:54:26'), (4900, 4, '2021-09-19 05:54:27', '2021-09-19 05:54:27'), (4901, 4, '2021-09-19 05:54:27', '2021-09-19 05:54:27'), (4902, 4, '2021-09-19 05:54:28', '2021-09-19 05:54:28'), (4903, 4, '2021-09-19 05:54:28', '2021-09-19 05:54:28'), (4904, 4, '2021-09-19 05:54:29', '2021-09-19 05:54:29'), (4905, 4, '2021-09-19 05:54:29', '2021-09-19 05:54:29'), (4906, 4, '2021-09-19 05:54:30', '2021-09-19 05:54:30'), (4907, 4, '2021-09-19 05:54:31', '2021-09-19 05:54:31'), (4908, 4, '2021-09-19 05:54:31', '2021-09-19 05:54:31'), (4909, 4, '2021-09-19 05:54:32', '2021-09-19 05:54:32'), (4910, 4, '2021-09-19 05:54:32', '2021-09-19 05:54:32'), (4911, 4, '2021-09-19 05:54:32', '2021-09-19 05:54:32'), (4912, 4, '2021-09-19 05:54:32', '2021-09-19 05:54:32'), (4913, 4, '2021-09-19 05:54:33', '2021-09-19 05:54:33'), (4914, 4, '2021-09-19 05:54:33', '2021-09-19 05:54:33'), (4915, 4, '2021-09-19 05:54:34', '2021-09-19 05:54:34'), (4916, 4, '2021-09-19 05:54:34', '2021-09-19 05:54:34'), (4917, 4, '2021-09-19 05:54:34', '2021-09-19 05:54:34'), (4918, 4, '2021-09-19 05:54:35', '2021-09-19 05:54:35'), (4919, 4, '2021-09-19 05:54:35', '2021-09-19 05:54:35'), (4920, 4, '2021-09-19 05:54:35', '2021-09-19 05:54:35'), (4921, 4, '2021-09-19 05:54:36', '2021-09-19 05:54:36'), (4922, 4, '2021-09-19 05:54:36', '2021-09-19 05:54:36'), (4923, 4, '2021-09-19 05:54:36', '2021-09-19 05:54:36'), (4924, 4, '2021-09-19 05:54:37', '2021-09-19 05:54:37'), (4925, 4, '2021-09-19 05:54:37', '2021-09-19 05:54:37'), (4926, 4, '2021-09-19 05:54:38', '2021-09-19 05:54:38'), (4927, 4, '2021-09-19 05:54:38', '2021-09-19 05:54:38'), (4928, 4, '2021-09-19 05:54:38', '2021-09-19 05:54:38'), (4929, 4, '2021-09-19 05:54:39', '2021-09-19 05:54:39'), (4930, 4, '2021-09-19 05:54:39', '2021-09-19 05:54:39'), (4931, 4, '2021-09-19 05:54:39', '2021-09-19 05:54:39'), (4932, 4, '2021-09-19 05:54:40', '2021-09-19 05:54:40'), (4933, 4, '2021-09-19 05:54:40', '2021-09-19 05:54:40'), (4934, 4, '2021-09-19 05:54:41', '2021-09-19 05:54:41'), (4935, 4, '2021-09-19 05:54:41', '2021-09-19 05:54:41'), (4936, 4, '2021-09-19 05:54:41', '2021-09-19 05:54:41'), (4937, 4, '2021-09-19 05:54:42', '2021-09-19 05:54:42'), (4938, 4, '2021-09-19 05:54:42', '2021-09-19 05:54:42'), (4939, 4, '2021-09-19 05:54:42', '2021-09-19 05:54:42'), (4940, 4, '2021-09-19 05:54:43', '2021-09-19 05:54:43'), (4941, 4, '2021-09-19 05:54:43', '2021-09-19 05:54:43'), (4942, 4, '2021-09-19 05:54:44', '2021-09-19 05:54:44'), (4943, 4, '2021-09-19 05:54:44', '2021-09-19 05:54:44'), (4944, 4, '2021-09-19 05:54:44', '2021-09-19 05:54:44'), (4945, 4, '2021-09-19 05:54:45', '2021-09-19 05:54:45'), (4946, 4, '2021-09-20 05:54:48', '2021-09-20 05:54:48'), (4947, 4, '2021-09-20 05:54:50', '2021-09-20 05:54:50'), (4948, 4, '2021-09-20 05:54:51', '2021-09-20 05:54:51'), (4949, 4, '2021-09-20 05:54:51', '2021-09-20 05:54:51'), (4950, 4, '2021-09-20 05:54:51', '2021-09-20 05:54:51'), (4951, 4, '2021-09-20 05:54:51', '2021-09-20 05:54:51'), (4952, 4, '2021-09-20 05:54:51', '2021-09-20 05:54:51'), (4953, 4, '2021-09-20 05:54:52', '2021-09-20 05:54:52'), (4954, 4, '2021-09-20 05:54:52', '2021-09-20 05:54:52'), (4955, 4, '2021-09-20 05:54:52', '2021-09-20 05:54:52'), (4956, 4, '2021-09-20 05:54:52', '2021-09-20 05:54:52'), (4957, 4, '2021-09-20 05:54:53', '2021-09-20 05:54:53'), (4958, 4, '2021-09-20 05:54:53', '2021-09-20 05:54:53'), (4959, 4, '2021-09-20 05:54:53', '2021-09-20 05:54:53'), (4960, 4, '2021-09-20 05:54:53', '2021-09-20 05:54:53'), (4961, 4, '2021-09-20 05:54:54', '2021-09-20 05:54:54'), (4962, 4, '2021-09-20 05:54:54', '2021-09-20 05:54:54'), (4963, 4, '2021-09-20 05:54:54', '2021-09-20 05:54:54'), (4964, 4, '2021-09-20 05:54:55', '2021-09-20 05:54:55'), (4965, 4, '2021-09-20 05:54:55', '2021-09-20 05:54:55'), (4966, 4, '2021-09-20 05:54:55', '2021-09-20 05:54:55'), (4967, 4, '2021-09-20 05:54:56', '2021-09-20 05:54:56'), (4968, 4, '2021-09-20 05:54:56', '2021-09-20 05:54:56'), (4969, 4, '2021-09-20 05:54:56', '2021-09-20 05:54:56'), (4970, 4, '2021-09-20 05:54:57', '2021-09-20 05:54:57'), (4971, 4, '2021-09-20 05:54:57', '2021-09-20 05:54:57'), (4972, 4, '2021-09-20 05:54:57', '2021-09-20 05:54:57'), (4973, 4, '2021-09-20 05:54:57', '2021-09-20 05:54:57'), (4974, 4, '2021-09-20 05:54:58', '2021-09-20 05:54:58'), (4975, 4, '2021-09-20 05:54:58', '2021-09-20 05:54:58'), (4976, 4, '2021-09-20 05:54:58', '2021-09-20 05:54:58'), (4977, 4, '2021-09-20 05:54:58', '2021-09-20 05:54:58'), (4978, 4, '2021-09-20 05:54:59', '2021-09-20 05:54:59'), (4979, 4, '2021-09-20 05:54:59', '2021-09-20 05:54:59'), (4980, 4, '2021-09-20 05:54:59', '2021-09-20 05:54:59'), (4981, 4, '2021-09-20 05:54:59', '2021-09-20 05:54:59'), (4982, 4, '2021-09-20 05:55:00', '2021-09-20 05:55:00'), (4983, 4, '2021-09-20 05:55:00', '2021-09-20 05:55:00'), (4984, 4, '2021-09-20 05:55:00', '2021-09-20 05:55:00'), (4985, 4, '2021-09-20 05:55:01', '2021-09-20 05:55:01'), (4986, 4, '2021-09-20 05:55:01', '2021-09-20 05:55:01'), (4987, 4, '2021-09-20 05:55:01', '2021-09-20 05:55:01'), (4988, 4, '2021-09-20 05:55:01', '2021-09-20 05:55:01'), (4989, 4, '2021-09-20 05:55:02', '2021-09-20 05:55:02'), (4990, 4, '2021-09-20 05:55:02', '2021-09-20 05:55:02'), (4991, 4, '2021-09-20 05:55:03', '2021-09-20 05:55:03'), (4992, 4, '2021-09-20 05:55:03', '2021-09-20 05:55:03'), (4993, 4, '2021-09-20 05:55:03', '2021-09-20 05:55:03'), (4994, 4, '2021-09-20 05:55:03', '2021-09-20 05:55:03'), (4995, 4, '2021-09-20 05:55:04', '2021-09-20 05:55:04'), (4996, 4, '2021-09-20 05:55:04', '2021-09-20 05:55:04'), (4997, 4, '2021-09-20 05:55:04', '2021-09-20 05:55:04'), (4998, 4, '2021-09-20 05:55:05', '2021-09-20 05:55:05'), (4999, 4, '2021-09-20 05:55:05', '2021-09-20 05:55:05'), (5000, 4, '2021-09-20 05:55:05', '2021-09-20 05:55:05'), (5001, 4, '2021-09-20 05:55:05', '2021-09-20 05:55:05'), (5002, 4, '2021-09-20 05:55:06', '2021-09-20 05:55:06'), (5003, 4, '2021-09-20 05:55:06', '2021-09-20 05:55:06'), (5004, 4, '2021-09-20 05:55:06', '2021-09-20 05:55:06'), (5005, 4, '2021-09-20 05:55:07', '2021-09-20 05:55:07'), (5006, 4, '2021-09-20 05:55:07', '2021-09-20 05:55:07'), (5007, 4, '2021-09-20 05:55:07', '2021-09-20 05:55:07'), (5008, 4, '2021-09-20 05:55:08', '2021-09-20 05:55:08'), (5009, 4, '2021-09-20 05:55:08', '2021-09-20 05:55:08'), (5010, 4, '2021-09-20 05:55:08', '2021-09-20 05:55:08'), (5011, 4, '2021-09-20 05:55:09', '2021-09-20 05:55:09'), (5012, 4, '2021-09-20 05:55:09', '2021-09-20 05:55:09'), (5013, 4, '2021-09-20 05:55:09', '2021-09-20 05:55:09'), (5014, 4, '2021-09-20 05:55:09', '2021-09-20 05:55:09'), (5015, 4, '2021-09-20 05:55:10', '2021-09-20 05:55:10'), (5016, 4, '2021-09-20 05:55:10', '2021-09-20 05:55:10'), (5017, 4, '2021-09-20 05:55:10', '2021-09-20 05:55:10'), (5018, 4, '2021-09-20 05:55:10', '2021-09-20 05:55:10'), (5019, 4, '2021-09-20 05:55:11', '2021-09-20 05:55:11'), (5020, 4, '2021-09-20 05:55:11', '2021-09-20 05:55:11'), (5021, 4, '2021-09-20 05:55:11', '2021-09-20 05:55:11'), (5022, 4, '2021-09-20 05:55:11', '2021-09-20 05:55:11'), (5023, 4, '2021-09-20 05:55:12', '2021-09-20 05:55:12'), (5024, 4, '2021-09-20 05:55:12', '2021-09-20 05:55:12'), (5025, 4, '2021-09-20 05:55:12', '2021-09-20 05:55:12'), (5026, 4, '2021-09-20 05:55:12', '2021-09-20 05:55:12'), (5027, 4, '2021-09-20 05:55:13', '2021-09-20 05:55:13'), (5028, 4, '2021-09-20 05:55:13', '2021-09-20 05:55:13'), (5029, 4, '2021-09-20 05:55:13', '2021-09-20 05:55:13'), (5030, 4, '2021-09-20 05:55:14', '2021-09-20 05:55:14'), (5031, 4, '2021-09-20 05:55:14', '2021-09-20 05:55:14'), (5032, 4, '2021-09-20 05:55:14', '2021-09-20 05:55:14'), (5033, 4, '2021-09-20 05:55:14', '2021-09-20 05:55:14'), (5034, 4, '2021-09-20 05:55:15', '2021-09-20 05:55:15'), (5035, 4, '2021-09-20 05:55:15', '2021-09-20 05:55:15'), (5036, 4, '2021-09-20 05:55:15', '2021-09-20 05:55:15'), (5037, 4, '2021-09-20 05:55:15', '2021-09-20 05:55:15'), (5038, 4, '2021-09-20 05:55:16', '2021-09-20 05:55:16'), (5039, 4, '2021-09-20 05:55:16', '2021-09-20 05:55:16'), (5040, 4, '2021-09-20 05:55:16', '2021-09-20 05:55:16'), (5041, 4, '2021-09-20 05:55:17', '2021-09-20 05:55:17'), (5042, 4, '2021-09-20 05:55:17', '2021-09-20 05:55:17'), (5043, 4, '2021-09-20 05:55:17', '2021-09-20 05:55:17'), (5044, 4, '2021-09-20 05:55:17', '2021-09-20 05:55:17'), (5045, 4, '2021-09-20 05:55:18', '2021-09-20 05:55:18'), (5046, 4, '2021-09-20 05:55:18', '2021-09-20 05:55:18'), (5047, 4, '2021-09-20 05:55:18', '2021-09-20 05:55:18'), (5048, 4, '2021-09-20 05:55:18', '2021-09-20 05:55:18'), (5049, 4, '2021-09-20 05:55:19', '2021-09-20 05:55:19'), (5050, 4, '2021-09-20 05:55:19', '2021-09-20 05:55:19'), (5051, 4, '2021-09-20 05:55:19', '2021-09-20 05:55:19'), (5052, 4, '2021-09-20 05:55:19', '2021-09-20 05:55:19'), (5053, 4, '2021-09-20 05:55:20', '2021-09-20 05:55:20'), (5054, 4, '2021-09-20 05:55:20', '2021-09-20 05:55:20'), (5055, 4, '2021-09-20 05:55:21', '2021-09-20 05:55:21'), (5056, 4, '2021-09-20 05:55:21', '2021-09-20 05:55:21'), (5057, 4, '2021-09-20 05:55:21', '2021-09-20 05:55:21'), (5058, 4, '2021-09-20 05:55:21', '2021-09-20 05:55:21'), (5059, 4, '2021-09-20 05:55:22', '2021-09-20 05:55:22'), (5060, 4, '2021-09-20 05:55:22', '2021-09-20 05:55:22'), (5061, 4, '2021-09-20 05:55:22', '2021-09-20 05:55:22'), (5062, 4, '2021-09-20 05:55:22', '2021-09-20 05:55:22'), (5063, 4, '2021-09-20 05:55:23', '2021-09-20 05:55:23'), (5064, 4, '2021-09-20 05:55:23', '2021-09-20 05:55:23'), (5065, 4, '2021-09-20 05:55:23', '2021-09-20 05:55:23'), (5066, 4, '2021-09-20 05:55:23', '2021-09-20 05:55:23'), (5067, 4, '2021-09-20 05:55:24', '2021-09-20 05:55:24'), (5068, 4, '2021-09-20 05:55:24', '2021-09-20 05:55:24'), (5069, 4, '2021-09-20 05:55:24', '2021-09-20 05:55:24'), (5070, 4, '2021-09-20 05:55:25', '2021-09-20 05:55:25'), (5071, 4, '2021-09-20 05:55:25', '2021-09-20 05:55:25'), (5072, 4, '2021-09-20 05:55:25', '2021-09-20 05:55:25'), (5073, 4, '2021-09-20 05:55:25', '2021-09-20 05:55:25'), (5074, 4, '2021-09-20 05:55:26', '2021-09-20 05:55:26'), (5075, 4, '2021-09-20 05:55:26', '2021-09-20 05:55:26'), (5076, 4, '2021-09-20 05:55:26', '2021-09-20 05:55:26'), (5077, 4, '2021-09-20 05:55:26', '2021-09-20 05:55:26'), (5078, 4, '2021-09-20 05:55:26', '2021-09-20 05:55:26'), (5079, 4, '2021-09-20 05:55:27', '2021-09-20 05:55:27'), (5080, 4, '2021-09-20 05:55:27', '2021-09-20 05:55:27'), (5081, 4, '2021-09-20 05:55:27', '2021-09-20 05:55:27'), (5082, 4, '2021-09-20 05:55:28', '2021-09-20 05:55:28'), (5083, 4, '2021-09-20 05:55:28', '2021-09-20 05:55:28'), (5084, 4, '2021-09-20 05:55:28', '2021-09-20 05:55:28'), (5085, 4, '2021-09-20 05:55:28', '2021-09-20 05:55:28'), (5086, 4, '2021-09-20 05:55:29', '2021-09-20 05:55:29'), (5087, 4, '2021-09-20 05:55:29', '2021-09-20 05:55:29'), (5088, 4, '2021-09-20 05:55:30', '2021-09-20 05:55:30'), (5089, 4, '2021-09-21 05:55:33', '2021-09-21 05:55:33'), (5090, 4, '2021-09-21 05:55:35', '2021-09-21 05:55:35'), (5091, 4, '2021-09-21 05:55:35', '2021-09-21 05:55:35'), (5092, 4, '2021-09-21 05:55:36', '2021-09-21 05:55:36'), (5093, 4, '2021-09-21 05:55:36', '2021-09-21 05:55:36'), (5094, 4, '2021-09-21 05:55:36', '2021-09-21 05:55:36'), (5095, 4, '2021-09-21 05:55:36', '2021-09-21 05:55:36'), (5096, 4, '2021-09-21 05:55:37', '2021-09-21 05:55:37'), (5097, 4, '2021-09-21 05:55:37', '2021-09-21 05:55:37'), (5098, 4, '2021-09-21 05:55:38', '2021-09-21 05:55:38'), (5099, 4, '2021-09-21 05:55:38', '2021-09-21 05:55:38'), (5100, 4, '2021-09-21 05:55:38', '2021-09-21 05:55:38'), (5101, 4, '2021-09-21 05:55:38', '2021-09-21 05:55:38'), (5102, 4, '2021-09-21 05:55:39', '2021-09-21 05:55:39'), (5103, 4, '2021-09-21 05:55:39', '2021-09-21 05:55:39'), (5104, 4, '2021-09-21 05:55:39', '2021-09-21 05:55:39'), (5105, 4, '2021-09-21 05:55:42', '2021-09-21 05:55:42'), (5106, 4, '2021-09-21 05:55:42', '2021-09-21 05:55:42'), (5107, 4, '2021-09-21 05:55:42', '2021-09-21 05:55:42'), (5108, 4, '2021-09-21 05:55:43', '2021-09-21 05:55:43'), (5109, 4, '2021-09-21 05:55:43', '2021-09-21 05:55:43'), (5110, 4, '2021-09-21 05:55:43', '2021-09-21 05:55:43'), (5111, 4, '2021-09-21 05:55:43', '2021-09-21 05:55:43'), (5112, 4, '2021-09-21 05:55:45', '2021-09-21 05:55:45'), (5113, 4, '2021-09-21 05:55:45', '2021-09-21 05:55:45'), (5114, 4, '2021-09-21 05:55:48', '2021-09-21 05:55:48'), (5115, 4, '2021-09-21 05:55:48', '2021-09-21 05:55:48'), (5116, 4, '2021-09-21 05:55:48', '2021-09-21 05:55:48'), (5117, 4, '2021-09-21 05:55:49', '2021-09-21 05:55:49'), (5118, 4, '2021-09-21 05:55:49', '2021-09-21 05:55:49'), (5119, 4, '2021-09-21 05:55:49', '2021-09-21 05:55:49'), (5120, 4, '2021-09-21 05:55:52', '2021-09-21 05:55:52'), (5121, 4, '2021-09-21 05:55:52', '2021-09-21 05:55:52'), (5122, 4, '2021-09-21 05:55:52', '2021-09-21 05:55:52'), (5123, 4, '2021-09-21 05:55:52', '2021-09-21 05:55:52'), (5124, 4, '2021-09-21 05:55:53', '2021-09-21 05:55:53'), (5125, 4, '2021-09-21 05:55:53', '2021-09-21 05:55:53'), (5126, 4, '2021-09-21 05:55:53', '2021-09-21 05:55:53'), (5127, 4, '2021-09-21 05:55:53', '2021-09-21 05:55:53'), (5128, 4, '2021-09-21 05:55:54', '2021-09-21 05:55:54'), (5129, 4, '2021-09-21 05:55:54', '2021-09-21 05:55:54'), (5130, 4, '2021-09-21 05:55:54', '2021-09-21 05:55:54'), (5131, 4, '2021-09-21 05:55:55', '2021-09-21 05:55:55'), (5132, 4, '2021-09-21 05:55:55', '2021-09-21 05:55:55'), (5133, 4, '2021-09-21 05:55:56', '2021-09-21 05:55:56'), (5134, 4, '2021-09-21 05:55:56', '2021-09-21 05:55:56'), (5135, 4, '2021-09-21 05:55:56', '2021-09-21 05:55:56'), (5136, 4, '2021-09-21 05:55:56', '2021-09-21 05:55:56'), (5137, 4, '2021-09-22 05:55:59', '2021-09-22 05:55:59'), (5138, 4, '2021-09-22 05:56:00', '2021-09-22 05:56:00'), (5139, 4, '2021-09-22 05:56:01', '2021-09-22 05:56:01'), (5140, 4, '2021-09-22 05:56:01', '2021-09-22 05:56:01'), (5141, 4, '2021-09-22 05:56:01', '2021-09-22 05:56:01'), (5142, 4, '2021-09-22 05:56:02', '2021-09-22 05:56:02'), (5143, 4, '2021-09-22 05:56:02', '2021-09-22 05:56:02'), (5144, 4, '2021-09-22 05:56:02', '2021-09-22 05:56:02'), (5145, 4, '2021-09-22 05:56:02', '2021-09-22 05:56:02'), (5146, 4, '2021-09-22 05:56:03', '2021-09-22 05:56:03'), (5147, 4, '2021-09-22 05:56:03', '2021-09-22 05:56:03'), (5148, 4, '2021-09-22 05:56:03', '2021-09-22 05:56:03'), (5149, 4, '2021-09-22 05:56:04', '2021-09-22 05:56:04'), (5150, 4, '2021-09-22 05:56:04', '2021-09-22 05:56:04'), (5151, 4, '2021-09-22 05:56:04', '2021-09-22 05:56:04'), (5152, 4, '2021-09-22 05:56:04', '2021-09-22 05:56:04'), (5153, 4, '2021-09-22 05:56:05', '2021-09-22 05:56:05'), (5154, 4, '2021-09-22 05:56:05', '2021-09-22 05:56:05'), (5155, 4, '2021-09-22 05:56:05', '2021-09-22 05:56:05'), (5156, 4, '2021-09-22 05:56:05', '2021-09-22 05:56:05'), (5157, 4, '2021-09-22 05:56:06', '2021-09-22 05:56:06'), (5158, 4, '2021-09-22 05:56:06', '2021-09-22 05:56:06'), (5159, 4, '2021-09-22 05:56:06', '2021-09-22 05:56:06'), (5160, 4, '2021-09-22 05:56:06', '2021-09-22 05:56:06'), (5161, 4, '2021-09-22 05:56:07', '2021-09-22 05:56:07'), (5162, 4, '2021-09-22 05:56:07', '2021-09-22 05:56:07'), (5163, 4, '2021-09-22 05:56:07', '2021-09-22 05:56:07'), (5164, 4, '2021-09-22 05:56:08', '2021-09-22 05:56:08'), (5165, 4, '2021-09-22 05:56:08', '2021-09-22 05:56:08'), (5166, 4, '2021-09-22 05:56:08', '2021-09-22 05:56:08'), (5167, 4, '2021-09-22 05:56:08', '2021-09-22 05:56:08'), (5168, 4, '2021-09-22 05:56:08', '2021-09-22 05:56:08'), (5169, 4, '2021-09-22 05:56:09', '2021-09-22 05:56:09'), (5170, 4, '2021-09-22 05:56:09', '2021-09-22 05:56:09'), (5171, 4, '2021-09-22 05:56:09', '2021-09-22 05:56:09'), (5172, 4, '2021-09-22 05:56:10', '2021-09-22 05:56:10'), (5173, 4, '2021-09-22 05:56:10', '2021-09-22 05:56:10'), (5174, 4, '2021-09-22 05:56:10', '2021-09-22 05:56:10'), (5175, 4, '2021-09-22 05:56:10', '2021-09-22 05:56:10'), (5176, 4, '2021-09-22 05:56:11', '2021-09-22 05:56:11'), (5177, 4, '2021-09-22 05:56:11', '2021-09-22 05:56:11'), (5178, 4, '2021-09-22 05:56:11', '2021-09-22 05:56:11'), (5179, 4, '2021-09-22 05:56:11', '2021-09-22 05:56:11'), (5180, 4, '2021-09-22 05:56:12', '2021-09-22 05:56:12'), (5181, 4, '2021-09-22 05:56:12', '2021-09-22 05:56:12'), (5182, 4, '2021-09-22 05:56:12', '2021-09-22 05:56:12'), (5183, 4, '2021-09-22 05:56:12', '2021-09-22 05:56:12'), (5184, 4, '2021-09-22 05:56:13', '2021-09-22 05:56:13'), (5185, 4, '2021-09-22 05:56:13', '2021-09-22 05:56:13'), (5186, 4, '2021-09-22 05:56:13', '2021-09-22 05:56:13'), (5187, 4, '2021-09-22 05:56:13', '2021-09-22 05:56:13'), (5188, 4, '2021-09-22 05:56:14', '2021-09-22 05:56:14'), (5189, 4, '2021-09-22 05:56:14', '2021-09-22 05:56:14'), (5190, 4, '2021-09-22 05:56:14', '2021-09-22 05:56:14'), (5191, 4, '2021-09-22 05:56:14', '2021-09-22 05:56:14'), (5192, 4, '2021-09-22 05:56:15', '2021-09-22 05:56:15'), (5193, 4, '2021-09-22 05:56:15', '2021-09-22 05:56:15'), (5194, 4, '2021-09-22 05:56:15', '2021-09-22 05:56:15'), (5195, 4, '2021-09-22 05:56:15', '2021-09-22 05:56:15'), (5196, 4, '2021-09-22 05:56:15', '2021-09-22 05:56:15'), (5197, 4, '2021-09-22 05:56:16', '2021-09-22 05:56:16'), (5198, 4, '2021-09-22 05:56:16', '2021-09-22 05:56:16'), (5199, 4, '2021-09-22 05:56:16', '2021-09-22 05:56:16'), (5200, 4, '2021-09-22 05:56:17', '2021-09-22 05:56:17'), (5201, 4, '2021-09-22 05:56:17', '2021-09-22 05:56:17'), (5202, 4, '2021-09-22 05:56:17', '2021-09-22 05:56:17'), (5203, 4, '2021-09-22 05:56:17', '2021-09-22 05:56:17'), (5204, 4, '2021-09-22 05:56:18', '2021-09-22 05:56:18'), (5205, 4, '2021-09-22 05:56:18', '2021-09-22 05:56:18'), (5206, 4, '2021-09-22 05:56:18', '2021-09-22 05:56:18'), (5207, 4, '2021-09-22 05:56:18', '2021-09-22 05:56:18'), (5208, 4, '2021-09-22 05:56:19', '2021-09-22 05:56:19'), (5209, 4, '2021-09-22 05:56:19', '2021-09-22 05:56:19'), (5210, 4, '2021-09-22 05:56:19', '2021-09-22 05:56:19'), (5211, 4, '2021-09-22 05:56:20', '2021-09-22 05:56:20'), (5212, 4, '2021-09-22 05:56:20', '2021-09-22 05:56:20'), (5213, 4, '2021-09-22 05:56:20', '2021-09-22 05:56:20'), (5214, 4, '2021-09-22 05:56:20', '2021-09-22 05:56:20'), (5215, 4, '2021-09-22 05:56:20', '2021-09-22 05:56:20'), (5216, 4, '2021-09-22 05:56:21', '2021-09-22 05:56:21'), (5217, 4, '2021-09-22 05:56:21', '2021-09-22 05:56:21'), (5218, 4, '2021-09-22 05:56:21', '2021-09-22 05:56:21'), (5219, 4, '2021-09-22 05:56:22', '2021-09-22 05:56:22'), (5220, 4, '2021-09-22 05:56:22', '2021-09-22 05:56:22'), (5221, 4, '2021-09-22 05:56:22', '2021-09-22 05:56:22'), (5222, 4, '2021-09-22 05:56:23', '2021-09-22 05:56:23'), (5223, 4, '2021-09-22 05:56:23', '2021-09-22 05:56:23'), (5224, 4, '2021-09-22 05:56:23', '2021-09-22 05:56:23'), (5225, 4, '2021-09-22 05:56:23', '2021-09-22 05:56:23'), (5226, 4, '2021-09-23 05:56:28', '2021-09-23 05:56:28'), (5227, 4, '2021-09-23 05:56:30', '2021-09-23 05:56:30'), (5228, 4, '2021-09-23 05:56:32', '2021-09-23 05:56:32'), (5229, 4, '2021-09-23 05:56:32', '2021-09-23 05:56:32'), (5230, 4, '2021-09-23 05:56:32', '2021-09-23 05:56:32'), (5231, 4, '2021-09-23 05:56:33', '2021-09-23 05:56:33'), (5232, 4, '2021-09-23 05:56:33', '2021-09-23 05:56:33'), (5233, 4, '2021-09-23 05:56:33', '2021-09-23 05:56:33'), (5234, 4, '2021-09-23 05:56:34', '2021-09-23 05:56:34'), (5235, 4, '2021-09-23 05:56:34', '2021-09-23 05:56:34'), (5236, 4, '2021-09-23 05:56:34', '2021-09-23 05:56:34'), (5237, 4, '2021-09-23 05:56:35', '2021-09-23 05:56:35'), (5238, 4, '2021-09-23 05:56:35', '2021-09-23 05:56:35'), (5239, 4, '2021-09-23 05:56:35', '2021-09-23 05:56:35'), (5240, 4, '2021-09-23 05:56:36', '2021-09-23 05:56:36'), (5241, 4, '2021-09-23 05:56:36', '2021-09-23 05:56:36'), (5242, 4, '2021-09-23 05:56:37', '2021-09-23 05:56:37'), (5243, 4, '2021-09-23 05:56:37', '2021-09-23 05:56:37'), (5244, 4, '2021-09-23 05:56:37', '2021-09-23 05:56:37'), (5245, 4, '2021-09-23 05:56:38', '2021-09-23 05:56:38'), (5246, 4, '2021-09-23 05:56:38', '2021-09-23 05:56:38'), (5247, 4, '2021-09-23 05:56:38', '2021-09-23 05:56:38'), (5248, 4, '2021-09-23 05:56:39', '2021-09-23 05:56:39'), (5249, 4, '2021-09-23 05:56:39', '2021-09-23 05:56:39'), (5250, 4, '2021-09-23 05:56:40', '2021-09-23 05:56:40'), (5251, 4, '2021-09-23 05:56:40', '2021-09-23 05:56:40'), (5252, 4, '2021-09-23 05:56:40', '2021-09-23 05:56:40'), (5253, 4, '2021-09-23 05:56:40', '2021-09-23 05:56:40'), (5254, 4, '2021-09-23 05:56:41', '2021-09-23 05:56:41'), (5255, 4, '2021-09-23 05:56:41', '2021-09-23 05:56:41'), (5256, 4, '2021-09-23 05:56:41', '2021-09-23 05:56:41'), (5257, 4, '2021-09-23 05:56:42', '2021-09-23 05:56:42'), (5258, 4, '2021-09-23 05:56:42', '2021-09-23 05:56:42'), (5259, 4, '2021-09-23 05:56:42', '2021-09-23 05:56:42'), (5260, 4, '2021-09-23 05:56:43', '2021-09-23 05:56:43'), (5261, 4, '2021-09-23 05:56:43', '2021-09-23 05:56:43'), (5262, 4, '2021-09-23 05:56:43', '2021-09-23 05:56:43'), (5263, 4, '2021-09-23 05:56:44', '2021-09-23 05:56:44'), (5264, 4, '2021-09-23 05:56:44', '2021-09-23 05:56:44'), (5265, 4, '2021-09-23 05:56:44', '2021-09-23 05:56:44'), (5266, 4, '2021-09-23 05:56:44', '2021-09-23 05:56:44'), (5267, 4, '2021-09-23 05:56:45', '2021-09-23 05:56:45'), (5268, 4, '2021-09-23 05:56:45', '2021-09-23 05:56:45'), (5269, 4, '2021-09-23 05:56:45', '2021-09-23 05:56:45'), (5270, 4, '2021-09-23 05:56:46', '2021-09-23 05:56:46'), (5271, 4, '2021-09-23 05:56:46', '2021-09-23 05:56:46'), (5272, 4, '2021-09-23 05:56:46', '2021-09-23 05:56:46'), (5273, 4, '2021-09-23 05:56:46', '2021-09-23 05:56:46'), (5274, 4, '2021-09-23 05:56:47', '2021-09-23 05:56:47'), (5275, 4, '2021-09-23 05:56:47', '2021-09-23 05:56:47'), (5276, 4, '2021-09-23 05:56:47', '2021-09-23 05:56:47'), (5277, 4, '2021-09-23 05:56:48', '2021-09-23 05:56:48'), (5278, 4, '2021-09-23 05:56:48', '2021-09-23 05:56:48'), (5279, 4, '2021-09-23 05:56:49', '2021-09-23 05:56:49'), (5280, 4, '2021-09-23 05:56:49', '2021-09-23 05:56:49'), (5281, 4, '2021-09-23 05:56:49', '2021-09-23 05:56:49'), (5282, 4, '2021-09-23 05:56:50', '2021-09-23 05:56:50'), (5283, 4, '2021-09-23 05:56:50', '2021-09-23 05:56:50'), (5284, 4, '2021-09-23 05:56:50', '2021-09-23 05:56:50'), (5285, 4, '2021-09-23 05:56:50', '2021-09-23 05:56:50'), (5286, 4, '2021-09-23 05:56:51', '2021-09-23 05:56:51'), (5287, 4, '2021-09-23 05:56:51', '2021-09-23 05:56:51'), (5288, 4, '2021-09-23 05:56:52', '2021-09-23 05:56:52'), (5289, 4, '2021-09-23 05:56:52', '2021-09-23 05:56:52'), (5290, 4, '2021-09-23 05:56:52', '2021-09-23 05:56:52'), (5291, 4, '2021-09-23 05:56:52', '2021-09-23 05:56:52'), (5292, 4, '2021-09-23 05:56:52', '2021-09-23 05:56:52'), (5293, 4, '2021-09-23 05:56:53', '2021-09-23 05:56:53'), (5294, 4, '2021-09-23 05:56:53', '2021-09-23 05:56:53'), (5295, 4, '2021-09-23 05:56:55', '2021-09-23 05:56:55'), (5296, 4, '2021-09-23 05:56:55', '2021-09-23 05:56:55'), (5297, 4, '2021-09-23 05:56:55', '2021-09-23 05:56:55'), (5298, 4, '2021-09-23 05:56:56', '2021-09-23 05:56:56'), (5299, 4, '2021-09-23 05:56:56', '2021-09-23 05:56:56'), (5300, 4, '2021-09-23 05:56:57', '2021-09-23 05:56:57'), (5301, 4, '2021-09-23 05:56:57', '2021-09-23 05:56:57'), (5302, 4, '2021-09-23 05:56:58', '2021-09-23 05:56:58'), (5303, 4, '2021-09-23 05:56:58', '2021-09-23 05:56:58'), (5304, 4, '2021-09-23 05:56:58', '2021-09-23 05:56:58'), (5305, 4, '2021-09-23 05:56:59', '2021-09-23 05:56:59'), (5306, 4, '2021-09-23 05:56:59', '2021-09-23 05:56:59'), (5307, 4, '2021-09-23 05:56:59', '2021-09-23 05:56:59'), (5308, 4, '2021-09-23 05:57:00', '2021-09-23 05:57:00'), (5309, 4, '2021-09-23 05:57:00', '2021-09-23 05:57:00'), (5310, 4, '2021-09-23 05:57:00', '2021-09-23 05:57:00'), (5311, 4, '2021-09-23 05:57:00', '2021-09-23 05:57:00'), (5312, 4, '2021-09-23 05:57:01', '2021-09-23 05:57:01'), (5313, 4, '2021-09-23 05:57:01', '2021-09-23 05:57:01'), (5314, 4, '2021-09-23 05:57:02', '2021-09-23 05:57:02'), (5315, 4, '2021-09-23 05:57:02', '2021-09-23 05:57:02'), (5316, 4, '2021-09-23 05:57:02', '2021-09-23 05:57:02'), (5317, 4, '2021-09-23 05:57:02', '2021-09-23 05:57:02'), (5318, 4, '2021-09-23 05:57:03', '2021-09-23 05:57:03'), (5319, 4, '2021-09-23 05:57:03', '2021-09-23 05:57:03'), (5320, 4, '2021-09-23 05:57:04', '2021-09-23 05:57:04'), (5321, 4, '2021-09-23 05:57:04', '2021-09-23 05:57:04'), (5322, 4, '2021-09-23 05:57:04', '2021-09-23 05:57:04'), (5323, 4, '2021-09-23 05:57:05', '2021-09-23 05:57:05'), (5324, 4, '2021-09-23 05:57:05', '2021-09-23 05:57:05'), (5325, 4, '2021-09-23 05:57:05', '2021-09-23 05:57:05'), (5326, 4, '2021-09-23 05:57:06', '2021-09-23 05:57:06'), (5327, 4, '2021-09-23 05:57:06', '2021-09-23 05:57:06'), (5328, 4, '2021-09-23 05:57:06', '2021-09-23 05:57:06'), (5329, 4, '2021-09-23 05:57:07', '2021-09-23 05:57:07'), (5330, 4, '2021-09-23 05:57:07', '2021-09-23 05:57:07'), (5331, 4, '2021-09-23 05:57:07', '2021-09-23 05:57:07'), (5332, 4, '2021-09-23 05:57:08', '2021-09-23 05:57:08'), (5333, 4, '2021-09-23 05:57:08', '2021-09-23 05:57:08'), (5334, 4, '2021-09-23 05:57:09', '2021-09-23 05:57:09'), (5335, 4, '2021-09-23 05:57:10', '2021-09-23 05:57:10'), (5336, 4, '2021-09-23 05:57:11', '2021-09-23 05:57:11'), (5337, 4, '2021-09-23 05:57:19', '2021-09-23 05:57:19'), (5338, 4, '2021-09-23 05:57:19', '2021-09-23 05:57:19'), (5339, 4, '2021-09-23 05:57:20', '2021-09-23 05:57:20'), (5340, 4, '2021-09-23 05:57:21', '2021-09-23 05:57:21'), (5341, 4, '2021-09-23 05:57:22', '2021-09-23 05:57:22'), (5342, 4, '2021-09-23 05:57:23', '2021-09-23 05:57:23'), (5343, 4, '2021-09-23 05:57:23', '2021-09-23 05:57:23'), (5344, 4, '2021-09-23 05:57:24', '2021-09-23 05:57:24'), (5345, 4, '2021-09-23 05:57:24', '2021-09-23 05:57:24'), (5346, 4, '2021-09-23 05:57:25', '2021-09-23 05:57:25'), (5347, 4, '2021-09-23 05:57:30', '2021-09-23 05:57:30'), (5348, 4, '2021-09-23 05:57:30', '2021-09-23 05:57:30'), (5349, 4, '2021-09-23 05:57:30', '2021-09-23 05:57:30'), (5350, 4, '2021-09-23 05:57:31', '2021-09-23 05:57:31'), (5351, 4, '2021-09-23 05:57:33', '2021-09-23 05:57:33'), (5352, 4, '2021-09-23 05:57:33', '2021-09-23 05:57:33'), (5353, 4, '2021-09-23 05:57:34', '2021-09-23 05:57:34'), (5354, 4, '2021-09-23 05:57:35', '2021-09-23 05:57:35'), (5355, 4, '2021-09-23 05:57:35', '2021-09-23 05:57:35'), (5356, 4, '2021-09-23 05:57:37', '2021-09-23 05:57:37'), (5357, 4, '2021-09-23 05:57:38', '2021-09-23 05:57:38'), (5358, 4, '2021-09-23 05:57:38', '2021-09-23 05:57:38'), (5359, 4, '2021-09-23 05:57:40', '2021-09-23 05:57:40'), (5360, 4, '2021-09-23 05:58:50', '2021-09-23 05:58:50'), (5361, 4, '2021-09-23 05:58:50', '2021-09-23 05:58:50'), (5362, 4, '2021-09-23 05:58:51', '2021-09-23 05:58:51'), (5363, 4, '2021-09-23 05:58:51', '2021-09-23 05:58:51'), (5364, 4, '2021-09-23 05:58:51', '2021-09-23 05:58:51'), (5365, 4, '2021-09-23 05:58:52', '2021-09-23 05:58:52'), (5366, 4, '2021-09-23 05:58:52', '2021-09-23 05:58:52'), (5367, 4, '2021-09-23 05:58:52', '2021-09-23 05:58:52'), (5368, 4, '2021-09-23 05:58:52', '2021-09-23 05:58:52'), (5369, 4, '2021-09-23 05:58:53', '2021-09-23 05:58:53'), (5370, 4, '2021-09-23 05:58:53', '2021-09-23 05:58:53'), (5371, 4, '2021-09-23 05:58:53', '2021-09-23 05:58:53'), (5372, 4, '2021-09-23 05:58:53', '2021-09-23 05:58:53'), (5373, 4, '2021-09-23 05:58:54', '2021-09-23 05:58:54'), (5374, 4, '2021-09-24 05:58:56', '2021-09-24 05:58:56'), (5375, 4, '2021-09-24 05:58:57', '2021-09-24 05:58:57'), (5376, 4, '2021-09-24 05:58:58', '2021-09-24 05:58:58'), (5377, 4, '2021-09-24 05:58:58', '2021-09-24 05:58:58'), (5378, 4, '2021-09-24 05:58:59', '2021-09-24 05:58:59'), (5379, 4, '2021-09-24 05:58:59', '2021-09-24 05:58:59'), (5380, 4, '2021-09-24 05:58:59', '2021-09-24 05:58:59'), (5381, 4, '2021-09-24 05:59:00', '2021-09-24 05:59:00'), (5382, 4, '2021-09-24 05:59:00', '2021-09-24 05:59:00'), (5383, 4, '2021-09-24 05:59:00', '2021-09-24 05:59:00'), (5384, 4, '2021-09-24 05:59:01', '2021-09-24 05:59:01'), (5385, 4, '2021-09-24 05:59:01', '2021-09-24 05:59:01'), (5386, 4, '2021-09-24 05:59:02', '2021-09-24 05:59:02'), (5387, 4, '2021-09-24 05:59:02', '2021-09-24 05:59:02'), (5388, 4, '2021-09-24 05:59:02', '2021-09-24 05:59:02'), (5389, 4, '2021-09-24 05:59:02', '2021-09-24 05:59:02'), (5390, 4, '2021-09-24 05:59:04', '2021-09-24 05:59:04'), (5391, 4, '2021-09-24 05:59:04', '2021-09-24 05:59:04'), (5392, 4, '2021-09-24 05:59:06', '2021-09-24 05:59:06'), (5393, 4, '2021-09-24 05:59:06', '2021-09-24 05:59:06'), (5394, 4, '2021-09-24 05:59:07', '2021-09-24 05:59:07'), (5395, 4, '2021-09-24 05:59:08', '2021-09-24 05:59:08'), (5396, 4, '2021-09-24 05:59:11', '2021-09-24 05:59:11'), (5397, 4, '2021-09-24 05:59:11', '2021-09-24 05:59:11'), (5398, 4, '2021-09-24 05:59:11', '2021-09-24 05:59:11'), (5399, 4, '2021-09-24 05:59:12', '2021-09-24 05:59:12'), (5400, 4, '2021-09-24 05:59:13', '2021-09-24 05:59:13'), (5401, 4, '2021-09-24 05:59:13', '2021-09-24 05:59:13'), (5402, 4, '2021-09-24 05:59:14', '2021-09-24 05:59:14'), (5403, 4, '2021-09-24 05:59:15', '2021-09-24 05:59:15'), (5404, 4, '2021-09-24 05:59:19', '2021-09-24 05:59:19'), (5405, 4, '2021-09-24 05:59:21', '2021-09-24 05:59:21'), (5406, 4, '2021-09-24 05:59:22', '2021-09-24 05:59:22'), (5407, 4, '2021-09-24 05:59:22', '2021-09-24 05:59:22'), (5408, 4, '2021-09-24 05:59:23', '2021-09-24 05:59:23'), (5409, 4, '2021-09-24 05:59:24', '2021-09-24 05:59:24'), (5410, 4, '2021-09-24 05:59:25', '2021-09-24 05:59:25'), (5411, 4, '2021-09-24 05:59:25', '2021-09-24 05:59:25'), (5412, 4, '2021-09-24 05:59:26', '2021-09-24 05:59:26'), (5413, 4, '2021-09-24 05:59:27', '2021-09-24 05:59:27'), (5414, 4, '2021-09-24 05:59:27', '2021-09-24 05:59:27'), (5415, 4, '2021-09-24 05:59:28', '2021-09-24 05:59:28'), (5416, 4, '2021-09-25 05:59:32', '2021-09-25 05:59:32'), (5417, 4, '2021-09-25 05:59:33', '2021-09-25 05:59:33'), (5418, 4, '2021-09-25 05:59:33', '2021-09-25 05:59:33'), (5419, 4, '2021-09-25 05:59:33', '2021-09-25 05:59:33'), (5420, 4, '2021-09-25 05:59:34', '2021-09-25 05:59:34'), (5421, 4, '2021-09-25 05:59:34', '2021-09-25 05:59:34'), (5422, 4, '2021-09-25 05:59:34', '2021-09-25 05:59:34'), (5423, 4, '2021-09-25 05:59:34', '2021-09-25 05:59:34'), (5424, 4, '2021-09-25 05:59:35', '2021-09-25 05:59:35'), (5425, 4, '2021-09-25 05:59:35', '2021-09-25 05:59:35'), (5426, 4, '2021-09-25 05:59:35', '2021-09-25 05:59:35'), (5427, 4, '2021-09-25 05:59:36', '2021-09-25 05:59:36'), (5428, 4, '2021-09-25 05:59:36', '2021-09-25 05:59:36'), (5429, 4, '2021-09-25 05:59:36', '2021-09-25 05:59:36'), (5430, 4, '2021-09-25 05:59:36', '2021-09-25 05:59:36'), (5431, 4, '2021-09-25 05:59:36', '2021-09-25 05:59:36'), (5432, 4, '2021-09-25 05:59:36', '2021-09-25 05:59:36'), (5433, 4, '2021-09-25 05:59:37', '2021-09-25 05:59:37'), (5434, 4, '2021-09-25 05:59:37', '2021-09-25 05:59:37'), (5435, 4, '2021-09-25 05:59:37', '2021-09-25 05:59:37'), (5436, 4, '2021-09-25 05:59:37', '2021-09-25 05:59:37'), (5437, 4, '2021-09-25 05:59:37', '2021-09-25 05:59:37'), (5438, 4, '2021-09-25 05:59:38', '2021-09-25 05:59:38'), (5439, 4, '2021-09-25 05:59:38', '2021-09-25 05:59:38'), (5440, 4, '2021-09-25 05:59:38', '2021-09-25 05:59:38'), (5441, 4, '2021-09-25 05:59:38', '2021-09-25 05:59:38'), (5442, 4, '2021-09-25 05:59:39', '2021-09-25 05:59:39'), (5443, 4, '2021-09-25 05:59:39', '2021-09-25 05:59:39'), (5444, 4, '2021-09-25 05:59:39', '2021-09-25 05:59:39'), (5445, 4, '2021-09-25 05:59:40', '2021-09-25 05:59:40'), (5446, 4, '2021-09-25 05:59:40', '2021-09-25 05:59:40'), (5447, 4, '2021-09-25 05:59:40', '2021-09-25 05:59:40'), (5448, 4, '2021-09-25 05:59:40', '2021-09-25 05:59:40'), (5449, 4, '2021-09-25 05:59:41', '2021-09-25 05:59:41'), (5450, 4, '2021-09-25 05:59:41', '2021-09-25 05:59:41'), (5451, 4, '2021-09-25 05:59:41', '2021-09-25 05:59:41'), (5452, 4, '2021-09-25 05:59:42', '2021-09-25 05:59:42'), (5453, 4, '2021-09-25 05:59:42', '2021-09-25 05:59:42'), (5454, 4, '2021-09-25 05:59:42', '2021-09-25 05:59:42'), (5455, 4, '2021-09-25 05:59:42', '2021-09-25 05:59:42'), (5456, 4, '2021-09-25 05:59:42', '2021-09-25 05:59:42'), (5457, 4, '2021-09-25 05:59:43', '2021-09-25 05:59:43'), (5458, 4, '2021-09-25 05:59:43', '2021-09-25 05:59:43'), (5459, 4, '2021-09-25 05:59:43', '2021-09-25 05:59:43'), (5460, 4, '2021-09-25 05:59:44', '2021-09-25 05:59:44'), (5461, 4, '2021-09-25 05:59:44', '2021-09-25 05:59:44'), (5462, 4, '2021-09-25 05:59:44', '2021-09-25 05:59:44'), (5463, 4, '2021-09-25 05:59:45', '2021-09-25 05:59:45'), (5464, 4, '2021-09-25 05:59:45', '2021-09-25 05:59:45'), (5465, 4, '2021-09-25 05:59:45', '2021-09-25 05:59:45'), (5466, 4, '2021-09-25 05:59:45', '2021-09-25 05:59:45'), (5467, 4, '2021-09-25 05:59:46', '2021-09-25 05:59:46'), (5468, 4, '2021-09-25 05:59:46', '2021-09-25 05:59:46'), (5469, 4, '2021-09-25 05:59:46', '2021-09-25 05:59:46'), (5470, 4, '2021-09-25 05:59:46', '2021-09-25 05:59:46'), (5471, 4, '2021-09-25 05:59:47', '2021-09-25 05:59:47'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (5472, 4, '2021-09-25 05:59:47', '2021-09-25 05:59:47'), (5473, 4, '2021-09-25 05:59:47', '2021-09-25 05:59:47'), (5474, 4, '2021-09-25 05:59:47', '2021-09-25 05:59:47'), (5475, 4, '2021-09-25 05:59:47', '2021-09-25 05:59:47'), (5476, 4, '2021-09-25 05:59:48', '2021-09-25 05:59:48'), (5477, 4, '2021-09-25 05:59:48', '2021-09-25 05:59:48'), (5478, 4, '2021-09-25 05:59:48', '2021-09-25 05:59:48'), (5479, 4, '2021-09-25 05:59:48', '2021-09-25 05:59:48'), (5480, 4, '2021-09-25 05:59:49', '2021-09-25 05:59:49'), (5481, 4, '2021-09-25 05:59:49', '2021-09-25 05:59:49'), (5482, 4, '2021-09-25 05:59:49', '2021-09-25 05:59:49'), (5483, 4, '2021-09-25 05:59:49', '2021-09-25 05:59:49'), (5484, 4, '2021-09-25 05:59:50', '2021-09-25 05:59:50'), (5485, 4, '2021-09-25 05:59:50', '2021-09-25 05:59:50'), (5486, 4, '2021-09-25 05:59:50', '2021-09-25 05:59:50'), (5487, 4, '2021-09-25 05:59:50', '2021-09-25 05:59:50'), (5488, 4, '2021-09-25 05:59:50', '2021-09-25 05:59:50'), (5489, 4, '2021-09-25 05:59:51', '2021-09-25 05:59:51'), (5490, 4, '2021-09-25 05:59:51', '2021-09-25 05:59:51'), (5491, 4, '2021-09-25 05:59:52', '2021-09-25 05:59:52'), (5492, 4, '2021-09-25 05:59:52', '2021-09-25 05:59:52'), (5493, 4, '2021-09-25 05:59:53', '2021-09-25 05:59:53'), (5494, 4, '2021-09-25 05:59:54', '2021-09-25 05:59:54'), (5495, 4, '2021-09-25 05:59:55', '2021-09-25 05:59:55'), (5496, 4, '2021-09-25 05:59:55', '2021-09-25 05:59:55'), (5497, 4, '2021-09-25 06:00:04', '2021-09-25 06:00:04'), (5498, 4, '2021-09-25 06:00:04', '2021-09-25 06:00:04'), (5499, 4, '2021-09-25 06:00:05', '2021-09-25 06:00:05'), (5500, 4, '2021-09-25 06:00:05', '2021-09-25 06:00:05'), (5501, 4, '2021-09-25 06:00:06', '2021-09-25 06:00:06'), (5502, 4, '2021-09-25 06:00:06', '2021-09-25 06:00:06'), (5503, 4, '2021-09-25 06:00:06', '2021-09-25 06:00:06'), (5504, 4, '2021-09-25 06:00:07', '2021-09-25 06:00:07'), (5505, 4, '2021-09-25 06:00:07', '2021-09-25 06:00:07'), (5506, 4, '2021-09-25 06:00:07', '2021-09-25 06:00:07'), (5507, 4, '2021-09-25 06:00:07', '2021-09-25 06:00:07'), (5508, 4, '2021-09-25 06:00:08', '2021-09-25 06:00:08'), (5509, 4, '2021-09-25 06:00:08', '2021-09-25 06:00:08'), (5510, 4, '2021-09-25 06:00:08', '2021-09-25 06:00:08'), (5511, 4, '2021-09-25 06:00:08', '2021-09-25 06:00:08'), (5512, 4, '2021-09-25 06:00:09', '2021-09-25 06:00:09'), (5513, 4, '2021-09-25 06:00:09', '2021-09-25 06:00:09'), (5514, 4, '2021-09-25 06:00:09', '2021-09-25 06:00:09'), (5515, 4, '2021-09-25 06:00:09', '2021-09-25 06:00:09'), (5516, 4, '2021-09-25 06:00:10', '2021-09-25 06:00:10'), (5517, 4, '2021-09-25 06:00:10', '2021-09-25 06:00:10'), (5518, 4, '2021-09-25 06:00:10', '2021-09-25 06:00:10'), (5519, 4, '2021-09-25 06:00:10', '2021-09-25 06:00:10'), (5520, 4, '2021-09-25 06:00:10', '2021-09-25 06:00:10'), (5521, 4, '2021-09-25 06:00:11', '2021-09-25 06:00:11'), (5522, 4, '2021-09-25 06:00:11', '2021-09-25 06:00:11'), (5523, 4, '2021-09-25 06:00:11', '2021-09-25 06:00:11'), (5524, 4, '2021-09-25 06:00:11', '2021-09-25 06:00:11'), (5525, 4, '2021-09-25 06:00:12', '2021-09-25 06:00:12'), (5526, 4, '2021-09-25 06:00:12', '2021-09-25 06:00:12'), (5527, 4, '2021-09-25 06:00:12', '2021-09-25 06:00:12'), (5528, 4, '2021-09-25 06:00:13', '2021-09-25 06:00:13'), (5529, 4, '2021-09-25 06:00:14', '2021-09-25 06:00:14'), (5530, 4, '2021-09-25 06:00:15', '2021-09-25 06:00:15'), (5531, 4, '2021-09-25 06:00:15', '2021-09-25 06:00:15'), (5532, 4, '2021-09-25 06:00:16', '2021-09-25 06:00:16'), (5533, 4, '2021-09-25 06:00:16', '2021-09-25 06:00:16'), (5534, 4, '2021-09-25 06:00:17', '2021-09-25 06:00:17'), (5535, 4, '2021-09-25 06:00:17', '2021-09-25 06:00:17'), (5536, 4, '2021-09-25 06:00:17', '2021-09-25 06:00:17'), (5537, 4, '2021-09-25 06:00:18', '2021-09-25 06:00:18'), (5538, 4, '2021-09-25 06:00:19', '2021-09-25 06:00:19'), (5539, 4, '2021-09-25 06:00:20', '2021-09-25 06:00:20'), (5540, 4, '2021-09-25 06:00:22', '2021-09-25 06:00:22'), (5541, 4, '2021-09-25 06:00:22', '2021-09-25 06:00:22'), (5542, 4, '2021-09-25 06:00:22', '2021-09-25 06:00:22'), (5543, 4, '2021-09-25 06:00:23', '2021-09-25 06:00:23'), (5544, 4, '2021-09-25 06:00:23', '2021-09-25 06:00:23'), (5545, 4, '2021-09-25 06:00:23', '2021-09-25 06:00:23'), (5546, 4, '2021-09-25 06:00:24', '2021-09-25 06:00:24'), (5547, 4, '2021-09-25 06:00:24', '2021-09-25 06:00:24'), (5548, 4, '2021-09-25 06:00:24', '2021-09-25 06:00:24'), (5549, 4, '2021-09-25 06:00:25', '2021-09-25 06:00:25'), (5550, 4, '2021-09-25 06:00:25', '2021-09-25 06:00:25'), (5551, 4, '2021-09-25 06:00:25', '2021-09-25 06:00:25'), (5552, 4, '2021-09-25 06:00:26', '2021-09-25 06:00:26'), (5553, 4, '2021-09-25 06:00:26', '2021-09-25 06:00:26'), (5554, 4, '2021-09-25 06:00:26', '2021-09-25 06:00:26'), (5555, 4, '2021-09-25 06:00:27', '2021-09-25 06:00:27'), (5556, 4, '2021-09-25 06:00:27', '2021-09-25 06:00:27'), (5557, 4, '2021-09-25 06:00:27', '2021-09-25 06:00:27'), (5558, 4, '2021-09-25 06:00:28', '2021-09-25 06:00:28'), (5559, 4, '2021-09-25 06:00:28', '2021-09-25 06:00:28'), (5560, 4, '2021-09-25 06:00:28', '2021-09-25 06:00:28'), (5561, 4, '2021-09-25 06:00:29', '2021-09-25 06:00:29'), (5562, 4, '2021-09-25 06:00:29', '2021-09-25 06:00:29'), (5563, 4, '2021-09-25 06:00:29', '2021-09-25 06:00:29'), (5564, 4, '2021-09-25 06:00:29', '2021-09-25 06:00:29'), (5565, 4, '2021-09-25 06:00:30', '2021-09-25 06:00:30'), (5566, 4, '2021-09-25 06:00:30', '2021-09-25 06:00:30'), (5567, 4, '2021-09-25 06:00:31', '2021-09-25 06:00:31'), (5568, 4, '2021-09-25 06:00:31', '2021-09-25 06:00:31'), (5569, 4, '2021-09-25 06:00:31', '2021-09-25 06:00:31'), (5570, 4, '2021-09-25 06:00:32', '2021-09-25 06:00:32'), (5571, 4, '2021-09-25 06:00:32', '2021-09-25 06:00:32'), (5572, 4, '2021-09-25 06:00:32', '2021-09-25 06:00:32'), (5573, 4, '2021-09-25 06:00:33', '2021-09-25 06:00:33'), (5574, 4, '2021-09-25 06:00:34', '2021-09-25 06:00:34'), (5575, 4, '2021-09-25 06:00:34', '2021-09-25 06:00:34'), (5576, 4, '2021-09-25 06:00:35', '2021-09-25 06:00:35'), (5577, 4, '2021-09-25 06:00:35', '2021-09-25 06:00:35'), (5578, 4, '2021-09-25 06:00:36', '2021-09-25 06:00:36'), (5579, 4, '2021-09-25 06:00:36', '2021-09-25 06:00:36'), (5580, 4, '2021-09-25 06:00:37', '2021-09-25 06:00:37'), (5581, 4, '2021-09-25 06:00:37', '2021-09-25 06:00:37'), (5582, 4, '2021-09-25 06:00:38', '2021-09-25 06:00:38'), (5583, 4, '2021-09-25 06:00:38', '2021-09-25 06:00:38'), (5584, 4, '2021-09-25 06:00:39', '2021-09-25 06:00:39'), (5585, 4, '2021-09-25 06:00:39', '2021-09-25 06:00:39'), (5586, 4, '2021-09-25 06:00:39', '2021-09-25 06:00:39'), (5587, 4, '2021-09-25 06:00:40', '2021-09-25 06:00:40'), (5588, 4, '2021-09-25 06:00:40', '2021-09-25 06:00:40'), (5589, 4, '2021-09-26 06:00:44', '2021-09-26 06:00:44'), (5590, 4, '2021-09-26 06:00:45', '2021-09-26 06:00:45'), (5591, 4, '2021-09-26 06:00:45', '2021-09-26 06:00:45'), (5592, 4, '2021-09-26 06:00:46', '2021-09-26 06:00:46'), (5593, 4, '2021-09-26 06:00:46', '2021-09-26 06:00:46'), (5594, 4, '2021-09-26 06:00:46', '2021-09-26 06:00:46'), (5595, 4, '2021-09-26 06:00:47', '2021-09-26 06:00:47'), (5596, 4, '2021-09-26 06:00:56', '2021-09-26 06:00:56'), (5597, 4, '2021-09-26 06:00:57', '2021-09-26 06:00:57'), (5598, 4, '2021-09-26 06:00:57', '2021-09-26 06:00:57'), (5599, 4, '2021-09-26 06:00:58', '2021-09-26 06:00:58'), (5600, 4, '2021-09-26 06:00:58', '2021-09-26 06:00:58'), (5601, 4, '2021-09-26 06:00:58', '2021-09-26 06:00:58'), (5602, 4, '2021-09-26 06:00:59', '2021-09-26 06:00:59'), (5603, 4, '2021-09-26 06:00:59', '2021-09-26 06:00:59'), (5604, 4, '2021-09-26 06:00:59', '2021-09-26 06:00:59'), (5605, 4, '2021-09-26 06:00:59', '2021-09-26 06:00:59'), (5606, 4, '2021-09-26 06:01:00', '2021-09-26 06:01:00'), (5607, 4, '2021-09-26 06:01:00', '2021-09-26 06:01:00'), (5608, 4, '2021-09-26 06:01:00', '2021-09-26 06:01:00'), (5609, 4, '2021-09-26 06:01:00', '2021-09-26 06:01:00'), (5610, 4, '2021-09-26 06:01:01', '2021-09-26 06:01:01'), (5611, 4, '2021-09-26 06:01:01', '2021-09-26 06:01:01'), (5612, 4, '2021-09-26 06:01:01', '2021-09-26 06:01:01'), (5613, 4, '2021-09-26 06:01:02', '2021-09-26 06:01:02'), (5614, 4, '2021-09-26 06:01:02', '2021-09-26 06:01:02'), (5615, 4, '2021-09-26 06:01:02', '2021-09-26 06:01:02'), (5616, 4, '2021-09-26 06:01:04', '2021-09-26 06:01:04'), (5617, 4, '2021-09-26 06:01:04', '2021-09-26 06:01:04'), (5618, 4, '2021-09-26 06:01:04', '2021-09-26 06:01:04'), (5619, 4, '2021-09-26 06:01:05', '2021-09-26 06:01:05'), (5620, 4, '2021-09-26 06:01:05', '2021-09-26 06:01:05'), (5621, 4, '2021-09-26 06:01:06', '2021-09-26 06:01:06'), (5622, 4, '2021-09-26 06:01:06', '2021-09-26 06:01:06'), (5623, 4, '2021-09-26 06:01:06', '2021-09-26 06:01:06'), (5624, 4, '2021-09-26 06:01:07', '2021-09-26 06:01:07'), (5625, 4, '2021-09-26 06:01:07', '2021-09-26 06:01:07'), (5626, 4, '2021-09-26 06:01:07', '2021-09-26 06:01:07'), (5627, 4, '2021-09-26 06:01:08', '2021-09-26 06:01:08'), (5628, 4, '2021-09-26 06:01:08', '2021-09-26 06:01:08'), (5629, 4, '2021-09-26 06:01:08', '2021-09-26 06:01:08'), (5630, 4, '2021-09-26 06:01:08', '2021-09-26 06:01:08'), (5631, 4, '2021-09-26 06:01:09', '2021-09-26 06:01:09'), (5632, 4, '2021-09-26 06:01:09', '2021-09-26 06:01:09'), (5633, 4, '2021-09-26 06:01:09', '2021-09-26 06:01:09'), (5634, 4, '2021-09-26 06:01:10', '2021-09-26 06:01:10'), (5635, 4, '2021-09-26 06:01:10', '2021-09-26 06:01:10'), (5636, 4, '2021-09-26 06:01:10', '2021-09-26 06:01:10'), (5637, 4, '2021-09-26 06:01:10', '2021-09-26 06:01:10'), (5638, 4, '2021-09-26 06:01:11', '2021-09-26 06:01:11'), (5639, 4, '2021-09-26 06:01:11', '2021-09-26 06:01:11'), (5640, 4, '2021-09-26 06:01:11', '2021-09-26 06:01:11'), (5641, 4, '2021-09-26 06:01:12', '2021-09-26 06:01:12'), (5642, 4, '2021-09-26 06:01:12', '2021-09-26 06:01:12'), (5643, 4, '2021-09-26 06:01:12', '2021-09-26 06:01:12'), (5644, 4, '2021-09-26 06:01:12', '2021-09-26 06:01:12'), (5645, 4, '2021-09-26 06:01:13', '2021-09-26 06:01:13'), (5646, 4, '2021-09-26 06:01:13', '2021-09-26 06:01:13'), (5647, 4, '2021-09-26 06:01:13', '2021-09-26 06:01:13'), (5648, 4, '2021-09-26 06:01:14', '2021-09-26 06:01:14'), (5649, 4, '2021-09-26 06:01:14', '2021-09-26 06:01:14'), (5650, 4, '2021-09-26 06:01:15', '2021-09-26 06:01:15'), (5651, 4, '2021-09-26 06:01:15', '2021-09-26 06:01:15'), (5652, 4, '2021-09-26 06:01:16', '2021-09-26 06:01:16'), (5653, 4, '2021-09-26 06:01:16', '2021-09-26 06:01:16'), (5654, 4, '2021-09-26 06:01:17', '2021-09-26 06:01:17'), (5655, 4, '2021-09-26 06:01:17', '2021-09-26 06:01:17'), (5656, 4, '2021-09-26 06:01:17', '2021-09-26 06:01:17'), (5657, 4, '2021-09-26 06:01:18', '2021-09-26 06:01:18'), (5658, 4, '2021-09-26 06:01:18', '2021-09-26 06:01:18'), (5659, 4, '2021-09-26 06:01:19', '2021-09-26 06:01:19'), (5660, 4, '2021-09-26 06:01:19', '2021-09-26 06:01:19'), (5661, 4, '2021-09-26 06:01:19', '2021-09-26 06:01:19'), (5662, 4, '2021-09-26 06:01:19', '2021-09-26 06:01:19'), (5663, 4, '2021-09-26 06:01:20', '2021-09-26 06:01:20'), (5664, 4, '2021-09-26 06:01:20', '2021-09-26 06:01:20'), (5665, 4, '2021-09-26 06:01:21', '2021-09-26 06:01:21'), (5666, 4, '2021-09-26 06:01:21', '2021-09-26 06:01:21'), (5667, 4, '2021-09-26 06:01:22', '2021-09-26 06:01:22'), (5668, 4, '2021-09-26 06:01:22', '2021-09-26 06:01:22'), (5669, 4, '2021-09-26 06:01:23', '2021-09-26 06:01:23'), (5670, 4, '2021-09-26 06:01:24', '2021-09-26 06:01:24'), (5671, 4, '2021-09-26 06:01:24', '2021-09-26 06:01:24'), (5672, 4, '2021-09-26 06:01:25', '2021-09-26 06:01:25'), (5673, 4, '2021-09-26 06:01:25', '2021-09-26 06:01:25'), (5674, 4, '2021-09-26 06:01:25', '2021-09-26 06:01:25'), (5675, 4, '2021-09-26 06:01:26', '2021-09-26 06:01:26'), (5676, 4, '2021-09-26 06:01:26', '2021-09-26 06:01:26'), (5677, 4, '2021-09-26 06:01:26', '2021-09-26 06:01:26'), (5678, 4, '2021-09-26 06:01:27', '2021-09-26 06:01:27'), (5679, 4, '2021-09-26 06:01:27', '2021-09-26 06:01:27'), (5680, 4, '2021-09-26 06:01:27', '2021-09-26 06:01:27'), (5681, 4, '2021-09-26 06:01:28', '2021-09-26 06:01:28'), (5682, 4, '2021-09-26 06:01:28', '2021-09-26 06:01:28'), (5683, 4, '2021-09-27 06:01:31', '2021-09-27 06:01:31'), (5684, 4, '2021-09-27 06:01:33', '2021-09-27 06:01:33'), (5685, 4, '2021-09-27 06:01:33', '2021-09-27 06:01:33'), (5686, 4, '2021-09-27 06:01:33', '2021-09-27 06:01:33'), (5687, 4, '2021-09-27 06:01:34', '2021-09-27 06:01:34'), (5688, 4, '2021-09-27 06:01:34', '2021-09-27 06:01:34'), (5689, 4, '2021-09-27 06:01:34', '2021-09-27 06:01:34'), (5690, 4, '2021-09-27 06:01:35', '2021-09-27 06:01:35'), (5691, 4, '2021-09-27 06:01:35', '2021-09-27 06:01:35'), (5692, 4, '2021-09-27 06:01:35', '2021-09-27 06:01:35'), (5693, 4, '2021-09-27 06:01:36', '2021-09-27 06:01:36'), (5694, 4, '2021-09-27 06:01:36', '2021-09-27 06:01:36'), (5695, 4, '2021-09-27 06:01:36', '2021-09-27 06:01:36'), (5696, 4, '2021-09-27 06:01:37', '2021-09-27 06:01:37'), (5697, 4, '2021-09-27 06:01:37', '2021-09-27 06:01:37'), (5698, 4, '2021-09-27 06:01:37', '2021-09-27 06:01:37'), (5699, 4, '2021-09-27 06:01:37', '2021-09-27 06:01:37'), (5700, 4, '2021-09-27 06:01:37', '2021-09-27 06:01:37'), (5701, 4, '2021-09-27 06:01:38', '2021-09-27 06:01:38'), (5702, 4, '2021-09-27 06:01:38', '2021-09-27 06:01:38'), (5703, 4, '2021-09-27 06:01:38', '2021-09-27 06:01:38'), (5704, 4, '2021-09-27 06:01:38', '2021-09-27 06:01:38'), (5705, 4, '2021-09-27 06:01:39', '2021-09-27 06:01:39'), (5706, 4, '2021-09-27 06:01:39', '2021-09-27 06:01:39'), (5707, 4, '2021-09-27 06:01:39', '2021-09-27 06:01:39'), (5708, 4, '2021-09-27 06:01:39', '2021-09-27 06:01:39'), (5709, 4, '2021-09-27 06:01:39', '2021-09-27 06:01:39'), (5710, 4, '2021-09-27 06:01:40', '2021-09-27 06:01:40'), (5711, 4, '2021-09-27 06:01:40', '2021-09-27 06:01:40'), (5712, 4, '2021-09-27 06:01:40', '2021-09-27 06:01:40'), (5713, 4, '2021-09-27 06:01:40', '2021-09-27 06:01:40'), (5714, 4, '2021-09-27 06:01:41', '2021-09-27 06:01:41'), (5715, 4, '2021-09-27 06:01:41', '2021-09-27 06:01:41'), (5716, 4, '2021-09-27 06:01:41', '2021-09-27 06:01:41'), (5717, 4, '2021-09-27 06:01:41', '2021-09-27 06:01:41'), (5718, 4, '2021-09-27 06:01:41', '2021-09-27 06:01:41'), (5719, 4, '2021-09-27 06:01:42', '2021-09-27 06:01:42'), (5720, 4, '2021-09-27 06:01:42', '2021-09-27 06:01:42'), (5721, 4, '2021-09-27 06:01:42', '2021-09-27 06:01:42'), (5722, 4, '2021-09-27 06:01:42', '2021-09-27 06:01:42'), (5723, 4, '2021-09-27 06:01:43', '2021-09-27 06:01:43'), (5724, 4, '2021-09-27 06:01:43', '2021-09-27 06:01:43'), (5725, 4, '2021-09-27 06:01:43', '2021-09-27 06:01:43'), (5726, 4, '2021-09-27 06:01:43', '2021-09-27 06:01:43'), (5727, 4, '2021-09-27 06:01:44', '2021-09-27 06:01:44'), (5728, 4, '2021-09-27 06:01:45', '2021-09-27 06:01:45'), (5729, 4, '2021-09-27 06:01:45', '2021-09-27 06:01:45'), (5730, 4, '2021-09-27 06:01:45', '2021-09-27 06:01:45'), (5731, 4, '2021-09-27 06:01:46', '2021-09-27 06:01:46'), (5732, 4, '2021-09-27 06:01:46', '2021-09-27 06:01:46'), (5733, 4, '2021-09-27 06:01:46', '2021-09-27 06:01:46'), (5734, 4, '2021-09-27 06:01:47', '2021-09-27 06:01:47'), (5735, 4, '2021-09-27 06:01:47', '2021-09-27 06:01:47'), (5736, 4, '2021-09-27 06:01:49', '2021-09-27 06:01:49'), (5737, 4, '2021-09-27 06:01:50', '2021-09-27 06:01:50'), (5738, 4, '2021-09-27 06:01:51', '2021-09-27 06:01:51'), (5739, 4, '2021-09-27 06:01:51', '2021-09-27 06:01:51'), (5740, 4, '2021-09-27 06:01:52', '2021-09-27 06:01:52'), (5741, 4, '2021-09-27 06:01:52', '2021-09-27 06:01:52'), (5742, 4, '2021-09-27 06:01:53', '2021-09-27 06:01:53'), (5743, 4, '2021-09-27 06:01:54', '2021-09-27 06:01:54'), (5744, 4, '2021-09-27 06:01:54', '2021-09-27 06:01:54'), (5745, 4, '2021-09-27 06:01:55', '2021-09-27 06:01:55'), (5746, 4, '2021-09-27 06:01:55', '2021-09-27 06:01:55'), (5747, 4, '2021-09-27 06:01:56', '2021-09-27 06:01:56'), (5748, 4, '2021-09-27 06:01:56', '2021-09-27 06:01:56'), (5749, 4, '2021-09-27 06:01:57', '2021-09-27 06:01:57'), (5750, 4, '2021-09-27 06:01:57', '2021-09-27 06:01:57'), (5751, 4, '2021-09-27 06:01:58', '2021-09-27 06:01:58'), (5752, 4, '2021-09-27 06:01:58', '2021-09-27 06:01:58'), (5753, 4, '2021-09-27 06:01:59', '2021-09-27 06:01:59'), (5754, 4, '2021-09-27 06:01:59', '2021-09-27 06:01:59'), (5755, 4, '2021-09-27 06:02:00', '2021-09-27 06:02:00'), (5756, 4, '2021-09-27 06:02:01', '2021-09-27 06:02:01'), (5757, 4, '2021-09-27 06:02:01', '2021-09-27 06:02:01'), (5758, 4, '2021-09-27 06:02:02', '2021-09-27 06:02:02'), (5759, 4, '2021-09-27 06:02:02', '2021-09-27 06:02:02'), (5760, 4, '2021-09-27 06:02:03', '2021-09-27 06:02:03'), (5761, 4, '2021-09-27 06:02:03', '2021-09-27 06:02:03'), (5762, 4, '2021-09-28 06:02:12', '2021-09-28 06:02:12'), (5763, 4, '2021-09-28 06:02:13', '2021-09-28 06:02:13'), (5764, 4, '2021-09-28 06:02:13', '2021-09-28 06:02:13'), (5765, 4, '2021-09-28 06:02:14', '2021-09-28 06:02:14'), (5766, 4, '2021-09-28 06:02:14', '2021-09-28 06:02:14'), (5767, 4, '2021-09-28 06:02:15', '2021-09-28 06:02:15'), (5768, 4, '2021-09-28 06:02:15', '2021-09-28 06:02:15'), (5769, 4, '2021-09-28 06:02:15', '2021-09-28 06:02:15'), (5770, 4, '2021-09-28 06:02:16', '2021-09-28 06:02:16'), (5771, 4, '2021-09-28 06:02:17', '2021-09-28 06:02:17'), (5772, 4, '2021-09-28 06:02:17', '2021-09-28 06:02:17'), (5773, 4, '2021-09-28 06:02:17', '2021-09-28 06:02:17'), (5774, 4, '2021-09-28 06:02:18', '2021-09-28 06:02:18'), (5775, 4, '2021-09-28 06:02:18', '2021-09-28 06:02:18'), (5776, 4, '2021-09-28 06:02:19', '2021-09-28 06:02:19'), (5777, 4, '2021-09-28 06:02:20', '2021-09-28 06:02:20'), (5778, 4, '2021-09-28 06:02:20', '2021-09-28 06:02:20'), (5779, 4, '2021-09-28 06:02:20', '2021-09-28 06:02:20'), (5780, 4, '2021-09-28 06:02:21', '2021-09-28 06:02:21'), (5781, 4, '2021-09-28 06:02:21', '2021-09-28 06:02:21'), (5782, 4, '2021-09-28 06:02:21', '2021-09-28 06:02:21'), (5783, 4, '2021-09-28 06:02:21', '2021-09-28 06:02:21'), (5784, 4, '2021-09-28 06:02:22', '2021-09-28 06:02:22'), (5785, 4, '2021-09-28 06:02:22', '2021-09-28 06:02:22'), (5786, 4, '2021-09-28 06:02:22', '2021-09-28 06:02:22'), (5787, 4, '2021-09-28 06:02:23', '2021-09-28 06:02:23'), (5788, 4, '2021-09-28 06:02:23', '2021-09-28 06:02:23'), (5789, 4, '2021-09-28 06:02:23', '2021-09-28 06:02:23'), (5790, 4, '2021-09-28 06:02:23', '2021-09-28 06:02:23'), (5791, 4, '2021-09-28 06:02:24', '2021-09-28 06:02:24'), (5792, 4, '2021-09-28 06:02:25', '2021-09-28 06:02:25'), (5793, 4, '2021-09-28 06:02:25', '2021-09-28 06:02:25'), (5794, 4, '2021-09-28 06:02:25', '2021-09-28 06:02:25'), (5795, 4, '2021-09-28 06:02:26', '2021-09-28 06:02:26'), (5796, 4, '2021-09-28 06:02:26', '2021-09-28 06:02:26'), (5797, 4, '2021-09-28 06:02:26', '2021-09-28 06:02:26'), (5798, 4, '2021-09-28 06:02:26', '2021-09-28 06:02:26'), (5799, 4, '2021-09-28 06:02:27', '2021-09-28 06:02:27'), (5800, 4, '2021-09-28 06:02:27', '2021-09-28 06:02:27'), (5801, 4, '2021-09-28 06:02:27', '2021-09-28 06:02:27'), (5802, 4, '2021-09-28 06:02:27', '2021-09-28 06:02:27'), (5803, 4, '2021-09-28 06:02:28', '2021-09-28 06:02:28'), (5804, 4, '2021-09-28 06:02:28', '2021-09-28 06:02:28'), (5805, 4, '2021-09-28 06:02:28', '2021-09-28 06:02:28'), (5806, 4, '2021-09-28 06:02:29', '2021-09-28 06:02:29'), (5807, 4, '2021-09-28 06:02:29', '2021-09-28 06:02:29'), (5808, 4, '2021-09-28 06:02:29', '2021-09-28 06:02:29'), (5809, 4, '2021-09-28 06:02:29', '2021-09-28 06:02:29'), (5810, 4, '2021-09-28 06:02:30', '2021-09-28 06:02:30'), (5811, 4, '2021-09-28 06:02:31', '2021-09-28 06:02:31'), (5812, 4, '2021-09-28 06:02:31', '2021-09-28 06:02:31'), (5813, 4, '2021-09-28 06:02:31', '2021-09-28 06:02:31'), (5814, 4, '2021-09-28 06:02:31', '2021-09-28 06:02:31'), (5815, 4, '2021-09-28 06:02:31', '2021-09-28 06:02:31'), (5816, 4, '2021-09-28 06:02:32', '2021-09-28 06:02:32'), (5817, 4, '2021-09-28 06:02:32', '2021-09-28 06:02:32'), (5818, 4, '2021-09-28 06:02:32', '2021-09-28 06:02:32'), (5819, 4, '2021-09-28 06:02:32', '2021-09-28 06:02:32'), (5820, 4, '2021-09-28 06:02:33', '2021-09-28 06:02:33'), (5821, 4, '2021-09-28 06:02:33', '2021-09-28 06:02:33'), (5822, 4, '2021-09-28 06:02:33', '2021-09-28 06:02:33'), (5823, 4, '2021-09-28 06:02:33', '2021-09-28 06:02:33'), (5824, 4, '2021-09-28 06:02:34', '2021-09-28 06:02:34'), (5825, 4, '2021-09-28 06:02:34', '2021-09-28 06:02:34'), (5826, 4, '2021-09-28 06:02:34', '2021-09-28 06:02:34'), (5827, 4, '2021-09-28 06:02:34', '2021-09-28 06:02:34'), (5828, 4, '2021-09-28 06:02:35', '2021-09-28 06:02:35'), (5829, 4, '2021-09-28 06:02:35', '2021-09-28 06:02:35'), (5830, 4, '2021-09-28 06:02:35', '2021-09-28 06:02:35'), (5831, 4, '2021-09-28 06:02:35', '2021-09-28 06:02:35'), (5832, 4, '2021-09-28 06:02:36', '2021-09-28 06:02:36'), (5833, 4, '2021-09-28 06:02:36', '2021-09-28 06:02:36'), (5834, 4, '2021-09-28 06:02:36', '2021-09-28 06:02:36'), (5835, 4, '2021-09-28 06:02:37', '2021-09-28 06:02:37'), (5836, 4, '2021-09-28 06:02:37', '2021-09-28 06:02:37'), (5837, 4, '2021-09-28 06:02:37', '2021-09-28 06:02:37'), (5838, 4, '2021-09-28 06:02:38', '2021-09-28 06:02:38'), (5839, 4, '2021-09-28 06:02:38', '2021-09-28 06:02:38'), (5840, 4, '2021-09-28 06:02:38', '2021-09-28 06:02:38'), (5841, 4, '2021-09-28 06:02:38', '2021-09-28 06:02:38'), (5842, 4, '2021-09-28 06:02:39', '2021-09-28 06:02:39'), (5843, 4, '2021-09-28 06:02:39', '2021-09-28 06:02:39'), (5844, 4, '2021-09-28 06:02:40', '2021-09-28 06:02:40'), (5845, 4, '2021-09-28 06:02:40', '2021-09-28 06:02:40'), (5846, 4, '2021-09-28 06:02:41', '2021-09-28 06:02:41'), (5847, 4, '2021-09-28 06:02:41', '2021-09-28 06:02:41'), (5848, 4, '2021-09-28 06:02:41', '2021-09-28 06:02:41'), (5849, 4, '2021-09-28 06:02:41', '2021-09-28 06:02:41'), (5850, 4, '2021-09-28 06:02:42', '2021-09-28 06:02:42'), (5851, 4, '2021-09-28 06:02:42', '2021-09-28 06:02:42'), (5852, 4, '2021-09-28 06:02:42', '2021-09-28 06:02:42'), (5853, 4, '2021-09-28 06:02:42', '2021-09-28 06:02:42'), (5854, 4, '2021-09-28 06:02:43', '2021-09-28 06:02:43'), (5855, 4, '2021-09-28 06:02:43', '2021-09-28 06:02:43'), (5856, 4, '2021-09-28 06:02:43', '2021-09-28 06:02:43'), (5857, 4, '2021-09-28 06:02:43', '2021-09-28 06:02:43'), (5858, 4, '2021-09-28 06:02:44', '2021-09-28 06:02:44'), (5859, 4, '2021-09-28 06:02:44', '2021-09-28 06:02:44'), (5860, 4, '2021-09-28 06:02:44', '2021-09-28 06:02:44'), (5861, 4, '2021-09-28 06:02:45', '2021-09-28 06:02:45'), (5862, 4, '2021-09-28 06:02:45', '2021-09-28 06:02:45'), (5863, 4, '2021-09-28 06:02:45', '2021-09-28 06:02:45'), (5864, 4, '2021-09-28 06:02:46', '2021-09-28 06:02:46'), (5865, 4, '2021-09-28 06:02:46', '2021-09-28 06:02:46'), (5866, 4, '2021-09-28 06:02:46', '2021-09-28 06:02:46'), (5867, 4, '2021-09-28 06:02:47', '2021-09-28 06:02:47'), (5868, 4, '2021-09-28 06:02:47', '2021-09-28 06:02:47'), (5869, 4, '2021-09-28 06:02:47', '2021-09-28 06:02:47'), (5870, 4, '2021-09-28 06:02:48', '2021-09-28 06:02:48'), (5871, 4, '2021-09-28 06:02:48', '2021-09-28 06:02:48'), (5872, 4, '2021-09-28 06:02:48', '2021-09-28 06:02:48'), (5873, 4, '2021-09-28 06:02:49', '2021-09-28 06:02:49'), (5874, 4, '2021-09-28 06:02:49', '2021-09-28 06:02:49'), (5875, 4, '2021-09-28 06:02:49', '2021-09-28 06:02:49'), (5876, 4, '2021-09-28 06:02:49', '2021-09-28 06:02:49'), (5877, 4, '2021-09-28 06:02:49', '2021-09-28 06:02:49'), (5878, 4, '2021-09-28 06:02:50', '2021-09-28 06:02:50'), (5879, 4, '2021-09-28 06:02:50', '2021-09-28 06:02:50'), (5880, 4, '2021-09-28 06:02:50', '2021-09-28 06:02:50'), (5881, 4, '2021-09-28 06:02:50', '2021-09-28 06:02:50'), (5882, 4, '2021-09-28 06:02:51', '2021-09-28 06:02:51'), (5883, 4, '2021-09-28 06:02:51', '2021-09-28 06:02:51'), (5884, 4, '2021-09-28 06:02:51', '2021-09-28 06:02:51'), (5885, 4, '2021-09-28 06:02:51', '2021-09-28 06:02:51'), (5886, 4, '2021-09-28 06:02:52', '2021-09-28 06:02:52'), (5887, 4, '2021-09-28 06:02:52', '2021-09-28 06:02:52'), (5888, 4, '2021-09-28 06:02:52', '2021-09-28 06:02:52'), (5889, 4, '2021-09-28 06:02:52', '2021-09-28 06:02:52'), (5890, 4, '2021-09-28 06:02:52', '2021-09-28 06:02:52'), (5891, 4, '2021-09-28 06:02:53', '2021-09-28 06:02:53'), (5892, 4, '2021-09-28 06:02:53', '2021-09-28 06:02:53'), (5893, 4, '2021-09-28 06:02:53', '2021-09-28 06:02:53'), (5894, 4, '2021-09-28 06:02:53', '2021-09-28 06:02:53'), (5895, 4, '2021-09-28 06:02:54', '2021-09-28 06:02:54'), (5896, 4, '2021-09-28 06:02:54', '2021-09-28 06:02:54'), (5897, 4, '2021-09-28 06:02:54', '2021-09-28 06:02:54'), (5898, 4, '2021-09-28 06:02:54', '2021-09-28 06:02:54'), (5899, 4, '2021-09-28 06:02:55', '2021-09-28 06:02:55'), (5900, 4, '2021-09-28 06:02:55', '2021-09-28 06:02:55'), (5901, 4, '2021-09-28 06:02:56', '2021-09-28 06:02:56'), (5902, 4, '2021-09-28 06:02:56', '2021-09-28 06:02:56'), (5903, 4, '2021-09-28 06:02:56', '2021-09-28 06:02:56'), (5904, 4, '2021-09-28 06:02:56', '2021-09-28 06:02:56'), (5905, 4, '2021-09-28 06:02:57', '2021-09-28 06:02:57'), (5906, 4, '2021-09-28 06:02:57', '2021-09-28 06:02:57'), (5907, 4, '2021-09-28 06:02:57', '2021-09-28 06:02:57'), (5908, 4, '2021-09-28 06:02:57', '2021-09-28 06:02:57'), (5909, 4, '2021-09-28 06:02:58', '2021-09-28 06:02:58'), (5910, 4, '2021-09-28 06:02:58', '2021-09-28 06:02:58'), (5911, 4, '2021-09-28 06:02:58', '2021-09-28 06:02:58'), (5912, 4, '2021-09-28 06:02:58', '2021-09-28 06:02:58'), (5913, 4, '2021-09-28 06:02:59', '2021-09-28 06:02:59'), (5914, 4, '2021-09-28 06:02:59', '2021-09-28 06:02:59'), (5915, 4, '2021-09-28 06:02:59', '2021-09-28 06:02:59'), (5916, 4, '2021-09-28 06:02:59', '2021-09-28 06:02:59'), (5917, 4, '2021-09-28 06:02:59', '2021-09-28 06:02:59'), (5918, 4, '2021-09-28 06:03:00', '2021-09-28 06:03:00'), (5919, 4, '2021-09-28 06:03:00', '2021-09-28 06:03:00'), (5920, 4, '2021-09-28 06:03:00', '2021-09-28 06:03:00'), (5921, 4, '2021-09-28 06:03:00', '2021-09-28 06:03:00'), (5922, 4, '2021-09-28 06:03:01', '2021-09-28 06:03:01'), (5923, 4, '2021-09-28 06:03:01', '2021-09-28 06:03:01'), (5924, 4, '2021-09-28 06:03:01', '2021-09-28 06:03:01'), (5925, 4, '2021-09-28 06:03:01', '2021-09-28 06:03:01'), (5926, 4, '2021-09-28 06:03:02', '2021-09-28 06:03:02'), (5927, 4, '2021-09-28 06:03:02', '2021-09-28 06:03:02'), (5928, 4, '2021-09-28 06:03:02', '2021-09-28 06:03:02'), (5929, 4, '2021-09-28 06:03:02', '2021-09-28 06:03:02'), (5930, 4, '2021-09-28 06:03:03', '2021-09-28 06:03:03'), (5931, 4, '2021-09-28 06:03:03', '2021-09-28 06:03:03'), (5932, 4, '2021-09-28 06:03:03', '2021-09-28 06:03:03'), (5933, 4, '2021-09-28 06:03:04', '2021-09-28 06:03:04'), (5934, 4, '2021-09-28 06:03:04', '2021-09-28 06:03:04'), (5935, 4, '2021-09-28 06:03:04', '2021-09-28 06:03:04'), (5936, 4, '2021-09-28 06:03:04', '2021-09-28 06:03:04'), (5937, 4, '2021-09-28 06:03:05', '2021-09-28 06:03:05'), (5938, 4, '2021-09-28 06:03:05', '2021-09-28 06:03:05'), (5939, 4, '2021-09-28 06:03:05', '2021-09-28 06:03:05'), (5940, 4, '2021-09-28 06:03:05', '2021-09-28 06:03:05'), (5941, 4, '2021-09-28 06:03:06', '2021-09-28 06:03:06'), (5942, 4, '2021-09-28 06:03:06', '2021-09-28 06:03:06'), (5943, 4, '2021-09-28 06:03:06', '2021-09-28 06:03:06'), (5944, 4, '2021-09-28 06:03:06', '2021-09-28 06:03:06'), (5945, 4, '2021-09-28 06:03:07', '2021-09-28 06:03:07'), (5946, 4, '2021-09-28 06:03:07', '2021-09-28 06:03:07'), (5947, 4, '2021-09-28 06:03:07', '2021-09-28 06:03:07'), (5948, 4, '2021-09-28 06:03:08', '2021-09-28 06:03:08'), (5949, 4, '2021-09-28 06:03:08', '2021-09-28 06:03:08'), (5950, 4, '2021-09-28 06:03:08', '2021-09-28 06:03:08'), (5951, 4, '2021-09-28 06:03:08', '2021-09-28 06:03:08'), (5952, 4, '2021-09-28 06:03:09', '2021-09-28 06:03:09'), (5953, 4, '2021-09-28 06:03:09', '2021-09-28 06:03:09'), (5954, 4, '2021-09-28 06:03:09', '2021-09-28 06:03:09'), (5955, 4, '2021-09-28 06:03:09', '2021-09-28 06:03:09'), (5956, 4, '2021-09-28 06:03:10', '2021-09-28 06:03:10'), (5957, 4, '2021-09-28 06:03:10', '2021-09-28 06:03:10'), (5958, 4, '2021-09-28 06:03:10', '2021-09-28 06:03:10'), (5959, 4, '2021-09-28 06:03:10', '2021-09-28 06:03:10'), (5960, 4, '2021-09-28 06:03:11', '2021-09-28 06:03:11'), (5961, 4, '2021-09-28 06:03:11', '2021-09-28 06:03:11'), (5962, 4, '2021-09-28 06:03:11', '2021-09-28 06:03:11'), (5963, 4, '2021-09-28 06:03:11', '2021-09-28 06:03:11'), (5964, 4, '2021-09-28 06:03:12', '2021-09-28 06:03:12'), (5965, 4, '2021-09-28 06:03:12', '2021-09-28 06:03:12'), (5966, 4, '2021-09-28 06:03:12', '2021-09-28 06:03:12'), (5967, 4, '2021-09-28 06:03:12', '2021-09-28 06:03:12'), (5968, 4, '2021-09-28 06:03:13', '2021-09-28 06:03:13'), (5969, 4, '2021-09-28 06:03:13', '2021-09-28 06:03:13'), (5970, 4, '2021-09-28 06:03:13', '2021-09-28 06:03:13'), (5971, 4, '2021-09-28 06:03:14', '2021-09-28 06:03:14'), (5972, 4, '2021-09-28 06:03:14', '2021-09-28 06:03:14'), (5973, 4, '2021-09-28 06:03:14', '2021-09-28 06:03:14'), (5974, 4, '2021-09-29 06:03:19', '2021-09-29 06:03:19'), (5975, 4, '2021-09-29 06:03:21', '2021-09-29 06:03:21'), (5976, 4, '2021-09-29 06:03:21', '2021-09-29 06:03:21'), (5977, 4, '2021-09-29 06:03:22', '2021-09-29 06:03:22'), (5978, 4, '2021-09-29 06:03:22', '2021-09-29 06:03:22'), (5979, 4, '2021-09-29 06:03:23', '2021-09-29 06:03:23'), (5980, 4, '2021-09-29 06:03:23', '2021-09-29 06:03:23'), (5981, 4, '2021-09-29 06:03:24', '2021-09-29 06:03:24'), (5982, 4, '2021-09-29 06:03:24', '2021-09-29 06:03:24'), (5983, 4, '2021-09-29 06:03:25', '2021-09-29 06:03:25'), (5984, 4, '2021-09-29 06:03:25', '2021-09-29 06:03:25'), (5985, 4, '2021-09-29 06:03:26', '2021-09-29 06:03:26'), (5986, 4, '2021-09-29 06:03:26', '2021-09-29 06:03:26'), (5987, 4, '2021-09-29 06:03:26', '2021-09-29 06:03:26'), (5988, 4, '2021-09-29 06:03:27', '2021-09-29 06:03:27'), (5989, 4, '2021-09-29 06:03:27', '2021-09-29 06:03:27'), (5990, 4, '2021-09-29 06:03:27', '2021-09-29 06:03:27'), (5991, 4, '2021-09-29 06:03:27', '2021-09-29 06:03:27'), (5992, 4, '2021-09-29 06:03:28', '2021-09-29 06:03:28'), (5993, 4, '2021-09-29 06:03:28', '2021-09-29 06:03:28'), (5994, 4, '2021-09-29 06:03:28', '2021-09-29 06:03:28'), (5995, 4, '2021-09-29 06:03:29', '2021-09-29 06:03:29'), (5996, 4, '2021-09-29 06:03:29', '2021-09-29 06:03:29'), (5997, 4, '2021-09-29 06:03:29', '2021-09-29 06:03:29'), (5998, 4, '2021-09-29 06:03:29', '2021-09-29 06:03:29'), (5999, 4, '2021-09-29 06:03:30', '2021-09-29 06:03:30'), (6000, 4, '2021-09-29 06:03:30', '2021-09-29 06:03:30'), (6001, 4, '2021-09-29 06:03:30', '2021-09-29 06:03:30'), (6002, 4, '2021-09-29 06:03:30', '2021-09-29 06:03:30'), (6003, 4, '2021-09-29 06:03:31', '2021-09-29 06:03:31'), (6004, 4, '2021-09-29 06:03:31', '2021-09-29 06:03:31'), (6005, 4, '2021-09-29 06:03:31', '2021-09-29 06:03:31'), (6006, 4, '2021-09-29 06:03:31', '2021-09-29 06:03:31'), (6007, 4, '2021-09-29 06:03:32', '2021-09-29 06:03:32'), (6008, 4, '2021-09-29 06:03:32', '2021-09-29 06:03:32'), (6009, 4, '2021-09-29 06:03:32', '2021-09-29 06:03:32'), (6010, 4, '2021-09-29 06:03:32', '2021-09-29 06:03:32'), (6011, 4, '2021-09-29 06:03:33', '2021-09-29 06:03:33'), (6012, 4, '2021-09-29 06:03:33', '2021-09-29 06:03:33'), (6013, 4, '2021-09-29 06:03:33', '2021-09-29 06:03:33'), (6014, 4, '2021-09-29 06:03:33', '2021-09-29 06:03:33'), (6015, 4, '2021-09-29 06:03:34', '2021-09-29 06:03:34'), (6016, 4, '2021-09-29 06:03:34', '2021-09-29 06:03:34'), (6017, 4, '2021-09-29 06:03:34', '2021-09-29 06:03:34'), (6018, 4, '2021-09-29 06:03:34', '2021-09-29 06:03:34'), (6019, 4, '2021-09-29 06:03:35', '2021-09-29 06:03:35'), (6020, 4, '2021-09-29 06:03:35', '2021-09-29 06:03:35'), (6021, 4, '2021-09-29 06:03:35', '2021-09-29 06:03:35'), (6022, 4, '2021-09-29 06:03:35', '2021-09-29 06:03:35'), (6023, 4, '2021-09-29 06:03:36', '2021-09-29 06:03:36'), (6024, 4, '2021-09-29 06:03:36', '2021-09-29 06:03:36'), (6025, 4, '2021-09-29 06:03:36', '2021-09-29 06:03:36'), (6026, 4, '2021-09-29 06:03:36', '2021-09-29 06:03:36'), (6027, 4, '2021-09-29 06:03:37', '2021-09-29 06:03:37'), (6028, 4, '2021-09-29 06:03:37', '2021-09-29 06:03:37'), (6029, 4, '2021-09-29 06:03:37', '2021-09-29 06:03:37'), (6030, 4, '2021-09-29 06:03:38', '2021-09-29 06:03:38'), (6031, 4, '2021-09-29 06:03:38', '2021-09-29 06:03:38'), (6032, 4, '2021-09-29 06:03:38', '2021-09-29 06:03:38'), (6033, 4, '2021-09-29 06:03:38', '2021-09-29 06:03:38'), (6034, 4, '2021-09-29 06:03:38', '2021-09-29 06:03:38'), (6035, 4, '2021-09-29 06:03:39', '2021-09-29 06:03:39'), (6036, 4, '2021-09-29 06:03:39', '2021-09-29 06:03:39'), (6037, 4, '2021-09-29 06:03:39', '2021-09-29 06:03:39'), (6038, 4, '2021-09-29 06:03:39', '2021-09-29 06:03:39'), (6039, 4, '2021-09-29 06:03:40', '2021-09-29 06:03:40'), (6040, 4, '2021-09-29 06:03:40', '2021-09-29 06:03:40'), (6041, 4, '2021-09-29 06:03:40', '2021-09-29 06:03:40'), (6042, 4, '2021-09-29 06:03:40', '2021-09-29 06:03:40'), (6043, 4, '2021-09-29 06:03:41', '2021-09-29 06:03:41'), (6044, 4, '2021-09-29 06:03:41', '2021-09-29 06:03:41'), (6045, 4, '2021-09-29 06:03:41', '2021-09-29 06:03:41'), (6046, 4, '2021-09-29 06:03:41', '2021-09-29 06:03:41'), (6047, 4, '2021-09-29 06:03:42', '2021-09-29 06:03:42'), (6048, 4, '2021-09-29 06:03:42', '2021-09-29 06:03:42'), (6049, 4, '2021-09-29 06:03:42', '2021-09-29 06:03:42'), (6050, 4, '2021-09-29 06:03:43', '2021-09-29 06:03:43'), (6051, 4, '2021-09-29 06:03:43', '2021-09-29 06:03:43'), (6052, 4, '2021-09-29 06:03:43', '2021-09-29 06:03:43'), (6053, 4, '2021-09-29 06:03:43', '2021-09-29 06:03:43'), (6054, 4, '2021-09-29 06:03:44', '2021-09-29 06:03:44'), (6055, 4, '2021-09-29 06:03:44', '2021-09-29 06:03:44'), (6056, 4, '2021-09-29 06:03:44', '2021-09-29 06:03:44'), (6057, 4, '2021-09-29 06:03:44', '2021-09-29 06:03:44'), (6058, 4, '2021-09-29 06:03:45', '2021-09-29 06:03:45'), (6059, 4, '2021-09-29 06:03:45', '2021-09-29 06:03:45'), (6060, 4, '2021-09-29 06:03:45', '2021-09-29 06:03:45'), (6061, 4, '2021-09-29 06:03:45', '2021-09-29 06:03:45'), (6062, 4, '2021-09-29 06:03:46', '2021-09-29 06:03:46'), (6063, 4, '2021-09-29 06:03:46', '2021-09-29 06:03:46'), (6064, 4, '2021-09-29 06:03:46', '2021-09-29 06:03:46'), (6065, 4, '2021-09-29 06:03:46', '2021-09-29 06:03:46'), (6066, 4, '2021-09-29 06:03:47', '2021-09-29 06:03:47'), (6067, 4, '2021-09-29 06:03:47', '2021-09-29 06:03:47'), (6068, 4, '2021-09-29 06:03:47', '2021-09-29 06:03:47'), (6069, 4, '2021-09-29 06:03:47', '2021-09-29 06:03:47'), (6070, 4, '2021-09-29 06:03:48', '2021-09-29 06:03:48'), (6071, 4, '2021-09-29 06:03:48', '2021-09-29 06:03:48'), (6072, 4, '2021-09-29 06:03:48', '2021-09-29 06:03:48'), (6073, 4, '2021-09-29 06:03:48', '2021-09-29 06:03:48'), (6074, 4, '2021-09-29 06:03:48', '2021-09-29 06:03:48'), (6075, 4, '2021-09-29 06:03:49', '2021-09-29 06:03:49'), (6076, 4, '2021-09-29 06:03:49', '2021-09-29 06:03:49'), (6077, 4, '2021-09-29 06:03:49', '2021-09-29 06:03:49'), (6078, 4, '2021-09-29 06:03:49', '2021-09-29 06:03:49'), (6079, 4, '2021-09-29 06:03:50', '2021-09-29 06:03:50'), (6080, 4, '2021-09-29 06:03:50', '2021-09-29 06:03:50'), (6081, 4, '2021-09-29 06:03:50', '2021-09-29 06:03:50'), (6082, 4, '2021-09-29 06:03:50', '2021-09-29 06:03:50'), (6083, 4, '2021-09-29 06:03:51', '2021-09-29 06:03:51'), (6084, 4, '2021-09-29 06:03:51', '2021-09-29 06:03:51'), (6085, 4, '2021-09-29 06:03:51', '2021-09-29 06:03:51'), (6086, 4, '2021-09-29 06:03:51', '2021-09-29 06:03:51'), (6087, 4, '2021-09-29 06:03:51', '2021-09-29 06:03:51'), (6088, 4, '2021-09-29 06:03:52', '2021-09-29 06:03:52'), (6089, 4, '2021-09-29 06:03:52', '2021-09-29 06:03:52'), (6090, 4, '2021-09-29 06:03:52', '2021-09-29 06:03:52'), (6091, 4, '2021-09-29 06:03:52', '2021-09-29 06:03:52'), (6092, 4, '2021-09-29 06:03:53', '2021-09-29 06:03:53'), (6093, 4, '2021-09-29 06:03:53', '2021-09-29 06:03:53'), (6094, 4, '2021-09-29 06:03:53', '2021-09-29 06:03:53'), (6095, 4, '2021-09-29 06:03:53', '2021-09-29 06:03:53'), (6096, 4, '2021-09-29 06:03:54', '2021-09-29 06:03:54'), (6097, 4, '2021-09-29 06:03:54', '2021-09-29 06:03:54'), (6098, 4, '2021-09-29 06:03:54', '2021-09-29 06:03:54'), (6099, 4, '2021-09-29 06:03:54', '2021-09-29 06:03:54'), (6100, 4, '2021-09-29 06:03:54', '2021-09-29 06:03:54'), (6101, 4, '2021-09-29 06:03:55', '2021-09-29 06:03:55'), (6102, 4, '2021-09-29 06:03:55', '2021-09-29 06:03:55'), (6103, 4, '2021-09-29 06:03:55', '2021-09-29 06:03:55'), (6104, 4, '2021-09-29 06:03:55', '2021-09-29 06:03:55'), (6105, 4, '2021-09-29 06:03:55', '2021-09-29 06:03:55'), (6106, 4, '2021-09-29 06:03:56', '2021-09-29 06:03:56'), (6107, 4, '2021-09-29 06:03:56', '2021-09-29 06:03:56'), (6108, 4, '2021-09-29 06:03:56', '2021-09-29 06:03:56'), (6109, 4, '2021-09-29 06:03:57', '2021-09-29 06:03:57'), (6110, 4, '2021-09-29 06:03:57', '2021-09-29 06:03:57'), (6111, 4, '2021-09-29 06:03:57', '2021-09-29 06:03:57'), (6112, 4, '2021-09-29 06:03:57', '2021-09-29 06:03:57'), (6113, 4, '2021-09-29 06:03:57', '2021-09-29 06:03:57'), (6114, 4, '2021-09-29 06:03:58', '2021-09-29 06:03:58'), (6115, 4, '2021-09-29 06:03:58', '2021-09-29 06:03:58'), (6116, 4, '2021-09-29 06:04:10', '2021-09-29 06:04:10'), (6117, 4, '2021-09-29 06:04:10', '2021-09-29 06:04:10'), (6118, 4, '2021-09-29 06:04:10', '2021-09-29 06:04:10'), (6119, 4, '2021-09-29 06:04:11', '2021-09-29 06:04:11'), (6120, 4, '2021-09-29 06:04:11', '2021-09-29 06:04:11'), (6121, 4, '2021-09-29 06:04:11', '2021-09-29 06:04:11'), (6122, 4, '2021-09-29 06:04:11', '2021-09-29 06:04:11'), (6123, 4, '2021-09-29 06:04:11', '2021-09-29 06:04:11'), (6124, 4, '2021-09-29 06:04:12', '2021-09-29 06:04:12'), (6125, 4, '2021-09-29 06:04:12', '2021-09-29 06:04:12'), (6126, 4, '2021-09-29 06:04:12', '2021-09-29 06:04:12'), (6127, 4, '2021-09-29 06:04:12', '2021-09-29 06:04:12'), (6128, 4, '2021-09-29 06:04:13', '2021-09-29 06:04:13'), (6129, 4, '2021-09-29 06:04:13', '2021-09-29 06:04:13'), (6130, 4, '2021-09-29 06:04:13', '2021-09-29 06:04:13'), (6131, 4, '2021-09-29 06:04:13', '2021-09-29 06:04:13'), (6132, 4, '2021-09-29 06:04:15', '2021-09-29 06:04:15'), (6133, 4, '2021-09-29 06:04:15', '2021-09-29 06:04:15'), (6134, 4, '2021-09-29 06:04:15', '2021-09-29 06:04:15'), (6135, 4, '2021-09-29 06:04:16', '2021-09-29 06:04:16'), (6136, 4, '2021-09-29 06:04:16', '2021-09-29 06:04:16'), (6137, 4, '2021-09-29 06:04:16', '2021-09-29 06:04:16'), (6138, 4, '2021-09-29 06:04:16', '2021-09-29 06:04:16'), (6139, 4, '2021-09-29 06:04:16', '2021-09-29 06:04:16'), (6140, 4, '2021-09-29 06:04:17', '2021-09-29 06:04:17'), (6141, 4, '2021-09-29 06:04:17', '2021-09-29 06:04:17'), (6142, 4, '2021-09-29 06:04:17', '2021-09-29 06:04:17'), (6143, 4, '2021-09-29 06:04:17', '2021-09-29 06:04:17'), (6144, 4, '2021-09-29 06:04:18', '2021-09-29 06:04:18'), (6145, 4, '2021-09-29 06:04:18', '2021-09-29 06:04:18'), (6146, 4, '2021-09-29 06:04:19', '2021-09-29 06:04:19'), (6147, 4, '2021-09-29 06:04:19', '2021-09-29 06:04:19'), (6148, 4, '2021-09-29 06:04:19', '2021-09-29 06:04:19'), (6149, 4, '2021-09-29 06:04:19', '2021-09-29 06:04:19'), (6150, 4, '2021-09-29 06:04:19', '2021-09-29 06:04:19'), (6151, 4, '2021-09-29 06:04:20', '2021-09-29 06:04:20'), (6152, 4, '2021-09-29 06:04:20', '2021-09-29 06:04:20'), (6153, 4, '2021-09-29 06:04:20', '2021-09-29 06:04:20'), (6154, 4, '2021-09-29 06:04:21', '2021-09-29 06:04:21'), (6155, 4, '2021-09-29 06:04:21', '2021-09-29 06:04:21'), (6156, 4, '2021-09-29 06:04:21', '2021-09-29 06:04:21'), (6157, 4, '2021-09-29 06:04:22', '2021-09-29 06:04:22'), (6158, 4, '2021-09-29 06:04:22', '2021-09-29 06:04:22'), (6159, 4, '2021-09-29 06:04:22', '2021-09-29 06:04:22'), (6160, 4, '2021-09-29 06:04:22', '2021-09-29 06:04:22'), (6161, 4, '2021-09-29 06:04:22', '2021-09-29 06:04:22'), (6162, 4, '2021-09-29 06:04:23', '2021-09-29 06:04:23'), (6163, 4, '2021-09-29 06:04:23', '2021-09-29 06:04:23'), (6164, 4, '2021-09-29 06:04:23', '2021-09-29 06:04:23'), (6165, 4, '2021-09-29 06:04:23', '2021-09-29 06:04:23'), (6166, 4, '2021-09-29 06:04:24', '2021-09-29 06:04:24'), (6167, 4, '2021-09-29 06:04:24', '2021-09-29 06:04:24'), (6168, 4, '2021-09-29 06:04:24', '2021-09-29 06:04:24'), (6169, 4, '2021-09-29 06:04:24', '2021-09-29 06:04:24'), (6170, 4, '2021-09-29 06:04:24', '2021-09-29 06:04:24'), (6171, 4, '2021-09-29 06:04:25', '2021-09-29 06:04:25'), (6172, 4, '2021-09-29 06:04:25', '2021-09-29 06:04:25'), (6173, 4, '2021-09-29 06:04:25', '2021-09-29 06:04:25'), (6174, 4, '2021-09-29 06:04:25', '2021-09-29 06:04:25'), (6175, 4, '2021-09-29 06:04:25', '2021-09-29 06:04:25'), (6176, 4, '2021-09-29 06:04:26', '2021-09-29 06:04:26'), (6177, 4, '2021-09-29 06:04:26', '2021-09-29 06:04:26'), (6178, 4, '2021-09-29 06:04:26', '2021-09-29 06:04:26'), (6179, 4, '2021-09-29 06:04:26', '2021-09-29 06:04:26'), (6180, 4, '2021-09-29 06:04:27', '2021-09-29 06:04:27'), (6181, 4, '2021-09-29 06:04:27', '2021-09-29 06:04:27'), (6182, 4, '2021-09-29 06:04:28', '2021-09-29 06:04:28'), (6183, 4, '2021-09-30 06:04:31', '2021-09-30 06:04:31'), (6184, 4, '2021-09-30 06:04:33', '2021-09-30 06:04:33'), (6185, 4, '2021-09-30 06:04:33', '2021-09-30 06:04:33'), (6186, 4, '2021-09-30 06:04:34', '2021-09-30 06:04:34'), (6187, 4, '2021-09-30 06:04:34', '2021-09-30 06:04:34'), (6188, 4, '2021-09-30 06:04:34', '2021-09-30 06:04:34'), (6189, 4, '2021-09-30 06:04:34', '2021-09-30 06:04:34'), (6190, 4, '2021-09-30 06:04:35', '2021-09-30 06:04:35'), (6191, 4, '2021-09-30 06:04:35', '2021-09-30 06:04:35'), (6192, 4, '2021-09-30 06:04:35', '2021-09-30 06:04:35'), (6193, 4, '2021-09-30 06:04:35', '2021-09-30 06:04:35'), (6194, 4, '2021-09-30 06:04:35', '2021-09-30 06:04:35'), (6195, 4, '2021-09-30 06:04:36', '2021-09-30 06:04:36'), (6196, 4, '2021-09-30 06:04:36', '2021-09-30 06:04:36'), (6197, 4, '2021-09-30 06:04:36', '2021-09-30 06:04:36'), (6198, 4, '2021-09-30 06:04:36', '2021-09-30 06:04:36'), (6199, 4, '2021-09-30 06:04:36', '2021-09-30 06:04:36'), (6200, 4, '2021-09-30 06:04:37', '2021-09-30 06:04:37'), (6201, 4, '2021-09-30 06:04:37', '2021-09-30 06:04:37'), (6202, 4, '2021-09-30 06:04:37', '2021-09-30 06:04:37'), (6203, 4, '2021-09-30 06:04:37', '2021-09-30 06:04:37'), (6204, 4, '2021-09-30 06:04:38', '2021-09-30 06:04:38'), (6205, 4, '2021-09-30 06:04:38', '2021-09-30 06:04:38'), (6206, 4, '2021-09-30 06:04:38', '2021-09-30 06:04:38'), (6207, 4, '2021-09-30 06:04:38', '2021-09-30 06:04:38'), (6208, 4, '2021-09-30 06:04:38', '2021-09-30 06:04:38'), (6209, 4, '2021-09-30 06:04:39', '2021-09-30 06:04:39'), (6210, 4, '2021-09-30 06:04:39', '2021-09-30 06:04:39'), (6211, 4, '2021-09-30 06:04:39', '2021-09-30 06:04:39'), (6212, 4, '2021-09-30 06:04:39', '2021-09-30 06:04:39'), (6213, 4, '2021-09-30 06:04:40', '2021-09-30 06:04:40'), (6214, 4, '2021-09-30 06:04:40', '2021-09-30 06:04:40'), (6215, 4, '2021-09-30 06:04:40', '2021-09-30 06:04:40'), (6216, 4, '2021-09-30 06:04:40', '2021-09-30 06:04:40'), (6217, 4, '2021-09-30 06:04:40', '2021-09-30 06:04:40'), (6218, 4, '2021-09-30 06:04:41', '2021-09-30 06:04:41'), (6219, 4, '2021-09-30 06:04:41', '2021-09-30 06:04:41'), (6220, 4, '2021-09-30 06:04:41', '2021-09-30 06:04:41'), (6221, 4, '2021-09-30 06:04:41', '2021-09-30 06:04:41'), (6222, 4, '2021-09-30 06:04:41', '2021-09-30 06:04:41'), (6223, 4, '2021-09-30 06:04:42', '2021-09-30 06:04:42'), (6224, 4, '2021-09-30 06:04:42', '2021-09-30 06:04:42'), (6225, 4, '2021-09-30 06:04:42', '2021-09-30 06:04:42'), (6226, 4, '2021-09-30 06:04:42', '2021-09-30 06:04:42'), (6227, 4, '2021-09-30 06:04:42', '2021-09-30 06:04:42'), (6228, 4, '2021-09-30 06:04:43', '2021-09-30 06:04:43'), (6229, 4, '2021-09-30 06:04:43', '2021-09-30 06:04:43'), (6230, 4, '2021-09-30 06:04:43', '2021-09-30 06:04:43'), (6231, 4, '2021-09-30 06:04:43', '2021-09-30 06:04:43'), (6232, 4, '2021-09-30 06:04:43', '2021-09-30 06:04:43'), (6233, 4, '2021-09-30 06:04:44', '2021-09-30 06:04:44'), (6234, 4, '2021-09-30 06:04:44', '2021-09-30 06:04:44'), (6235, 4, '2021-09-30 06:04:44', '2021-09-30 06:04:44'), (6236, 4, '2021-09-30 06:04:44', '2021-09-30 06:04:44'), (6237, 4, '2021-09-30 06:04:44', '2021-09-30 06:04:44'), (6238, 4, '2021-09-30 06:04:45', '2021-09-30 06:04:45'), (6239, 4, '2021-09-30 06:04:45', '2021-09-30 06:04:45'), (6240, 4, '2021-09-30 06:04:45', '2021-09-30 06:04:45'), (6241, 4, '2021-09-30 06:04:46', '2021-09-30 06:04:46'), (6242, 4, '2021-09-30 06:04:46', '2021-09-30 06:04:46'), (6243, 4, '2021-09-30 06:04:46', '2021-09-30 06:04:46'), (6244, 4, '2021-09-30 06:04:47', '2021-09-30 06:04:47'), (6245, 4, '2021-09-30 06:04:47', '2021-09-30 06:04:47'), (6246, 4, '2021-09-30 06:04:47', '2021-09-30 06:04:47'), (6247, 4, '2021-09-30 06:04:47', '2021-09-30 06:04:47'), (6248, 4, '2021-09-30 06:04:47', '2021-09-30 06:04:47'), (6249, 4, '2021-09-30 06:04:48', '2021-09-30 06:04:48'), (6250, 4, '2021-09-30 06:04:48', '2021-09-30 06:04:48'), (6251, 4, '2021-09-30 06:04:48', '2021-09-30 06:04:48'), (6252, 4, '2021-09-30 06:04:48', '2021-09-30 06:04:48'), (6253, 4, '2021-09-30 06:04:48', '2021-09-30 06:04:48'), (6254, 4, '2021-09-30 06:04:49', '2021-09-30 06:04:49'), (6255, 4, '2021-09-30 06:04:49', '2021-09-30 06:04:49'), (6256, 4, '2021-09-30 06:04:49', '2021-09-30 06:04:49'), (6257, 4, '2021-09-30 06:04:49', '2021-09-30 06:04:49'), (6258, 4, '2021-09-30 06:04:49', '2021-09-30 06:04:49'), (6259, 4, '2021-09-30 06:04:50', '2021-09-30 06:04:50'), (6260, 4, '2021-09-30 06:04:50', '2021-09-30 06:04:50'), (6261, 4, '2021-09-30 06:04:50', '2021-09-30 06:04:50'), (6262, 4, '2021-09-30 06:04:50', '2021-09-30 06:04:50'), (6263, 4, '2021-09-30 06:04:51', '2021-09-30 06:04:51'), (6264, 4, '2021-09-30 06:04:51', '2021-09-30 06:04:51'), (6265, 4, '2021-09-30 06:04:51', '2021-09-30 06:04:51'), (6266, 4, '2021-09-30 06:04:51', '2021-09-30 06:04:51'), (6267, 4, '2021-09-30 06:04:51', '2021-09-30 06:04:51'), (6268, 4, '2021-09-30 06:04:52', '2021-09-30 06:04:52'), (6269, 4, '2021-09-30 06:04:52', '2021-09-30 06:04:52'), (6270, 4, '2021-09-30 06:04:52', '2021-09-30 06:04:52'), (6271, 4, '2021-09-30 06:04:52', '2021-09-30 06:04:52'), (6272, 4, '2021-09-30 06:04:52', '2021-09-30 06:04:52'), (6273, 4, '2021-09-30 06:04:53', '2021-09-30 06:04:53'), (6274, 4, '2021-09-30 06:04:53', '2021-09-30 06:04:53'), (6275, 4, '2021-09-30 06:04:53', '2021-09-30 06:04:53'), (6276, 4, '2021-09-30 06:04:53', '2021-09-30 06:04:53'), (6277, 4, '2021-09-30 06:04:53', '2021-09-30 06:04:53'), (6278, 4, '2021-09-30 06:04:54', '2021-09-30 06:04:54'), (6279, 4, '2021-09-30 06:04:54', '2021-09-30 06:04:54'), (6280, 4, '2021-09-30 06:04:54', '2021-09-30 06:04:54'), (6281, 4, '2021-09-30 06:04:54', '2021-09-30 06:04:54'), (6282, 4, '2021-09-30 06:04:54', '2021-09-30 06:04:54'), (6283, 4, '2021-09-30 06:04:55', '2021-09-30 06:04:55'), (6284, 4, '2021-09-30 06:04:55', '2021-09-30 06:04:55'), (6285, 4, '2021-09-30 06:04:55', '2021-09-30 06:04:55'), (6286, 4, '2021-09-30 06:04:55', '2021-09-30 06:04:55'), (6287, 4, '2021-09-30 06:04:56', '2021-09-30 06:04:56'), (6288, 4, '2021-09-30 06:04:56', '2021-09-30 06:04:56'), (6289, 4, '2021-09-30 06:04:56', '2021-09-30 06:04:56'), (6290, 4, '2021-09-30 06:04:56', '2021-09-30 06:04:56'), (6291, 4, '2021-09-30 06:04:56', '2021-09-30 06:04:56'), (6292, 4, '2021-09-30 06:04:57', '2021-09-30 06:04:57'), (6293, 4, '2021-09-30 06:04:57', '2021-09-30 06:04:57'), (6294, 4, '2021-09-30 06:04:57', '2021-09-30 06:04:57'), (6295, 4, '2021-09-30 06:04:57', '2021-09-30 06:04:57'), (6296, 4, '2021-09-30 06:04:58', '2021-09-30 06:04:58'), (6297, 4, '2021-09-30 06:04:58', '2021-09-30 06:04:58'), (6298, 4, '2021-09-30 06:04:59', '2021-09-30 06:04:59'), (6299, 4, '2021-09-30 06:04:59', '2021-09-30 06:04:59'), (6300, 4, '2021-09-30 06:04:59', '2021-09-30 06:04:59'), (6301, 4, '2021-09-30 06:04:59', '2021-09-30 06:04:59'), (6302, 4, '2021-09-30 06:05:00', '2021-09-30 06:05:00'), (6303, 4, '2021-09-30 06:05:00', '2021-09-30 06:05:00'), (6304, 4, '2021-09-30 06:05:00', '2021-09-30 06:05:00'), (6305, 4, '2021-09-30 06:05:00', '2021-09-30 06:05:00'), (6306, 4, '2021-09-30 06:05:00', '2021-09-30 06:05:00'), (6307, 4, '2021-09-30 06:05:01', '2021-09-30 06:05:01'), (6308, 4, '2021-09-30 06:05:01', '2021-09-30 06:05:01'), (6309, 4, '2021-09-30 06:05:01', '2021-09-30 06:05:01'), (6310, 4, '2021-09-30 06:05:01', '2021-09-30 06:05:01'), (6311, 4, '2021-09-30 06:05:02', '2021-09-30 06:05:02'), (6312, 4, '2021-09-30 06:05:02', '2021-09-30 06:05:02'), (6313, 4, '2021-09-30 06:05:02', '2021-09-30 06:05:02'), (6314, 4, '2021-09-30 06:05:02', '2021-09-30 06:05:02'), (6315, 4, '2021-09-30 06:05:02', '2021-09-30 06:05:02'), (6316, 4, '2021-09-30 06:05:03', '2021-09-30 06:05:03'), (6317, 4, '2021-09-30 06:05:03', '2021-09-30 06:05:03'), (6318, 4, '2021-09-30 06:05:03', '2021-09-30 06:05:03'), (6319, 4, '2021-09-30 06:05:03', '2021-09-30 06:05:03'), (6320, 4, '2021-09-30 06:05:04', '2021-09-30 06:05:04'), (6321, 4, '2021-09-30 06:05:04', '2021-09-30 06:05:04'), (6322, 4, '2021-09-30 06:05:04', '2021-09-30 06:05:04'), (6323, 4, '2021-09-30 06:05:05', '2021-09-30 06:05:05'), (6324, 4, '2021-09-30 06:05:05', '2021-09-30 06:05:05'), (6325, 4, '2021-09-30 06:05:05', '2021-09-30 06:05:05'), (6326, 4, '2021-09-30 06:05:05', '2021-09-30 06:05:05'), (6327, 4, '2021-09-30 06:05:05', '2021-09-30 06:05:05'), (6328, 4, '2021-09-30 06:05:06', '2021-09-30 06:05:06'), (6329, 4, '2021-09-30 06:05:06', '2021-09-30 06:05:06'), (6330, 4, '2021-09-30 06:05:06', '2021-09-30 06:05:06'), (6331, 4, '2021-09-30 06:05:06', '2021-09-30 06:05:06'), (6332, 4, '2021-09-30 06:05:06', '2021-09-30 06:05:06'), (6333, 4, '2021-09-30 06:05:07', '2021-09-30 06:05:07'), (6334, 4, '2021-09-30 06:05:07', '2021-09-30 06:05:07'), (6335, 4, '2021-09-30 06:05:07', '2021-09-30 06:05:07'), (6336, 4, '2021-09-30 06:05:07', '2021-09-30 06:05:07'), (6337, 4, '2021-09-30 06:05:07', '2021-09-30 06:05:07'), (6338, 4, '2021-09-30 06:05:08', '2021-09-30 06:05:08'), (6339, 4, '2021-09-30 06:05:08', '2021-09-30 06:05:08'), (6340, 4, '2021-09-30 06:05:08', '2021-09-30 06:05:08'), (6341, 4, '2021-09-30 06:05:08', '2021-09-30 06:05:08'), (6342, 4, '2021-09-30 06:05:09', '2021-09-30 06:05:09'), (6343, 4, '2021-09-30 06:05:09', '2021-09-30 06:05:09'), (6344, 4, '2021-09-30 06:05:09', '2021-09-30 06:05:09'), (6345, 4, '2021-09-30 06:05:09', '2021-09-30 06:05:09'), (6346, 4, '2021-09-30 06:05:10', '2021-09-30 06:05:10'), (6347, 4, '2021-09-30 06:05:10', '2021-09-30 06:05:10'), (6348, 4, '2021-09-30 06:05:11', '2021-09-30 06:05:11'), (6349, 4, '2021-09-30 06:05:11', '2021-09-30 06:05:11'), (6350, 4, '2021-09-30 06:05:11', '2021-09-30 06:05:11'), (6351, 4, '2021-09-30 06:05:11', '2021-09-30 06:05:11'), (6352, 4, '2021-09-30 06:05:11', '2021-09-30 06:05:11'), (6353, 4, '2021-09-30 06:05:12', '2021-09-30 06:05:12'), (6354, 4, '2021-09-30 06:05:12', '2021-09-30 06:05:12'), (6355, 4, '2021-09-30 06:05:12', '2021-09-30 06:05:12'), (6356, 4, '2021-09-30 06:05:12', '2021-09-30 06:05:12'), (6357, 4, '2021-09-30 06:05:12', '2021-09-30 06:05:12'), (6358, 4, '2021-09-30 06:05:13', '2021-09-30 06:05:13'), (6359, 4, '2021-09-30 06:05:13', '2021-09-30 06:05:13'), (6360, 4, '2021-09-30 06:05:13', '2021-09-30 06:05:13'), (6361, 4, '2021-09-30 06:05:13', '2021-09-30 06:05:13'), (6362, 4, '2021-09-30 06:05:13', '2021-09-30 06:05:13'), (6363, 4, '2021-09-30 06:05:14', '2021-09-30 06:05:14'), (6364, 4, '2021-09-30 06:05:14', '2021-09-30 06:05:14'), (6365, 4, '2021-09-30 06:05:14', '2021-09-30 06:05:14'), (6366, 4, '2021-09-30 06:05:14', '2021-09-30 06:05:14'), (6367, 4, '2021-09-30 06:05:14', '2021-09-30 06:05:14'), (6368, 4, '2021-09-30 06:05:15', '2021-09-30 06:05:15'), (6369, 4, '2021-09-30 06:05:15', '2021-09-30 06:05:15'), (6370, 4, '2021-09-30 06:05:15', '2021-09-30 06:05:15'), (6371, 4, '2021-09-30 06:05:15', '2021-09-30 06:05:15'), (6372, 4, '2021-09-30 06:05:15', '2021-09-30 06:05:15'), (6373, 4, '2021-09-30 06:05:16', '2021-09-30 06:05:16'), (6374, 4, '2021-09-30 06:05:16', '2021-09-30 06:05:16'), (6375, 4, '2021-09-30 06:05:16', '2021-09-30 06:05:16'), (6376, 4, '2021-09-30 06:05:16', '2021-09-30 06:05:16'), (6377, 4, '2021-09-30 06:05:17', '2021-09-30 06:05:17'), (6378, 4, '2021-09-30 06:05:17', '2021-09-30 06:05:17'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (6379, 4, '2021-09-30 06:05:17', '2021-09-30 06:05:17'), (6380, 4, '2021-09-30 06:05:17', '2021-09-30 06:05:17'), (6381, 4, '2021-09-30 06:05:17', '2021-09-30 06:05:17'), (6382, 4, '2021-09-30 06:05:18', '2021-09-30 06:05:18'), (6383, 4, '2021-09-30 06:05:18', '2021-09-30 06:05:18'), (6384, 4, '2021-09-30 06:05:18', '2021-09-30 06:05:18'), (6385, 4, '2021-09-30 06:05:18', '2021-09-30 06:05:18'), (6386, 4, '2021-09-30 06:05:19', '2021-09-30 06:05:19'), (6387, 4, '2021-09-30 06:05:19', '2021-09-30 06:05:19'), (6388, 4, '2021-09-30 06:05:19', '2021-09-30 06:05:19'), (6389, 4, '2021-09-30 06:05:19', '2021-09-30 06:05:19'), (6390, 4, '2021-09-30 06:05:20', '2021-09-30 06:05:20'), (6391, 4, '2021-09-30 06:05:20', '2021-09-30 06:05:20'), (6392, 4, '2021-09-30 06:05:20', '2021-09-30 06:05:20'), (6393, 4, '2021-09-30 06:05:20', '2021-09-30 06:05:20'), (6394, 4, '2021-09-30 06:05:20', '2021-09-30 06:05:20'), (6395, 4, '2021-09-30 06:05:21', '2021-09-30 06:05:21'), (6396, 4, '2021-09-30 06:05:21', '2021-09-30 06:05:21'), (6397, 4, '2021-09-30 06:05:21', '2021-09-30 06:05:21'), (6398, 4, '2021-09-30 06:05:21', '2021-09-30 06:05:21'), (6399, 4, '2021-09-30 06:05:22', '2021-09-30 06:05:22'), (6400, 4, '2021-09-30 06:05:22', '2021-09-30 06:05:22'), (6401, 4, '2021-09-30 06:05:22', '2021-09-30 06:05:22'), (6402, 4, '2021-09-30 06:05:22', '2021-09-30 06:05:22'), (6403, 4, '2021-09-30 06:05:23', '2021-09-30 06:05:23'), (6404, 4, '2021-09-30 06:05:23', '2021-09-30 06:05:23'), (6405, 4, '2021-09-30 06:05:23', '2021-09-30 06:05:23'), (6406, 4, '2021-09-30 06:05:24', '2021-09-30 06:05:24'), (6407, 4, '2021-09-30 06:05:24', '2021-09-30 06:05:24'), (6408, 4, '2021-09-30 06:05:24', '2021-09-30 06:05:24'), (6409, 4, '2021-09-30 06:05:24', '2021-09-30 06:05:24'), (6410, 4, '2021-09-30 06:05:25', '2021-09-30 06:05:25'), (6411, 4, '2021-09-30 06:05:25', '2021-09-30 06:05:25'), (6412, 4, '2021-09-30 06:05:25', '2021-09-30 06:05:25'), (6413, 4, '2021-09-30 06:05:25', '2021-09-30 06:05:25'), (6414, 4, '2021-09-30 06:05:26', '2021-09-30 06:05:26'), (6415, 4, '2021-09-30 06:05:26', '2021-09-30 06:05:26'), (6416, 4, '2021-09-30 06:05:26', '2021-09-30 06:05:26'), (6417, 4, '2021-09-30 06:05:26', '2021-09-30 06:05:26'), (6418, 4, '2021-09-30 06:05:27', '2021-09-30 06:05:27'), (6419, 4, '2021-09-30 06:05:27', '2021-09-30 06:05:27'), (6420, 4, '2021-09-30 06:05:27', '2021-09-30 06:05:27'), (6421, 4, '2021-09-30 06:05:27', '2021-09-30 06:05:27'), (6422, 4, '2021-09-30 06:05:28', '2021-09-30 06:05:28'), (6423, 4, '2021-09-30 06:05:28', '2021-09-30 06:05:28'), (6424, 4, '2021-09-30 06:05:28', '2021-09-30 06:05:28'), (6425, 4, '2021-09-30 06:05:28', '2021-09-30 06:05:28'), (6426, 4, '2021-09-30 06:05:29', '2021-09-30 06:05:29'), (6427, 4, '2021-09-30 06:05:29', '2021-09-30 06:05:29'), (6428, 4, '2021-09-30 06:05:29', '2021-09-30 06:05:29'), (6429, 4, '2021-09-30 06:05:30', '2021-09-30 06:05:30'), (6430, 4, '2021-09-30 06:05:30', '2021-09-30 06:05:30'), (6431, 4, '2021-09-30 06:05:30', '2021-09-30 06:05:30'), (6432, 4, '2021-09-30 06:05:30', '2021-09-30 06:05:30'), (6433, 4, '2021-09-30 06:05:31', '2021-09-30 06:05:31'), (6434, 4, '2021-09-30 06:05:31', '2021-09-30 06:05:31'), (6435, 4, '2021-09-30 06:05:31', '2021-09-30 06:05:31'), (6436, 4, '2021-09-30 06:05:31', '2021-09-30 06:05:31'), (6437, 4, '2021-09-30 06:05:32', '2021-09-30 06:05:32'), (6438, 4, '2021-09-30 06:05:32', '2021-09-30 06:05:32'), (6439, 4, '2021-09-30 06:05:32', '2021-09-30 06:05:32'), (6440, 4, '2021-09-30 06:05:32', '2021-09-30 06:05:32'), (6441, 4, '2021-09-30 06:05:34', '2021-09-30 06:05:34'), (6442, 4, '2021-09-30 06:05:34', '2021-09-30 06:05:34'), (6443, 4, '2021-09-30 06:05:34', '2021-09-30 06:05:34'), (6444, 4, '2021-09-30 06:05:34', '2021-09-30 06:05:34'), (6445, 4, '2021-09-30 06:05:35', '2021-09-30 06:05:35'), (6446, 4, '2021-09-30 06:05:35', '2021-09-30 06:05:35'), (6447, 4, '2021-09-30 06:05:35', '2021-09-30 06:05:35'), (6448, 4, '2021-09-30 06:05:35', '2021-09-30 06:05:35'), (6449, 4, '2021-09-30 06:05:36', '2021-09-30 06:05:36'), (6450, 4, '2021-09-30 06:05:36', '2021-09-30 06:05:36'), (6451, 4, '2021-09-30 06:05:36', '2021-09-30 06:05:36'), (6452, 4, '2021-09-30 06:05:36', '2021-09-30 06:05:36'), (6453, 4, '2021-09-30 06:05:36', '2021-09-30 06:05:36'), (6454, 4, '2021-09-30 06:05:36', '2021-09-30 06:05:36'), (6455, 4, '2021-09-30 06:05:37', '2021-09-30 06:05:37'), (6456, 4, '2021-09-30 06:05:37', '2021-09-30 06:05:37'), (6457, 4, '2021-09-30 06:05:37', '2021-09-30 06:05:37'), (6458, 4, '2021-09-30 06:05:37', '2021-09-30 06:05:37'), (6459, 4, '2021-09-30 06:05:38', '2021-09-30 06:05:38'), (6460, 4, '2021-09-30 06:05:38', '2021-09-30 06:05:38'), (6461, 4, '2021-09-30 06:05:38', '2021-09-30 06:05:38'), (6462, 4, '2021-09-30 06:05:38', '2021-09-30 06:05:38'), (6463, 4, '2021-09-30 06:05:39', '2021-09-30 06:05:39'), (6464, 4, '2021-09-30 06:05:39', '2021-09-30 06:05:39'), (6465, 4, '2021-09-30 06:05:39', '2021-09-30 06:05:39'), (6466, 4, '2021-09-30 06:05:39', '2021-09-30 06:05:39'), (6467, 4, '2021-09-30 06:05:39', '2021-09-30 06:05:39'), (6468, 4, '2021-09-30 06:05:40', '2021-09-30 06:05:40'), (6469, 4, '2021-09-30 06:05:40', '2021-09-30 06:05:40'), (6470, 4, '2021-09-30 06:05:40', '2021-09-30 06:05:40'), (6471, 4, '2021-09-30 06:05:40', '2021-09-30 06:05:40'), (6472, 4, '2021-09-30 06:05:41', '2021-09-30 06:05:41'), (6473, 4, '2021-09-30 06:05:41', '2021-09-30 06:05:41'), (6474, 4, '2021-09-30 06:05:41', '2021-09-30 06:05:41'), (6475, 4, '2021-09-30 06:05:41', '2021-09-30 06:05:41'), (6476, 4, '2021-09-30 06:05:42', '2021-09-30 06:05:42'), (6477, 4, '2021-09-30 06:05:42', '2021-09-30 06:05:42'), (6478, 4, '2021-09-30 06:05:42', '2021-09-30 06:05:42'), (6479, 4, '2021-09-30 06:05:42', '2021-09-30 06:05:42'), (6480, 4, '2021-09-30 06:05:42', '2021-09-30 06:05:42'), (6481, 4, '2021-09-30 06:05:43', '2021-09-30 06:05:43'), (6482, 4, '2021-09-30 06:05:43', '2021-09-30 06:05:43'), (6483, 4, '2021-09-30 06:05:43', '2021-09-30 06:05:43'), (6484, 4, '2021-09-30 06:05:43', '2021-09-30 06:05:43'), (6485, 4, '2021-09-30 06:05:43', '2021-09-30 06:05:43'), (6486, 4, '2021-09-30 06:05:44', '2021-09-30 06:05:44'), (6487, 4, '2021-09-30 06:05:44', '2021-09-30 06:05:44'), (6488, 4, '2021-09-30 06:05:44', '2021-09-30 06:05:44'), (6489, 4, '2021-09-30 06:05:44', '2021-09-30 06:05:44'), (6490, 4, '2021-09-30 06:05:44', '2021-09-30 06:05:44'), (6491, 4, '2021-09-30 06:05:45', '2021-09-30 06:05:45'), (6492, 4, '2021-09-30 06:05:45', '2021-09-30 06:05:45'), (6493, 4, '2021-09-30 06:05:45', '2021-09-30 06:05:45'), (6494, 4, '2021-09-30 06:05:45', '2021-09-30 06:05:45'), (6495, 4, '2021-09-30 06:05:45', '2021-09-30 06:05:45'), (6496, 4, '2021-09-30 06:05:46', '2021-09-30 06:05:46'), (6497, 4, '2021-09-30 06:05:46', '2021-09-30 06:05:46'), (6498, 4, '2021-09-30 06:05:46', '2021-09-30 06:05:46'), (6499, 4, '2021-09-30 06:05:46', '2021-09-30 06:05:46'), (6500, 4, '2021-09-30 06:05:46', '2021-09-30 06:05:46'), (6501, 4, '2021-09-30 06:05:47', '2021-09-30 06:05:47'), (6502, 4, '2021-09-30 06:05:47', '2021-09-30 06:05:47'), (6503, 4, '2021-09-30 06:05:47', '2021-09-30 06:05:47'), (6504, 4, '2021-09-30 06:05:48', '2021-09-30 06:05:48'), (6505, 4, '2021-09-30 06:05:48', '2021-09-30 06:05:48'), (6506, 4, '2021-09-30 06:05:48', '2021-09-30 06:05:48'), (6507, 4, '2021-09-30 06:05:48', '2021-09-30 06:05:48'), (6508, 4, '2021-09-30 06:05:48', '2021-09-30 06:05:48'), (6509, 4, '2021-09-30 06:05:49', '2021-09-30 06:05:49'), (6510, 4, '2021-09-30 06:05:49', '2021-09-30 06:05:49'), (6511, 4, '2021-09-30 06:05:49', '2021-09-30 06:05:49'), (6512, 4, '2021-09-30 06:05:49', '2021-09-30 06:05:49'), (6513, 4, '2021-09-30 06:05:50', '2021-09-30 06:05:50'), (6514, 4, '2021-09-30 06:05:50', '2021-09-30 06:05:50'), (6515, 4, '2021-09-30 06:05:50', '2021-09-30 06:05:50'), (6516, 4, '2021-09-30 06:05:50', '2021-09-30 06:05:50'), (6517, 4, '2021-09-30 06:05:50', '2021-09-30 06:05:50'), (6518, 4, '2021-09-30 06:05:51', '2021-09-30 06:05:51'), (6519, 4, '2021-09-30 06:05:51', '2021-09-30 06:05:51'), (6520, 4, '2021-09-30 06:05:51', '2021-09-30 06:05:51'), (6521, 4, '2021-09-30 06:05:51', '2021-09-30 06:05:51'), (6522, 4, '2021-09-30 06:05:52', '2021-09-30 06:05:52'), (6523, 4, '2021-09-30 06:05:52', '2021-09-30 06:05:52'), (6524, 4, '2021-09-30 06:05:52', '2021-09-30 06:05:52'), (6525, 4, '2021-09-30 06:05:52', '2021-09-30 06:05:52'), (6526, 4, '2021-09-30 06:05:52', '2021-09-30 06:05:52'), (6527, 4, '2021-09-30 06:05:53', '2021-09-30 06:05:53'), (6528, 4, '2021-09-30 06:05:54', '2021-09-30 06:05:54'), (6529, 4, '2021-09-30 06:05:54', '2021-09-30 06:05:54'), (6530, 4, '2021-09-30 06:05:54', '2021-09-30 06:05:54'), (6531, 4, '2021-09-30 06:05:55', '2021-09-30 06:05:55'), (6532, 4, '2021-09-30 06:05:55', '2021-09-30 06:05:55'), (6533, 4, '2021-09-30 06:05:55', '2021-09-30 06:05:55'), (6534, 4, '2021-09-30 06:05:55', '2021-09-30 06:05:55'), (6535, 4, '2021-09-30 06:05:56', '2021-09-30 06:05:56'), (6536, 4, '2021-09-30 06:05:56', '2021-09-30 06:05:56'), (6537, 4, '2021-09-30 06:05:56', '2021-09-30 06:05:56'), (6538, 4, '2021-09-30 06:05:56', '2021-09-30 06:05:56'), (6539, 4, '2021-09-30 06:05:57', '2021-09-30 06:05:57'), (6540, 4, '2021-09-30 06:05:57', '2021-09-30 06:05:57'), (6541, 4, '2021-09-30 06:05:57', '2021-09-30 06:05:57'), (6542, 4, '2021-09-30 06:05:57', '2021-09-30 06:05:57'), (6543, 4, '2021-09-30 06:05:58', '2021-09-30 06:05:58'), (6544, 4, '2021-09-30 06:05:58', '2021-09-30 06:05:58'), (6545, 4, '2021-09-30 06:05:58', '2021-09-30 06:05:58'), (6546, 4, '2021-09-30 06:05:58', '2021-09-30 06:05:58'), (6547, 4, '2021-09-30 06:05:59', '2021-09-30 06:05:59'), (6548, 4, '2021-09-30 06:05:59', '2021-09-30 06:05:59'), (6549, 4, '2021-09-30 06:05:59', '2021-09-30 06:05:59'), (6550, 4, '2021-09-30 06:05:59', '2021-09-30 06:05:59'), (6551, 4, '2021-09-30 06:06:00', '2021-09-30 06:06:00'), (6552, 4, '2021-09-30 06:06:22', '2021-09-30 06:06:22'), (6553, 4, '2021-09-30 06:06:22', '2021-09-30 06:06:22'), (6554, 4, '2021-09-30 06:06:23', '2021-09-30 06:06:23'), (6555, 4, '2021-09-30 06:06:23', '2021-09-30 06:06:23'), (6556, 4, '2021-09-30 06:06:23', '2021-09-30 06:06:23'), (6557, 4, '2021-09-30 06:06:23', '2021-09-30 06:06:23'), (6558, 4, '2021-09-30 06:06:24', '2021-09-30 06:06:24'), (6559, 4, '2021-09-30 06:06:24', '2021-09-30 06:06:24'), (6560, 4, '2021-09-30 06:06:25', '2021-09-30 06:06:25'), (6561, 4, '2021-09-30 06:06:26', '2021-09-30 06:06:26'), (6562, 4, '2021-09-30 06:06:26', '2021-09-30 06:06:26'), (6563, 4, '2021-09-30 06:06:26', '2021-09-30 06:06:26'), (6564, 4, '2021-09-30 06:06:26', '2021-09-30 06:06:26'), (6565, 4, '2021-09-30 06:06:26', '2021-09-30 06:06:26'), (6566, 4, '2021-09-30 06:06:27', '2021-09-30 06:06:27'), (6567, 4, '2021-09-30 06:06:27', '2021-09-30 06:06:27'), (6568, 4, '2021-09-30 06:06:27', '2021-09-30 06:06:27'), (6569, 4, '2021-09-30 06:06:27', '2021-09-30 06:06:27'), (6570, 4, '2021-09-30 06:06:27', '2021-09-30 06:06:27'), (6571, 4, '2021-09-30 06:06:28', '2021-09-30 06:06:28'), (6572, 4, '2021-09-30 06:06:28', '2021-09-30 06:06:28'), (6573, 4, '2021-09-30 06:06:28', '2021-09-30 06:06:28'), (6574, 4, '2021-09-30 06:06:28', '2021-09-30 06:06:28'), (6575, 4, '2021-09-30 06:06:28', '2021-09-30 06:06:28'), (6576, 4, '2021-09-30 06:06:28', '2021-09-30 06:06:28'), (6577, 4, '2021-09-30 06:06:29', '2021-09-30 06:06:29'), (6578, 4, '2021-09-30 06:06:29', '2021-09-30 06:06:29'), (6579, 4, '2021-09-30 06:06:29', '2021-09-30 06:06:29'), (6580, 4, '2021-09-30 06:06:29', '2021-09-30 06:06:29'), (6581, 4, '2021-09-30 06:06:29', '2021-09-30 06:06:29'), (6582, 4, '2021-09-30 06:06:30', '2021-09-30 06:06:30'), (6583, 4, '2021-09-30 06:06:30', '2021-09-30 06:06:30'), (6584, 4, '2021-09-30 06:06:30', '2021-09-30 06:06:30'), (6585, 4, '2021-09-30 06:06:31', '2021-09-30 06:06:31'), (6586, 4, '2021-09-30 06:06:31', '2021-09-30 06:06:31'), (6587, 4, '2021-09-30 06:06:31', '2021-09-30 06:06:31'), (6588, 4, '2021-09-30 06:06:31', '2021-09-30 06:06:31'), (6589, 4, '2021-09-30 06:06:31', '2021-09-30 06:06:31'), (6590, 4, '2021-09-30 06:06:32', '2021-09-30 06:06:32'), (6591, 4, '2021-09-30 06:06:32', '2021-09-30 06:06:32'), (6592, 4, '2021-09-30 06:06:32', '2021-09-30 06:06:32'), (6593, 4, '2021-09-30 06:06:32', '2021-09-30 06:06:32'), (6594, 4, '2021-09-30 06:06:32', '2021-09-30 06:06:32'), (6595, 4, '2021-09-30 06:06:33', '2021-09-30 06:06:33'), (6596, 4, '2021-09-30 06:06:33', '2021-09-30 06:06:33'), (6597, 4, '2021-09-30 06:06:33', '2021-09-30 06:06:33'), (6598, 4, '2021-09-30 06:06:33', '2021-09-30 06:06:33'), (6599, 4, '2021-09-30 06:06:33', '2021-09-30 06:06:33'), (6600, 4, '2021-10-01 06:06:44', '2021-10-01 06:06:44'), (6601, 4, '2021-10-01 06:06:46', '2021-10-01 06:06:46'), (6602, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6603, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6604, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6605, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6606, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6607, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6608, 4, '2021-10-01 06:06:47', '2021-10-01 06:06:47'), (6609, 4, '2021-10-01 06:06:48', '2021-10-01 06:06:48'), (6610, 4, '2021-10-01 06:06:48', '2021-10-01 06:06:48'), (6611, 4, '2021-10-01 06:06:48', '2021-10-01 06:06:48'), (6612, 4, '2021-10-01 06:06:48', '2021-10-01 06:06:48'), (6613, 4, '2021-10-01 06:06:48', '2021-10-01 06:06:48'), (6614, 4, '2021-10-01 06:06:49', '2021-10-01 06:06:49'), (6615, 4, '2021-10-01 06:06:49', '2021-10-01 06:06:49'), (6616, 4, '2021-10-01 06:06:49', '2021-10-01 06:06:49'), (6617, 4, '2021-10-01 06:06:49', '2021-10-01 06:06:49'), (6618, 4, '2021-10-01 06:06:49', '2021-10-01 06:06:49'), (6619, 4, '2021-10-01 06:06:49', '2021-10-01 06:06:49'), (6620, 4, '2021-10-01 06:06:50', '2021-10-01 06:06:50'), (6621, 4, '2021-10-01 06:06:50', '2021-10-01 06:06:50'), (6622, 4, '2021-10-01 06:06:50', '2021-10-01 06:06:50'), (6623, 4, '2021-10-01 06:06:50', '2021-10-01 06:06:50'), (6624, 4, '2021-10-01 06:06:50', '2021-10-01 06:06:50'), (6625, 4, '2021-10-01 06:06:50', '2021-10-01 06:06:50'), (6626, 4, '2021-10-01 06:06:51', '2021-10-01 06:06:51'), (6627, 4, '2021-10-01 06:06:51', '2021-10-01 06:06:51'), (6628, 4, '2021-10-01 06:06:51', '2021-10-01 06:06:51'), (6629, 4, '2021-10-01 06:06:51', '2021-10-01 06:06:51'), (6630, 4, '2021-10-01 06:06:51', '2021-10-01 06:06:51'), (6631, 4, '2021-10-01 06:06:52', '2021-10-01 06:06:52'), (6632, 4, '2021-10-01 06:06:52', '2021-10-01 06:06:52'), (6633, 4, '2021-10-01 06:06:52', '2021-10-01 06:06:52'), (6634, 4, '2021-10-01 06:06:52', '2021-10-01 06:06:52'), (6635, 4, '2021-10-01 06:06:52', '2021-10-01 06:06:52'), (6636, 4, '2021-10-01 06:06:52', '2021-10-01 06:06:52'), (6637, 4, '2021-10-01 06:06:53', '2021-10-01 06:06:53'), (6638, 4, '2021-10-01 06:06:53', '2021-10-01 06:06:53'), (6639, 4, '2021-10-01 06:06:53', '2021-10-01 06:06:53'), (6640, 4, '2021-10-01 06:06:53', '2021-10-01 06:06:53'), (6641, 4, '2021-10-01 06:06:53', '2021-10-01 06:06:53'), (6642, 4, '2021-10-01 06:06:54', '2021-10-01 06:06:54'), (6643, 4, '2021-10-01 06:06:54', '2021-10-01 06:06:54'), (6644, 4, '2021-10-01 06:06:54', '2021-10-01 06:06:54'), (6645, 4, '2021-10-01 06:06:54', '2021-10-01 06:06:54'), (6646, 4, '2021-10-01 06:06:55', '2021-10-01 06:06:55'), (6647, 4, '2021-10-01 06:06:55', '2021-10-01 06:06:55'), (6648, 4, '2021-10-01 06:06:55', '2021-10-01 06:06:55'), (6649, 4, '2021-10-01 06:06:55', '2021-10-01 06:06:55'), (6650, 4, '2021-10-01 06:06:56', '2021-10-01 06:06:56'), (6651, 4, '2021-10-01 06:06:56', '2021-10-01 06:06:56'), (6652, 4, '2021-10-01 06:06:56', '2021-10-01 06:06:56'), (6653, 4, '2021-10-01 06:06:56', '2021-10-01 06:06:56'), (6654, 4, '2021-10-01 06:06:56', '2021-10-01 06:06:56'), (6655, 4, '2021-10-01 06:06:57', '2021-10-01 06:06:57'), (6656, 4, '2021-10-01 06:06:57', '2021-10-01 06:06:57'), (6657, 4, '2021-10-01 06:06:57', '2021-10-01 06:06:57'), (6658, 4, '2021-10-01 06:06:57', '2021-10-01 06:06:57'), (6659, 4, '2021-10-01 06:06:57', '2021-10-01 06:06:57'), (6660, 4, '2021-10-01 06:06:58', '2021-10-01 06:06:58'), (6661, 4, '2021-10-01 06:06:58', '2021-10-01 06:06:58'), (6662, 4, '2021-10-01 06:06:58', '2021-10-01 06:06:58'), (6663, 4, '2021-10-01 06:06:58', '2021-10-01 06:06:58'), (6664, 4, '2021-10-01 06:06:59', '2021-10-01 06:06:59'), (6665, 4, '2021-10-01 06:06:59', '2021-10-01 06:06:59'), (6666, 4, '2021-10-01 06:06:59', '2021-10-01 06:06:59'), (6667, 4, '2021-10-01 06:06:59', '2021-10-01 06:06:59'), (6668, 4, '2021-10-01 06:06:59', '2021-10-01 06:06:59'), (6669, 4, '2021-10-01 06:06:59', '2021-10-01 06:06:59'), (6670, 4, '2021-10-01 06:07:00', '2021-10-01 06:07:00'), (6671, 4, '2021-10-01 06:07:00', '2021-10-01 06:07:00'), (6672, 4, '2021-10-01 06:07:00', '2021-10-01 06:07:00'), (6673, 4, '2021-10-01 06:07:00', '2021-10-01 06:07:00'), (6674, 4, '2021-10-01 06:07:01', '2021-10-01 06:07:01'), (6675, 4, '2021-10-01 06:07:01', '2021-10-01 06:07:01'), (6676, 4, '2021-10-01 06:07:01', '2021-10-01 06:07:01'), (6677, 4, '2021-10-01 06:07:02', '2021-10-01 06:07:02'), (6678, 4, '2021-10-01 06:07:02', '2021-10-01 06:07:02'), (6679, 4, '2021-10-01 06:07:02', '2021-10-01 06:07:02'), (6680, 4, '2021-10-01 06:07:02', '2021-10-01 06:07:02'), (6681, 4, '2021-10-01 06:07:02', '2021-10-01 06:07:02'), (6682, 4, '2021-10-01 06:07:02', '2021-10-01 06:07:02'), (6683, 4, '2021-10-01 06:07:03', '2021-10-01 06:07:03'), (6684, 4, '2021-10-01 06:07:03', '2021-10-01 06:07:03'), (6685, 4, '2021-10-01 06:07:03', '2021-10-01 06:07:03'), (6686, 4, '2021-10-01 06:07:03', '2021-10-01 06:07:03'), (6687, 4, '2021-10-01 06:07:03', '2021-10-01 06:07:03'), (6688, 4, '2021-10-01 06:07:04', '2021-10-01 06:07:04'), (6689, 4, '2021-10-01 06:07:04', '2021-10-01 06:07:04'), (6690, 4, '2021-10-01 06:07:04', '2021-10-01 06:07:04'), (6691, 4, '2021-10-01 06:07:04', '2021-10-01 06:07:04'), (6692, 4, '2021-10-01 06:07:04', '2021-10-01 06:07:04'), (6693, 4, '2021-10-01 06:07:05', '2021-10-01 06:07:05'), (6694, 4, '2021-10-01 06:07:05', '2021-10-01 06:07:05'), (6695, 4, '2021-10-01 06:07:05', '2021-10-01 06:07:05'), (6696, 4, '2021-10-01 06:07:05', '2021-10-01 06:07:05'), (6697, 4, '2021-10-01 06:07:05', '2021-10-01 06:07:05'), (6698, 4, '2021-10-01 06:07:06', '2021-10-01 06:07:06'), (6699, 4, '2021-10-01 06:07:06', '2021-10-01 06:07:06'), (6700, 4, '2021-10-01 06:07:06', '2021-10-01 06:07:06'), (6701, 4, '2021-10-01 06:07:06', '2021-10-01 06:07:06'), (6702, 4, '2021-10-01 06:07:06', '2021-10-01 06:07:06'), (6703, 4, '2021-10-01 06:07:07', '2021-10-01 06:07:07'), (6704, 4, '2021-10-01 06:07:07', '2021-10-01 06:07:07'), (6705, 4, '2021-10-01 06:07:07', '2021-10-01 06:07:07'), (6706, 4, '2021-10-01 06:07:07', '2021-10-01 06:07:07'), (6707, 4, '2021-10-01 06:07:07', '2021-10-01 06:07:07'), (6708, 4, '2021-10-01 06:07:08', '2021-10-01 06:07:08'), (6709, 4, '2021-10-01 06:07:08', '2021-10-01 06:07:08'), (6710, 4, '2021-10-01 06:07:08', '2021-10-01 06:07:08'), (6711, 4, '2021-10-01 06:07:08', '2021-10-01 06:07:08'), (6712, 4, '2021-10-01 06:07:08', '2021-10-01 06:07:08'), (6713, 4, '2021-10-01 06:07:09', '2021-10-01 06:07:09'), (6714, 4, '2021-10-01 06:07:09', '2021-10-01 06:07:09'), (6715, 4, '2021-10-01 06:07:09', '2021-10-01 06:07:09'), (6716, 4, '2021-10-01 06:07:09', '2021-10-01 06:07:09'), (6717, 4, '2021-10-01 06:07:09', '2021-10-01 06:07:09'), (6718, 4, '2021-10-01 06:07:10', '2021-10-01 06:07:10'), (6719, 4, '2021-10-01 06:07:10', '2021-10-01 06:07:10'), (6720, 4, '2021-10-01 06:07:10', '2021-10-01 06:07:10'), (6721, 4, '2021-10-01 06:07:10', '2021-10-01 06:07:10'), (6722, 4, '2021-10-01 06:07:10', '2021-10-01 06:07:10'), (6723, 4, '2021-10-01 06:07:11', '2021-10-01 06:07:11'), (6724, 4, '2021-10-01 06:07:11', '2021-10-01 06:07:11'), (6725, 4, '2021-10-01 06:07:11', '2021-10-01 06:07:11'), (6726, 4, '2021-10-01 06:07:11', '2021-10-01 06:07:11'), (6727, 4, '2021-10-01 06:07:11', '2021-10-01 06:07:11'), (6728, 4, '2021-10-01 06:07:11', '2021-10-01 06:07:11'), (6729, 4, '2021-10-01 06:07:12', '2021-10-01 06:07:12'), (6730, 4, '2021-10-01 06:07:12', '2021-10-01 06:07:12'), (6731, 4, '2021-10-01 06:07:12', '2021-10-01 06:07:12'), (6732, 4, '2021-10-01 06:07:12', '2021-10-01 06:07:12'), (6733, 4, '2021-10-01 06:07:13', '2021-10-01 06:07:13'), (6734, 4, '2021-10-01 06:07:13', '2021-10-01 06:07:13'), (6735, 4, '2021-10-01 06:07:13', '2021-10-01 06:07:13'), (6736, 4, '2021-10-01 06:07:13', '2021-10-01 06:07:13'), (6737, 4, '2021-10-01 06:07:14', '2021-10-01 06:07:14'), (6738, 4, '2021-10-01 06:07:14', '2021-10-01 06:07:14'), (6739, 4, '2021-10-01 06:07:14', '2021-10-01 06:07:14'), (6740, 4, '2021-10-01 06:07:14', '2021-10-01 06:07:14'), (6741, 4, '2021-10-01 06:07:14', '2021-10-01 06:07:14'), (6742, 4, '2021-10-01 06:07:15', '2021-10-01 06:07:15'), (6743, 4, '2021-10-01 06:07:15', '2021-10-01 06:07:15'), (6744, 4, '2021-10-01 06:07:15', '2021-10-01 06:07:15'), (6745, 4, '2021-10-01 06:07:15', '2021-10-01 06:07:15'), (6746, 4, '2021-10-01 06:07:15', '2021-10-01 06:07:15'), (6747, 4, '2021-10-01 06:07:16', '2021-10-01 06:07:16'), (6748, 4, '2021-10-01 06:07:16', '2021-10-01 06:07:16'), (6749, 4, '2021-10-01 06:07:16', '2021-10-01 06:07:16'), (6750, 4, '2021-10-01 06:07:17', '2021-10-01 06:07:17'), (6751, 4, '2021-10-01 06:07:17', '2021-10-01 06:07:17'), (6752, 4, '2021-10-01 06:07:17', '2021-10-01 06:07:17'), (6753, 4, '2021-10-01 06:07:17', '2021-10-01 06:07:17'), (6754, 4, '2021-10-01 06:07:17', '2021-10-01 06:07:17'), (6755, 4, '2021-10-01 06:07:18', '2021-10-01 06:07:18'), (6756, 4, '2021-10-01 06:07:18', '2021-10-01 06:07:18'), (6757, 4, '2021-10-01 06:07:18', '2021-10-01 06:07:18'), (6758, 4, '2021-10-01 06:07:18', '2021-10-01 06:07:18'), (6759, 4, '2021-10-01 06:07:18', '2021-10-01 06:07:18'), (6760, 4, '2021-10-01 06:07:19', '2021-10-01 06:07:19'), (6761, 4, '2021-10-01 06:07:19', '2021-10-01 06:07:19'), (6762, 4, '2021-10-01 06:07:19', '2021-10-01 06:07:19'), (6763, 4, '2021-10-01 06:07:19', '2021-10-01 06:07:19'), (6764, 4, '2021-10-01 06:07:19', '2021-10-01 06:07:19'), (6765, 4, '2021-10-01 06:07:20', '2021-10-01 06:07:20'), (6766, 4, '2021-10-01 06:07:20', '2021-10-01 06:07:20'), (6767, 4, '2021-10-01 06:07:20', '2021-10-01 06:07:20'), (6768, 4, '2021-10-01 06:07:20', '2021-10-01 06:07:20'), (6769, 4, '2021-10-01 06:07:20', '2021-10-01 06:07:20'), (6770, 4, '2021-10-01 06:07:21', '2021-10-01 06:07:21'), (6771, 4, '2021-10-01 06:07:21', '2021-10-01 06:07:21'), (6772, 4, '2021-10-01 06:07:21', '2021-10-01 06:07:21'), (6773, 4, '2021-10-01 06:07:21', '2021-10-01 06:07:21'), (6774, 4, '2021-10-01 06:07:21', '2021-10-01 06:07:21'), (6775, 4, '2021-10-01 06:07:22', '2021-10-01 06:07:22'), (6776, 4, '2021-10-01 06:07:22', '2021-10-01 06:07:22'), (6777, 4, '2021-10-01 06:07:22', '2021-10-01 06:07:22'), (6778, 4, '2021-10-01 06:07:22', '2021-10-01 06:07:22'), (6779, 4, '2021-10-01 06:07:22', '2021-10-01 06:07:22'), (6780, 4, '2021-10-01 06:07:23', '2021-10-01 06:07:23'), (6781, 4, '2021-10-01 06:07:23', '2021-10-01 06:07:23'), (6782, 4, '2021-10-01 06:07:23', '2021-10-01 06:07:23'), (6783, 4, '2021-10-01 06:07:23', '2021-10-01 06:07:23'), (6784, 4, '2021-10-01 06:07:23', '2021-10-01 06:07:23'), (6785, 4, '2021-10-01 06:07:24', '2021-10-01 06:07:24'), (6786, 4, '2021-10-01 06:07:24', '2021-10-01 06:07:24'), (6787, 4, '2021-10-01 06:07:24', '2021-10-01 06:07:24'), (6788, 4, '2021-10-01 06:07:24', '2021-10-01 06:07:24'), (6789, 4, '2021-10-01 06:07:24', '2021-10-01 06:07:24'), (6790, 4, '2021-10-01 06:07:24', '2021-10-01 06:07:24'), (6791, 4, '2021-10-01 06:07:25', '2021-10-01 06:07:25'), (6792, 4, '2021-10-01 06:07:25', '2021-10-01 06:07:25'), (6793, 4, '2021-10-01 06:07:25', '2021-10-01 06:07:25'), (6794, 4, '2021-10-01 06:07:25', '2021-10-01 06:07:25'), (6795, 4, '2021-10-01 06:07:26', '2021-10-01 06:07:26'), (6796, 4, '2021-10-01 06:07:26', '2021-10-01 06:07:26'), (6797, 4, '2021-10-01 06:07:26', '2021-10-01 06:07:26'), (6798, 4, '2021-10-01 06:07:26', '2021-10-01 06:07:26'), (6799, 4, '2021-10-01 06:07:26', '2021-10-01 06:07:26'), (6800, 4, '2021-10-01 06:07:27', '2021-10-01 06:07:27'), (6801, 4, '2021-10-01 06:07:27', '2021-10-01 06:07:27'), (6802, 4, '2021-10-01 06:07:32', '2021-10-01 06:07:32'), (6803, 4, '2021-10-02 06:07:37', '2021-10-02 06:07:37'), (6804, 4, '2021-10-02 06:07:38', '2021-10-02 06:07:38'), (6805, 4, '2021-10-02 06:07:38', '2021-10-02 06:07:38'), (6806, 4, '2021-10-02 06:07:38', '2021-10-02 06:07:38'), (6807, 4, '2021-10-02 06:07:39', '2021-10-02 06:07:39'), (6808, 4, '2021-10-02 06:07:39', '2021-10-02 06:07:39'), (6809, 4, '2021-10-02 06:07:39', '2021-10-02 06:07:39'), (6810, 4, '2021-10-02 06:07:39', '2021-10-02 06:07:39'), (6811, 4, '2021-10-02 06:07:39', '2021-10-02 06:07:39'), (6812, 4, '2021-10-02 06:07:40', '2021-10-02 06:07:40'), (6813, 4, '2021-10-02 06:07:40', '2021-10-02 06:07:40'), (6814, 4, '2021-10-02 06:07:40', '2021-10-02 06:07:40'), (6815, 4, '2021-10-02 06:07:40', '2021-10-02 06:07:40'), (6816, 4, '2021-10-02 06:07:40', '2021-10-02 06:07:40'), (6817, 4, '2021-10-02 06:07:41', '2021-10-02 06:07:41'), (6818, 4, '2021-10-02 06:07:41', '2021-10-02 06:07:41'), (6819, 4, '2021-10-02 06:07:41', '2021-10-02 06:07:41'), (6820, 4, '2021-10-02 06:07:41', '2021-10-02 06:07:41'), (6821, 4, '2021-10-02 06:07:41', '2021-10-02 06:07:41'), (6822, 4, '2021-10-02 06:07:41', '2021-10-02 06:07:41'), (6823, 4, '2021-10-02 06:07:42', '2021-10-02 06:07:42'), (6824, 4, '2021-10-02 06:07:42', '2021-10-02 06:07:42'), (6825, 4, '2021-10-02 06:07:42', '2021-10-02 06:07:42'), (6826, 4, '2021-10-02 06:07:42', '2021-10-02 06:07:42'), (6827, 4, '2021-10-02 06:07:42', '2021-10-02 06:07:42'), (6828, 4, '2021-10-02 06:07:43', '2021-10-02 06:07:43'), (6829, 4, '2021-10-02 06:07:43', '2021-10-02 06:07:43'), (6830, 4, '2021-10-02 06:07:43', '2021-10-02 06:07:43'), (6831, 4, '2021-10-02 06:07:43', '2021-10-02 06:07:43'), (6832, 4, '2021-10-02 06:07:43', '2021-10-02 06:07:43'), (6833, 4, '2021-10-02 06:07:43', '2021-10-02 06:07:43'), (6834, 4, '2021-10-02 06:07:44', '2021-10-02 06:07:44'), (6835, 4, '2021-10-02 06:07:44', '2021-10-02 06:07:44'), (6836, 4, '2021-10-02 06:07:44', '2021-10-02 06:07:44'), (6837, 4, '2021-10-02 06:07:44', '2021-10-02 06:07:44'), (6838, 4, '2021-10-02 06:07:45', '2021-10-02 06:07:45'), (6839, 4, '2021-10-02 06:07:45', '2021-10-02 06:07:45'), (6840, 4, '2021-10-02 06:07:45', '2021-10-02 06:07:45'), (6841, 4, '2021-10-02 06:07:45', '2021-10-02 06:07:45'), (6842, 4, '2021-10-02 06:07:46', '2021-10-02 06:07:46'), (6843, 4, '2021-10-02 06:07:46', '2021-10-02 06:07:46'), (6844, 4, '2021-10-02 06:07:46', '2021-10-02 06:07:46'), (6845, 4, '2021-10-02 06:07:46', '2021-10-02 06:07:46'), (6846, 4, '2021-10-02 06:07:46', '2021-10-02 06:07:46'), (6847, 4, '2021-10-02 06:07:46', '2021-10-02 06:07:46'), (6848, 4, '2021-10-02 06:07:47', '2021-10-02 06:07:47'), (6849, 4, '2021-10-02 06:07:47', '2021-10-02 06:07:47'), (6850, 4, '2021-10-02 06:07:47', '2021-10-02 06:07:47'), (6851, 4, '2021-10-02 06:07:48', '2021-10-02 06:07:48'), (6852, 4, '2021-10-02 06:07:48', '2021-10-02 06:07:48'), (6853, 4, '2021-10-02 06:07:48', '2021-10-02 06:07:48'), (6854, 4, '2021-10-02 06:07:48', '2021-10-02 06:07:48'), (6855, 4, '2021-10-02 06:07:48', '2021-10-02 06:07:48'), (6856, 4, '2021-10-02 06:07:49', '2021-10-02 06:07:49'), (6857, 4, '2021-10-02 06:07:49', '2021-10-02 06:07:49'), (6858, 4, '2021-10-02 06:07:49', '2021-10-02 06:07:49'), (6859, 4, '2021-10-02 06:07:49', '2021-10-02 06:07:49'), (6860, 4, '2021-10-02 06:07:49', '2021-10-02 06:07:49'), (6861, 4, '2021-10-02 06:07:50', '2021-10-02 06:07:50'), (6862, 4, '2021-10-02 06:07:50', '2021-10-02 06:07:50'), (6863, 4, '2021-10-02 06:07:50', '2021-10-02 06:07:50'), (6864, 4, '2021-10-02 06:07:51', '2021-10-02 06:07:51'), (6865, 4, '2021-10-02 06:07:51', '2021-10-02 06:07:51'), (6866, 4, '2021-10-02 06:07:51', '2021-10-02 06:07:51'), (6867, 4, '2021-10-02 06:07:51', '2021-10-02 06:07:51'), (6868, 4, '2021-10-02 06:07:51', '2021-10-02 06:07:51'), (6869, 4, '2021-10-02 06:07:52', '2021-10-02 06:07:52'), (6870, 4, '2021-10-02 06:07:52', '2021-10-02 06:07:52'), (6871, 4, '2021-10-02 06:07:52', '2021-10-02 06:07:52'), (6872, 4, '2021-10-02 06:07:52', '2021-10-02 06:07:52'), (6873, 4, '2021-10-02 06:07:52', '2021-10-02 06:07:52'), (6874, 4, '2021-10-02 06:07:53', '2021-10-02 06:07:53'), (6875, 4, '2021-10-02 06:07:53', '2021-10-02 06:07:53'), (6876, 4, '2021-10-02 06:07:53', '2021-10-02 06:07:53'), (6877, 4, '2021-10-02 06:07:53', '2021-10-02 06:07:53'), (6878, 4, '2021-10-02 06:07:54', '2021-10-02 06:07:54'), (6879, 4, '2021-10-02 06:07:54', '2021-10-02 06:07:54'), (6880, 4, '2021-10-02 06:07:54', '2021-10-02 06:07:54'), (6881, 4, '2021-10-02 06:07:54', '2021-10-02 06:07:54'), (6882, 4, '2021-10-02 06:07:54', '2021-10-02 06:07:54'), (6883, 4, '2021-10-02 06:07:55', '2021-10-02 06:07:55'), (6884, 4, '2021-10-02 06:07:55', '2021-10-02 06:07:55'), (6885, 4, '2021-10-02 06:07:55', '2021-10-02 06:07:55'), (6886, 4, '2021-10-02 06:07:56', '2021-10-02 06:07:56'), (6887, 4, '2021-10-02 06:07:57', '2021-10-02 06:07:57'), (6888, 4, '2021-10-02 06:07:57', '2021-10-02 06:07:57'), (6889, 4, '2021-10-02 06:07:57', '2021-10-02 06:07:57'), (6890, 4, '2021-10-02 06:07:57', '2021-10-02 06:07:57'), (6891, 4, '2021-10-02 06:07:57', '2021-10-02 06:07:57'), (6892, 4, '2021-10-02 06:07:58', '2021-10-02 06:07:58'), (6893, 4, '2021-10-02 06:07:58', '2021-10-02 06:07:58'), (6894, 4, '2021-10-02 06:07:58', '2021-10-02 06:07:58'), (6895, 4, '2021-10-02 06:07:58', '2021-10-02 06:07:58'), (6896, 4, '2021-10-02 06:07:59', '2021-10-02 06:07:59'), (6897, 4, '2021-10-02 06:07:59', '2021-10-02 06:07:59'), (6898, 4, '2021-10-02 06:08:00', '2021-10-02 06:08:00'), (6899, 4, '2021-10-02 06:08:00', '2021-10-02 06:08:00'), (6900, 4, '2021-10-02 06:08:00', '2021-10-02 06:08:00'), (6901, 4, '2021-10-02 06:08:00', '2021-10-02 06:08:00'), (6902, 4, '2021-10-02 06:08:01', '2021-10-02 06:08:01'), (6903, 4, '2021-10-02 06:08:01', '2021-10-02 06:08:01'), (6904, 4, '2021-10-02 06:08:01', '2021-10-02 06:08:01'), (6905, 4, '2021-10-02 06:08:01', '2021-10-02 06:08:01'), (6906, 4, '2021-10-02 06:08:01', '2021-10-02 06:08:01'), (6907, 4, '2021-10-02 06:08:02', '2021-10-02 06:08:02'), (6908, 4, '2021-10-02 06:08:02', '2021-10-02 06:08:02'), (6909, 4, '2021-10-02 06:08:02', '2021-10-02 06:08:02'), (6910, 4, '2021-10-02 06:08:02', '2021-10-02 06:08:02'), (6911, 4, '2021-10-02 06:08:02', '2021-10-02 06:08:02'), (6912, 4, '2021-10-02 06:08:03', '2021-10-02 06:08:03'), (6913, 4, '2021-10-02 06:08:03', '2021-10-02 06:08:03'), (6914, 4, '2021-10-02 06:08:03', '2021-10-02 06:08:03'), (6915, 4, '2021-10-02 06:08:03', '2021-10-02 06:08:03'), (6916, 4, '2021-10-02 06:08:03', '2021-10-02 06:08:03'), (6917, 4, '2021-10-02 06:08:04', '2021-10-02 06:08:04'), (6918, 4, '2021-10-02 06:08:04', '2021-10-02 06:08:04'), (6919, 4, '2021-10-02 06:08:04', '2021-10-02 06:08:04'), (6920, 4, '2021-10-02 06:08:04', '2021-10-02 06:08:04'), (6921, 4, '2021-10-02 06:08:05', '2021-10-02 06:08:05'), (6922, 4, '2021-10-02 06:08:06', '2021-10-02 06:08:06'), (6923, 4, '2021-10-02 06:08:06', '2021-10-02 06:08:06'), (6924, 4, '2021-10-02 06:08:06', '2021-10-02 06:08:06'), (6925, 4, '2021-10-02 06:08:06', '2021-10-02 06:08:06'), (6926, 4, '2021-10-02 06:08:07', '2021-10-02 06:08:07'), (6927, 4, '2021-10-02 06:08:07', '2021-10-02 06:08:07'), (6928, 4, '2021-10-02 06:08:07', '2021-10-02 06:08:07'), (6929, 4, '2021-10-02 06:08:07', '2021-10-02 06:08:07'), (6930, 4, '2021-10-02 06:08:08', '2021-10-02 06:08:08'), (6931, 4, '2021-10-02 06:08:08', '2021-10-02 06:08:08'), (6932, 4, '2021-10-02 06:08:08', '2021-10-02 06:08:08'), (6933, 4, '2021-10-02 06:08:08', '2021-10-02 06:08:08'), (6934, 4, '2021-10-02 06:08:09', '2021-10-02 06:08:09'), (6935, 4, '2021-10-02 06:08:09', '2021-10-02 06:08:09'), (6936, 4, '2021-10-02 06:08:09', '2021-10-02 06:08:09'), (6937, 4, '2021-10-02 06:08:09', '2021-10-02 06:08:09'), (6938, 4, '2021-10-02 06:08:10', '2021-10-02 06:08:10'), (6939, 4, '2021-10-02 06:08:10', '2021-10-02 06:08:10'), (6940, 4, '2021-10-02 06:08:10', '2021-10-02 06:08:10'), (6941, 4, '2021-10-02 06:08:10', '2021-10-02 06:08:10'), (6942, 4, '2021-10-02 06:08:11', '2021-10-02 06:08:11'), (6943, 4, '2021-10-02 06:08:11', '2021-10-02 06:08:11'), (6944, 4, '2021-10-02 06:08:11', '2021-10-02 06:08:11'), (6945, 4, '2021-10-02 06:08:11', '2021-10-02 06:08:11'), (6946, 4, '2021-10-02 06:08:11', '2021-10-02 06:08:11'), (6947, 4, '2021-10-02 06:08:12', '2021-10-02 06:08:12'), (6948, 4, '2021-10-02 06:08:12', '2021-10-02 06:08:12'), (6949, 4, '2021-10-02 06:08:12', '2021-10-02 06:08:12'), (6950, 4, '2021-10-02 06:08:12', '2021-10-02 06:08:12'), (6951, 4, '2021-10-02 06:08:12', '2021-10-02 06:08:12'), (6952, 4, '2021-10-02 06:08:13', '2021-10-02 06:08:13'), (6953, 4, '2021-10-02 06:08:13', '2021-10-02 06:08:13'), (6954, 4, '2021-10-02 06:08:13', '2021-10-02 06:08:13'), (6955, 4, '2021-10-02 06:08:13', '2021-10-02 06:08:13'), (6956, 4, '2021-10-02 06:08:14', '2021-10-02 06:08:14'), (6957, 4, '2021-10-02 06:08:14', '2021-10-02 06:08:14'), (6958, 4, '2021-10-02 06:08:14', '2021-10-02 06:08:14'), (6959, 4, '2021-10-02 06:08:14', '2021-10-02 06:08:14'), (6960, 4, '2021-10-02 06:08:14', '2021-10-02 06:08:14'), (6961, 4, '2021-10-02 06:08:15', '2021-10-02 06:08:15'), (6962, 4, '2021-10-02 06:08:15', '2021-10-02 06:08:15'), (6963, 4, '2021-10-02 06:08:15', '2021-10-02 06:08:15'), (6964, 4, '2021-10-02 06:08:16', '2021-10-02 06:08:16'), (6965, 4, '2021-10-02 06:08:16', '2021-10-02 06:08:16'), (6966, 4, '2021-10-02 06:08:16', '2021-10-02 06:08:16'), (6967, 4, '2021-10-02 06:08:16', '2021-10-02 06:08:16'), (6968, 4, '2021-10-02 06:08:17', '2021-10-02 06:08:17'), (6969, 4, '2021-10-02 06:08:17', '2021-10-02 06:08:17'), (6970, 4, '2021-10-02 06:08:17', '2021-10-02 06:08:17'), (6971, 4, '2021-10-02 06:08:17', '2021-10-02 06:08:17'), (6972, 4, '2021-10-02 06:08:17', '2021-10-02 06:08:17'), (6973, 4, '2021-10-02 06:08:18', '2021-10-02 06:08:18'), (6974, 4, '2021-10-02 06:08:18', '2021-10-02 06:08:18'), (6975, 4, '2021-10-02 06:08:18', '2021-10-02 06:08:18'), (6976, 4, '2021-10-02 06:08:18', '2021-10-02 06:08:18'), (6977, 4, '2021-10-02 06:08:19', '2021-10-02 06:08:19'), (6978, 4, '2021-10-02 06:08:19', '2021-10-02 06:08:19'), (6979, 4, '2021-10-02 06:08:19', '2021-10-02 06:08:19'), (6980, 4, '2021-10-02 06:08:19', '2021-10-02 06:08:19'), (6981, 4, '2021-10-02 06:08:19', '2021-10-02 06:08:19'), (6982, 4, '2021-10-02 06:08:20', '2021-10-02 06:08:20'), (6983, 4, '2021-10-02 06:08:20', '2021-10-02 06:08:20'), (6984, 4, '2021-10-02 06:08:20', '2021-10-02 06:08:20'), (6985, 4, '2021-10-02 06:08:20', '2021-10-02 06:08:20'), (6986, 4, '2021-10-02 06:08:21', '2021-10-02 06:08:21'), (6987, 4, '2021-10-02 06:08:22', '2021-10-02 06:08:22'), (6988, 4, '2021-10-02 06:08:22', '2021-10-02 06:08:22'), (6989, 4, '2021-10-02 06:08:22', '2021-10-02 06:08:22'), (6990, 4, '2021-10-02 06:08:22', '2021-10-02 06:08:22'), (6991, 4, '2021-10-02 06:08:22', '2021-10-02 06:08:22'), (6992, 4, '2021-10-02 06:08:23', '2021-10-02 06:08:23'), (6993, 4, '2021-10-02 06:08:23', '2021-10-02 06:08:23'), (6994, 4, '2021-10-02 06:08:23', '2021-10-02 06:08:23'), (6995, 4, '2021-10-02 06:08:23', '2021-10-02 06:08:23'), (6996, 4, '2021-10-02 06:08:23', '2021-10-02 06:08:23'), (6997, 4, '2021-10-02 06:08:24', '2021-10-02 06:08:24'), (6998, 4, '2021-10-02 06:08:24', '2021-10-02 06:08:24'), (6999, 4, '2021-10-02 06:08:24', '2021-10-02 06:08:24'), (7000, 4, '2021-10-02 06:08:24', '2021-10-02 06:08:24'), (7001, 4, '2021-10-02 06:08:25', '2021-10-02 06:08:25'), (7002, 4, '2021-10-02 06:08:25', '2021-10-02 06:08:25'), (7003, 4, '2021-10-02 06:08:25', '2021-10-02 06:08:25'), (7004, 4, '2021-10-02 06:08:25', '2021-10-02 06:08:25'), (7005, 4, '2021-10-02 06:08:25', '2021-10-02 06:08:25'), (7006, 4, '2021-10-02 06:08:26', '2021-10-02 06:08:26'), (7007, 4, '2021-10-02 06:08:26', '2021-10-02 06:08:26'), (7008, 4, '2021-10-02 06:08:26', '2021-10-02 06:08:26'), (7009, 4, '2021-10-02 06:08:26', '2021-10-02 06:08:26'), (7010, 4, '2021-10-02 06:08:27', '2021-10-02 06:08:27'), (7011, 4, '2021-10-02 06:08:27', '2021-10-02 06:08:27'), (7012, 4, '2021-10-02 06:08:27', '2021-10-02 06:08:27'), (7013, 4, '2021-10-02 06:08:27', '2021-10-02 06:08:27'), (7014, 4, '2021-10-02 06:08:28', '2021-10-02 06:08:28'), (7015, 4, '2021-10-03 06:08:38', '2021-10-03 06:08:38'), (7016, 4, '2021-10-03 06:08:40', '2021-10-03 06:08:40'), (7017, 4, '2021-10-03 06:08:40', '2021-10-03 06:08:40'), (7018, 4, '2021-10-03 06:08:40', '2021-10-03 06:08:40'), (7019, 4, '2021-10-03 06:08:40', '2021-10-03 06:08:40'), (7020, 4, '2021-10-03 06:08:41', '2021-10-03 06:08:41'), (7021, 4, '2021-10-03 06:08:41', '2021-10-03 06:08:41'), (7022, 4, '2021-10-03 06:08:41', '2021-10-03 06:08:41'), (7023, 4, '2021-10-03 06:08:41', '2021-10-03 06:08:41'), (7024, 4, '2021-10-03 06:08:41', '2021-10-03 06:08:41'), (7025, 4, '2021-10-03 06:08:42', '2021-10-03 06:08:42'), (7026, 4, '2021-10-03 06:08:42', '2021-10-03 06:08:42'), (7027, 4, '2021-10-03 06:08:42', '2021-10-03 06:08:42'), (7028, 4, '2021-10-03 06:08:42', '2021-10-03 06:08:42'), (7029, 4, '2021-10-03 06:08:42', '2021-10-03 06:08:42'), (7030, 4, '2021-10-03 06:08:42', '2021-10-03 06:08:42'), (7031, 4, '2021-10-03 06:08:43', '2021-10-03 06:08:43'), (7032, 4, '2021-10-03 06:08:43', '2021-10-03 06:08:43'), (7033, 4, '2021-10-03 06:08:43', '2021-10-03 06:08:43'), (7034, 4, '2021-10-03 06:08:43', '2021-10-03 06:08:43'), (7035, 4, '2021-10-03 06:08:43', '2021-10-03 06:08:43'), (7036, 4, '2021-10-03 06:08:44', '2021-10-03 06:08:44'), (7037, 4, '2021-10-03 06:08:44', '2021-10-03 06:08:44'), (7038, 4, '2021-10-03 06:08:44', '2021-10-03 06:08:44'), (7039, 4, '2021-10-03 06:08:44', '2021-10-03 06:08:44'), (7040, 4, '2021-10-03 06:08:44', '2021-10-03 06:08:44'), (7041, 4, '2021-10-03 06:08:45', '2021-10-03 06:08:45'), (7042, 4, '2021-10-03 06:08:45', '2021-10-03 06:08:45'), (7043, 4, '2021-10-03 06:08:46', '2021-10-03 06:08:46'), (7044, 4, '2021-10-03 06:08:46', '2021-10-03 06:08:46'), (7045, 4, '2021-10-03 06:08:46', '2021-10-03 06:08:46'), (7046, 4, '2021-10-03 06:08:46', '2021-10-03 06:08:46'), (7047, 4, '2021-10-03 06:08:47', '2021-10-03 06:08:47'), (7048, 4, '2021-10-03 06:08:47', '2021-10-03 06:08:47'), (7049, 4, '2021-10-03 06:08:47', '2021-10-03 06:08:47'), (7050, 4, '2021-10-03 06:08:47', '2021-10-03 06:08:47'), (7051, 4, '2021-10-03 06:08:47', '2021-10-03 06:08:47'), (7052, 4, '2021-10-03 06:08:48', '2021-10-03 06:08:48'), (7053, 4, '2021-10-03 06:08:48', '2021-10-03 06:08:48'), (7054, 4, '2021-10-03 06:08:48', '2021-10-03 06:08:48'), (7055, 4, '2021-10-03 06:08:48', '2021-10-03 06:08:48'), (7056, 4, '2021-10-03 06:08:48', '2021-10-03 06:08:48'), (7057, 4, '2021-10-03 06:08:48', '2021-10-03 06:08:48'), (7058, 4, '2021-10-03 06:08:49', '2021-10-03 06:08:49'), (7059, 4, '2021-10-03 06:08:49', '2021-10-03 06:08:49'), (7060, 4, '2021-10-03 06:08:49', '2021-10-03 06:08:49'), (7061, 4, '2021-10-03 06:08:49', '2021-10-03 06:08:49'), (7062, 4, '2021-10-03 06:08:49', '2021-10-03 06:08:49'), (7063, 4, '2021-10-03 06:08:50', '2021-10-03 06:08:50'), (7064, 4, '2021-10-03 06:08:50', '2021-10-03 06:08:50'), (7065, 4, '2021-10-03 06:08:50', '2021-10-03 06:08:50'), (7066, 4, '2021-10-03 06:08:50', '2021-10-03 06:08:50'), (7067, 4, '2021-10-03 06:08:50', '2021-10-03 06:08:50'), (7068, 4, '2021-10-03 06:08:51', '2021-10-03 06:08:51'), (7069, 4, '2021-10-03 06:08:51', '2021-10-03 06:08:51'), (7070, 4, '2021-10-03 06:08:51', '2021-10-03 06:08:51'), (7071, 4, '2021-10-03 06:08:51', '2021-10-03 06:08:51'), (7072, 4, '2021-10-03 06:08:52', '2021-10-03 06:08:52'), (7073, 4, '2021-10-03 06:08:52', '2021-10-03 06:08:52'), (7074, 4, '2021-10-03 06:08:52', '2021-10-03 06:08:52'), (7075, 4, '2021-10-03 06:08:52', '2021-10-03 06:08:52'), (7076, 4, '2021-10-03 06:08:52', '2021-10-03 06:08:52'), (7077, 4, '2021-10-03 06:08:53', '2021-10-03 06:08:53'), (7078, 4, '2021-10-03 06:08:53', '2021-10-03 06:08:53'), (7079, 4, '2021-10-03 06:08:53', '2021-10-03 06:08:53'), (7080, 4, '2021-10-03 06:08:53', '2021-10-03 06:08:53'), (7081, 4, '2021-10-03 06:08:53', '2021-10-03 06:08:53'), (7082, 4, '2021-10-03 06:08:53', '2021-10-03 06:08:53'), (7083, 4, '2021-10-03 06:08:54', '2021-10-03 06:08:54'), (7084, 4, '2021-10-03 06:08:54', '2021-10-03 06:08:54'), (7085, 4, '2021-10-03 06:08:54', '2021-10-03 06:08:54'), (7086, 4, '2021-10-03 06:08:54', '2021-10-03 06:08:54'), (7087, 4, '2021-10-03 06:08:55', '2021-10-03 06:08:55'), (7088, 4, '2021-10-03 06:08:55', '2021-10-03 06:08:55'), (7089, 4, '2021-10-03 06:08:55', '2021-10-03 06:08:55'), (7090, 4, '2021-10-03 06:08:55', '2021-10-03 06:08:55'), (7091, 4, '2021-10-03 06:08:55', '2021-10-03 06:08:55'), (7092, 4, '2021-10-03 06:08:56', '2021-10-03 06:08:56'), (7093, 4, '2021-10-03 06:08:56', '2021-10-03 06:08:56'), (7094, 4, '2021-10-03 06:08:56', '2021-10-03 06:08:56'), (7095, 4, '2021-10-03 06:08:56', '2021-10-03 06:08:56'), (7096, 4, '2021-10-03 06:08:56', '2021-10-03 06:08:56'), (7097, 4, '2021-10-03 06:08:57', '2021-10-03 06:08:57'), (7098, 4, '2021-10-03 06:08:57', '2021-10-03 06:08:57'), (7099, 4, '2021-10-03 06:08:57', '2021-10-03 06:08:57'), (7100, 4, '2021-10-03 06:08:57', '2021-10-03 06:08:57'), (7101, 4, '2021-10-03 06:08:58', '2021-10-03 06:08:58'), (7102, 4, '2021-10-03 06:08:58', '2021-10-03 06:08:58'), (7103, 4, '2021-10-03 06:08:58', '2021-10-03 06:08:58'), (7104, 4, '2021-10-03 06:08:59', '2021-10-03 06:08:59'), (7105, 4, '2021-10-03 06:08:59', '2021-10-03 06:08:59'), (7106, 4, '2021-10-03 06:08:59', '2021-10-03 06:08:59'), (7107, 4, '2021-10-03 06:08:59', '2021-10-03 06:08:59'), (7108, 4, '2021-10-03 06:10:00', '2021-10-03 06:10:00'), (7109, 4, '2021-10-03 06:10:00', '2021-10-03 06:10:00'), (7110, 4, '2021-10-03 06:10:00', '2021-10-03 06:10:00'), (7111, 4, '2021-10-03 06:10:01', '2021-10-03 06:10:01'), (7112, 4, '2021-10-03 06:10:01', '2021-10-03 06:10:01'), (7113, 4, '2021-10-03 06:10:01', '2021-10-03 06:10:01'), (7114, 4, '2021-10-03 06:10:01', '2021-10-03 06:10:01'), (7115, 4, '2021-10-03 06:10:02', '2021-10-03 06:10:02'), (7116, 4, '2021-10-03 06:10:02', '2021-10-03 06:10:02'), (7117, 4, '2021-10-03 06:10:02', '2021-10-03 06:10:02'), (7118, 4, '2021-10-03 06:10:02', '2021-10-03 06:10:02'), (7119, 4, '2021-10-03 06:10:03', '2021-10-03 06:10:03'), (7120, 4, '2021-10-03 06:10:03', '2021-10-03 06:10:03'), (7121, 4, '2021-10-03 06:10:03', '2021-10-03 06:10:03'), (7122, 4, '2021-10-03 06:10:03', '2021-10-03 06:10:03'), (7123, 4, '2021-10-03 06:10:03', '2021-10-03 06:10:03'), (7124, 4, '2021-10-03 06:10:04', '2021-10-03 06:10:04'), (7125, 4, '2021-10-03 06:10:04', '2021-10-03 06:10:04'), (7126, 4, '2021-10-03 06:10:04', '2021-10-03 06:10:04'), (7127, 4, '2021-10-03 06:10:05', '2021-10-03 06:10:05'), (7128, 4, '2021-10-03 06:10:05', '2021-10-03 06:10:05'), (7129, 4, '2021-10-03 06:10:05', '2021-10-03 06:10:05'), (7130, 4, '2021-10-03 06:10:05', '2021-10-03 06:10:05'), (7131, 4, '2021-10-03 06:10:06', '2021-10-03 06:10:06'), (7132, 4, '2021-10-03 06:10:06', '2021-10-03 06:10:06'), (7133, 4, '2021-10-03 06:10:06', '2021-10-03 06:10:06'), (7134, 4, '2021-10-03 06:10:07', '2021-10-03 06:10:07'), (7135, 4, '2021-10-03 06:10:07', '2021-10-03 06:10:07'), (7136, 4, '2021-10-03 06:10:07', '2021-10-03 06:10:07'), (7137, 4, '2021-10-03 06:10:07', '2021-10-03 06:10:07'), (7138, 4, '2021-10-03 06:10:07', '2021-10-03 06:10:07'), (7139, 4, '2021-10-03 06:10:08', '2021-10-03 06:10:08'), (7140, 4, '2021-10-03 06:10:08', '2021-10-03 06:10:08'), (7141, 4, '2021-10-03 06:10:08', '2021-10-03 06:10:08'), (7142, 4, '2021-10-03 06:10:08', '2021-10-03 06:10:08'), (7143, 4, '2021-10-03 06:10:08', '2021-10-03 06:10:08'), (7144, 4, '2021-10-03 06:10:09', '2021-10-03 06:10:09'), (7145, 4, '2021-10-03 06:10:09', '2021-10-03 06:10:09'), (7146, 4, '2021-10-03 06:10:09', '2021-10-03 06:10:09'), (7147, 4, '2021-10-03 06:10:09', '2021-10-03 06:10:09'), (7148, 4, '2021-10-03 06:10:09', '2021-10-03 06:10:09'), (7149, 4, '2021-10-03 06:10:10', '2021-10-03 06:10:10'), (7150, 4, '2021-10-03 06:10:10', '2021-10-03 06:10:10'), (7151, 4, '2021-10-03 06:10:10', '2021-10-03 06:10:10'), (7152, 4, '2021-10-03 06:10:10', '2021-10-03 06:10:10'), (7153, 4, '2021-10-04 06:10:13', '2021-10-04 06:10:13'), (7154, 4, '2021-10-04 06:10:14', '2021-10-04 06:10:14'), (7155, 4, '2021-10-04 06:10:15', '2021-10-04 06:10:15'), (7156, 4, '2021-10-04 06:10:15', '2021-10-04 06:10:15'), (7157, 4, '2021-10-04 06:10:16', '2021-10-04 06:10:16'), (7158, 4, '2021-10-04 06:10:16', '2021-10-04 06:10:16'), (7159, 4, '2021-10-04 06:10:17', '2021-10-04 06:10:17'), (7160, 4, '2021-10-04 06:10:17', '2021-10-04 06:10:17'), (7161, 4, '2021-10-04 06:10:17', '2021-10-04 06:10:17'), (7162, 4, '2021-10-04 06:10:17', '2021-10-04 06:10:17'), (7163, 4, '2021-10-04 06:10:18', '2021-10-04 06:10:18'), (7164, 4, '2021-10-04 06:10:18', '2021-10-04 06:10:18'), (7165, 4, '2021-10-04 06:10:18', '2021-10-04 06:10:18'), (7166, 4, '2021-10-04 06:10:18', '2021-10-04 06:10:18'), (7167, 4, '2021-10-04 06:10:18', '2021-10-04 06:10:18'), (7168, 4, '2021-10-04 06:10:19', '2021-10-04 06:10:19'), (7169, 4, '2021-10-04 06:10:19', '2021-10-04 06:10:19'), (7170, 4, '2021-10-04 06:10:19', '2021-10-04 06:10:19'), (7171, 4, '2021-10-04 06:10:19', '2021-10-04 06:10:19'), (7172, 4, '2021-10-04 06:10:20', '2021-10-04 06:10:20'), (7173, 4, '2021-10-04 06:10:20', '2021-10-04 06:10:20'), (7174, 4, '2021-10-04 06:10:20', '2021-10-04 06:10:20'), (7175, 4, '2021-10-04 06:10:20', '2021-10-04 06:10:20'), (7176, 4, '2021-10-04 06:10:20', '2021-10-04 06:10:20'), (7177, 4, '2021-10-04 06:10:21', '2021-10-04 06:10:21'), (7178, 4, '2021-10-04 06:10:21', '2021-10-04 06:10:21'), (7179, 4, '2021-10-04 06:10:21', '2021-10-04 06:10:21'), (7180, 4, '2021-10-04 06:10:21', '2021-10-04 06:10:21'), (7181, 4, '2021-10-04 06:10:21', '2021-10-04 06:10:21'), (7182, 4, '2021-10-04 06:10:22', '2021-10-04 06:10:22'), (7183, 4, '2021-10-04 06:10:22', '2021-10-04 06:10:22'), (7184, 4, '2021-10-04 06:10:22', '2021-10-04 06:10:22'), (7185, 4, '2021-10-04 06:10:23', '2021-10-04 06:10:23'), (7186, 4, '2021-10-04 06:10:23', '2021-10-04 06:10:23'), (7187, 4, '2021-10-04 06:10:24', '2021-10-04 06:10:24'), (7188, 4, '2021-10-04 06:10:24', '2021-10-04 06:10:24'), (7189, 4, '2021-10-04 06:10:24', '2021-10-04 06:10:24'), (7190, 4, '2021-10-04 06:10:24', '2021-10-04 06:10:24'), (7191, 4, '2021-10-04 06:10:25', '2021-10-04 06:10:25'), (7192, 4, '2021-10-04 06:10:25', '2021-10-04 06:10:25'), (7193, 4, '2021-10-04 06:10:25', '2021-10-04 06:10:25'), (7194, 4, '2021-10-04 06:10:25', '2021-10-04 06:10:25'), (7195, 4, '2021-10-04 06:10:25', '2021-10-04 06:10:25'), (7196, 4, '2021-10-04 06:10:26', '2021-10-04 06:10:26'), (7197, 4, '2021-10-04 06:10:26', '2021-10-04 06:10:26'), (7198, 4, '2021-10-04 06:10:26', '2021-10-04 06:10:26'), (7199, 4, '2021-10-04 06:10:26', '2021-10-04 06:10:26'), (7200, 4, '2021-10-04 06:10:27', '2021-10-04 06:10:27'), (7201, 4, '2021-10-04 06:10:27', '2021-10-04 06:10:27'), (7202, 4, '2021-10-04 06:10:27', '2021-10-04 06:10:27'), (7203, 4, '2021-10-04 06:10:27', '2021-10-04 06:10:27'), (7204, 4, '2021-10-04 06:10:27', '2021-10-04 06:10:27'), (7205, 4, '2021-10-04 06:10:28', '2021-10-04 06:10:28'), (7206, 4, '2021-10-04 06:10:28', '2021-10-04 06:10:28'), (7207, 4, '2021-10-04 06:10:29', '2021-10-04 06:10:29'), (7208, 4, '2021-10-04 06:10:29', '2021-10-04 06:10:29'), (7209, 4, '2021-10-04 06:10:29', '2021-10-04 06:10:29'), (7210, 4, '2021-10-04 06:10:30', '2021-10-04 06:10:30'), (7211, 4, '2021-10-04 06:10:30', '2021-10-04 06:10:30'), (7212, 4, '2021-10-04 06:10:30', '2021-10-04 06:10:30'), (7213, 4, '2021-10-04 06:10:30', '2021-10-04 06:10:30'), (7214, 4, '2021-10-04 06:10:30', '2021-10-04 06:10:30'), (7215, 4, '2021-10-04 06:10:31', '2021-10-04 06:10:31'), (7216, 4, '2021-10-04 06:10:32', '2021-10-04 06:10:32'), (7217, 4, '2021-10-04 06:10:32', '2021-10-04 06:10:32'), (7218, 4, '2021-10-04 06:10:32', '2021-10-04 06:10:32'), (7219, 4, '2021-10-04 06:10:33', '2021-10-04 06:10:33'), (7220, 4, '2021-10-04 06:10:33', '2021-10-04 06:10:33'), (7221, 4, '2021-10-04 06:10:33', '2021-10-04 06:10:33'), (7222, 4, '2021-10-04 06:10:33', '2021-10-04 06:10:33'), (7223, 4, '2021-10-04 06:10:34', '2021-10-04 06:10:34'), (7224, 4, '2021-10-04 06:10:34', '2021-10-04 06:10:34'), (7225, 4, '2021-10-04 06:10:34', '2021-10-04 06:10:34'), (7226, 4, '2021-10-04 06:10:35', '2021-10-04 06:10:35'), (7227, 4, '2021-10-04 06:10:36', '2021-10-04 06:10:36'), (7228, 4, '2021-10-04 06:10:36', '2021-10-04 06:10:36'), (7229, 4, '2021-10-04 06:10:36', '2021-10-04 06:10:36'), (7230, 4, '2021-10-04 06:10:37', '2021-10-04 06:10:37'), (7231, 4, '2021-10-04 06:10:37', '2021-10-04 06:10:37'), (7232, 4, '2021-10-04 06:10:37', '2021-10-04 06:10:37'), (7233, 4, '2021-10-04 06:10:37', '2021-10-04 06:10:37'), (7234, 4, '2021-10-04 06:10:38', '2021-10-04 06:10:38'), (7235, 4, '2021-10-04 06:10:38', '2021-10-04 06:10:38'), (7236, 4, '2021-10-04 06:10:38', '2021-10-04 06:10:38'), (7237, 4, '2021-10-04 06:10:39', '2021-10-04 06:10:39'), (7238, 4, '2021-10-04 06:10:39', '2021-10-04 06:10:39'), (7239, 4, '2021-10-04 06:10:39', '2021-10-04 06:10:39'), (7240, 4, '2021-10-04 06:10:39', '2021-10-04 06:10:39'), (7241, 4, '2021-10-04 06:10:40', '2021-10-04 06:10:40'), (7242, 4, '2021-10-04 06:10:40', '2021-10-04 06:10:40'), (7243, 4, '2021-10-04 06:10:40', '2021-10-04 06:10:40'), (7244, 4, '2021-10-04 06:10:40', '2021-10-04 06:10:40'), (7245, 4, '2021-10-04 06:10:41', '2021-10-04 06:10:41'), (7246, 4, '2021-10-04 06:10:41', '2021-10-04 06:10:41'), (7247, 4, '2021-10-04 06:10:41', '2021-10-04 06:10:41'), (7248, 4, '2021-10-04 06:10:41', '2021-10-04 06:10:41'), (7249, 4, '2021-10-04 06:10:41', '2021-10-04 06:10:41'), (7250, 4, '2021-10-04 06:10:42', '2021-10-04 06:10:42'), (7251, 4, '2021-10-04 06:10:42', '2021-10-04 06:10:42'), (7252, 4, '2021-10-04 06:10:42', '2021-10-04 06:10:42'), (7253, 4, '2021-10-04 06:10:42', '2021-10-04 06:10:42'), (7254, 4, '2021-10-04 06:10:43', '2021-10-04 06:10:43'), (7255, 4, '2021-10-04 06:10:43', '2021-10-04 06:10:43'), (7256, 4, '2021-10-04 06:10:44', '2021-10-04 06:10:44'), (7257, 4, '2021-10-04 06:10:44', '2021-10-04 06:10:44'), (7258, 4, '2021-10-04 06:10:44', '2021-10-04 06:10:44'), (7259, 4, '2021-10-04 06:10:45', '2021-10-04 06:10:45'), (7260, 4, '2021-10-04 06:10:45', '2021-10-04 06:10:45'), (7261, 4, '2021-10-04 06:10:45', '2021-10-04 06:10:45'), (7262, 4, '2021-10-04 06:10:45', '2021-10-04 06:10:45'), (7263, 4, '2021-10-04 06:10:46', '2021-10-04 06:10:46'), (7264, 4, '2021-10-04 06:10:46', '2021-10-04 06:10:46'), (7265, 4, '2021-10-04 06:10:46', '2021-10-04 06:10:46'), (7266, 4, '2021-10-04 06:10:47', '2021-10-04 06:10:47'), (7267, 4, '2021-10-04 06:10:47', '2021-10-04 06:10:47'), (7268, 4, '2021-10-04 06:10:48', '2021-10-04 06:10:48'), (7269, 4, '2021-10-04 06:10:48', '2021-10-04 06:10:48'), (7270, 4, '2021-10-04 06:10:48', '2021-10-04 06:10:48'), (7271, 4, '2021-10-04 06:10:49', '2021-10-04 06:10:49'), (7272, 4, '2021-10-04 06:10:49', '2021-10-04 06:10:49'), (7273, 4, '2021-10-04 06:10:49', '2021-10-04 06:10:49'), (7274, 4, '2021-10-04 06:10:50', '2021-10-04 06:10:50'), (7275, 4, '2021-10-04 06:10:50', '2021-10-04 06:10:50'), (7276, 4, '2021-10-04 06:10:50', '2021-10-04 06:10:50'), (7277, 4, '2021-10-04 06:10:50', '2021-10-04 06:10:50'), (7278, 4, '2021-10-04 06:10:51', '2021-10-04 06:10:51'), (7279, 4, '2021-10-04 06:10:51', '2021-10-04 06:10:51'), (7280, 4, '2021-10-04 06:10:51', '2021-10-04 06:10:51'), (7281, 4, '2021-10-04 06:10:51', '2021-10-04 06:10:51'), (7282, 4, '2021-10-04 06:10:52', '2021-10-04 06:10:52'), (7283, 4, '2021-10-04 06:10:52', '2021-10-04 06:10:52'), (7284, 4, '2021-10-04 06:10:52', '2021-10-04 06:10:52'), (7285, 4, '2021-10-05 06:10:56', '2021-10-05 06:10:56'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (7286, 4, '2021-10-05 06:10:57', '2021-10-05 06:10:57'), (7287, 4, '2021-10-05 06:10:58', '2021-10-05 06:10:58'), (7288, 4, '2021-10-05 06:10:58', '2021-10-05 06:10:58'), (7289, 4, '2021-10-05 06:10:59', '2021-10-05 06:10:59'), (7290, 4, '2021-10-05 06:10:59', '2021-10-05 06:10:59'), (7291, 4, '2021-10-05 06:10:59', '2021-10-05 06:10:59'), (7292, 4, '2021-10-05 06:10:59', '2021-10-05 06:10:59'), (7293, 4, '2021-10-05 06:11:00', '2021-10-05 06:11:00'), (7294, 4, '2021-10-05 06:11:01', '2021-10-05 06:11:01'), (7295, 4, '2021-10-05 06:11:01', '2021-10-05 06:11:01'), (7296, 4, '2021-10-05 06:11:01', '2021-10-05 06:11:01'), (7297, 4, '2021-10-05 06:11:02', '2021-10-05 06:11:02'), (7298, 4, '2021-10-05 06:11:02', '2021-10-05 06:11:02'), (7299, 4, '2021-10-05 06:11:02', '2021-10-05 06:11:02'), (7300, 4, '2021-10-05 06:11:03', '2021-10-05 06:11:03'), (7301, 4, '2021-10-05 06:11:04', '2021-10-05 06:11:04'), (7302, 4, '2021-10-05 06:11:04', '2021-10-05 06:11:04'), (7303, 4, '2021-10-05 06:11:04', '2021-10-05 06:11:04'), (7304, 4, '2021-10-05 06:11:04', '2021-10-05 06:11:04'), (7305, 4, '2021-10-05 06:11:05', '2021-10-05 06:11:05'), (7306, 4, '2021-10-05 06:11:05', '2021-10-05 06:11:05'), (7307, 4, '2021-10-05 06:11:05', '2021-10-05 06:11:05'), (7308, 4, '2021-10-05 06:11:05', '2021-10-05 06:11:05'), (7309, 4, '2021-10-05 06:11:05', '2021-10-05 06:11:05'), (7310, 4, '2021-10-05 06:11:05', '2021-10-05 06:11:05'), (7311, 4, '2021-10-05 06:11:06', '2021-10-05 06:11:06'), (7312, 4, '2021-10-05 06:11:06', '2021-10-05 06:11:06'), (7313, 4, '2021-10-05 06:11:06', '2021-10-05 06:11:06'), (7314, 4, '2021-10-05 06:11:07', '2021-10-05 06:11:07'), (7315, 4, '2021-10-05 06:11:07', '2021-10-05 06:11:07'), (7316, 4, '2021-10-05 06:11:07', '2021-10-05 06:11:07'), (7317, 4, '2021-10-05 06:11:07', '2021-10-05 06:11:07'), (7318, 4, '2021-10-05 06:11:07', '2021-10-05 06:11:07'), (7319, 4, '2021-10-05 06:11:08', '2021-10-05 06:11:08'), (7320, 4, '2021-10-05 06:11:08', '2021-10-05 06:11:08'), (7321, 4, '2021-10-05 06:11:08', '2021-10-05 06:11:08'), (7322, 4, '2021-10-05 06:11:08', '2021-10-05 06:11:08'), (7323, 4, '2021-10-05 06:11:08', '2021-10-05 06:11:08'), (7324, 4, '2021-10-05 06:11:09', '2021-10-05 06:11:09'), (7325, 4, '2021-10-05 06:11:09', '2021-10-05 06:11:09'), (7326, 4, '2021-10-05 06:11:09', '2021-10-05 06:11:09'), (7327, 4, '2021-10-05 06:11:09', '2021-10-05 06:11:09'), (7328, 4, '2021-10-05 06:11:09', '2021-10-05 06:11:09'), (7329, 4, '2021-10-05 06:11:10', '2021-10-05 06:11:10'), (7330, 4, '2021-10-05 06:11:10', '2021-10-05 06:11:10'), (7331, 4, '2021-10-05 06:11:10', '2021-10-05 06:11:10'), (7332, 4, '2021-10-05 06:11:10', '2021-10-05 06:11:10'), (7333, 4, '2021-10-05 06:11:11', '2021-10-05 06:11:11'), (7334, 4, '2021-10-05 06:11:11', '2021-10-05 06:11:11'), (7335, 4, '2021-10-05 06:11:11', '2021-10-05 06:11:11'), (7336, 4, '2021-10-05 06:11:11', '2021-10-05 06:11:11'), (7337, 4, '2021-10-05 06:11:12', '2021-10-05 06:11:12'), (7338, 4, '2021-10-05 06:11:12', '2021-10-05 06:11:12'), (7339, 4, '2021-10-05 06:11:13', '2021-10-05 06:11:13'), (7340, 4, '2021-10-05 06:11:13', '2021-10-05 06:11:13'), (7341, 4, '2021-10-05 06:11:13', '2021-10-05 06:11:13'), (7342, 4, '2021-10-05 06:11:13', '2021-10-05 06:11:13'), (7343, 4, '2021-10-05 06:11:13', '2021-10-05 06:11:13'), (7344, 4, '2021-10-05 06:11:13', '2021-10-05 06:11:13'), (7345, 4, '2021-10-05 06:11:14', '2021-10-05 06:11:14'), (7346, 4, '2021-10-05 06:11:14', '2021-10-05 06:11:14'), (7347, 4, '2021-10-05 06:11:14', '2021-10-05 06:11:14'), (7348, 4, '2021-10-05 06:11:14', '2021-10-05 06:11:14'), (7349, 4, '2021-10-05 06:11:14', '2021-10-05 06:11:14'), (7350, 4, '2021-10-05 06:11:15', '2021-10-05 06:11:15'), (7351, 4, '2021-10-05 06:11:15', '2021-10-05 06:11:15'), (7352, 4, '2021-10-05 06:11:15', '2021-10-05 06:11:15'), (7353, 4, '2021-10-05 06:11:15', '2021-10-05 06:11:15'), (7354, 4, '2021-10-05 06:11:16', '2021-10-05 06:11:16'), (7355, 4, '2021-10-05 06:11:16', '2021-10-05 06:11:16'), (7356, 4, '2021-10-05 06:11:16', '2021-10-05 06:11:16'), (7357, 4, '2021-10-05 06:11:16', '2021-10-05 06:11:16'), (7358, 4, '2021-10-05 06:11:16', '2021-10-05 06:11:16'), (7359, 4, '2021-10-05 06:11:17', '2021-10-05 06:11:17'), (7360, 4, '2021-10-05 06:11:17', '2021-10-05 06:11:17'), (7361, 4, '2021-10-05 06:11:17', '2021-10-05 06:11:17'), (7362, 4, '2021-10-05 06:11:17', '2021-10-05 06:11:17'), (7363, 4, '2021-10-05 06:11:18', '2021-10-05 06:11:18'), (7364, 4, '2021-10-05 06:11:18', '2021-10-05 06:11:18'), (7365, 4, '2021-10-05 06:11:19', '2021-10-05 06:11:19'), (7366, 4, '2021-10-05 06:11:19', '2021-10-05 06:11:19'), (7367, 4, '2021-10-05 06:11:19', '2021-10-05 06:11:19'), (7368, 4, '2021-10-05 06:11:19', '2021-10-05 06:11:19'), (7369, 4, '2021-10-05 06:11:19', '2021-10-05 06:11:19'), (7370, 4, '2021-10-05 06:11:20', '2021-10-05 06:11:20'), (7371, 4, '2021-10-05 06:11:20', '2021-10-05 06:11:20'), (7372, 4, '2021-10-05 06:11:20', '2021-10-05 06:11:20'), (7373, 4, '2021-10-05 06:11:20', '2021-10-05 06:11:20'), (7374, 4, '2021-10-05 06:11:21', '2021-10-05 06:11:21'), (7375, 4, '2021-10-05 06:11:21', '2021-10-05 06:11:21'), (7376, 4, '2021-10-05 06:11:21', '2021-10-05 06:11:21'), (7377, 4, '2021-10-05 06:11:21', '2021-10-05 06:11:21'), (7378, 4, '2021-10-05 06:11:22', '2021-10-05 06:11:22'), (7379, 4, '2021-10-05 06:11:22', '2021-10-05 06:11:22'), (7380, 4, '2021-10-05 06:11:22', '2021-10-05 06:11:22'), (7381, 4, '2021-10-05 06:11:23', '2021-10-05 06:11:23'), (7382, 4, '2021-10-05 06:11:23', '2021-10-05 06:11:23'), (7383, 4, '2021-10-05 06:11:23', '2021-10-05 06:11:23'), (7384, 4, '2021-10-05 06:11:23', '2021-10-05 06:11:23'), (7385, 4, '2021-10-05 06:11:24', '2021-10-05 06:11:24'), (7386, 4, '2021-10-05 06:11:24', '2021-10-05 06:11:24'), (7387, 4, '2021-10-05 06:11:25', '2021-10-05 06:11:25'), (7388, 4, '2021-10-05 06:11:25', '2021-10-05 06:11:25'), (7389, 4, '2021-10-05 06:11:25', '2021-10-05 06:11:25'), (7390, 4, '2021-10-05 06:11:25', '2021-10-05 06:11:25'), (7391, 4, '2021-10-05 06:11:25', '2021-10-05 06:11:25'), (7392, 4, '2021-10-05 06:11:26', '2021-10-05 06:11:26'), (7393, 4, '2021-10-05 06:11:26', '2021-10-05 06:11:26'), (7394, 4, '2021-10-05 06:11:26', '2021-10-05 06:11:26'), (7395, 4, '2021-10-05 06:11:26', '2021-10-05 06:11:26'), (7396, 4, '2021-10-05 06:11:27', '2021-10-05 06:11:27'), (7397, 4, '2021-10-05 06:11:27', '2021-10-05 06:11:27'), (7398, 4, '2021-10-05 06:11:27', '2021-10-05 06:11:27'), (7399, 4, '2021-10-05 06:11:27', '2021-10-05 06:11:27'), (7400, 4, '2021-10-05 06:11:27', '2021-10-05 06:11:27'), (7401, 4, '2021-10-05 06:11:28', '2021-10-05 06:11:28'), (7402, 4, '2021-10-05 06:11:28', '2021-10-05 06:11:28'), (7403, 4, '2021-10-05 06:11:28', '2021-10-05 06:11:28'), (7404, 4, '2021-10-05 06:11:28', '2021-10-05 06:11:28'), (7405, 4, '2021-10-05 06:11:29', '2021-10-05 06:11:29'), (7406, 4, '2021-10-05 06:11:29', '2021-10-05 06:11:29'), (7407, 4, '2021-10-05 06:11:29', '2021-10-05 06:11:29'), (7408, 4, '2021-10-05 06:11:29', '2021-10-05 06:11:29'), (7409, 4, '2021-10-05 06:11:29', '2021-10-05 06:11:29'), (7410, 4, '2021-10-05 06:11:30', '2021-10-05 06:11:30'), (7411, 4, '2021-10-05 06:11:30', '2021-10-05 06:11:30'), (7412, 4, '2021-10-05 06:11:31', '2021-10-05 06:11:31'), (7413, 4, '2021-10-05 06:11:31', '2021-10-05 06:11:31'), (7414, 4, '2021-10-05 06:11:31', '2021-10-05 06:11:31'), (7415, 4, '2021-10-05 06:11:31', '2021-10-05 06:11:31'), (7416, 4, '2021-10-05 06:11:31', '2021-10-05 06:11:31'), (7417, 4, '2021-10-05 06:11:32', '2021-10-05 06:11:32'), (7418, 4, '2021-10-05 06:11:32', '2021-10-05 06:11:32'), (7419, 4, '2021-10-05 06:11:32', '2021-10-05 06:11:32'), (7420, 4, '2021-10-05 06:11:32', '2021-10-05 06:11:32'), (7421, 4, '2021-10-05 06:11:33', '2021-10-05 06:11:33'), (7422, 4, '2021-10-05 06:11:33', '2021-10-05 06:11:33'), (7423, 4, '2021-10-05 06:11:33', '2021-10-05 06:11:33'), (7424, 4, '2021-10-05 06:11:33', '2021-10-05 06:11:33'), (7425, 4, '2021-10-05 06:11:34', '2021-10-05 06:11:34'), (7426, 4, '2021-10-05 06:11:34', '2021-10-05 06:11:34'), (7427, 4, '2021-10-05 06:11:35', '2021-10-05 06:11:35'), (7428, 4, '2021-10-05 06:11:35', '2021-10-05 06:11:35'), (7429, 4, '2021-10-05 06:11:35', '2021-10-05 06:11:35'), (7430, 4, '2021-10-05 06:11:35', '2021-10-05 06:11:35'), (7431, 4, '2021-10-05 06:11:36', '2021-10-05 06:11:36'), (7432, 4, '2021-10-05 06:11:36', '2021-10-05 06:11:36'), (7433, 4, '2021-10-05 06:11:37', '2021-10-05 06:11:37'), (7434, 4, '2021-10-05 06:11:37', '2021-10-05 06:11:37'), (7435, 4, '2021-10-05 06:11:37', '2021-10-05 06:11:37'), (7436, 4, '2021-10-05 06:11:37', '2021-10-05 06:11:37'), (7437, 4, '2021-10-05 06:11:37', '2021-10-05 06:11:37'), (7438, 4, '2021-10-05 06:11:38', '2021-10-05 06:11:38'), (7439, 4, '2021-10-05 06:11:38', '2021-10-05 06:11:38'), (7440, 4, '2021-10-05 06:11:38', '2021-10-05 06:11:38'), (7441, 4, '2021-10-05 06:11:38', '2021-10-05 06:11:38'), (7442, 4, '2021-10-05 06:11:39', '2021-10-05 06:11:39'), (7443, 4, '2021-10-05 06:11:39', '2021-10-05 06:11:39'), (7444, 4, '2021-10-05 06:11:39', '2021-10-05 06:11:39'), (7445, 4, '2021-10-05 06:11:40', '2021-10-05 06:11:40'), (7446, 4, '2021-10-05 06:11:40', '2021-10-05 06:11:40'), (7447, 4, '2021-10-05 06:11:40', '2021-10-05 06:11:40'), (7448, 4, '2021-10-05 06:11:40', '2021-10-05 06:11:40'), (7449, 4, '2021-10-05 06:11:41', '2021-10-05 06:11:41'), (7450, 4, '2021-10-05 06:11:41', '2021-10-05 06:11:41'), (7451, 4, '2021-10-05 06:11:41', '2021-10-05 06:11:41'), (7452, 4, '2021-10-05 06:11:42', '2021-10-05 06:11:42'), (7453, 4, '2021-10-05 06:11:42', '2021-10-05 06:11:42'), (7454, 4, '2021-10-05 06:11:42', '2021-10-05 06:11:42'), (7455, 4, '2021-10-05 06:11:43', '2021-10-05 06:11:43'), (7456, 4, '2021-10-05 06:11:43', '2021-10-05 06:11:43'), (7457, 4, '2021-10-05 06:11:43', '2021-10-05 06:11:43'), (7458, 4, '2021-10-05 06:11:43', '2021-10-05 06:11:43'), (7459, 4, '2021-10-05 06:11:43', '2021-10-05 06:11:43'), (7460, 4, '2021-10-05 06:11:44', '2021-10-05 06:11:44'), (7461, 4, '2021-10-05 06:11:44', '2021-10-05 06:11:44'), (7462, 4, '2021-10-05 06:11:44', '2021-10-05 06:11:44'), (7463, 4, '2021-10-05 06:11:44', '2021-10-05 06:11:44'), (7464, 4, '2021-10-05 06:11:45', '2021-10-05 06:11:45'), (7465, 4, '2021-10-05 06:11:45', '2021-10-05 06:11:45'), (7466, 4, '2021-10-05 06:11:45', '2021-10-05 06:11:45'), (7467, 4, '2021-10-05 06:11:46', '2021-10-05 06:11:46'), (7468, 4, '2021-10-05 06:11:46', '2021-10-05 06:11:46'), (7469, 4, '2021-10-05 06:11:46', '2021-10-05 06:11:46'), (7470, 4, '2021-10-05 06:11:46', '2021-10-05 06:11:46'), (7471, 4, '2021-10-05 06:11:46', '2021-10-05 06:11:46'), (7472, 4, '2021-10-05 06:11:47', '2021-10-05 06:11:47'), (7473, 4, '2021-10-05 06:11:47', '2021-10-05 06:11:47'), (7474, 4, '2021-10-05 06:11:47', '2021-10-05 06:11:47'), (7475, 4, '2021-10-05 06:11:47', '2021-10-05 06:11:47'), (7476, 4, '2021-10-05 06:11:47', '2021-10-05 06:11:47'), (7477, 4, '2021-10-05 06:11:48', '2021-10-05 06:11:48'), (7478, 4, '2021-10-05 06:11:48', '2021-10-05 06:11:48'), (7479, 4, '2021-10-05 06:11:48', '2021-10-05 06:11:48'), (7480, 4, '2021-10-05 06:11:48', '2021-10-05 06:11:48'), (7481, 4, '2021-10-05 06:11:50', '2021-10-05 06:11:50'), (7482, 4, '2021-10-05 06:11:50', '2021-10-05 06:11:50'), (7483, 4, '2021-10-05 06:11:50', '2021-10-05 06:11:50'), (7484, 4, '2021-10-05 06:11:50', '2021-10-05 06:11:50'), (7485, 4, '2021-10-05 06:11:51', '2021-10-05 06:11:51'), (7486, 4, '2021-10-05 06:11:51', '2021-10-05 06:11:51'), (7487, 4, '2021-10-05 06:11:51', '2021-10-05 06:11:51'), (7488, 4, '2021-10-05 06:11:52', '2021-10-05 06:11:52'), (7489, 4, '2021-10-05 06:11:52', '2021-10-05 06:11:52'), (7490, 4, '2021-10-05 06:11:52', '2021-10-05 06:11:52'), (7491, 4, '2021-10-05 06:11:52', '2021-10-05 06:11:52'), (7492, 4, '2021-10-06 06:11:57', '2021-10-06 06:11:57'), (7493, 4, '2021-10-06 06:11:59', '2021-10-06 06:11:59'), (7494, 4, '2021-10-06 06:11:59', '2021-10-06 06:11:59'), (7495, 4, '2021-10-06 06:11:59', '2021-10-06 06:11:59'), (7496, 4, '2021-10-06 06:12:00', '2021-10-06 06:12:00'), (7497, 4, '2021-10-06 06:12:00', '2021-10-06 06:12:00'), (7498, 4, '2021-10-06 06:12:00', '2021-10-06 06:12:00'), (7499, 4, '2021-10-06 06:12:00', '2021-10-06 06:12:00'), (7500, 4, '2021-10-06 06:12:01', '2021-10-06 06:12:01'), (7501, 4, '2021-10-06 06:12:01', '2021-10-06 06:12:01'), (7502, 4, '2021-10-06 06:12:01', '2021-10-06 06:12:01'), (7503, 4, '2021-10-06 06:12:01', '2021-10-06 06:12:01'), (7504, 4, '2021-10-06 06:12:02', '2021-10-06 06:12:02'), (7505, 4, '2021-10-06 06:12:02', '2021-10-06 06:12:02'), (7506, 4, '2021-10-06 06:12:02', '2021-10-06 06:12:02'), (7507, 4, '2021-10-06 06:12:02', '2021-10-06 06:12:02'), (7508, 4, '2021-10-06 06:12:02', '2021-10-06 06:12:02'), (7509, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7510, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7511, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7512, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7513, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7514, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7515, 4, '2021-10-06 06:12:03', '2021-10-06 06:12:03'), (7516, 4, '2021-10-06 06:12:04', '2021-10-06 06:12:04'), (7517, 4, '2021-10-06 06:12:04', '2021-10-06 06:12:04'), (7518, 4, '2021-10-06 06:12:04', '2021-10-06 06:12:04'), (7519, 4, '2021-10-06 06:12:04', '2021-10-06 06:12:04'), (7520, 4, '2021-10-06 06:12:04', '2021-10-06 06:12:04'), (7521, 4, '2021-10-06 06:12:05', '2021-10-06 06:12:05'), (7522, 4, '2021-10-06 06:12:05', '2021-10-06 06:12:05'), (7523, 4, '2021-10-06 06:12:05', '2021-10-06 06:12:05'), (7524, 4, '2021-10-06 06:12:05', '2021-10-06 06:12:05'), (7525, 4, '2021-10-06 06:12:06', '2021-10-06 06:12:06'), (7526, 4, '2021-10-06 06:12:06', '2021-10-06 06:12:06'), (7527, 4, '2021-10-06 06:12:06', '2021-10-06 06:12:06'), (7528, 4, '2021-10-06 06:12:06', '2021-10-06 06:12:06'), (7529, 4, '2021-10-06 06:12:06', '2021-10-06 06:12:06'), (7530, 4, '2021-10-06 06:12:07', '2021-10-06 06:12:07'), (7531, 4, '2021-10-06 06:12:07', '2021-10-06 06:12:07'), (7532, 4, '2021-10-06 06:12:07', '2021-10-06 06:12:07'), (7533, 4, '2021-10-06 06:12:08', '2021-10-06 06:12:08'), (7534, 4, '2021-10-06 06:12:08', '2021-10-06 06:12:08'), (7535, 4, '2021-10-06 06:12:08', '2021-10-06 06:12:08'), (7536, 4, '2021-10-06 06:12:08', '2021-10-06 06:12:08'), (7537, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7538, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7539, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7540, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7541, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7542, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7543, 4, '2021-10-06 06:12:09', '2021-10-06 06:12:09'), (7544, 4, '2021-10-06 06:12:10', '2021-10-06 06:12:10'), (7545, 4, '2021-10-06 06:12:10', '2021-10-06 06:12:10'), (7546, 4, '2021-10-06 06:12:10', '2021-10-06 06:12:10'), (7547, 4, '2021-10-06 06:12:10', '2021-10-06 06:12:10'), (7548, 4, '2021-10-06 06:12:10', '2021-10-06 06:12:10'), (7549, 4, '2021-10-06 06:12:11', '2021-10-06 06:12:11'), (7550, 4, '2021-10-06 06:12:11', '2021-10-06 06:12:11'), (7551, 4, '2021-10-06 06:12:11', '2021-10-06 06:12:11'), (7552, 4, '2021-10-06 06:12:11', '2021-10-06 06:12:11'), (7553, 4, '2021-10-06 06:12:12', '2021-10-06 06:12:12'), (7554, 4, '2021-10-06 06:12:12', '2021-10-06 06:12:12'), (7555, 4, '2021-10-06 06:12:12', '2021-10-06 06:12:12'), (7556, 4, '2021-10-06 06:12:12', '2021-10-06 06:12:12'), (7557, 4, '2021-10-06 06:12:12', '2021-10-06 06:12:12'), (7558, 4, '2021-10-06 06:12:12', '2021-10-06 06:12:12'), (7559, 4, '2021-10-06 06:12:13', '2021-10-06 06:12:13'), (7560, 4, '2021-10-06 06:12:13', '2021-10-06 06:12:13'), (7561, 4, '2021-10-06 06:12:13', '2021-10-06 06:12:13'), (7562, 4, '2021-10-06 06:12:13', '2021-10-06 06:12:13'), (7563, 4, '2021-10-06 06:12:14', '2021-10-06 06:12:14'), (7564, 4, '2021-10-06 06:12:14', '2021-10-06 06:12:14'), (7565, 4, '2021-10-06 06:12:14', '2021-10-06 06:12:14'), (7566, 4, '2021-10-06 06:12:14', '2021-10-06 06:12:14'), (7567, 4, '2021-10-06 06:12:14', '2021-10-06 06:12:14'), (7568, 4, '2021-10-06 06:12:15', '2021-10-06 06:12:15'), (7569, 4, '2021-10-06 06:12:15', '2021-10-06 06:12:15'), (7570, 4, '2021-10-06 06:12:15', '2021-10-06 06:12:15'), (7571, 4, '2021-10-06 06:12:15', '2021-10-06 06:12:15'), (7572, 4, '2021-10-06 06:12:15', '2021-10-06 06:12:15'), (7573, 4, '2021-10-06 06:12:16', '2021-10-06 06:12:16'), (7574, 4, '2021-10-06 06:12:16', '2021-10-06 06:12:16'), (7575, 4, '2021-10-06 06:12:16', '2021-10-06 06:12:16'), (7576, 4, '2021-10-06 06:12:16', '2021-10-06 06:12:16'), (7577, 4, '2021-10-06 06:12:16', '2021-10-06 06:12:16'), (7578, 4, '2021-10-06 06:12:17', '2021-10-06 06:12:17'), (7579, 4, '2021-10-06 06:12:17', '2021-10-06 06:12:17'), (7580, 4, '2021-10-06 06:12:17', '2021-10-06 06:12:17'), (7581, 4, '2021-10-06 06:12:17', '2021-10-06 06:12:17'), (7582, 4, '2021-10-06 06:12:17', '2021-10-06 06:12:17'), (7583, 4, '2021-10-06 06:12:17', '2021-10-06 06:12:17'), (7584, 4, '2021-10-06 06:12:18', '2021-10-06 06:12:18'), (7585, 4, '2021-10-06 06:12:18', '2021-10-06 06:12:18'), (7586, 4, '2021-10-06 06:12:18', '2021-10-06 06:12:18'), (7587, 4, '2021-10-06 06:12:18', '2021-10-06 06:12:18'), (7588, 4, '2021-10-06 06:12:18', '2021-10-06 06:12:18'), (7589, 4, '2021-10-06 06:12:18', '2021-10-06 06:12:18'), (7590, 4, '2021-10-06 06:12:19', '2021-10-06 06:12:19'), (7591, 4, '2021-10-06 06:12:19', '2021-10-06 06:12:19'), (7592, 4, '2021-10-06 06:12:19', '2021-10-06 06:12:19'), (7593, 4, '2021-10-06 06:12:20', '2021-10-06 06:12:20'), (7594, 4, '2021-10-06 06:12:20', '2021-10-06 06:12:20'), (7595, 4, '2021-10-06 06:12:20', '2021-10-06 06:12:20'), (7596, 4, '2021-10-06 06:12:21', '2021-10-06 06:12:21'), (7597, 4, '2021-10-06 06:12:21', '2021-10-06 06:12:21'), (7598, 4, '2021-10-06 06:12:21', '2021-10-06 06:12:21'), (7599, 4, '2021-10-06 06:12:21', '2021-10-06 06:12:21'), (7600, 4, '2021-10-06 06:12:21', '2021-10-06 06:12:21'), (7601, 4, '2021-10-06 06:12:22', '2021-10-06 06:12:22'), (7602, 4, '2021-10-06 06:12:22', '2021-10-06 06:12:22'), (7603, 4, '2021-10-06 06:12:22', '2021-10-06 06:12:22'), (7604, 4, '2021-10-06 06:12:22', '2021-10-06 06:12:22'), (7605, 4, '2021-10-06 06:12:22', '2021-10-06 06:12:22'), (7606, 4, '2021-10-06 06:12:23', '2021-10-06 06:12:23'), (7607, 4, '2021-10-06 06:12:23', '2021-10-06 06:12:23'), (7608, 4, '2021-10-06 06:12:23', '2021-10-06 06:12:23'), (7609, 4, '2021-10-06 06:12:23', '2021-10-06 06:12:23'), (7610, 4, '2021-10-06 06:12:23', '2021-10-06 06:12:23'), (7611, 4, '2021-10-06 06:12:24', '2021-10-06 06:12:24'), (7612, 4, '2021-10-06 06:12:24', '2021-10-06 06:12:24'), (7613, 4, '2021-10-06 06:12:24', '2021-10-06 06:12:24'), (7614, 4, '2021-10-06 06:12:24', '2021-10-06 06:12:24'), (7615, 4, '2021-10-06 06:12:25', '2021-10-06 06:12:25'), (7616, 4, '2021-10-06 06:12:25', '2021-10-06 06:12:25'), (7617, 4, '2021-10-06 06:12:25', '2021-10-06 06:12:25'), (7618, 4, '2021-10-06 06:12:25', '2021-10-06 06:12:25'), (7619, 4, '2021-10-06 06:12:26', '2021-10-06 06:12:26'), (7620, 4, '2021-10-06 06:12:26', '2021-10-06 06:12:26'), (7621, 4, '2021-10-06 06:12:26', '2021-10-06 06:12:26'), (7622, 4, '2021-10-06 06:12:27', '2021-10-06 06:12:27'), (7623, 4, '2021-10-06 06:12:27', '2021-10-06 06:12:27'), (7624, 4, '2021-10-06 06:12:27', '2021-10-06 06:12:27'), (7625, 4, '2021-10-06 06:12:27', '2021-10-06 06:12:27'), (7626, 4, '2021-10-06 06:12:28', '2021-10-06 06:12:28'), (7627, 4, '2021-10-06 06:12:28', '2021-10-06 06:12:28'), (7628, 4, '2021-10-06 06:12:28', '2021-10-06 06:12:28'), (7629, 4, '2021-10-06 06:12:28', '2021-10-06 06:12:28'), (7630, 4, '2021-10-06 06:12:28', '2021-10-06 06:12:28'), (7631, 4, '2021-10-06 06:12:29', '2021-10-06 06:12:29'), (7632, 4, '2021-10-06 06:12:29', '2021-10-06 06:12:29'), (7633, 4, '2021-10-06 06:12:29', '2021-10-06 06:12:29'), (7634, 4, '2021-10-06 06:12:29', '2021-10-06 06:12:29'), (7635, 4, '2021-10-06 06:12:30', '2021-10-06 06:12:30'), (7636, 4, '2021-10-06 06:12:30', '2021-10-06 06:12:30'), (7637, 4, '2021-10-06 06:12:30', '2021-10-06 06:12:30'), (7638, 4, '2021-10-06 06:12:30', '2021-10-06 06:12:30'), (7639, 4, '2021-10-06 06:12:30', '2021-10-06 06:12:30'), (7640, 4, '2021-10-06 06:12:31', '2021-10-06 06:12:31'), (7641, 4, '2021-10-06 06:12:31', '2021-10-06 06:12:31'), (7642, 4, '2021-10-06 06:12:31', '2021-10-06 06:12:31'), (7643, 4, '2021-10-06 06:12:31', '2021-10-06 06:12:31'), (7644, 4, '2021-10-06 06:12:31', '2021-10-06 06:12:31'), (7645, 4, '2021-10-06 06:12:32', '2021-10-06 06:12:32'), (7646, 4, '2021-10-06 06:12:32', '2021-10-06 06:12:32'), (7647, 4, '2021-10-06 06:12:32', '2021-10-06 06:12:32'), (7648, 4, '2021-10-06 06:12:33', '2021-10-06 06:12:33'), (7649, 4, '2021-10-06 06:12:33', '2021-10-06 06:12:33'), (7650, 4, '2021-10-06 06:12:33', '2021-10-06 06:12:33'), (7651, 4, '2021-10-06 06:12:33', '2021-10-06 06:12:33'), (7652, 4, '2021-10-06 06:12:33', '2021-10-06 06:12:33'), (7653, 4, '2021-10-06 06:12:34', '2021-10-06 06:12:34'), (7654, 4, '2021-10-06 06:12:34', '2021-10-06 06:12:34'), (7655, 4, '2021-10-06 06:12:34', '2021-10-06 06:12:34'), (7656, 4, '2021-10-06 06:12:34', '2021-10-06 06:12:34'), (7657, 4, '2021-10-06 06:12:34', '2021-10-06 06:12:34'), (7658, 4, '2021-10-06 06:12:35', '2021-10-06 06:12:35'), (7659, 4, '2021-10-06 06:12:35', '2021-10-06 06:12:35'), (7660, 4, '2021-10-06 06:12:35', '2021-10-06 06:12:35'), (7661, 4, '2021-10-06 06:12:35', '2021-10-06 06:12:35'), (7662, 4, '2021-10-06 06:12:35', '2021-10-06 06:12:35'), (7663, 4, '2021-10-06 06:12:36', '2021-10-06 06:12:36'), (7664, 4, '2021-10-06 06:12:36', '2021-10-06 06:12:36'), (7665, 4, '2021-10-06 06:12:36', '2021-10-06 06:12:36'), (7666, 4, '2021-10-06 06:12:36', '2021-10-06 06:12:36'), (7667, 4, '2021-10-06 06:12:36', '2021-10-06 06:12:36'), (7668, 4, '2021-10-06 06:12:37', '2021-10-06 06:12:37'), (7669, 4, '2021-10-06 06:12:37', '2021-10-06 06:12:37'), (7670, 4, '2021-10-06 06:12:37', '2021-10-06 06:12:37'), (7671, 4, '2021-10-06 06:12:37', '2021-10-06 06:12:37'), (7672, 4, '2021-10-06 06:12:38', '2021-10-06 06:12:38'), (7673, 4, '2021-10-06 06:12:38', '2021-10-06 06:12:38'), (7674, 4, '2021-10-06 06:12:38', '2021-10-06 06:12:38'), (7675, 4, '2021-10-06 06:12:38', '2021-10-06 06:12:38'), (7676, 4, '2021-10-06 06:12:39', '2021-10-06 06:12:39'), (7677, 4, '2021-10-06 06:12:39', '2021-10-06 06:12:39'), (7678, 4, '2021-10-06 06:12:39', '2021-10-06 06:12:39'), (7679, 4, '2021-10-06 06:12:39', '2021-10-06 06:12:39'), (7680, 4, '2021-10-06 06:12:39', '2021-10-06 06:12:39'), (7681, 4, '2021-10-06 06:12:40', '2021-10-06 06:12:40'), (7682, 4, '2021-10-06 06:12:40', '2021-10-06 06:12:40'), (7683, 4, '2021-10-06 06:12:40', '2021-10-06 06:12:40'), (7684, 4, '2021-10-06 06:12:40', '2021-10-06 06:12:40'), (7685, 4, '2021-10-06 06:12:40', '2021-10-06 06:12:40'), (7686, 4, '2021-10-06 06:12:41', '2021-10-06 06:12:41'), (7687, 4, '2021-10-06 06:12:41', '2021-10-06 06:12:41'), (7688, 4, '2021-10-06 06:12:41', '2021-10-06 06:12:41'), (7689, 4, '2021-10-06 06:12:41', '2021-10-06 06:12:41'), (7690, 4, '2021-10-06 06:12:41', '2021-10-06 06:12:41'), (7691, 4, '2021-10-06 06:12:42', '2021-10-06 06:12:42'), (7692, 4, '2021-10-06 06:12:42', '2021-10-06 06:12:42'), (7693, 4, '2021-10-06 06:12:42', '2021-10-06 06:12:42'), (7694, 4, '2021-10-06 06:12:42', '2021-10-06 06:12:42'), (7695, 4, '2021-10-06 06:12:42', '2021-10-06 06:12:42'), (7696, 4, '2021-10-06 06:12:43', '2021-10-06 06:12:43'), (7697, 4, '2021-10-06 06:12:43', '2021-10-06 06:12:43'), (7698, 4, '2021-10-06 06:12:43', '2021-10-06 06:12:43'), (7699, 4, '2021-10-06 06:12:43', '2021-10-06 06:12:43'), (7700, 4, '2021-10-06 06:12:44', '2021-10-06 06:12:44'), (7701, 4, '2021-10-06 06:12:44', '2021-10-06 06:12:44'), (7702, 4, '2021-10-06 06:12:44', '2021-10-06 06:12:44'), (7703, 4, '2021-10-06 06:12:44', '2021-10-06 06:12:44'), (7704, 4, '2021-10-06 06:12:44', '2021-10-06 06:12:44'), (7705, 4, '2021-10-06 06:12:45', '2021-10-06 06:12:45'), (7706, 4, '2021-10-06 06:12:45', '2021-10-06 06:12:45'), (7707, 4, '2021-10-06 06:12:45', '2021-10-06 06:12:45'), (7708, 4, '2021-10-06 06:12:46', '2021-10-06 06:12:46'), (7709, 4, '2021-10-06 06:12:46', '2021-10-06 06:12:46'), (7710, 4, '2021-10-06 06:12:46', '2021-10-06 06:12:46'), (7711, 4, '2021-10-06 06:12:46', '2021-10-06 06:12:46'), (7712, 4, '2021-10-06 06:12:46', '2021-10-06 06:12:46'), (7713, 4, '2021-10-06 06:12:47', '2021-10-06 06:12:47'), (7714, 4, '2021-10-06 06:12:47', '2021-10-06 06:12:47'), (7715, 4, '2021-10-06 06:12:47', '2021-10-06 06:12:47'), (7716, 4, '2021-10-06 06:12:47', '2021-10-06 06:12:47'), (7717, 4, '2021-10-06 06:12:48', '2021-10-06 06:12:48'), (7718, 4, '2021-10-06 06:12:48', '2021-10-06 06:12:48'), (7719, 4, '2021-10-06 06:12:48', '2021-10-06 06:12:48'), (7720, 4, '2021-10-06 06:12:48', '2021-10-06 06:12:48'), (7721, 4, '2021-10-06 06:12:48', '2021-10-06 06:12:48'), (7722, 4, '2021-10-06 06:12:49', '2021-10-06 06:12:49'), (7723, 4, '2021-10-06 06:12:49', '2021-10-06 06:12:49'), (7724, 4, '2021-10-06 06:12:49', '2021-10-06 06:12:49'), (7725, 4, '2021-10-06 06:12:49', '2021-10-06 06:12:49'), (7726, 4, '2021-10-06 06:12:50', '2021-10-06 06:12:50'), (7727, 4, '2021-10-06 06:12:50', '2021-10-06 06:12:50'), (7728, 4, '2021-10-06 06:12:50', '2021-10-06 06:12:50'), (7729, 4, '2021-10-06 06:12:51', '2021-10-06 06:12:51'), (7730, 4, '2021-10-06 06:12:51', '2021-10-06 06:12:51'), (7731, 4, '2021-10-06 06:12:51', '2021-10-06 06:12:51'), (7732, 4, '2021-10-06 06:12:51', '2021-10-06 06:12:51'), (7733, 4, '2021-10-06 06:12:52', '2021-10-06 06:12:52'), (7734, 4, '2021-10-06 06:12:52', '2021-10-06 06:12:52'), (7735, 4, '2021-10-06 06:12:52', '2021-10-06 06:12:52'), (7736, 4, '2021-10-06 06:12:52', '2021-10-06 06:12:52'), (7737, 4, '2021-10-06 06:12:52', '2021-10-06 06:12:52'), (7738, 4, '2021-10-06 06:12:53', '2021-10-06 06:12:53'), (7739, 4, '2021-10-06 06:12:53', '2021-10-06 06:12:53'), (7740, 4, '2021-10-06 06:12:53', '2021-10-06 06:12:53'), (7741, 4, '2021-10-06 06:12:53', '2021-10-06 06:12:53'), (7742, 4, '2021-10-06 06:12:54', '2021-10-06 06:12:54'), (7743, 4, '2021-10-06 06:12:54', '2021-10-06 06:12:54'), (7744, 4, '2021-10-06 06:12:54', '2021-10-06 06:12:54'), (7745, 4, '2021-10-06 06:12:54', '2021-10-06 06:12:54'), (7746, 4, '2021-10-06 06:12:54', '2021-10-06 06:12:54'), (7747, 4, '2021-10-06 06:12:55', '2021-10-06 06:12:55'), (7748, 4, '2021-10-06 06:12:55', '2021-10-06 06:12:55'), (7749, 4, '2021-10-06 06:12:55', '2021-10-06 06:12:55'), (7750, 4, '2021-10-06 06:12:55', '2021-10-06 06:12:55'), (7751, 4, '2021-10-06 06:12:56', '2021-10-06 06:12:56'), (7752, 4, '2021-10-06 06:12:56', '2021-10-06 06:12:56'), (7753, 4, '2021-10-06 06:12:56', '2021-10-06 06:12:56'), (7754, 4, '2021-10-06 06:12:56', '2021-10-06 06:12:56'), (7755, 4, '2021-10-06 06:12:57', '2021-10-06 06:12:57'), (7756, 4, '2021-10-06 06:12:57', '2021-10-06 06:12:57'), (7757, 4, '2021-10-06 06:12:57', '2021-10-06 06:12:57'), (7758, 4, '2021-10-06 06:12:57', '2021-10-06 06:12:57'), (7759, 4, '2021-10-06 06:12:58', '2021-10-06 06:12:58'), (7760, 4, '2021-10-06 06:12:58', '2021-10-06 06:12:58'), (7761, 4, '2021-10-07 06:13:02', '2021-10-07 06:13:02'), (7762, 4, '2021-10-07 06:13:03', '2021-10-07 06:13:03'), (7763, 4, '2021-10-07 06:13:03', '2021-10-07 06:13:03'), (7764, 4, '2021-10-07 06:13:04', '2021-10-07 06:13:04'), (7765, 4, '2021-10-07 06:13:04', '2021-10-07 06:13:04'), (7766, 4, '2021-10-07 06:13:04', '2021-10-07 06:13:04'), (7767, 4, '2021-10-07 06:13:04', '2021-10-07 06:13:04'), (7768, 4, '2021-10-07 06:13:04', '2021-10-07 06:13:04'), (7769, 4, '2021-10-07 06:13:05', '2021-10-07 06:13:05'), (7770, 4, '2021-10-07 06:13:05', '2021-10-07 06:13:05'), (7771, 4, '2021-10-07 06:13:05', '2021-10-07 06:13:05'), (7772, 4, '2021-10-07 06:13:05', '2021-10-07 06:13:05'), (7773, 4, '2021-10-07 06:13:05', '2021-10-07 06:13:05'), (7774, 4, '2021-10-07 06:13:05', '2021-10-07 06:13:05'), (7775, 4, '2021-10-07 06:13:06', '2021-10-07 06:13:06'), (7776, 4, '2021-10-07 06:13:06', '2021-10-07 06:13:06'), (7777, 4, '2021-10-07 06:13:06', '2021-10-07 06:13:06'), (7778, 4, '2021-10-07 06:13:06', '2021-10-07 06:13:06'), (7779, 4, '2021-10-07 06:13:06', '2021-10-07 06:13:06'), (7780, 4, '2021-10-07 06:13:07', '2021-10-07 06:13:07'), (7781, 4, '2021-10-07 06:13:07', '2021-10-07 06:13:07'), (7782, 4, '2021-10-07 06:13:07', '2021-10-07 06:13:07'), (7783, 4, '2021-10-07 06:13:07', '2021-10-07 06:13:07'), (7784, 4, '2021-10-07 06:13:07', '2021-10-07 06:13:07'), (7785, 4, '2021-10-07 06:13:08', '2021-10-07 06:13:08'), (7786, 4, '2021-10-07 06:13:08', '2021-10-07 06:13:08'), (7787, 4, '2021-10-07 06:13:08', '2021-10-07 06:13:08'), (7788, 4, '2021-10-07 06:13:08', '2021-10-07 06:13:08'), (7789, 4, '2021-10-07 06:13:09', '2021-10-07 06:13:09'), (7790, 4, '2021-10-07 06:13:09', '2021-10-07 06:13:09'), (7791, 4, '2021-10-07 06:13:09', '2021-10-07 06:13:09'), (7792, 4, '2021-10-07 06:13:10', '2021-10-07 06:13:10'), (7793, 4, '2021-10-07 06:13:10', '2021-10-07 06:13:10'), (7794, 4, '2021-10-07 06:13:10', '2021-10-07 06:13:10'), (7795, 4, '2021-10-07 06:13:10', '2021-10-07 06:13:10'), (7796, 4, '2021-10-07 06:13:10', '2021-10-07 06:13:10'), (7797, 4, '2021-10-07 06:13:10', '2021-10-07 06:13:10'), (7798, 4, '2021-10-07 06:13:11', '2021-10-07 06:13:11'), (7799, 4, '2021-10-07 06:13:11', '2021-10-07 06:13:11'), (7800, 4, '2021-10-07 06:13:11', '2021-10-07 06:13:11'), (7801, 4, '2021-10-07 06:13:11', '2021-10-07 06:13:11'), (7802, 4, '2021-10-07 06:13:11', '2021-10-07 06:13:11'), (7803, 4, '2021-10-07 06:13:12', '2021-10-07 06:13:12'), (7804, 4, '2021-10-07 06:13:12', '2021-10-07 06:13:12'), (7805, 4, '2021-10-07 06:13:12', '2021-10-07 06:13:12'), (7806, 4, '2021-10-07 06:13:12', '2021-10-07 06:13:12'), (7807, 4, '2021-10-07 06:13:12', '2021-10-07 06:13:12'), (7808, 4, '2021-10-07 06:13:13', '2021-10-07 06:13:13'), (7809, 4, '2021-10-07 06:13:13', '2021-10-07 06:13:13'), (7810, 4, '2021-10-07 06:13:13', '2021-10-07 06:13:13'), (7811, 4, '2021-10-07 06:13:14', '2021-10-07 06:13:14'), (7812, 4, '2021-10-07 06:13:14', '2021-10-07 06:13:14'), (7813, 4, '2021-10-07 06:13:14', '2021-10-07 06:13:14'), (7814, 4, '2021-10-07 06:13:14', '2021-10-07 06:13:14'), (7815, 4, '2021-10-07 06:13:15', '2021-10-07 06:13:15'), (7816, 4, '2021-10-07 06:13:15', '2021-10-07 06:13:15'), (7817, 4, '2021-10-07 06:13:15', '2021-10-07 06:13:15'), (7818, 4, '2021-10-07 06:13:15', '2021-10-07 06:13:15'), (7819, 4, '2021-10-07 06:13:15', '2021-10-07 06:13:15'), (7820, 4, '2021-10-07 06:13:16', '2021-10-07 06:13:16'), (7821, 4, '2021-10-07 06:13:16', '2021-10-07 06:13:16'), (7822, 4, '2021-10-07 06:13:16', '2021-10-07 06:13:16'), (7823, 4, '2021-10-07 06:13:16', '2021-10-07 06:13:16'), (7824, 4, '2021-10-07 06:13:16', '2021-10-07 06:13:16'), (7825, 4, '2021-10-07 06:13:17', '2021-10-07 06:13:17'), (7826, 4, '2021-10-07 06:13:17', '2021-10-07 06:13:17'), (7827, 4, '2021-10-07 06:13:17', '2021-10-07 06:13:17'), (7828, 4, '2021-10-07 06:13:17', '2021-10-07 06:13:17'), (7829, 4, '2021-10-07 06:13:19', '2021-10-07 06:13:19'), (7830, 4, '2021-10-07 06:13:19', '2021-10-07 06:13:19'), (7831, 4, '2021-10-07 06:13:19', '2021-10-07 06:13:19'), (7832, 4, '2021-10-07 06:13:19', '2021-10-07 06:13:19'), (7833, 4, '2021-10-07 06:13:19', '2021-10-07 06:13:19'), (7834, 4, '2021-10-07 06:13:20', '2021-10-07 06:13:20'), (7835, 4, '2021-10-07 06:13:20', '2021-10-07 06:13:20'), (7836, 4, '2021-10-07 06:13:20', '2021-10-07 06:13:20'), (7837, 4, '2021-10-07 06:13:20', '2021-10-07 06:13:20'), (7838, 4, '2021-10-07 06:13:20', '2021-10-07 06:13:20'), (7839, 4, '2021-10-07 06:13:21', '2021-10-07 06:13:21'), (7840, 4, '2021-10-07 06:13:21', '2021-10-07 06:13:21'), (7841, 4, '2021-10-07 06:13:21', '2021-10-07 06:13:21'), (7842, 4, '2021-10-07 06:13:21', '2021-10-07 06:13:21'), (7843, 4, '2021-10-07 06:13:22', '2021-10-07 06:13:22'), (7844, 4, '2021-10-07 06:13:22', '2021-10-07 06:13:22'), (7845, 4, '2021-10-07 06:13:22', '2021-10-07 06:13:22'), (7846, 4, '2021-10-07 06:13:22', '2021-10-07 06:13:22'), (7847, 4, '2021-10-07 06:13:22', '2021-10-07 06:13:22'), (7848, 4, '2021-10-07 06:13:23', '2021-10-07 06:13:23'), (7849, 4, '2021-10-07 06:13:23', '2021-10-07 06:13:23'), (7850, 4, '2021-10-07 06:13:23', '2021-10-07 06:13:23'), (7851, 4, '2021-10-07 06:13:23', '2021-10-07 06:13:23'), (7852, 4, '2021-10-07 06:13:23', '2021-10-07 06:13:23'), (7853, 4, '2021-10-07 06:13:24', '2021-10-07 06:13:24'), (7854, 4, '2021-10-07 06:13:24', '2021-10-07 06:13:24'), (7855, 4, '2021-10-07 06:13:24', '2021-10-07 06:13:24'), (7856, 4, '2021-10-07 06:13:25', '2021-10-07 06:13:25'), (7857, 4, '2021-10-07 06:13:25', '2021-10-07 06:13:25'), (7858, 4, '2021-10-07 06:13:25', '2021-10-07 06:13:25'), (7859, 4, '2021-10-07 06:13:25', '2021-10-07 06:13:25'), (7860, 4, '2021-10-07 06:13:25', '2021-10-07 06:13:25'), (7861, 4, '2021-10-07 06:13:26', '2021-10-07 06:13:26'), (7862, 4, '2021-10-07 06:13:26', '2021-10-07 06:13:26'), (7863, 4, '2021-10-07 06:13:26', '2021-10-07 06:13:26'), (7864, 4, '2021-10-07 06:13:26', '2021-10-07 06:13:26'), (7865, 4, '2021-10-07 06:13:26', '2021-10-07 06:13:26'), (7866, 4, '2021-10-07 06:13:27', '2021-10-07 06:13:27'), (7867, 4, '2021-10-07 06:13:27', '2021-10-07 06:13:27'), (7868, 4, '2021-10-07 06:13:27', '2021-10-07 06:13:27'), (7869, 4, '2021-10-07 06:13:28', '2021-10-07 06:13:28'), (7870, 4, '2021-10-07 06:13:28', '2021-10-07 06:13:28'), (7871, 4, '2021-10-07 06:13:28', '2021-10-07 06:13:28'), (7872, 4, '2021-10-07 06:13:29', '2021-10-07 06:13:29'), (7873, 4, '2021-10-07 06:13:29', '2021-10-07 06:13:29'), (7874, 4, '2021-10-07 06:13:29', '2021-10-07 06:13:29'), (7875, 4, '2021-10-07 06:13:29', '2021-10-07 06:13:29'), (7876, 4, '2021-10-07 06:13:30', '2021-10-07 06:13:30'), (7877, 4, '2021-10-07 06:13:37', '2021-10-07 06:13:37'), (7878, 4, '2021-10-07 06:13:37', '2021-10-07 06:13:37'), (7879, 4, '2021-10-07 06:13:37', '2021-10-07 06:13:37'), (7880, 4, '2021-10-07 06:13:37', '2021-10-07 06:13:37'), (7881, 4, '2021-10-07 06:13:38', '2021-10-07 06:13:38'), (7882, 4, '2021-10-07 06:13:38', '2021-10-07 06:13:38'), (7883, 4, '2021-10-07 06:13:39', '2021-10-07 06:13:39'), (7884, 4, '2021-10-07 06:13:39', '2021-10-07 06:13:39'), (7885, 4, '2021-10-07 06:13:39', '2021-10-07 06:13:39'), (7886, 4, '2021-10-07 06:13:40', '2021-10-07 06:13:40'), (7887, 4, '2021-10-07 06:13:40', '2021-10-07 06:13:40'), (7888, 4, '2021-10-07 06:13:40', '2021-10-07 06:13:40'), (7889, 4, '2021-10-07 06:13:41', '2021-10-07 06:13:41'), (7890, 4, '2021-10-07 06:13:41', '2021-10-07 06:13:41'), (7891, 4, '2021-10-07 06:13:41', '2021-10-07 06:13:41'), (7892, 4, '2021-10-07 06:13:41', '2021-10-07 06:13:41'), (7893, 4, '2021-10-07 06:13:41', '2021-10-07 06:13:41'), (7894, 4, '2021-10-07 06:13:42', '2021-10-07 06:13:42'), (7895, 4, '2021-10-07 06:13:42', '2021-10-07 06:13:42'), (7896, 4, '2021-10-07 06:13:42', '2021-10-07 06:13:42'), (7897, 4, '2021-10-07 06:13:42', '2021-10-07 06:13:42'), (7898, 4, '2021-10-07 06:13:42', '2021-10-07 06:13:42'), (7899, 4, '2021-10-07 06:13:42', '2021-10-07 06:13:42'), (7900, 4, '2021-10-07 06:13:43', '2021-10-07 06:13:43'), (7901, 4, '2021-10-07 06:13:43', '2021-10-07 06:13:43'), (7902, 4, '2021-10-07 06:13:43', '2021-10-07 06:13:43'), (7903, 4, '2021-10-07 06:13:43', '2021-10-07 06:13:43'), (7904, 4, '2021-10-07 06:13:43', '2021-10-07 06:13:43'), (7905, 4, '2021-10-07 06:13:44', '2021-10-07 06:13:44'), (7906, 4, '2021-10-07 06:13:44', '2021-10-07 06:13:44'), (7907, 4, '2021-10-07 06:13:44', '2021-10-07 06:13:44'), (7908, 4, '2021-10-07 06:13:44', '2021-10-07 06:13:44'), (7909, 4, '2021-10-07 06:13:45', '2021-10-07 06:13:45'), (7910, 4, '2021-10-07 06:13:45', '2021-10-07 06:13:45'), (7911, 4, '2021-10-07 06:13:45', '2021-10-07 06:13:45'), (7912, 4, '2021-10-07 06:13:45', '2021-10-07 06:13:45'), (7913, 4, '2021-10-08 06:13:49', '2021-10-08 06:13:49'), (7914, 4, '2021-10-08 06:13:51', '2021-10-08 06:13:51'), (7915, 4, '2021-10-08 06:13:51', '2021-10-08 06:13:51'), (7916, 4, '2021-10-08 06:13:51', '2021-10-08 06:13:51'), (7917, 4, '2021-10-08 06:13:51', '2021-10-08 06:13:51'), (7918, 4, '2021-10-08 06:13:52', '2021-10-08 06:13:52'), (7919, 4, '2021-10-08 06:13:52', '2021-10-08 06:13:52'), (7920, 4, '2021-10-08 06:13:53', '2021-10-08 06:13:53'), (7921, 4, '2021-10-08 06:13:53', '2021-10-08 06:13:53'), (7922, 4, '2021-10-08 06:13:53', '2021-10-08 06:13:53'), (7923, 4, '2021-10-08 06:13:53', '2021-10-08 06:13:53'), (7924, 4, '2021-10-08 06:13:53', '2021-10-08 06:13:53'), (7925, 4, '2021-10-08 06:13:53', '2021-10-08 06:13:53'), (7926, 4, '2021-10-08 06:13:54', '2021-10-08 06:13:54'), (7927, 4, '2021-10-08 06:13:54', '2021-10-08 06:13:54'), (7928, 4, '2021-10-08 06:13:54', '2021-10-08 06:13:54'), (7929, 4, '2021-10-08 06:13:54', '2021-10-08 06:13:54'), (7930, 4, '2021-10-08 06:13:54', '2021-10-08 06:13:54'), (7931, 4, '2021-10-08 06:13:55', '2021-10-08 06:13:55'), (7932, 4, '2021-10-08 06:13:55', '2021-10-08 06:13:55'), (7933, 4, '2021-10-08 06:13:55', '2021-10-08 06:13:55'), (7934, 4, '2021-10-08 06:13:55', '2021-10-08 06:13:55'), (7935, 4, '2021-10-08 06:13:55', '2021-10-08 06:13:55'), (7936, 4, '2021-10-08 06:13:55', '2021-10-08 06:13:55'), (7937, 4, '2021-10-08 06:13:56', '2021-10-08 06:13:56'), (7938, 4, '2021-10-08 06:13:56', '2021-10-08 06:13:56'), (7939, 4, '2021-10-08 06:13:56', '2021-10-08 06:13:56'), (7940, 4, '2021-10-08 06:13:56', '2021-10-08 06:13:56'), (7941, 4, '2021-10-08 06:13:56', '2021-10-08 06:13:56'), (7942, 4, '2021-10-08 06:13:57', '2021-10-08 06:13:57'), (7943, 4, '2021-10-08 06:13:57', '2021-10-08 06:13:57'), (7944, 4, '2021-10-08 06:13:57', '2021-10-08 06:13:57'), (7945, 4, '2021-10-08 06:13:57', '2021-10-08 06:13:57'), (7946, 4, '2021-10-08 06:13:57', '2021-10-08 06:13:57'), (7947, 4, '2021-10-08 06:13:58', '2021-10-08 06:13:58'), (7948, 4, '2021-10-08 06:13:58', '2021-10-08 06:13:58'), (7949, 4, '2021-10-08 06:13:58', '2021-10-08 06:13:58'), (7950, 4, '2021-10-08 06:13:58', '2021-10-08 06:13:58'), (7951, 4, '2021-10-08 06:13:58', '2021-10-08 06:13:58'), (7952, 4, '2021-10-08 06:13:59', '2021-10-08 06:13:59'), (7953, 4, '2021-10-08 06:13:59', '2021-10-08 06:13:59'), (7954, 4, '2021-10-08 06:13:59', '2021-10-08 06:13:59'), (7955, 4, '2021-10-08 06:13:59', '2021-10-08 06:13:59'), (7956, 4, '2021-10-08 06:13:59', '2021-10-08 06:13:59'), (7957, 4, '2021-10-08 06:13:59', '2021-10-08 06:13:59'), (7958, 4, '2021-10-08 06:14:00', '2021-10-08 06:14:00'), (7959, 4, '2021-10-08 06:14:00', '2021-10-08 06:14:00'), (7960, 4, '2021-10-08 06:14:00', '2021-10-08 06:14:00'), (7961, 4, '2021-10-08 06:14:00', '2021-10-08 06:14:00'), (7962, 4, '2021-10-08 06:14:01', '2021-10-08 06:14:01'), (7963, 4, '2021-10-08 06:14:01', '2021-10-08 06:14:01'), (7964, 4, '2021-10-08 06:14:01', '2021-10-08 06:14:01'), (7965, 4, '2021-10-08 06:14:01', '2021-10-08 06:14:01'), (7966, 4, '2021-10-08 06:14:01', '2021-10-08 06:14:01'), (7967, 4, '2021-10-08 06:14:02', '2021-10-08 06:14:02'), (7968, 4, '2021-10-08 06:14:02', '2021-10-08 06:14:02'), (7969, 4, '2021-10-08 06:14:02', '2021-10-08 06:14:02'), (7970, 4, '2021-10-08 06:14:02', '2021-10-08 06:14:02'), (7971, 4, '2021-10-08 06:14:02', '2021-10-08 06:14:02'), (7972, 4, '2021-10-08 06:14:03', '2021-10-08 06:14:03'), (7973, 4, '2021-10-08 06:14:03', '2021-10-08 06:14:03'), (7974, 4, '2021-10-08 06:14:03', '2021-10-08 06:14:03'), (7975, 4, '2021-10-08 06:14:03', '2021-10-08 06:14:03'), (7976, 4, '2021-10-08 06:14:03', '2021-10-08 06:14:03'), (7977, 4, '2021-10-08 06:14:04', '2021-10-08 06:14:04'), (7978, 4, '2021-10-08 06:14:04', '2021-10-08 06:14:04'), (7979, 4, '2021-10-08 06:14:04', '2021-10-08 06:14:04'), (7980, 4, '2021-10-08 06:14:05', '2021-10-08 06:14:05'), (7981, 4, '2021-10-08 06:14:05', '2021-10-08 06:14:05'), (7982, 4, '2021-10-08 06:14:05', '2021-10-08 06:14:05'), (7983, 4, '2021-10-08 06:14:05', '2021-10-08 06:14:05'), (7984, 4, '2021-10-08 06:14:05', '2021-10-08 06:14:05'), (7985, 4, '2021-10-08 06:14:06', '2021-10-08 06:14:06'), (7986, 4, '2021-10-08 06:14:06', '2021-10-08 06:14:06'), (7987, 4, '2021-10-08 06:14:06', '2021-10-08 06:14:06'), (7988, 4, '2021-10-08 06:14:06', '2021-10-08 06:14:06'), (7989, 4, '2021-10-08 06:14:07', '2021-10-08 06:14:07'), (7990, 4, '2021-10-08 06:14:07', '2021-10-08 06:14:07'), (7991, 4, '2021-10-08 06:14:24', '2021-10-08 06:14:24'), (7992, 4, '2021-10-08 06:14:24', '2021-10-08 06:14:24'), (7993, 4, '2021-10-08 06:14:24', '2021-10-08 06:14:24'), (7994, 4, '2021-10-08 06:14:24', '2021-10-08 06:14:24'), (7995, 4, '2021-10-08 06:14:24', '2021-10-08 06:14:24'), (7996, 4, '2021-10-08 06:14:24', '2021-10-08 06:14:24'), (7997, 4, '2021-10-08 06:14:25', '2021-10-08 06:14:25'), (7998, 4, '2021-10-08 06:14:25', '2021-10-08 06:14:25'), (7999, 4, '2021-10-08 06:14:26', '2021-10-08 06:14:26'), (8000, 4, '2021-10-08 06:14:26', '2021-10-08 06:14:26'), (8001, 4, '2021-10-08 06:14:27', '2021-10-08 06:14:27'), (8002, 4, '2021-10-08 06:14:27', '2021-10-08 06:14:27'), (8003, 4, '2021-10-08 06:14:27', '2021-10-08 06:14:27'), (8004, 4, '2021-10-08 06:14:27', '2021-10-08 06:14:27'), (8005, 4, '2021-10-08 06:14:28', '2021-10-08 06:14:28'), (8006, 4, '2021-10-08 06:14:28', '2021-10-08 06:14:28'), (8007, 4, '2021-10-08 06:14:28', '2021-10-08 06:14:28'), (8008, 4, '2021-10-08 06:14:28', '2021-10-08 06:14:28'), (8009, 4, '2021-10-08 06:14:28', '2021-10-08 06:14:28'), (8010, 4, '2021-10-08 06:14:29', '2021-10-08 06:14:29'), (8011, 4, '2021-10-08 06:14:29', '2021-10-08 06:14:29'), (8012, 4, '2021-10-08 06:14:29', '2021-10-08 06:14:29'), (8013, 4, '2021-10-08 06:14:30', '2021-10-08 06:14:30'), (8014, 4, '2021-10-08 06:14:30', '2021-10-08 06:14:30'), (8015, 4, '2021-10-08 06:14:30', '2021-10-08 06:14:30'), (8016, 4, '2021-10-08 06:14:30', '2021-10-08 06:14:30'), (8017, 4, '2021-10-08 06:14:31', '2021-10-08 06:14:31'), (8018, 4, '2021-10-08 06:14:32', '2021-10-08 06:14:32'), (8019, 4, '2021-10-08 06:14:32', '2021-10-08 06:14:32'), (8020, 4, '2021-10-08 06:14:33', '2021-10-08 06:14:33'), (8021, 4, '2021-10-08 06:14:33', '2021-10-08 06:14:33'), (8022, 4, '2021-10-08 06:14:34', '2021-10-08 06:14:34'), (8023, 4, '2021-10-08 06:14:34', '2021-10-08 06:14:34'), (8024, 4, '2021-10-08 06:14:35', '2021-10-08 06:14:35'), (8025, 4, '2021-10-08 06:14:35', '2021-10-08 06:14:35'), (8026, 4, '2021-10-08 06:14:35', '2021-10-08 06:14:35'), (8027, 4, '2021-10-08 06:14:35', '2021-10-08 06:14:35'), (8028, 4, '2021-10-08 06:14:36', '2021-10-08 06:14:36'), (8029, 4, '2021-10-08 06:14:36', '2021-10-08 06:14:36'), (8030, 4, '2021-10-08 06:14:36', '2021-10-08 06:14:36'), (8031, 4, '2021-10-08 06:14:36', '2021-10-08 06:14:36'), (8032, 4, '2021-10-08 06:14:37', '2021-10-08 06:14:37'), (8033, 4, '2021-10-08 06:14:37', '2021-10-08 06:14:37'), (8034, 4, '2021-10-08 06:14:37', '2021-10-08 06:14:37'), (8035, 4, '2021-10-08 06:14:37', '2021-10-08 06:14:37'), (8036, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8037, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8038, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8039, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8040, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8041, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8042, 4, '2021-10-08 06:14:38', '2021-10-08 06:14:38'), (8043, 4, '2021-10-08 06:14:39', '2021-10-08 06:14:39'), (8044, 4, '2021-10-08 06:14:39', '2021-10-08 06:14:39'), (8045, 4, '2021-10-08 06:14:39', '2021-10-08 06:14:39'), (8046, 4, '2021-10-08 06:14:39', '2021-10-08 06:14:39'), (8047, 4, '2021-10-08 06:14:39', '2021-10-08 06:14:39'), (8048, 4, '2021-10-08 06:14:40', '2021-10-08 06:14:40'), (8049, 4, '2021-10-08 06:14:40', '2021-10-08 06:14:40'), (8050, 4, '2021-10-08 06:14:40', '2021-10-08 06:14:40'), (8051, 4, '2021-10-08 06:14:40', '2021-10-08 06:14:40'), (8052, 4, '2021-10-08 06:14:40', '2021-10-08 06:14:40'), (8053, 4, '2021-10-08 06:14:41', '2021-10-08 06:14:41'), (8054, 4, '2021-10-08 06:14:41', '2021-10-08 06:14:41'), (8055, 4, '2021-10-08 06:14:41', '2021-10-08 06:14:41'), (8056, 4, '2021-10-08 06:14:41', '2021-10-08 06:14:41'), (8057, 4, '2021-10-08 06:14:41', '2021-10-08 06:14:41'), (8058, 4, '2021-10-08 06:14:42', '2021-10-08 06:14:42'), (8059, 4, '2021-10-08 06:14:42', '2021-10-08 06:14:42'), (8060, 4, '2021-10-08 06:14:42', '2021-10-08 06:14:42'), (8061, 4, '2021-10-08 06:14:42', '2021-10-08 06:14:42'), (8062, 4, '2021-10-08 06:14:42', '2021-10-08 06:14:42'), (8063, 4, '2021-10-08 06:14:42', '2021-10-08 06:14:42'), (8064, 4, '2021-10-08 06:14:43', '2021-10-08 06:14:43'), (8065, 4, '2021-10-08 06:14:43', '2021-10-08 06:14:43'), (8066, 4, '2021-10-08 06:14:43', '2021-10-08 06:14:43'), (8067, 4, '2021-10-08 06:14:43', '2021-10-08 06:14:43'), (8068, 4, '2021-10-08 06:14:43', '2021-10-08 06:14:43'), (8069, 4, '2021-10-08 06:14:44', '2021-10-08 06:14:44'), (8070, 4, '2021-10-08 06:14:54', '2021-10-08 06:14:54'), (8071, 4, '2021-10-08 06:14:54', '2021-10-08 06:14:54'), (8072, 4, '2021-10-08 06:14:54', '2021-10-08 06:14:54'), (8073, 4, '2021-10-08 06:14:54', '2021-10-08 06:14:54'), (8074, 4, '2021-10-08 06:14:54', '2021-10-08 06:14:54'), (8075, 4, '2021-10-08 06:14:54', '2021-10-08 06:14:54'), (8076, 4, '2021-10-08 06:14:55', '2021-10-08 06:14:55'), (8077, 4, '2021-10-08 06:14:55', '2021-10-08 06:14:55'), (8078, 4, '2021-10-08 06:14:55', '2021-10-08 06:14:55'), (8079, 4, '2021-10-08 06:14:55', '2021-10-08 06:14:55'), (8080, 4, '2021-10-08 06:14:55', '2021-10-08 06:14:55'), (8081, 4, '2021-10-08 06:14:56', '2021-10-08 06:14:56'), (8082, 4, '2021-10-08 06:14:56', '2021-10-08 06:14:56'), (8083, 4, '2021-10-08 06:14:56', '2021-10-08 06:14:56'), (8084, 4, '2021-10-08 06:14:56', '2021-10-08 06:14:56'), (8085, 4, '2021-10-08 06:14:56', '2021-10-08 06:14:56'), (8086, 4, '2021-10-08 06:14:57', '2021-10-08 06:14:57'), (8087, 4, '2021-10-08 06:14:57', '2021-10-08 06:14:57'), (8088, 4, '2021-10-08 06:14:57', '2021-10-08 06:14:57'), (8089, 4, '2021-10-08 06:14:57', '2021-10-08 06:14:57'), (8090, 4, '2021-10-08 06:14:57', '2021-10-08 06:14:57'), (8091, 4, '2021-10-08 06:14:57', '2021-10-08 06:14:57'), (8092, 4, '2021-10-08 06:14:58', '2021-10-08 06:14:58'), (8093, 4, '2021-10-08 06:14:58', '2021-10-08 06:14:58'), (8094, 4, '2021-10-08 06:14:58', '2021-10-08 06:14:58'), (8095, 4, '2021-10-08 06:14:58', '2021-10-08 06:14:58'), (8096, 4, '2021-10-08 06:14:58', '2021-10-08 06:14:58'), (8097, 4, '2021-10-08 06:14:59', '2021-10-08 06:14:59'), (8098, 4, '2021-10-08 06:14:59', '2021-10-08 06:14:59'), (8099, 4, '2021-10-08 06:14:59', '2021-10-08 06:14:59'), (8100, 4, '2021-10-08 06:14:59', '2021-10-08 06:14:59'), (8101, 4, '2021-10-08 06:14:59', '2021-10-08 06:14:59'), (8102, 4, '2021-10-08 06:15:00', '2021-10-08 06:15:00'), (8103, 4, '2021-10-08 06:15:00', '2021-10-08 06:15:00'), (8104, 4, '2021-10-08 06:15:00', '2021-10-08 06:15:00'), (8105, 4, '2021-10-08 06:15:00', '2021-10-08 06:15:00'), (8106, 4, '2021-10-08 06:15:01', '2021-10-08 06:15:01'), (8107, 4, '2021-10-08 06:15:01', '2021-10-08 06:15:01'), (8108, 4, '2021-10-08 06:15:01', '2021-10-08 06:15:01'), (8109, 4, '2021-10-08 06:15:01', '2021-10-08 06:15:01'), (8110, 4, '2021-10-08 06:15:01', '2021-10-08 06:15:01'), (8111, 4, '2021-10-08 06:15:02', '2021-10-08 06:15:02'), (8112, 4, '2021-10-08 06:15:02', '2021-10-08 06:15:02'), (8113, 4, '2021-10-08 06:15:02', '2021-10-08 06:15:02'), (8114, 4, '2021-10-08 06:15:02', '2021-10-08 06:15:02'), (8115, 4, '2021-10-08 06:15:02', '2021-10-08 06:15:02'), (8116, 4, '2021-10-08 06:15:03', '2021-10-08 06:15:03'), (8117, 4, '2021-10-08 06:15:03', '2021-10-08 06:15:03'), (8118, 4, '2021-10-08 06:15:03', '2021-10-08 06:15:03'), (8119, 4, '2021-10-08 06:15:03', '2021-10-08 06:15:03'), (8120, 4, '2021-10-08 06:15:04', '2021-10-08 06:15:04'), (8121, 4, '2021-10-08 06:15:04', '2021-10-08 06:15:04'), (8122, 4, '2021-10-08 06:15:04', '2021-10-08 06:15:04'), (8123, 4, '2021-10-08 06:15:04', '2021-10-08 06:15:04'), (8124, 4, '2021-10-08 06:15:05', '2021-10-08 06:15:05'), (8125, 4, '2021-10-08 06:15:05', '2021-10-08 06:15:05'), (8126, 4, '2021-10-08 06:15:05', '2021-10-08 06:15:05'), (8127, 4, '2021-10-08 06:15:05', '2021-10-08 06:15:05'), (8128, 4, '2021-10-08 06:15:05', '2021-10-08 06:15:05'), (8129, 4, '2021-10-08 06:15:06', '2021-10-08 06:15:06'), (8130, 4, '2021-10-08 06:15:06', '2021-10-08 06:15:06'), (8131, 4, '2021-10-08 06:15:06', '2021-10-08 06:15:06'), (8132, 4, '2021-10-08 06:15:07', '2021-10-08 06:15:07'), (8133, 4, '2021-10-08 06:15:07', '2021-10-08 06:15:07'), (8134, 4, '2021-10-08 06:15:07', '2021-10-08 06:15:07'), (8135, 4, '2021-10-08 06:15:07', '2021-10-08 06:15:07'), (8136, 4, '2021-10-08 06:15:07', '2021-10-08 06:15:07'), (8137, 4, '2021-10-08 06:15:08', '2021-10-08 06:15:08'), (8138, 4, '2021-10-08 06:15:08', '2021-10-08 06:15:08'), (8139, 4, '2021-10-08 06:15:08', '2021-10-08 06:15:08'), (8140, 4, '2021-10-08 06:15:08', '2021-10-08 06:15:08'), (8141, 4, '2021-10-08 06:15:08', '2021-10-08 06:15:08'), (8142, 4, '2021-10-08 06:15:09', '2021-10-08 06:15:09'), (8143, 4, '2021-10-08 06:15:09', '2021-10-08 06:15:09'), (8144, 4, '2021-10-08 06:15:09', '2021-10-08 06:15:09'), (8145, 4, '2021-10-08 06:15:09', '2021-10-08 06:15:09'), (8146, 4, '2021-10-08 06:15:10', '2021-10-08 06:15:10'), (8147, 4, '2021-10-08 06:15:10', '2021-10-08 06:15:10'), (8148, 4, '2021-10-08 06:15:10', '2021-10-08 06:15:10'), (8149, 4, '2021-10-08 06:15:10', '2021-10-08 06:15:10'), (8150, 4, '2021-10-08 06:15:11', '2021-10-08 06:15:11'), (8151, 4, '2021-10-08 06:15:11', '2021-10-08 06:15:11'), (8152, 4, '2021-10-08 06:15:11', '2021-10-08 06:15:11'), (8153, 4, '2021-10-08 06:15:11', '2021-10-08 06:15:11'), (8154, 4, '2021-10-08 06:15:11', '2021-10-08 06:15:11'), (8155, 4, '2021-10-08 06:15:12', '2021-10-08 06:15:12'), (8156, 4, '2021-10-08 06:15:12', '2021-10-08 06:15:12'), (8157, 4, '2021-10-08 06:15:12', '2021-10-08 06:15:12'), (8158, 4, '2021-10-08 06:15:13', '2021-10-08 06:15:13'), (8159, 4, '2021-10-08 06:15:13', '2021-10-08 06:15:13'), (8160, 4, '2021-10-08 06:15:13', '2021-10-08 06:15:13'), (8161, 4, '2021-10-08 06:15:13', '2021-10-08 06:15:13'), (8162, 4, '2021-10-08 06:15:14', '2021-10-08 06:15:14'), (8163, 4, '2021-10-08 06:15:14', '2021-10-08 06:15:14'), (8164, 4, '2021-10-08 06:15:14', '2021-10-08 06:15:14'), (8165, 4, '2021-10-08 06:15:14', '2021-10-08 06:15:14'), (8166, 4, '2021-10-08 06:15:14', '2021-10-08 06:15:14'), (8167, 4, '2021-10-08 06:15:15', '2021-10-08 06:15:15'), (8168, 4, '2021-10-09 06:15:20', '2021-10-09 06:15:20'), (8169, 4, '2021-10-09 06:15:20', '2021-10-09 06:15:20'), (8170, 4, '2021-10-09 06:15:21', '2021-10-09 06:15:21'), (8171, 4, '2021-10-09 06:15:21', '2021-10-09 06:15:21'), (8172, 4, '2021-10-09 06:15:21', '2021-10-09 06:15:21'), (8173, 4, '2021-10-09 06:15:21', '2021-10-09 06:15:21'), (8174, 4, '2021-10-09 06:15:22', '2021-10-09 06:15:22'), (8175, 4, '2021-10-09 06:15:22', '2021-10-09 06:15:22'), (8176, 4, '2021-10-09 06:15:22', '2021-10-09 06:15:22'), (8177, 4, '2021-10-09 06:15:23', '2021-10-09 06:15:23'), (8178, 4, '2021-10-09 06:15:23', '2021-10-09 06:15:23'), (8179, 4, '2021-10-09 06:15:23', '2021-10-09 06:15:23'), (8180, 4, '2021-10-09 06:15:23', '2021-10-09 06:15:23'), (8181, 4, '2021-10-09 06:15:23', '2021-10-09 06:15:23'), (8182, 4, '2021-10-09 06:15:24', '2021-10-09 06:15:24'), (8183, 4, '2021-10-09 06:15:24', '2021-10-09 06:15:24'), (8184, 4, '2021-10-09 06:15:24', '2021-10-09 06:15:24'), (8185, 4, '2021-10-09 06:15:25', '2021-10-09 06:15:25'), (8186, 4, '2021-10-09 06:15:25', '2021-10-09 06:15:25'), (8187, 4, '2021-10-09 06:15:25', '2021-10-09 06:15:25'), (8188, 4, '2021-10-09 06:15:25', '2021-10-09 06:15:25'), (8189, 4, '2021-10-09 06:15:26', '2021-10-09 06:15:26'), (8190, 4, '2021-10-09 06:15:26', '2021-10-09 06:15:26'), (8191, 4, '2021-10-09 06:15:26', '2021-10-09 06:15:26'), (8192, 4, '2021-10-09 06:15:26', '2021-10-09 06:15:26'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (8193, 4, '2021-10-09 06:15:27', '2021-10-09 06:15:27'), (8194, 4, '2021-10-09 06:15:27', '2021-10-09 06:15:27'), (8195, 4, '2021-10-09 06:15:27', '2021-10-09 06:15:27'), (8196, 4, '2021-10-09 06:15:27', '2021-10-09 06:15:27'), (8197, 4, '2021-10-09 06:15:28', '2021-10-09 06:15:28'), (8198, 4, '2021-10-09 06:15:28', '2021-10-09 06:15:28'), (8199, 4, '2021-10-09 06:15:29', '2021-10-09 06:15:29'), (8200, 4, '2021-10-09 06:15:29', '2021-10-09 06:15:29'), (8201, 4, '2021-10-09 06:15:29', '2021-10-09 06:15:29'), (8202, 4, '2021-10-09 06:15:29', '2021-10-09 06:15:29'), (8203, 4, '2021-10-09 06:15:29', '2021-10-09 06:15:29'), (8204, 4, '2021-10-09 06:15:30', '2021-10-09 06:15:30'), (8205, 4, '2021-10-09 06:15:30', '2021-10-09 06:15:30'), (8206, 4, '2021-10-09 06:15:31', '2021-10-09 06:15:31'), (8207, 4, '2021-10-09 06:15:31', '2021-10-09 06:15:31'), (8208, 4, '2021-10-09 06:15:32', '2021-10-09 06:15:32'), (8209, 4, '2021-10-09 06:15:32', '2021-10-09 06:15:32'), (8210, 4, '2021-10-09 06:15:32', '2021-10-09 06:15:32'), (8211, 4, '2021-10-09 06:15:32', '2021-10-09 06:15:32'), (8212, 4, '2021-10-09 06:15:33', '2021-10-09 06:15:33'), (8213, 4, '2021-10-09 06:15:34', '2021-10-09 06:15:34'), (8214, 4, '2021-10-09 06:15:34', '2021-10-09 06:15:34'), (8215, 4, '2021-10-09 06:15:34', '2021-10-09 06:15:34'), (8216, 4, '2021-10-09 06:15:35', '2021-10-09 06:15:35'), (8217, 4, '2021-10-09 06:15:35', '2021-10-09 06:15:35'), (8218, 4, '2021-10-09 06:15:35', '2021-10-09 06:15:35'), (8219, 4, '2021-10-09 06:15:35', '2021-10-09 06:15:35'), (8220, 4, '2021-10-09 06:15:36', '2021-10-09 06:15:36'), (8221, 4, '2021-10-09 06:15:37', '2021-10-09 06:15:37'), (8222, 4, '2021-10-09 06:15:37', '2021-10-09 06:15:37'), (8223, 4, '2021-10-09 06:15:38', '2021-10-09 06:15:38'), (8224, 4, '2021-10-09 06:15:38', '2021-10-09 06:15:38'), (8225, 4, '2021-10-09 06:15:38', '2021-10-09 06:15:38'), (8226, 4, '2021-10-09 06:15:39', '2021-10-09 06:15:39'), (8227, 4, '2021-10-09 06:15:40', '2021-10-09 06:15:40'), (8228, 4, '2021-10-09 06:15:40', '2021-10-09 06:15:40'), (8229, 4, '2021-10-09 06:15:41', '2021-10-09 06:15:41'), (8230, 4, '2021-10-09 06:15:41', '2021-10-09 06:15:41'), (8231, 4, '2021-10-09 06:15:41', '2021-10-09 06:15:41'), (8232, 4, '2021-10-09 06:15:41', '2021-10-09 06:15:41'), (8233, 4, '2021-10-09 06:15:42', '2021-10-09 06:15:42'), (8234, 4, '2021-10-09 06:15:42', '2021-10-09 06:15:42'), (8235, 4, '2021-10-09 06:15:42', '2021-10-09 06:15:42'), (8236, 4, '2021-10-09 06:15:43', '2021-10-09 06:15:43'), (8237, 4, '2021-10-09 06:15:44', '2021-10-09 06:15:44'), (8238, 4, '2021-10-09 06:15:44', '2021-10-09 06:15:44'), (8239, 4, '2021-10-09 06:15:44', '2021-10-09 06:15:44'), (8240, 4, '2021-10-09 06:15:44', '2021-10-09 06:15:44'), (8241, 4, '2021-10-09 06:15:45', '2021-10-09 06:15:45'), (8242, 4, '2021-10-09 06:15:45', '2021-10-09 06:15:45'), (8243, 4, '2021-10-09 06:15:45', '2021-10-09 06:15:45'), (8244, 4, '2021-10-09 06:15:45', '2021-10-09 06:15:45'), (8245, 4, '2021-10-09 06:15:46', '2021-10-09 06:15:46'), (8246, 4, '2021-10-09 06:15:46', '2021-10-09 06:15:46'), (8247, 4, '2021-10-09 06:15:46', '2021-10-09 06:15:46'), (8248, 4, '2021-10-09 06:15:47', '2021-10-09 06:15:47'), (8249, 4, '2021-10-09 06:15:47', '2021-10-09 06:15:47'), (8250, 4, '2021-10-09 06:15:49', '2021-10-09 06:15:49'), (8251, 4, '2021-10-09 06:15:49', '2021-10-09 06:15:49'), (8252, 4, '2021-10-09 06:15:50', '2021-10-09 06:15:50'), (8253, 4, '2021-10-09 06:15:50', '2021-10-09 06:15:50'), (8254, 4, '2021-10-09 06:15:50', '2021-10-09 06:15:50'), (8255, 4, '2021-10-09 06:15:51', '2021-10-09 06:15:51'), (8256, 4, '2021-10-09 06:15:51', '2021-10-09 06:15:51'), (8257, 4, '2021-10-09 06:15:51', '2021-10-09 06:15:51'), (8258, 4, '2021-10-09 06:15:51', '2021-10-09 06:15:51'), (8259, 4, '2021-10-09 06:15:52', '2021-10-09 06:15:52'), (8260, 4, '2021-10-09 06:15:52', '2021-10-09 06:15:52'), (8261, 4, '2021-10-09 06:15:52', '2021-10-09 06:15:52'), (8262, 4, '2021-10-09 06:15:52', '2021-10-09 06:15:52'), (8263, 4, '2021-10-09 06:15:53', '2021-10-09 06:15:53'), (8264, 4, '2021-10-09 06:15:53', '2021-10-09 06:15:53'), (8265, 4, '2021-10-09 06:15:53', '2021-10-09 06:15:53'), (8266, 4, '2021-10-09 06:15:53', '2021-10-09 06:15:53'), (8267, 4, '2021-10-09 06:15:54', '2021-10-09 06:15:54'), (8268, 4, '2021-10-09 06:15:54', '2021-10-09 06:15:54'), (8269, 4, '2021-10-09 06:15:54', '2021-10-09 06:15:54'), (8270, 4, '2021-10-09 06:15:54', '2021-10-09 06:15:54'), (8271, 4, '2021-10-09 06:15:55', '2021-10-09 06:15:55'), (8272, 4, '2021-10-09 06:15:55', '2021-10-09 06:15:55'), (8273, 4, '2021-10-09 06:15:55', '2021-10-09 06:15:55'), (8274, 4, '2021-10-09 06:15:55', '2021-10-09 06:15:55'), (8275, 4, '2021-10-09 06:15:56', '2021-10-09 06:15:56'), (8276, 4, '2021-10-09 06:15:56', '2021-10-09 06:15:56'), (8277, 4, '2021-10-09 06:15:57', '2021-10-09 06:15:57'), (8278, 4, '2021-10-09 06:15:57', '2021-10-09 06:15:57'), (8279, 4, '2021-10-09 06:15:57', '2021-10-09 06:15:57'), (8280, 4, '2021-10-09 06:15:57', '2021-10-09 06:15:57'), (8281, 4, '2021-10-09 06:15:58', '2021-10-09 06:15:58'), (8282, 4, '2021-10-09 06:15:58', '2021-10-09 06:15:58'), (8283, 4, '2021-10-09 06:15:58', '2021-10-09 06:15:58'), (8284, 4, '2021-10-09 06:15:58', '2021-10-09 06:15:58'), (8285, 4, '2021-10-09 06:15:59', '2021-10-09 06:15:59'), (8286, 4, '2021-10-09 06:16:00', '2021-10-09 06:16:00'), (8287, 4, '2021-10-09 06:16:00', '2021-10-09 06:16:00'), (8288, 4, '2021-10-09 06:16:00', '2021-10-09 06:16:00'), (8289, 4, '2021-10-09 06:16:00', '2021-10-09 06:16:00'), (8290, 4, '2021-10-09 06:16:00', '2021-10-09 06:16:00'), (8291, 4, '2021-10-09 06:16:01', '2021-10-09 06:16:01'), (8292, 4, '2021-10-09 06:16:01', '2021-10-09 06:16:01'), (8293, 4, '2021-10-09 06:16:01', '2021-10-09 06:16:01'), (8294, 4, '2021-10-09 06:16:02', '2021-10-09 06:16:02'), (8295, 4, '2021-10-09 06:16:02', '2021-10-09 06:16:02'), (8296, 4, '2021-10-09 06:16:02', '2021-10-09 06:16:02'), (8297, 4, '2021-10-09 06:16:02', '2021-10-09 06:16:02'), (8298, 4, '2021-10-09 06:16:03', '2021-10-09 06:16:03'), (8299, 4, '2021-10-09 06:16:03', '2021-10-09 06:16:03'), (8300, 4, '2021-10-09 06:16:05', '2021-10-09 06:16:05'), (8301, 4, '2021-10-09 06:16:05', '2021-10-09 06:16:05'), (8302, 4, '2021-10-09 06:16:05', '2021-10-09 06:16:05'), (8303, 4, '2021-10-09 06:16:05', '2021-10-09 06:16:05'), (8304, 4, '2021-10-09 06:16:05', '2021-10-09 06:16:05'), (8305, 4, '2021-10-10 06:16:10', '2021-10-10 06:16:10'), (8306, 4, '2021-10-10 06:16:11', '2021-10-10 06:16:11'), (8307, 4, '2021-10-10 06:16:12', '2021-10-10 06:16:12'), (8308, 4, '2021-10-10 06:16:12', '2021-10-10 06:16:12'), (8309, 4, '2021-10-10 06:16:12', '2021-10-10 06:16:12'), (8310, 4, '2021-10-10 06:16:12', '2021-10-10 06:16:12'), (8311, 4, '2021-10-10 06:16:12', '2021-10-10 06:16:12'), (8312, 4, '2021-10-10 06:16:13', '2021-10-10 06:16:13'), (8313, 4, '2021-10-10 06:16:13', '2021-10-10 06:16:13'), (8314, 4, '2021-10-10 06:16:13', '2021-10-10 06:16:13'), (8315, 4, '2021-10-10 06:16:13', '2021-10-10 06:16:13'), (8316, 4, '2021-10-10 06:16:14', '2021-10-10 06:16:14'), (8317, 4, '2021-10-10 06:16:14', '2021-10-10 06:16:14'), (8318, 4, '2021-10-10 06:16:14', '2021-10-10 06:16:14'), (8319, 4, '2021-10-10 06:16:14', '2021-10-10 06:16:14'), (8320, 4, '2021-10-10 06:16:15', '2021-10-10 06:16:15'), (8321, 4, '2021-10-10 06:16:15', '2021-10-10 06:16:15'), (8322, 4, '2021-10-10 06:16:15', '2021-10-10 06:16:15'), (8323, 4, '2021-10-10 06:16:16', '2021-10-10 06:16:16'), (8324, 4, '2021-10-10 06:16:16', '2021-10-10 06:16:16'), (8325, 4, '2021-10-10 06:16:16', '2021-10-10 06:16:16'), (8326, 4, '2021-10-10 06:16:16', '2021-10-10 06:16:16'), (8327, 4, '2021-10-10 06:16:17', '2021-10-10 06:16:17'), (8328, 4, '2021-10-10 06:16:17', '2021-10-10 06:16:17'), (8329, 4, '2021-10-10 06:16:17', '2021-10-10 06:16:17'), (8330, 4, '2021-10-10 06:16:17', '2021-10-10 06:16:17'), (8331, 4, '2021-10-10 06:16:18', '2021-10-10 06:16:18'), (8332, 4, '2021-10-10 06:16:18', '2021-10-10 06:16:18'), (8333, 4, '2021-10-10 06:16:18', '2021-10-10 06:16:18'), (8334, 4, '2021-10-10 06:16:19', '2021-10-10 06:16:19'), (8335, 4, '2021-10-10 06:16:19', '2021-10-10 06:16:19'), (8336, 4, '2021-10-10 06:16:19', '2021-10-10 06:16:19'), (8337, 4, '2021-10-10 06:16:19', '2021-10-10 06:16:19'), (8338, 4, '2021-10-10 06:16:20', '2021-10-10 06:16:20'), (8339, 4, '2021-10-10 06:16:20', '2021-10-10 06:16:20'), (8340, 4, '2021-10-10 06:16:20', '2021-10-10 06:16:20'), (8341, 4, '2021-10-10 06:16:21', '2021-10-10 06:16:21'), (8342, 4, '2021-10-10 06:16:21', '2021-10-10 06:16:21'), (8343, 4, '2021-10-10 06:16:21', '2021-10-10 06:16:21'), (8344, 4, '2021-10-10 06:16:22', '2021-10-10 06:16:22'), (8345, 4, '2021-10-10 06:16:22', '2021-10-10 06:16:22'), (8346, 4, '2021-10-10 06:16:22', '2021-10-10 06:16:22'), (8347, 4, '2021-10-10 06:16:22', '2021-10-10 06:16:22'), (8348, 4, '2021-10-10 06:16:22', '2021-10-10 06:16:22'), (8349, 4, '2021-10-10 06:16:23', '2021-10-10 06:16:23'), (8350, 4, '2021-10-10 06:16:23', '2021-10-10 06:16:23'), (8351, 4, '2021-10-10 06:16:23', '2021-10-10 06:16:23'), (8352, 4, '2021-10-10 06:16:23', '2021-10-10 06:16:23'), (8353, 4, '2021-10-10 06:16:24', '2021-10-10 06:16:24'), (8354, 4, '2021-10-10 06:16:24', '2021-10-10 06:16:24'), (8355, 4, '2021-10-10 06:16:24', '2021-10-10 06:16:24'), (8356, 4, '2021-10-10 06:16:24', '2021-10-10 06:16:24'), (8357, 4, '2021-10-10 06:16:25', '2021-10-10 06:16:25'), (8358, 4, '2021-10-10 06:16:25', '2021-10-10 06:16:25'), (8359, 4, '2021-10-10 06:16:25', '2021-10-10 06:16:25'), (8360, 4, '2021-10-10 06:16:25', '2021-10-10 06:16:25'), (8361, 4, '2021-10-10 06:16:26', '2021-10-10 06:16:26'), (8362, 4, '2021-10-10 06:16:26', '2021-10-10 06:16:26'), (8363, 4, '2021-10-10 06:16:26', '2021-10-10 06:16:26'), (8364, 4, '2021-10-10 06:16:27', '2021-10-10 06:16:27'), (8365, 4, '2021-10-10 06:16:27', '2021-10-10 06:16:27'), (8366, 4, '2021-10-10 06:16:27', '2021-10-10 06:16:27'), (8367, 4, '2021-10-10 06:16:27', '2021-10-10 06:16:27'), (8368, 4, '2021-10-10 06:16:28', '2021-10-10 06:16:28'), (8369, 4, '2021-10-10 06:16:28', '2021-10-10 06:16:28'), (8370, 4, '2021-10-10 06:16:28', '2021-10-10 06:16:28'), (8371, 4, '2021-10-10 06:16:29', '2021-10-10 06:16:29'), (8372, 4, '2021-10-10 06:16:29', '2021-10-10 06:16:29'), (8373, 4, '2021-10-10 06:16:29', '2021-10-10 06:16:29'), (8374, 4, '2021-10-10 06:16:29', '2021-10-10 06:16:29'), (8375, 4, '2021-10-10 06:16:30', '2021-10-10 06:16:30'), (8376, 4, '2021-10-10 06:16:30', '2021-10-10 06:16:30'), (8377, 4, '2021-10-10 06:16:30', '2021-10-10 06:16:30'), (8378, 4, '2021-10-10 06:16:30', '2021-10-10 06:16:30'), (8379, 4, '2021-10-10 06:16:31', '2021-10-10 06:16:31'), (8380, 4, '2021-10-10 06:16:31', '2021-10-10 06:16:31'), (8381, 4, '2021-10-10 06:16:31', '2021-10-10 06:16:31'), (8382, 4, '2021-10-10 06:16:32', '2021-10-10 06:16:32'), (8383, 4, '2021-10-10 06:16:32', '2021-10-10 06:16:32'), (8384, 4, '2021-10-10 06:16:32', '2021-10-10 06:16:32'), (8385, 4, '2021-10-10 06:16:32', '2021-10-10 06:16:32'), (8386, 4, '2021-10-10 06:16:33', '2021-10-10 06:16:33'), (8387, 4, '2021-10-10 06:16:33', '2021-10-10 06:16:33'), (8388, 4, '2021-10-10 06:16:33', '2021-10-10 06:16:33'), (8389, 4, '2021-10-10 06:16:34', '2021-10-10 06:16:34'), (8390, 4, '2021-10-10 06:16:34', '2021-10-10 06:16:34'), (8391, 4, '2021-10-10 06:16:34', '2021-10-10 06:16:34'), (8392, 4, '2021-10-10 06:16:35', '2021-10-10 06:16:35'), (8393, 4, '2021-10-10 06:16:35', '2021-10-10 06:16:35'), (8394, 4, '2021-10-10 06:16:35', '2021-10-10 06:16:35'), (8395, 4, '2021-10-10 06:16:35', '2021-10-10 06:16:35'), (8396, 4, '2021-10-10 06:16:36', '2021-10-10 06:16:36'), (8397, 4, '2021-10-10 06:16:36', '2021-10-10 06:16:36'), (8398, 4, '2021-10-10 06:16:36', '2021-10-10 06:16:36'), (8399, 4, '2021-10-10 06:16:37', '2021-10-10 06:16:37'), (8400, 4, '2021-10-10 06:16:37', '2021-10-10 06:16:37'), (8401, 4, '2021-10-10 06:16:37', '2021-10-10 06:16:37'), (8402, 4, '2021-10-10 06:16:37', '2021-10-10 06:16:37'), (8403, 4, '2021-10-10 06:16:38', '2021-10-10 06:16:38'), (8404, 4, '2021-10-10 06:16:38', '2021-10-10 06:16:38'), (8405, 4, '2021-10-10 06:16:38', '2021-10-10 06:16:38'), (8406, 4, '2021-10-10 06:16:38', '2021-10-10 06:16:38'), (8407, 4, '2021-10-10 06:16:39', '2021-10-10 06:16:39'), (8408, 4, '2021-10-10 06:16:40', '2021-10-10 06:16:40'), (8409, 4, '2021-10-10 06:16:40', '2021-10-10 06:16:40'), (8410, 4, '2021-10-10 06:16:40', '2021-10-10 06:16:40'), (8411, 4, '2021-10-10 06:16:40', '2021-10-10 06:16:40'), (8412, 4, '2021-10-10 06:16:40', '2021-10-10 06:16:40'), (8413, 4, '2021-10-10 06:16:41', '2021-10-10 06:16:41'), (8414, 4, '2021-10-10 06:16:41', '2021-10-10 06:16:41'), (8415, 4, '2021-10-10 06:16:41', '2021-10-10 06:16:41'), (8416, 4, '2021-10-10 06:16:41', '2021-10-10 06:16:41'), (8417, 4, '2021-10-10 06:16:42', '2021-10-10 06:16:42'), (8418, 4, '2021-10-10 06:16:42', '2021-10-10 06:16:42'), (8419, 4, '2021-10-10 06:16:42', '2021-10-10 06:16:42'), (8420, 4, '2021-10-10 06:16:42', '2021-10-10 06:16:42'), (8421, 4, '2021-10-10 06:16:43', '2021-10-10 06:16:43'), (8422, 4, '2021-10-10 06:16:43', '2021-10-10 06:16:43'), (8423, 4, '2021-10-10 06:16:43', '2021-10-10 06:16:43'), (8424, 4, '2021-10-10 06:16:43', '2021-10-10 06:16:43'), (8425, 4, '2021-10-10 06:16:44', '2021-10-10 06:16:44'), (8426, 4, '2021-10-10 06:16:44', '2021-10-10 06:16:44'), (8427, 4, '2021-10-10 06:16:44', '2021-10-10 06:16:44'), (8428, 4, '2021-10-10 06:16:45', '2021-10-10 06:16:45'), (8429, 4, '2021-10-10 06:16:45', '2021-10-10 06:16:45'), (8430, 4, '2021-10-10 06:16:45', '2021-10-10 06:16:45'), (8431, 4, '2021-10-10 06:16:45', '2021-10-10 06:16:45'), (8432, 4, '2021-10-10 06:16:46', '2021-10-10 06:16:46'), (8433, 4, '2021-10-10 06:16:46', '2021-10-10 06:16:46'), (8434, 4, '2021-10-10 06:16:46', '2021-10-10 06:16:46'), (8435, 4, '2021-10-10 06:16:47', '2021-10-10 06:16:47'), (8436, 4, '2021-10-10 06:16:47', '2021-10-10 06:16:47'), (8437, 4, '2021-10-10 06:16:47', '2021-10-10 06:16:47'), (8438, 4, '2021-10-10 06:16:47', '2021-10-10 06:16:47'), (8439, 4, '2021-10-10 06:16:48', '2021-10-10 06:16:48'), (8440, 4, '2021-10-10 06:16:48', '2021-10-10 06:16:48'), (8441, 4, '2021-10-10 06:16:48', '2021-10-10 06:16:48'), (8442, 4, '2021-10-10 06:16:50', '2021-10-10 06:16:50'), (8443, 4, '2021-10-10 06:16:50', '2021-10-10 06:16:50'), (8444, 4, '2021-10-10 06:16:50', '2021-10-10 06:16:50'), (8445, 4, '2021-10-10 06:16:51', '2021-10-10 06:16:51'), (8446, 4, '2021-10-10 06:16:51', '2021-10-10 06:16:51'), (8447, 4, '2021-10-10 06:16:52', '2021-10-10 06:16:52'), (8448, 4, '2021-10-10 06:16:52', '2021-10-10 06:16:52'), (8449, 4, '2021-10-10 06:16:52', '2021-10-10 06:16:52'), (8450, 4, '2021-10-10 06:16:52', '2021-10-10 06:16:52'), (8451, 4, '2021-10-10 06:16:53', '2021-10-10 06:16:53'), (8452, 4, '2021-10-10 06:16:53', '2021-10-10 06:16:53'), (8453, 4, '2021-10-10 06:16:53', '2021-10-10 06:16:53'), (8454, 4, '2021-10-10 06:16:53', '2021-10-10 06:16:53'), (8455, 4, '2021-10-10 06:16:54', '2021-10-10 06:16:54'), (8456, 4, '2021-10-11 06:16:56', '2021-10-11 06:16:56'), (8457, 4, '2021-10-11 06:17:00', '2021-10-11 06:17:00'), (8458, 4, '2021-10-11 06:17:01', '2021-10-11 06:17:01'), (8459, 4, '2021-10-11 06:17:01', '2021-10-11 06:17:01'), (8460, 4, '2021-10-11 06:17:01', '2021-10-11 06:17:01'), (8461, 4, '2021-10-11 06:17:02', '2021-10-11 06:17:02'), (8462, 4, '2021-10-11 06:17:02', '2021-10-11 06:17:02'), (8463, 4, '2021-10-11 06:17:02', '2021-10-11 06:17:02'), (8464, 4, '2021-10-11 06:17:02', '2021-10-11 06:17:02'), (8465, 4, '2021-10-11 06:17:03', '2021-10-11 06:17:03'), (8466, 4, '2021-10-11 06:17:03', '2021-10-11 06:17:03'), (8467, 4, '2021-10-11 06:17:03', '2021-10-11 06:17:03'), (8468, 4, '2021-10-11 06:17:03', '2021-10-11 06:17:03'), (8469, 4, '2021-10-11 06:17:03', '2021-10-11 06:17:03'), (8470, 4, '2021-10-11 06:17:04', '2021-10-11 06:17:04'), (8471, 4, '2021-10-11 06:17:04', '2021-10-11 06:17:04'), (8472, 4, '2021-10-11 06:17:05', '2021-10-11 06:17:05'), (8473, 4, '2021-10-11 06:17:05', '2021-10-11 06:17:05'), (8474, 4, '2021-10-11 06:17:05', '2021-10-11 06:17:05'), (8475, 4, '2021-10-11 06:17:05', '2021-10-11 06:17:05'), (8476, 4, '2021-10-11 06:17:05', '2021-10-11 06:17:05'), (8477, 4, '2021-10-11 06:17:06', '2021-10-11 06:17:06'), (8478, 4, '2021-10-11 06:17:06', '2021-10-11 06:17:06'), (8479, 4, '2021-10-11 06:17:06', '2021-10-11 06:17:06'), (8480, 4, '2021-10-11 06:17:06', '2021-10-11 06:17:06'), (8481, 4, '2021-10-11 06:17:07', '2021-10-11 06:17:07'), (8482, 4, '2021-10-11 06:17:07', '2021-10-11 06:17:07'), (8483, 4, '2021-10-11 06:17:07', '2021-10-11 06:17:07'), (8484, 4, '2021-10-11 06:17:07', '2021-10-11 06:17:07'), (8485, 4, '2021-10-11 06:17:08', '2021-10-11 06:17:08'), (8486, 4, '2021-10-11 06:17:08', '2021-10-11 06:17:08'), (8487, 4, '2021-10-11 06:17:08', '2021-10-11 06:17:08'), (8488, 4, '2021-10-11 06:17:08', '2021-10-11 06:17:08'), (8489, 4, '2021-10-11 06:17:09', '2021-10-11 06:17:09'), (8490, 4, '2021-10-11 06:17:09', '2021-10-11 06:17:09'), (8491, 4, '2021-10-11 06:17:09', '2021-10-11 06:17:09'), (8492, 4, '2021-10-11 06:17:09', '2021-10-11 06:17:09'), (8493, 4, '2021-10-11 06:17:10', '2021-10-11 06:17:10'), (8494, 4, '2021-10-11 06:17:10', '2021-10-11 06:17:10'), (8495, 4, '2021-10-11 06:17:10', '2021-10-11 06:17:10'), (8496, 4, '2021-10-11 06:17:11', '2021-10-11 06:17:11'), (8497, 4, '2021-10-11 06:17:11', '2021-10-11 06:17:11'), (8498, 4, '2021-10-11 06:17:11', '2021-10-11 06:17:11'), (8499, 4, '2021-10-11 06:17:11', '2021-10-11 06:17:11'), (8500, 4, '2021-10-11 06:17:12', '2021-10-11 06:17:12'), (8501, 4, '2021-10-11 06:17:12', '2021-10-11 06:17:12'), (8502, 4, '2021-10-11 06:17:12', '2021-10-11 06:17:12'), (8503, 4, '2021-10-11 06:17:12', '2021-10-11 06:17:12'), (8504, 4, '2021-10-11 06:17:13', '2021-10-11 06:17:13'), (8505, 4, '2021-10-11 06:17:13', '2021-10-11 06:17:13'), (8506, 4, '2021-10-11 06:17:13', '2021-10-11 06:17:13'), (8507, 4, '2021-10-11 06:17:13', '2021-10-11 06:17:13'), (8508, 4, '2021-10-11 06:17:13', '2021-10-11 06:17:13'), (8509, 4, '2021-10-11 06:17:14', '2021-10-11 06:17:14'), (8510, 4, '2021-10-11 06:17:14', '2021-10-11 06:17:14'), (8511, 4, '2021-10-11 06:17:14', '2021-10-11 06:17:14'), (8512, 4, '2021-10-11 06:17:14', '2021-10-11 06:17:14'), (8513, 4, '2021-10-11 06:17:15', '2021-10-11 06:17:15'), (8514, 4, '2021-10-11 06:17:15', '2021-10-11 06:17:15'), (8515, 4, '2021-10-11 06:17:15', '2021-10-11 06:17:15'), (8516, 4, '2021-10-11 06:17:15', '2021-10-11 06:17:15'), (8517, 4, '2021-10-11 06:17:16', '2021-10-11 06:17:16'), (8518, 4, '2021-10-11 06:17:16', '2021-10-11 06:17:16'), (8519, 4, '2021-10-11 06:17:16', '2021-10-11 06:17:16'), (8520, 4, '2021-10-11 06:17:16', '2021-10-11 06:17:16'), (8521, 4, '2021-10-11 06:17:17', '2021-10-11 06:17:17'), (8522, 4, '2021-10-11 06:17:17', '2021-10-11 06:17:17'), (8523, 4, '2021-10-11 06:17:17', '2021-10-11 06:17:17'), (8524, 4, '2021-10-11 06:17:17', '2021-10-11 06:17:17'), (8525, 4, '2021-10-11 06:17:17', '2021-10-11 06:17:17'), (8526, 4, '2021-10-11 06:17:18', '2021-10-11 06:17:18'), (8527, 4, '2021-10-11 06:17:18', '2021-10-11 06:17:18'), (8528, 4, '2021-10-11 06:17:18', '2021-10-11 06:17:18'), (8529, 4, '2021-10-11 06:17:18', '2021-10-11 06:17:18'), (8530, 4, '2021-10-11 06:17:19', '2021-10-11 06:17:19'), (8531, 4, '2021-10-11 06:17:19', '2021-10-11 06:17:19'), (8532, 4, '2021-10-11 06:17:19', '2021-10-11 06:17:19'), (8533, 4, '2021-10-11 06:17:19', '2021-10-11 06:17:19'), (8534, 4, '2021-10-11 06:17:20', '2021-10-11 06:17:20'), (8535, 4, '2021-10-11 06:17:20', '2021-10-11 06:17:20'), (8536, 4, '2021-10-11 06:17:20', '2021-10-11 06:17:20'), (8537, 4, '2021-10-11 06:17:20', '2021-10-11 06:17:20'), (8538, 4, '2021-10-11 06:17:20', '2021-10-11 06:17:20'), (8539, 4, '2021-10-11 06:17:21', '2021-10-11 06:17:21'), (8540, 4, '2021-10-11 06:17:21', '2021-10-11 06:17:21'), (8541, 4, '2021-10-11 06:17:21', '2021-10-11 06:17:21'), (8542, 4, '2021-10-11 06:17:21', '2021-10-11 06:17:21'), (8543, 4, '2021-10-11 06:17:22', '2021-10-11 06:17:22'), (8544, 4, '2021-10-11 06:17:22', '2021-10-11 06:17:22'), (8545, 4, '2021-10-11 06:17:22', '2021-10-11 06:17:22'), (8546, 4, '2021-10-11 06:17:23', '2021-10-11 06:17:23'), (8547, 4, '2021-10-11 06:17:23', '2021-10-11 06:17:23'), (8548, 4, '2021-10-11 06:17:23', '2021-10-11 06:17:23'), (8549, 4, '2021-10-11 06:17:23', '2021-10-11 06:17:23'), (8550, 4, '2021-10-11 06:17:24', '2021-10-11 06:17:24'), (8551, 4, '2021-10-11 06:17:24', '2021-10-11 06:17:24'), (8552, 4, '2021-10-11 06:17:24', '2021-10-11 06:17:24'), (8553, 4, '2021-10-11 06:17:24', '2021-10-11 06:17:24'), (8554, 4, '2021-10-11 06:17:25', '2021-10-11 06:17:25'), (8555, 4, '2021-10-11 06:17:25', '2021-10-11 06:17:25'), (8556, 4, '2021-10-11 06:17:25', '2021-10-11 06:17:25'), (8557, 4, '2021-10-11 06:17:25', '2021-10-11 06:17:25'), (8558, 4, '2021-10-11 06:17:26', '2021-10-11 06:17:26'), (8559, 4, '2021-10-11 06:17:26', '2021-10-11 06:17:26'), (8560, 4, '2021-10-11 06:17:26', '2021-10-11 06:17:26'), (8561, 4, '2021-10-11 06:17:26', '2021-10-11 06:17:26'), (8562, 4, '2021-10-11 06:17:27', '2021-10-11 06:17:27'), (8563, 4, '2021-10-11 06:17:27', '2021-10-11 06:17:27'), (8564, 4, '2021-10-11 06:17:27', '2021-10-11 06:17:27'), (8565, 4, '2021-10-11 06:17:27', '2021-10-11 06:17:27'), (8566, 4, '2021-10-11 06:17:27', '2021-10-11 06:17:27'), (8567, 4, '2021-10-11 06:17:28', '2021-10-11 06:17:28'), (8568, 4, '2021-10-11 06:17:29', '2021-10-11 06:17:29'), (8569, 4, '2021-10-11 06:17:29', '2021-10-11 06:17:29'), (8570, 4, '2021-10-11 06:17:29', '2021-10-11 06:17:29'), (8571, 4, '2021-10-11 06:17:30', '2021-10-11 06:17:30'), (8572, 4, '2021-10-11 06:17:30', '2021-10-11 06:17:30'), (8573, 4, '2021-10-11 06:17:30', '2021-10-11 06:17:30'), (8574, 4, '2021-10-11 06:17:30', '2021-10-11 06:17:30'), (8575, 4, '2021-10-11 06:17:31', '2021-10-11 06:17:31'), (8576, 4, '2021-10-11 06:17:31', '2021-10-11 06:17:31'), (8577, 4, '2021-10-11 06:17:31', '2021-10-11 06:17:31'), (8578, 4, '2021-10-11 06:17:31', '2021-10-11 06:17:31'), (8579, 4, '2021-10-11 06:17:31', '2021-10-11 06:17:31'), (8580, 4, '2021-10-11 06:17:32', '2021-10-11 06:17:32'), (8581, 4, '2021-10-11 06:17:32', '2021-10-11 06:17:32'), (8582, 4, '2021-10-11 06:17:32', '2021-10-11 06:17:32'), (8583, 4, '2021-10-11 06:17:32', '2021-10-11 06:17:32'), (8584, 4, '2021-10-11 06:17:33', '2021-10-11 06:17:33'), (8585, 4, '2021-10-11 06:17:33', '2021-10-11 06:17:33'), (8586, 4, '2021-10-11 06:17:33', '2021-10-11 06:17:33'), (8587, 4, '2021-10-11 06:17:33', '2021-10-11 06:17:33'), (8588, 4, '2021-10-11 06:17:34', '2021-10-11 06:17:34'), (8589, 4, '2021-10-11 06:17:34', '2021-10-11 06:17:34'), (8590, 4, '2021-10-11 06:17:34', '2021-10-11 06:17:34'), (8591, 4, '2021-10-11 06:17:34', '2021-10-11 06:17:34'), (8592, 4, '2021-10-11 06:17:35', '2021-10-11 06:17:35'), (8593, 4, '2021-10-11 06:17:35', '2021-10-11 06:17:35'), (8594, 4, '2021-10-11 06:17:35', '2021-10-11 06:17:35'), (8595, 4, '2021-10-11 06:17:35', '2021-10-11 06:17:35'), (8596, 4, '2021-10-11 06:17:36', '2021-10-11 06:17:36'), (8597, 4, '2021-10-11 06:17:36', '2021-10-11 06:17:36'), (8598, 4, '2021-10-11 06:17:36', '2021-10-11 06:17:36'), (8599, 4, '2021-10-11 06:17:36', '2021-10-11 06:17:36'), (8600, 4, '2021-10-11 06:17:37', '2021-10-11 06:17:37'), (8601, 4, '2021-10-11 06:17:37', '2021-10-11 06:17:37'), (8602, 4, '2021-10-11 06:17:37', '2021-10-11 06:17:37'), (8603, 4, '2021-10-11 06:17:37', '2021-10-11 06:17:37'), (8604, 4, '2021-10-11 06:17:37', '2021-10-11 06:17:37'), (8605, 4, '2021-10-11 06:17:38', '2021-10-11 06:17:38'), (8606, 4, '2021-10-11 06:17:38', '2021-10-11 06:17:38'), (8607, 4, '2021-10-11 06:17:38', '2021-10-11 06:17:38'), (8608, 4, '2021-10-11 06:17:38', '2021-10-11 06:17:38'), (8609, 4, '2021-10-11 06:17:39', '2021-10-11 06:17:39'), (8610, 4, '2021-10-11 06:17:39', '2021-10-11 06:17:39'), (8611, 4, '2021-10-11 06:17:39', '2021-10-11 06:17:39'), (8612, 4, '2021-10-11 06:17:39', '2021-10-11 06:17:39'), (8613, 4, '2021-10-11 06:17:40', '2021-10-11 06:17:40'), (8614, 4, '2021-10-11 06:17:40', '2021-10-11 06:17:40'), (8615, 4, '2021-10-11 06:17:40', '2021-10-11 06:17:40'), (8616, 4, '2021-10-11 06:17:41', '2021-10-11 06:17:41'), (8617, 4, '2021-10-11 06:17:41', '2021-10-11 06:17:41'), (8618, 4, '2021-10-11 06:17:41', '2021-10-11 06:17:41'), (8619, 4, '2021-10-11 06:17:42', '2021-10-11 06:17:42'), (8620, 4, '2021-10-11 06:17:42', '2021-10-11 06:17:42'), (8621, 4, '2021-10-11 06:17:42', '2021-10-11 06:17:42'), (8622, 4, '2021-10-11 06:17:42', '2021-10-11 06:17:42'), (8623, 4, '2021-10-11 06:17:43', '2021-10-11 06:17:43'), (8624, 4, '2021-10-11 06:17:43', '2021-10-11 06:17:43'), (8625, 4, '2021-10-11 06:17:43', '2021-10-11 06:17:43'), (8626, 4, '2021-10-11 06:17:43', '2021-10-11 06:17:43'), (8627, 4, '2021-10-11 06:17:44', '2021-10-11 06:17:44'), (8628, 4, '2021-10-11 06:17:44', '2021-10-11 06:17:44'), (8629, 4, '2021-10-11 06:17:44', '2021-10-11 06:17:44'), (8630, 4, '2021-10-11 06:17:44', '2021-10-11 06:17:44'), (8631, 4, '2021-10-12 06:17:47', '2021-10-12 06:17:47'), (8632, 4, '2021-10-12 06:17:48', '2021-10-12 06:17:48'), (8633, 4, '2021-10-12 06:17:49', '2021-10-12 06:17:49'), (8634, 4, '2021-10-12 06:17:49', '2021-10-12 06:17:49'), (8635, 4, '2021-10-12 06:17:49', '2021-10-12 06:17:49'), (8636, 4, '2021-10-12 06:17:49', '2021-10-12 06:17:49'), (8637, 4, '2021-10-12 06:17:49', '2021-10-12 06:17:49'), (8638, 4, '2021-10-12 06:17:50', '2021-10-12 06:17:50'), (8639, 4, '2021-10-12 06:17:50', '2021-10-12 06:17:50'), (8640, 4, '2021-10-12 06:17:50', '2021-10-12 06:17:50'), (8641, 4, '2021-10-12 06:17:50', '2021-10-12 06:17:50'), (8642, 4, '2021-10-12 06:17:51', '2021-10-12 06:17:51'), (8643, 4, '2021-10-12 06:17:51', '2021-10-12 06:17:51'), (8644, 4, '2021-10-12 06:17:51', '2021-10-12 06:17:51'), (8645, 4, '2021-10-12 06:17:52', '2021-10-12 06:17:52'), (8646, 4, '2021-10-12 06:17:52', '2021-10-12 06:17:52'), (8647, 4, '2021-10-12 06:17:52', '2021-10-12 06:17:52'), (8648, 4, '2021-10-12 06:17:53', '2021-10-12 06:17:53'), (8649, 4, '2021-10-12 06:17:53', '2021-10-12 06:17:53'), (8650, 4, '2021-10-12 06:17:53', '2021-10-12 06:17:53'), (8651, 4, '2021-10-12 06:17:53', '2021-10-12 06:17:53'), (8652, 4, '2021-10-12 06:17:53', '2021-10-12 06:17:53'), (8653, 4, '2021-10-12 06:17:54', '2021-10-12 06:17:54'), (8654, 4, '2021-10-12 06:17:54', '2021-10-12 06:17:54'), (8655, 4, '2021-10-12 06:17:54', '2021-10-12 06:17:54'), (8656, 4, '2021-10-12 06:17:55', '2021-10-12 06:17:55'), (8657, 4, '2021-10-12 06:17:55', '2021-10-12 06:17:55'), (8658, 4, '2021-10-12 06:17:55', '2021-10-12 06:17:55'), (8659, 4, '2021-10-12 06:17:55', '2021-10-12 06:17:55'), (8660, 4, '2021-10-12 06:17:56', '2021-10-12 06:17:56'), (8661, 4, '2021-10-12 06:17:56', '2021-10-12 06:17:56'), (8662, 4, '2021-10-12 06:17:56', '2021-10-12 06:17:56'), (8663, 4, '2021-10-12 06:17:56', '2021-10-12 06:17:56'), (8664, 4, '2021-10-12 06:17:57', '2021-10-12 06:17:57'), (8665, 4, '2021-10-12 06:17:57', '2021-10-12 06:17:57'), (8666, 4, '2021-10-12 06:17:57', '2021-10-12 06:17:57'), (8667, 4, '2021-10-12 06:17:57', '2021-10-12 06:17:57'), (8668, 4, '2021-10-12 06:17:58', '2021-10-12 06:17:58'), (8669, 4, '2021-10-12 06:17:58', '2021-10-12 06:17:58'), (8670, 4, '2021-10-12 06:17:58', '2021-10-12 06:17:58'), (8671, 4, '2021-10-12 06:17:58', '2021-10-12 06:17:58'), (8672, 4, '2021-10-12 06:17:59', '2021-10-12 06:17:59'), (8673, 4, '2021-10-12 06:17:59', '2021-10-12 06:17:59'), (8674, 4, '2021-10-12 06:17:59', '2021-10-12 06:17:59'), (8675, 4, '2021-10-12 06:17:59', '2021-10-12 06:17:59'), (8676, 4, '2021-10-12 06:18:00', '2021-10-12 06:18:00'), (8677, 4, '2021-10-12 06:18:00', '2021-10-12 06:18:00'), (8678, 4, '2021-10-12 06:18:00', '2021-10-12 06:18:00'), (8679, 4, '2021-10-12 06:18:00', '2021-10-12 06:18:00'), (8680, 4, '2021-10-12 06:18:02', '2021-10-12 06:18:02'), (8681, 4, '2021-10-12 06:18:02', '2021-10-12 06:18:02'), (8682, 4, '2021-10-12 06:18:02', '2021-10-12 06:18:02'), (8683, 4, '2021-10-12 06:18:03', '2021-10-12 06:18:03'), (8684, 4, '2021-10-12 06:18:03', '2021-10-12 06:18:03'), (8685, 4, '2021-10-12 06:18:03', '2021-10-12 06:18:03'), (8686, 4, '2021-10-12 06:18:04', '2021-10-12 06:18:04'), (8687, 4, '2021-10-12 06:18:04', '2021-10-12 06:18:04'), (8688, 4, '2021-10-12 06:18:04', '2021-10-12 06:18:04'), (8689, 4, '2021-10-12 06:18:04', '2021-10-12 06:18:04'), (8690, 4, '2021-10-12 06:18:05', '2021-10-12 06:18:05'), (8691, 4, '2021-10-12 06:18:05', '2021-10-12 06:18:05'), (8692, 4, '2021-10-12 06:18:06', '2021-10-12 06:18:06'), (8693, 4, '2021-10-12 06:18:06', '2021-10-12 06:18:06'), (8694, 4, '2021-10-12 06:18:06', '2021-10-12 06:18:06'), (8695, 4, '2021-10-12 06:18:06', '2021-10-12 06:18:06'), (8696, 4, '2021-10-12 06:18:07', '2021-10-12 06:18:07'), (8697, 4, '2021-10-12 06:18:07', '2021-10-12 06:18:07'), (8698, 4, '2021-10-12 06:18:07', '2021-10-12 06:18:07'), (8699, 4, '2021-10-12 06:18:07', '2021-10-12 06:18:07'), (8700, 4, '2021-10-12 06:18:08', '2021-10-12 06:18:08'), (8701, 4, '2021-10-12 06:18:08', '2021-10-12 06:18:08'), (8702, 4, '2021-10-12 06:18:08', '2021-10-12 06:18:08'), (8703, 4, '2021-10-12 06:18:08', '2021-10-12 06:18:08'), (8704, 4, '2021-10-12 06:18:09', '2021-10-12 06:18:09'), (8705, 4, '2021-10-12 06:18:09', '2021-10-12 06:18:09'), (8706, 4, '2021-10-12 06:18:09', '2021-10-12 06:18:09'), (8707, 4, '2021-10-12 06:18:09', '2021-10-12 06:18:09'), (8708, 4, '2021-10-12 06:18:10', '2021-10-12 06:18:10'), (8709, 4, '2021-10-12 06:18:10', '2021-10-12 06:18:10'), (8710, 4, '2021-10-12 06:18:10', '2021-10-12 06:18:10'), (8711, 4, '2021-10-12 06:18:10', '2021-10-12 06:18:10'), (8712, 4, '2021-10-12 06:18:11', '2021-10-12 06:18:11'), (8713, 4, '2021-10-12 06:18:11', '2021-10-12 06:18:11'), (8714, 4, '2021-10-12 06:18:11', '2021-10-12 06:18:11'), (8715, 4, '2021-10-12 06:18:12', '2021-10-12 06:18:12'), (8716, 4, '2021-10-12 06:18:12', '2021-10-12 06:18:12'), (8717, 4, '2021-10-12 06:18:12', '2021-10-12 06:18:12'), (8718, 4, '2021-10-12 06:18:12', '2021-10-12 06:18:12'), (8719, 4, '2021-10-12 06:18:13', '2021-10-12 06:18:13'), (8720, 4, '2021-10-12 06:18:13', '2021-10-12 06:18:13'), (8721, 4, '2021-10-12 06:18:13', '2021-10-12 06:18:13'), (8722, 4, '2021-10-12 06:18:13', '2021-10-12 06:18:13'), (8723, 4, '2021-10-12 06:18:14', '2021-10-12 06:18:14'), (8724, 4, '2021-10-12 06:18:14', '2021-10-12 06:18:14'), (8725, 4, '2021-10-12 06:18:14', '2021-10-12 06:18:14'), (8726, 4, '2021-10-12 06:18:14', '2021-10-12 06:18:14'), (8727, 4, '2021-10-12 06:18:15', '2021-10-12 06:18:15'), (8728, 4, '2021-10-12 06:18:15', '2021-10-12 06:18:15'), (8729, 4, '2021-10-12 06:18:15', '2021-10-12 06:18:15'), (8730, 4, '2021-10-12 06:18:15', '2021-10-12 06:18:15'), (8731, 4, '2021-10-12 06:18:16', '2021-10-12 06:18:16'), (8732, 4, '2021-10-12 06:18:16', '2021-10-12 06:18:16'), (8733, 4, '2021-10-12 06:18:16', '2021-10-12 06:18:16'), (8734, 4, '2021-10-12 06:18:17', '2021-10-12 06:18:17'), (8735, 4, '2021-10-12 06:18:17', '2021-10-12 06:18:17'), (8736, 4, '2021-10-12 06:18:17', '2021-10-12 06:18:17'), (8737, 4, '2021-10-12 06:18:18', '2021-10-12 06:18:18'), (8738, 4, '2021-10-12 06:18:18', '2021-10-12 06:18:18'), (8739, 4, '2021-10-12 06:18:19', '2021-10-12 06:18:19'), (8740, 4, '2021-10-12 06:18:19', '2021-10-12 06:18:19'), (8741, 4, '2021-10-12 06:18:19', '2021-10-12 06:18:19'), (8742, 4, '2021-10-12 06:18:19', '2021-10-12 06:18:19'), (8743, 4, '2021-10-12 06:18:20', '2021-10-12 06:18:20'), (8744, 4, '2021-10-12 06:18:20', '2021-10-12 06:18:20'), (8745, 4, '2021-10-12 06:18:20', '2021-10-12 06:18:20'), (8746, 4, '2021-10-12 06:18:21', '2021-10-12 06:18:21'), (8747, 4, '2021-10-12 06:18:21', '2021-10-12 06:18:21'), (8748, 4, '2021-10-12 06:18:21', '2021-10-12 06:18:21'), (8749, 4, '2021-10-12 06:18:22', '2021-10-12 06:18:22'), (8750, 4, '2021-10-12 06:18:22', '2021-10-12 06:18:22'), (8751, 4, '2021-10-12 06:18:22', '2021-10-12 06:18:22'), (8752, 4, '2021-10-12 06:18:22', '2021-10-12 06:18:22'), (8753, 4, '2021-10-12 06:18:23', '2021-10-12 06:18:23'), (8754, 4, '2021-10-12 06:18:23', '2021-10-12 06:18:23'), (8755, 4, '2021-10-12 06:18:23', '2021-10-12 06:18:23'), (8756, 4, '2021-10-12 06:18:24', '2021-10-12 06:18:24'), (8757, 4, '2021-10-12 06:18:24', '2021-10-12 06:18:24'), (8758, 4, '2021-10-12 06:18:24', '2021-10-12 06:18:24'), (8759, 4, '2021-10-12 06:18:24', '2021-10-12 06:18:24'), (8760, 4, '2021-10-12 06:18:25', '2021-10-12 06:18:25'), (8761, 4, '2021-10-12 06:18:25', '2021-10-12 06:18:25'), (8762, 4, '2021-10-12 06:18:25', '2021-10-12 06:18:25'), (8763, 4, '2021-10-12 06:18:25', '2021-10-12 06:18:25'), (8764, 4, '2021-10-12 06:18:26', '2021-10-12 06:18:26'), (8765, 4, '2021-10-12 06:18:26', '2021-10-12 06:18:26'), (8766, 4, '2021-10-12 06:18:26', '2021-10-12 06:18:26'), (8767, 4, '2021-10-12 06:18:27', '2021-10-12 06:18:27'), (8768, 4, '2021-10-12 06:18:27', '2021-10-12 06:18:27'), (8769, 4, '2021-10-12 06:18:27', '2021-10-12 06:18:27'), (8770, 4, '2021-10-12 06:18:27', '2021-10-12 06:18:27'), (8771, 4, '2021-10-12 06:18:28', '2021-10-12 06:18:28'), (8772, 4, '2021-10-12 06:18:28', '2021-10-12 06:18:28'), (8773, 4, '2021-10-12 06:18:28', '2021-10-12 06:18:28'), (8774, 4, '2021-10-12 06:18:28', '2021-10-12 06:18:28'), (8775, 4, '2021-10-12 06:18:29', '2021-10-12 06:18:29'), (8776, 4, '2021-10-12 06:18:29', '2021-10-12 06:18:29'), (8777, 4, '2021-10-12 06:18:29', '2021-10-12 06:18:29'), (8778, 4, '2021-10-12 06:18:30', '2021-10-12 06:18:30'), (8779, 4, '2021-10-12 06:18:30', '2021-10-12 06:18:30'), (8780, 4, '2021-10-12 06:18:30', '2021-10-12 06:18:30'), (8781, 4, '2021-10-12 06:18:30', '2021-10-12 06:18:30'), (8782, 4, '2021-10-12 06:18:31', '2021-10-12 06:18:31'), (8783, 4, '2021-10-12 06:18:31', '2021-10-12 06:18:31'), (8784, 4, '2021-10-12 06:18:31', '2021-10-12 06:18:31'), (8785, 4, '2021-10-12 06:18:32', '2021-10-12 06:18:32'), (8786, 4, '2021-10-12 06:18:32', '2021-10-12 06:18:32'), (8787, 4, '2021-10-12 06:18:32', '2021-10-12 06:18:32'), (8788, 4, '2021-10-12 06:18:32', '2021-10-12 06:18:32'), (8789, 4, '2021-10-12 06:18:33', '2021-10-12 06:18:33'), (8790, 4, '2021-10-12 06:18:33', '2021-10-12 06:18:33'), (8791, 4, '2021-10-12 06:18:33', '2021-10-12 06:18:33'), (8792, 4, '2021-10-12 06:18:34', '2021-10-12 06:18:34'), (8793, 4, '2021-10-12 06:18:34', '2021-10-12 06:18:34'), (8794, 4, '2021-10-12 06:18:34', '2021-10-12 06:18:34'), (8795, 4, '2021-10-12 06:18:34', '2021-10-12 06:18:34'), (8796, 4, '2021-10-12 06:18:35', '2021-10-12 06:18:35'), (8797, 4, '2021-10-12 06:18:35', '2021-10-12 06:18:35'), (8798, 4, '2021-10-12 06:18:35', '2021-10-12 06:18:35'), (8799, 4, '2021-10-12 06:18:36', '2021-10-12 06:18:36'), (8800, 4, '2021-10-12 06:18:36', '2021-10-12 06:18:36'), (8801, 4, '2021-10-12 06:18:37', '2021-10-12 06:18:37'), (8802, 4, '2021-10-12 06:18:37', '2021-10-12 06:18:37'), (8803, 4, '2021-10-12 06:18:37', '2021-10-12 06:18:37'), (8804, 4, '2021-10-12 06:18:38', '2021-10-12 06:18:38'), (8805, 4, '2021-10-12 06:18:38', '2021-10-12 06:18:38'), (8806, 4, '2021-10-12 06:18:38', '2021-10-12 06:18:38'), (8807, 4, '2021-10-12 06:18:39', '2021-10-12 06:18:39'), (8808, 4, '2021-10-12 06:18:39', '2021-10-12 06:18:39'), (8809, 4, '2021-10-12 06:18:39', '2021-10-12 06:18:39'), (8810, 4, '2021-10-12 06:18:39', '2021-10-12 06:18:39'), (8811, 4, '2021-10-12 06:18:40', '2021-10-12 06:18:40'), (8812, 4, '2021-10-12 06:18:40', '2021-10-12 06:18:40'), (8813, 4, '2021-10-12 06:18:40', '2021-10-12 06:18:40'), (8814, 4, '2021-10-12 06:18:41', '2021-10-12 06:18:41'), (8815, 4, '2021-10-12 06:18:41', '2021-10-12 06:18:41'), (8816, 4, '2021-10-12 06:18:41', '2021-10-12 06:18:41'), (8817, 4, '2021-10-12 06:18:42', '2021-10-12 06:18:42'), (8818, 4, '2021-10-12 06:18:42', '2021-10-12 06:18:42'), (8819, 4, '2021-10-12 06:18:43', '2021-10-12 06:18:43'), (8820, 4, '2021-10-12 06:18:43', '2021-10-12 06:18:43'), (8821, 4, '2021-10-12 06:18:43', '2021-10-12 06:18:43'), (8822, 4, '2021-10-12 06:18:43', '2021-10-12 06:18:43'), (8823, 4, '2021-10-12 06:18:44', '2021-10-12 06:18:44'), (8824, 4, '2021-10-12 06:18:44', '2021-10-12 06:18:44'), (8825, 4, '2021-10-12 06:18:44', '2021-10-12 06:18:44'), (8826, 4, '2021-10-12 06:18:45', '2021-10-12 06:18:45'), (8827, 4, '2021-10-12 06:18:45', '2021-10-12 06:18:45'), (8828, 4, '2021-10-12 06:18:45', '2021-10-12 06:18:45'), (8829, 4, '2021-10-12 06:18:45', '2021-10-12 06:18:45'), (8830, 4, '2021-10-12 06:18:45', '2021-10-12 06:18:45'), (8831, 4, '2021-10-12 06:18:46', '2021-10-12 06:18:46'), (8832, 4, '2021-10-12 06:18:46', '2021-10-12 06:18:46'), (8833, 4, '2021-10-12 06:18:46', '2021-10-12 06:18:46'), (8834, 4, '2021-10-12 06:18:47', '2021-10-12 06:18:47'), (8835, 4, '2021-10-12 06:18:47', '2021-10-12 06:18:47'), (8836, 4, '2021-10-12 06:18:47', '2021-10-12 06:18:47'), (8837, 4, '2021-10-12 06:18:47', '2021-10-12 06:18:47'), (8838, 4, '2021-10-12 06:18:48', '2021-10-12 06:18:48'), (8839, 4, '2021-10-12 06:18:48', '2021-10-12 06:18:48'), (8840, 4, '2021-10-12 06:18:48', '2021-10-12 06:18:48'), (8841, 4, '2021-10-12 06:18:49', '2021-10-12 06:18:49'), (8842, 4, '2021-10-12 06:18:49', '2021-10-12 06:18:49'), (8843, 4, '2021-10-12 06:18:49', '2021-10-12 06:18:49'), (8844, 4, '2021-10-12 06:18:49', '2021-10-12 06:18:49'), (8845, 4, '2021-10-12 06:18:50', '2021-10-12 06:18:50'), (8846, 4, '2021-10-12 06:18:50', '2021-10-12 06:18:50'), (8847, 4, '2021-10-12 06:18:50', '2021-10-12 06:18:50'), (8848, 4, '2021-10-12 06:18:51', '2021-10-12 06:18:51'), (8849, 4, '2021-10-12 06:18:51', '2021-10-12 06:18:51'), (8850, 4, '2021-10-12 06:18:51', '2021-10-12 06:18:51'), (8851, 4, '2021-10-12 06:18:52', '2021-10-12 06:18:52'), (8852, 4, '2021-10-13 06:18:56', '2021-10-13 06:18:56'), (8853, 4, '2021-10-13 06:18:57', '2021-10-13 06:18:57'), (8854, 4, '2021-10-13 06:18:57', '2021-10-13 06:18:57'), (8855, 4, '2021-10-13 06:18:57', '2021-10-13 06:18:57'), (8856, 4, '2021-10-13 06:18:57', '2021-10-13 06:18:57'), (8857, 4, '2021-10-13 06:18:58', '2021-10-13 06:18:58'), (8858, 4, '2021-10-13 06:18:58', '2021-10-13 06:18:58'), (8859, 4, '2021-10-13 06:18:59', '2021-10-13 06:18:59'), (8860, 4, '2021-10-13 06:18:59', '2021-10-13 06:18:59'), (8861, 4, '2021-10-13 06:18:59', '2021-10-13 06:18:59'), (8862, 4, '2021-10-13 06:18:59', '2021-10-13 06:18:59'), (8863, 4, '2021-10-13 06:19:00', '2021-10-13 06:19:00'), (8864, 4, '2021-10-13 06:19:00', '2021-10-13 06:19:00'), (8865, 4, '2021-10-13 06:19:00', '2021-10-13 06:19:00'), (8866, 4, '2021-10-13 06:19:00', '2021-10-13 06:19:00'), (8867, 4, '2021-10-13 06:19:01', '2021-10-13 06:19:01'), (8868, 4, '2021-10-13 06:19:01', '2021-10-13 06:19:01'), (8869, 4, '2021-10-13 06:19:01', '2021-10-13 06:19:01'), (8870, 4, '2021-10-13 06:19:01', '2021-10-13 06:19:01'), (8871, 4, '2021-10-13 06:19:02', '2021-10-13 06:19:02'), (8872, 4, '2021-10-13 06:19:02', '2021-10-13 06:19:02'), (8873, 4, '2021-10-13 06:19:02', '2021-10-13 06:19:02'), (8874, 4, '2021-10-13 06:19:02', '2021-10-13 06:19:02'), (8875, 4, '2021-10-13 06:19:03', '2021-10-13 06:19:03'), (8876, 4, '2021-10-13 06:19:03', '2021-10-13 06:19:03'), (8877, 4, '2021-10-13 06:19:03', '2021-10-13 06:19:03'), (8878, 4, '2021-10-13 06:19:03', '2021-10-13 06:19:03'), (8879, 4, '2021-10-13 06:19:04', '2021-10-13 06:19:04'), (8880, 4, '2021-10-13 06:19:04', '2021-10-13 06:19:04'), (8881, 4, '2021-10-13 06:19:04', '2021-10-13 06:19:04'), (8882, 4, '2021-10-13 06:19:04', '2021-10-13 06:19:04'), (8883, 4, '2021-10-13 06:19:05', '2021-10-13 06:19:05'), (8884, 4, '2021-10-13 06:19:05', '2021-10-13 06:19:05'), (8885, 4, '2021-10-13 06:19:05', '2021-10-13 06:19:05'), (8886, 4, '2021-10-13 06:19:05', '2021-10-13 06:19:05'), (8887, 4, '2021-10-13 06:19:06', '2021-10-13 06:19:06'), (8888, 4, '2021-10-13 06:19:06', '2021-10-13 06:19:06'), (8889, 4, '2021-10-13 06:19:06', '2021-10-13 06:19:06'), (8890, 4, '2021-10-13 06:19:06', '2021-10-13 06:19:06'), (8891, 4, '2021-10-13 06:19:07', '2021-10-13 06:19:07'), (8892, 4, '2021-10-13 06:19:07', '2021-10-13 06:19:07'), (8893, 4, '2021-10-13 06:19:07', '2021-10-13 06:19:07'), (8894, 4, '2021-10-13 06:19:07', '2021-10-13 06:19:07'), (8895, 4, '2021-10-13 06:19:08', '2021-10-13 06:19:08'), (8896, 4, '2021-10-13 06:19:08', '2021-10-13 06:19:08'), (8897, 4, '2021-10-13 06:19:08', '2021-10-13 06:19:08'), (8898, 4, '2021-10-13 06:19:08', '2021-10-13 06:19:08'), (8899, 4, '2021-10-13 06:19:09', '2021-10-13 06:19:09'), (8900, 4, '2021-10-13 06:19:09', '2021-10-13 06:19:09'), (8901, 4, '2021-10-13 06:19:09', '2021-10-13 06:19:09'), (8902, 4, '2021-10-13 06:19:10', '2021-10-13 06:19:10'), (8903, 4, '2021-10-13 06:19:10', '2021-10-13 06:19:10'), (8904, 4, '2021-10-13 06:19:10', '2021-10-13 06:19:10'), (8905, 4, '2021-10-13 06:19:11', '2021-10-13 06:19:11'), (8906, 4, '2021-10-13 06:19:11', '2021-10-13 06:19:11'), (8907, 4, '2021-10-13 06:19:11', '2021-10-13 06:19:11'), (8908, 4, '2021-10-13 06:19:12', '2021-10-13 06:19:12'), (8909, 4, '2021-10-13 06:19:12', '2021-10-13 06:19:12'), (8910, 4, '2021-10-13 06:19:12', '2021-10-13 06:19:12'), (8911, 4, '2021-10-13 06:19:13', '2021-10-13 06:19:13'), (8912, 4, '2021-10-13 06:19:13', '2021-10-13 06:19:13'), (8913, 4, '2021-10-13 06:19:13', '2021-10-13 06:19:13'), (8914, 4, '2021-10-13 06:19:14', '2021-10-13 06:19:14'), (8915, 4, '2021-10-13 06:19:14', '2021-10-13 06:19:14'), (8916, 4, '2021-10-13 06:19:14', '2021-10-13 06:19:14'), (8917, 4, '2021-10-13 06:19:14', '2021-10-13 06:19:14'), (8918, 4, '2021-10-13 06:19:15', '2021-10-13 06:19:15'), (8919, 4, '2021-10-13 06:19:15', '2021-10-13 06:19:15'), (8920, 4, '2021-10-13 06:19:15', '2021-10-13 06:19:15'), (8921, 4, '2021-10-13 06:19:16', '2021-10-13 06:19:16'), (8922, 4, '2021-10-13 06:19:16', '2021-10-13 06:19:16'), (8923, 4, '2021-10-13 06:19:16', '2021-10-13 06:19:16'), (8924, 4, '2021-10-13 06:19:16', '2021-10-13 06:19:16'), (8925, 4, '2021-10-13 06:19:17', '2021-10-13 06:19:17'), (8926, 4, '2021-10-13 06:19:17', '2021-10-13 06:19:17'), (8927, 4, '2021-10-13 06:19:17', '2021-10-13 06:19:17'), (8928, 4, '2021-10-13 06:19:18', '2021-10-13 06:19:18'), (8929, 4, '2021-10-13 06:19:18', '2021-10-13 06:19:18'), (8930, 4, '2021-10-13 06:19:18', '2021-10-13 06:19:18'), (8931, 4, '2021-10-13 06:19:18', '2021-10-13 06:19:18'), (8932, 4, '2021-10-13 06:19:19', '2021-10-13 06:19:19'), (8933, 4, '2021-10-13 06:19:19', '2021-10-13 06:19:19'), (8934, 4, '2021-10-13 06:19:19', '2021-10-13 06:19:19'), (8935, 4, '2021-10-13 06:19:20', '2021-10-13 06:19:20'), (8936, 4, '2021-10-13 06:19:20', '2021-10-13 06:19:20'), (8937, 4, '2021-10-13 06:19:20', '2021-10-13 06:19:20'), (8938, 4, '2021-10-13 06:19:20', '2021-10-13 06:19:20'), (8939, 4, '2021-10-13 06:19:21', '2021-10-13 06:19:21'), (8940, 4, '2021-10-13 06:19:21', '2021-10-13 06:19:21'), (8941, 4, '2021-10-13 06:19:21', '2021-10-13 06:19:21'), (8942, 4, '2021-10-13 06:19:21', '2021-10-13 06:19:21'), (8943, 4, '2021-10-13 06:19:22', '2021-10-13 06:19:22'), (8944, 4, '2021-10-13 06:19:23', '2021-10-13 06:19:23'), (8945, 4, '2021-10-13 06:19:24', '2021-10-13 06:19:24'), (8946, 4, '2021-10-13 06:19:24', '2021-10-13 06:19:24'), (8947, 4, '2021-10-13 06:19:24', '2021-10-13 06:19:24'), (8948, 4, '2021-10-13 06:19:25', '2021-10-13 06:19:25'), (8949, 4, '2021-10-13 06:19:25', '2021-10-13 06:19:25'), (8950, 4, '2021-10-13 06:19:25', '2021-10-13 06:19:25'), (8951, 4, '2021-10-13 06:19:26', '2021-10-13 06:19:26'), (8952, 4, '2021-10-13 06:19:26', '2021-10-13 06:19:26'), (8953, 4, '2021-10-13 06:19:26', '2021-10-13 06:19:26'), (8954, 4, '2021-10-13 06:19:26', '2021-10-13 06:19:26'), (8955, 4, '2021-10-13 06:19:26', '2021-10-13 06:19:26'), (8956, 4, '2021-10-13 06:19:27', '2021-10-13 06:19:27'), (8957, 4, '2021-10-13 06:19:27', '2021-10-13 06:19:27'), (8958, 4, '2021-10-13 06:19:27', '2021-10-13 06:19:27'), (8959, 4, '2021-10-13 06:19:28', '2021-10-13 06:19:28'), (8960, 4, '2021-10-13 06:19:28', '2021-10-13 06:19:28'), (8961, 4, '2021-10-13 06:19:28', '2021-10-13 06:19:28'), (8962, 4, '2021-10-13 06:19:29', '2021-10-13 06:19:29'), (8963, 4, '2021-10-13 06:19:29', '2021-10-13 06:19:29'), (8964, 4, '2021-10-13 06:19:29', '2021-10-13 06:19:29'), (8965, 4, '2021-10-13 06:19:29', '2021-10-13 06:19:29'), (8966, 4, '2021-10-13 06:19:30', '2021-10-13 06:19:30'), (8967, 4, '2021-10-13 06:19:30', '2021-10-13 06:19:30'), (8968, 4, '2021-10-13 06:19:30', '2021-10-13 06:19:30'), (8969, 4, '2021-10-13 06:19:31', '2021-10-13 06:19:31'), (8970, 4, '2021-10-13 06:19:31', '2021-10-13 06:19:31'), (8971, 4, '2021-10-13 06:19:33', '2021-10-13 06:19:33'), (8972, 4, '2021-10-13 06:19:33', '2021-10-13 06:19:33'), (8973, 4, '2021-10-13 06:19:34', '2021-10-13 06:19:34'), (8974, 4, '2021-10-13 06:19:34', '2021-10-13 06:19:34'), (8975, 4, '2021-10-13 06:19:34', '2021-10-13 06:19:34'), (8976, 4, '2021-10-13 06:19:35', '2021-10-13 06:19:35'), (8977, 4, '2021-10-13 06:19:35', '2021-10-13 06:19:35'), (8978, 4, '2021-10-13 06:19:35', '2021-10-13 06:19:35'), (8979, 4, '2021-10-13 06:19:35', '2021-10-13 06:19:35'), (8980, 4, '2021-10-13 06:19:36', '2021-10-13 06:19:36'), (8981, 4, '2021-10-13 06:19:36', '2021-10-13 06:19:36'), (8982, 4, '2021-10-13 06:19:36', '2021-10-13 06:19:36'), (8983, 4, '2021-10-13 06:19:37', '2021-10-13 06:19:37'), (8984, 4, '2021-10-13 06:19:39', '2021-10-13 06:19:39'), (8985, 4, '2021-10-13 06:19:39', '2021-10-13 06:19:39'), (8986, 4, '2021-10-13 06:19:41', '2021-10-13 06:19:41'), (8987, 4, '2021-10-13 06:19:41', '2021-10-13 06:19:41'), (8988, 4, '2021-10-13 06:19:41', '2021-10-13 06:19:41'), (8989, 4, '2021-10-13 06:19:41', '2021-10-13 06:19:41'), (8990, 4, '2021-10-13 06:19:42', '2021-10-13 06:19:42'), (8991, 4, '2021-10-13 06:19:42', '2021-10-13 06:19:42'), (8992, 4, '2021-10-13 06:19:42', '2021-10-13 06:19:42'), (8993, 4, '2021-10-13 06:19:42', '2021-10-13 06:19:42'), (8994, 4, '2021-10-13 06:19:43', '2021-10-13 06:19:43'), (8995, 4, '2021-10-13 06:19:43', '2021-10-13 06:19:43'), (8996, 4, '2021-10-13 06:19:44', '2021-10-13 06:19:44'), (8997, 4, '2021-10-13 06:19:44', '2021-10-13 06:19:44'), (8998, 4, '2021-10-13 06:19:44', '2021-10-13 06:19:44'), (8999, 4, '2021-10-13 06:19:45', '2021-10-13 06:19:45'), (9000, 4, '2021-10-13 06:19:45', '2021-10-13 06:19:45'), (9001, 4, '2021-10-13 06:19:45', '2021-10-13 06:19:45'), (9002, 4, '2021-10-13 06:19:46', '2021-10-13 06:19:46'), (9003, 4, '2021-10-13 06:19:48', '2021-10-13 06:19:48'), (9004, 4, '2021-10-14 06:19:51', '2021-10-14 06:19:51'), (9005, 4, '2021-10-14 06:19:52', '2021-10-14 06:19:52'), (9006, 4, '2021-10-14 06:19:52', '2021-10-14 06:19:52'), (9007, 4, '2021-10-14 06:19:53', '2021-10-14 06:19:53'), (9008, 4, '2021-10-14 06:19:53', '2021-10-14 06:19:53'), (9009, 4, '2021-10-14 06:19:53', '2021-10-14 06:19:53'), (9010, 4, '2021-10-14 06:19:53', '2021-10-14 06:19:53'), (9011, 4, '2021-10-14 06:19:54', '2021-10-14 06:19:54'), (9012, 4, '2021-10-14 06:19:54', '2021-10-14 06:19:54'), (9013, 4, '2021-10-14 06:19:54', '2021-10-14 06:19:54'), (9014, 4, '2021-10-14 06:19:54', '2021-10-14 06:19:54'), (9015, 4, '2021-10-14 06:19:55', '2021-10-14 06:19:55'), (9016, 4, '2021-10-14 06:19:55', '2021-10-14 06:19:55'), (9017, 4, '2021-10-14 06:19:55', '2021-10-14 06:19:55'), (9018, 4, '2021-10-14 06:19:56', '2021-10-14 06:19:56'), (9019, 4, '2021-10-14 06:19:56', '2021-10-14 06:19:56'), (9020, 4, '2021-10-14 06:19:56', '2021-10-14 06:19:56'), (9021, 4, '2021-10-14 06:19:56', '2021-10-14 06:19:56'), (9022, 4, '2021-10-14 06:19:57', '2021-10-14 06:19:57'), (9023, 4, '2021-10-14 06:19:57', '2021-10-14 06:19:57'), (9024, 4, '2021-10-14 06:19:57', '2021-10-14 06:19:57'), (9025, 4, '2021-10-14 06:19:58', '2021-10-14 06:19:58'), (9026, 4, '2021-10-14 06:19:58', '2021-10-14 06:19:58'), (9027, 4, '2021-10-14 06:19:59', '2021-10-14 06:19:59'), (9028, 4, '2021-10-14 06:19:59', '2021-10-14 06:19:59'), (9029, 4, '2021-10-14 06:19:59', '2021-10-14 06:19:59'), (9030, 4, '2021-10-14 06:19:59', '2021-10-14 06:19:59'), (9031, 4, '2021-10-14 06:20:00', '2021-10-14 06:20:00'), (9032, 4, '2021-10-14 06:20:00', '2021-10-14 06:20:00'), (9033, 4, '2021-10-14 06:20:00', '2021-10-14 06:20:00'), (9034, 4, '2021-10-14 06:20:00', '2021-10-14 06:20:00'), (9035, 4, '2021-10-14 06:20:01', '2021-10-14 06:20:01'), (9036, 4, '2021-10-14 06:20:01', '2021-10-14 06:20:01'), (9037, 4, '2021-10-14 06:20:01', '2021-10-14 06:20:01'), (9038, 4, '2021-10-14 06:20:02', '2021-10-14 06:20:02'), (9039, 4, '2021-10-14 06:20:04', '2021-10-14 06:20:04'), (9040, 4, '2021-10-14 06:20:04', '2021-10-14 06:20:04'), (9041, 4, '2021-10-14 06:20:04', '2021-10-14 06:20:04'), (9042, 4, '2021-10-14 06:20:04', '2021-10-14 06:20:04'), (9043, 4, '2021-10-14 06:20:04', '2021-10-14 06:20:04'), (9044, 4, '2021-10-14 06:20:05', '2021-10-14 06:20:05'), (9045, 4, '2021-10-14 06:20:05', '2021-10-14 06:20:05'), (9046, 4, '2021-10-14 06:20:05', '2021-10-14 06:20:05'), (9047, 4, '2021-10-14 06:20:06', '2021-10-14 06:20:06'), (9048, 4, '2021-10-14 06:20:06', '2021-10-14 06:20:06'), (9049, 4, '2021-10-14 06:20:06', '2021-10-14 06:20:06'), (9050, 4, '2021-10-14 06:20:06', '2021-10-14 06:20:06'), (9051, 4, '2021-10-14 06:20:07', '2021-10-14 06:20:07'), (9052, 4, '2021-10-14 06:20:07', '2021-10-14 06:20:07'), (9053, 4, '2021-10-14 06:20:07', '2021-10-14 06:20:07'), (9054, 4, '2021-10-14 06:20:07', '2021-10-14 06:20:07'), (9055, 4, '2021-10-14 06:20:08', '2021-10-14 06:20:08'), (9056, 4, '2021-10-14 06:20:09', '2021-10-14 06:20:09'), (9057, 4, '2021-10-14 06:20:09', '2021-10-14 06:20:09'), (9058, 4, '2021-10-14 06:20:09', '2021-10-14 06:20:09'), (9059, 4, '2021-10-14 06:20:09', '2021-10-14 06:20:09'), (9060, 4, '2021-10-14 06:20:10', '2021-10-14 06:20:10'), (9061, 4, '2021-10-14 06:20:10', '2021-10-14 06:20:10'), (9062, 4, '2021-10-14 06:20:10', '2021-10-14 06:20:10'), (9063, 4, '2021-10-14 06:20:10', '2021-10-14 06:20:10'), (9064, 4, '2021-10-14 06:20:11', '2021-10-14 06:20:11'), (9065, 4, '2021-10-14 06:20:11', '2021-10-14 06:20:11'), (9066, 4, '2021-10-14 06:20:12', '2021-10-14 06:20:12'), (9067, 4, '2021-10-14 06:20:12', '2021-10-14 06:20:12'), (9068, 4, '2021-10-14 06:20:13', '2021-10-14 06:20:13'), (9069, 4, '2021-10-14 06:20:13', '2021-10-14 06:20:13'), (9070, 4, '2021-10-14 06:20:13', '2021-10-14 06:20:13'), (9071, 4, '2021-10-14 06:20:14', '2021-10-14 06:20:14'), (9072, 4, '2021-10-14 06:20:14', '2021-10-14 06:20:14'), (9073, 4, '2021-10-14 06:20:14', '2021-10-14 06:20:14'), (9074, 4, '2021-10-14 06:20:15', '2021-10-14 06:20:15'), (9075, 4, '2021-10-14 06:20:15', '2021-10-14 06:20:15'), (9076, 4, '2021-10-14 06:20:15', '2021-10-14 06:20:15'), (9077, 4, '2021-10-14 06:20:16', '2021-10-14 06:20:16'), (9078, 4, '2021-10-14 06:20:16', '2021-10-14 06:20:16'), (9079, 4, '2021-10-14 06:20:16', '2021-10-14 06:20:16'), (9080, 4, '2021-10-14 06:20:16', '2021-10-14 06:20:16'), (9081, 4, '2021-10-14 06:20:17', '2021-10-14 06:20:17'), (9082, 4, '2021-10-14 06:20:17', '2021-10-14 06:20:17'), (9083, 4, '2021-10-14 06:20:17', '2021-10-14 06:20:17'), (9084, 4, '2021-10-14 06:20:18', '2021-10-14 06:20:18'), (9085, 4, '2021-10-14 06:20:18', '2021-10-14 06:20:18'), (9086, 4, '2021-10-14 06:20:18', '2021-10-14 06:20:18'), (9087, 4, '2021-10-14 06:20:18', '2021-10-14 06:20:18'), (9088, 4, '2021-10-14 06:20:19', '2021-10-14 06:20:19'), (9089, 4, '2021-10-14 06:20:19', '2021-10-14 06:20:19'), (9090, 4, '2021-10-14 06:20:19', '2021-10-14 06:20:19'), (9091, 4, '2021-10-14 06:20:20', '2021-10-14 06:20:20'), (9092, 4, '2021-10-14 06:20:20', '2021-10-14 06:20:20'), (9093, 4, '2021-10-14 06:20:20', '2021-10-14 06:20:20'), (9094, 4, '2021-10-14 06:20:21', '2021-10-14 06:20:21'), (9095, 4, '2021-10-14 06:20:21', '2021-10-14 06:20:21'), (9096, 4, '2021-10-14 06:20:22', '2021-10-14 06:20:22'), (9097, 4, '2021-10-14 06:20:22', '2021-10-14 06:20:22'), (9098, 4, '2021-10-14 06:20:22', '2021-10-14 06:20:22'), (9099, 4, '2021-10-14 06:20:22', '2021-10-14 06:20:22'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (9100, 4, '2021-10-14 06:20:23', '2021-10-14 06:20:23'), (9101, 4, '2021-10-14 06:20:23', '2021-10-14 06:20:23'), (9102, 4, '2021-10-14 06:20:23', '2021-10-14 06:20:23'), (9103, 4, '2021-10-14 06:20:23', '2021-10-14 06:20:23'), (9104, 4, '2021-10-14 06:20:24', '2021-10-14 06:20:24'), (9105, 4, '2021-10-14 06:20:24', '2021-10-14 06:20:24'), (9106, 4, '2021-10-14 06:20:24', '2021-10-14 06:20:24'), (9107, 4, '2021-10-14 06:20:24', '2021-10-14 06:20:24'), (9108, 4, '2021-10-14 06:20:25', '2021-10-14 06:20:25'), (9109, 4, '2021-10-14 06:20:25', '2021-10-14 06:20:25'), (9110, 4, '2021-10-14 06:20:25', '2021-10-14 06:20:25'), (9111, 4, '2021-10-14 06:20:25', '2021-10-14 06:20:25'), (9112, 4, '2021-10-14 06:20:26', '2021-10-14 06:20:26'), (9113, 4, '2021-10-14 06:20:26', '2021-10-14 06:20:26'), (9114, 4, '2021-10-14 06:20:26', '2021-10-14 06:20:26'), (9115, 4, '2021-10-14 06:20:27', '2021-10-14 06:20:27'), (9116, 4, '2021-10-14 06:20:27', '2021-10-14 06:20:27'), (9117, 4, '2021-10-14 06:20:27', '2021-10-14 06:20:27'), (9118, 4, '2021-10-14 06:20:28', '2021-10-14 06:20:28'), (9119, 4, '2021-10-14 06:20:28', '2021-10-14 06:20:28'), (9120, 4, '2021-10-14 06:20:28', '2021-10-14 06:20:28'), (9121, 4, '2021-10-14 06:20:28', '2021-10-14 06:20:28'), (9122, 4, '2021-10-14 06:20:28', '2021-10-14 06:20:28'), (9123, 4, '2021-10-14 06:20:29', '2021-10-14 06:20:29'), (9124, 4, '2021-10-14 06:20:29', '2021-10-14 06:20:29'), (9125, 4, '2021-10-14 06:20:29', '2021-10-14 06:20:29'), (9126, 4, '2021-10-14 06:20:29', '2021-10-14 06:20:29'), (9127, 4, '2021-10-14 06:20:30', '2021-10-14 06:20:30'), (9128, 4, '2021-10-14 06:20:30', '2021-10-14 06:20:30'), (9129, 4, '2021-10-14 06:20:30', '2021-10-14 06:20:30'), (9130, 4, '2021-10-14 06:20:31', '2021-10-14 06:20:31'), (9131, 4, '2021-10-14 06:20:31', '2021-10-14 06:20:31'), (9132, 4, '2021-10-14 06:20:31', '2021-10-14 06:20:31'), (9133, 4, '2021-10-14 06:20:31', '2021-10-14 06:20:31'), (9134, 4, '2021-10-14 06:20:32', '2021-10-14 06:20:32'), (9135, 4, '2021-10-14 06:20:32', '2021-10-14 06:20:32'), (9136, 4, '2021-10-14 06:20:32', '2021-10-14 06:20:32'), (9137, 4, '2021-10-14 06:20:32', '2021-10-14 06:20:32'), (9138, 4, '2021-10-14 06:20:33', '2021-10-14 06:20:33'), (9139, 4, '2021-10-14 06:20:33', '2021-10-14 06:20:33'), (9140, 4, '2021-10-14 06:20:34', '2021-10-14 06:20:34'), (9141, 4, '2021-10-14 06:20:34', '2021-10-14 06:20:34'), (9142, 4, '2021-10-14 06:20:35', '2021-10-14 06:20:35'), (9143, 4, '2021-10-14 06:20:35', '2021-10-14 06:20:35'), (9144, 4, '2021-10-14 06:20:35', '2021-10-14 06:20:35'), (9145, 4, '2021-10-14 06:20:36', '2021-10-14 06:20:36'), (9146, 4, '2021-10-14 06:20:36', '2021-10-14 06:20:36'), (9147, 4, '2021-10-14 06:20:36', '2021-10-14 06:20:36'), (9148, 4, '2021-10-14 06:20:37', '2021-10-14 06:20:37'), (9149, 4, '2021-10-14 06:20:37', '2021-10-14 06:20:37'), (9150, 4, '2021-10-14 06:20:37', '2021-10-14 06:20:37'), (9151, 4, '2021-10-14 06:20:37', '2021-10-14 06:20:37'), (9152, 4, '2021-10-14 06:20:37', '2021-10-14 06:20:37'), (9153, 4, '2021-10-14 06:20:38', '2021-10-14 06:20:38'), (9154, 4, '2021-10-14 06:20:38', '2021-10-14 06:20:38'), (9155, 4, '2021-10-14 06:20:38', '2021-10-14 06:20:38'), (9156, 4, '2021-10-14 06:20:38', '2021-10-14 06:20:38'), (9157, 4, '2021-10-14 06:20:39', '2021-10-14 06:20:39'), (9158, 4, '2021-10-14 06:20:39', '2021-10-14 06:20:39'), (9159, 4, '2021-10-14 06:20:40', '2021-10-14 06:20:40'), (9160, 4, '2021-10-14 06:20:40', '2021-10-14 06:20:40'), (9161, 4, '2021-10-14 06:20:40', '2021-10-14 06:20:40'), (9162, 4, '2021-10-14 06:20:40', '2021-10-14 06:20:40'), (9163, 4, '2021-10-14 06:20:41', '2021-10-14 06:20:41'), (9164, 4, '2021-10-14 06:20:41', '2021-10-14 06:20:41'), (9165, 4, '2021-10-14 06:20:41', '2021-10-14 06:20:41'), (9166, 4, '2021-10-14 06:20:42', '2021-10-14 06:20:42'), (9167, 4, '2021-10-14 06:20:42', '2021-10-14 06:20:42'), (9168, 4, '2021-10-14 06:20:42', '2021-10-14 06:20:42'), (9169, 4, '2021-10-14 06:20:42', '2021-10-14 06:20:42'), (9170, 4, '2021-10-14 06:20:43', '2021-10-14 06:20:43'), (9171, 4, '2021-10-14 06:20:43', '2021-10-14 06:20:43'), (9172, 4, '2021-10-14 06:20:43', '2021-10-14 06:20:43'), (9173, 4, '2021-10-14 06:20:43', '2021-10-14 06:20:43'), (9174, 4, '2021-10-14 06:20:44', '2021-10-14 06:20:44'), (9175, 4, '2021-10-14 06:20:44', '2021-10-14 06:20:44'), (9176, 4, '2021-10-14 06:20:44', '2021-10-14 06:20:44'), (9177, 4, '2021-10-14 06:20:45', '2021-10-14 06:20:45'), (9178, 4, '2021-10-14 06:20:45', '2021-10-14 06:20:45'), (9179, 4, '2021-10-14 06:20:46', '2021-10-14 06:20:46'), (9180, 4, '2021-10-14 06:20:46', '2021-10-14 06:20:46'), (9181, 4, '2021-10-14 06:20:46', '2021-10-14 06:20:46'), (9182, 4, '2021-10-14 06:20:46', '2021-10-14 06:20:46'), (9183, 4, '2021-10-14 06:20:47', '2021-10-14 06:20:47'), (9184, 4, '2021-10-14 06:20:47', '2021-10-14 06:20:47'), (9185, 4, '2021-10-14 06:20:47', '2021-10-14 06:20:47'), (9186, 4, '2021-10-14 06:20:47', '2021-10-14 06:20:47'), (9187, 4, '2021-10-14 06:20:48', '2021-10-14 06:20:48'), (9188, 4, '2021-10-14 06:20:48', '2021-10-14 06:20:48'), (9189, 4, '2021-10-14 06:20:48', '2021-10-14 06:20:48'), (9190, 4, '2021-10-14 06:20:49', '2021-10-14 06:20:49'), (9191, 4, '2021-10-14 06:20:49', '2021-10-14 06:20:49'), (9192, 4, '2021-10-14 06:20:49', '2021-10-14 06:20:49'), (9193, 4, '2021-10-14 06:20:50', '2021-10-14 06:20:50'), (9194, 4, '2021-10-14 06:20:50', '2021-10-14 06:20:50'), (9195, 4, '2021-10-14 06:20:50', '2021-10-14 06:20:50'), (9196, 4, '2021-10-14 06:20:51', '2021-10-14 06:20:51'), (9197, 4, '2021-10-14 06:20:51', '2021-10-14 06:20:51'), (9198, 4, '2021-10-14 06:20:52', '2021-10-14 06:20:52'), (9199, 4, '2021-10-14 06:20:52', '2021-10-14 06:20:52'), (9200, 4, '2021-10-14 06:20:52', '2021-10-14 06:20:52'), (9201, 4, '2021-10-14 06:20:53', '2021-10-14 06:20:53'), (9202, 4, '2021-10-14 06:20:53', '2021-10-14 06:20:53'), (9203, 4, '2021-10-14 06:20:53', '2021-10-14 06:20:53'), (9204, 4, '2021-10-14 06:20:53', '2021-10-14 06:20:53'), (9205, 4, '2021-10-15 06:20:58', '2021-10-15 06:20:58'), (9206, 4, '2021-10-15 06:20:59', '2021-10-15 06:20:59'), (9207, 4, '2021-10-15 06:20:59', '2021-10-15 06:20:59'), (9208, 4, '2021-10-15 06:21:00', '2021-10-15 06:21:00'), (9209, 4, '2021-10-15 06:21:00', '2021-10-15 06:21:00'), (9210, 4, '2021-10-15 06:21:00', '2021-10-15 06:21:00'), (9211, 4, '2021-10-15 06:21:00', '2021-10-15 06:21:00'), (9212, 4, '2021-10-15 06:21:01', '2021-10-15 06:21:01'), (9213, 4, '2021-10-15 06:21:01', '2021-10-15 06:21:01'), (9214, 4, '2021-10-15 06:21:02', '2021-10-15 06:21:02'), (9215, 4, '2021-10-15 06:21:02', '2021-10-15 06:21:02'), (9216, 4, '2021-10-15 06:21:02', '2021-10-15 06:21:02'), (9217, 4, '2021-10-15 06:21:02', '2021-10-15 06:21:02'), (9218, 4, '2021-10-15 06:21:03', '2021-10-15 06:21:03'), (9219, 4, '2021-10-15 06:21:03', '2021-10-15 06:21:03'), (9220, 4, '2021-10-15 06:21:03', '2021-10-15 06:21:03'), (9221, 4, '2021-10-15 06:21:04', '2021-10-15 06:21:04'), (9222, 4, '2021-10-15 06:21:04', '2021-10-15 06:21:04'), (9223, 4, '2021-10-15 06:21:04', '2021-10-15 06:21:04'), (9224, 4, '2021-10-15 06:21:04', '2021-10-15 06:21:04'), (9225, 4, '2021-10-15 06:21:05', '2021-10-15 06:21:05'), (9226, 4, '2021-10-15 06:21:05', '2021-10-15 06:21:05'), (9227, 4, '2021-10-15 06:21:05', '2021-10-15 06:21:05'), (9228, 4, '2021-10-15 06:21:05', '2021-10-15 06:21:05'), (9229, 4, '2021-10-15 06:21:06', '2021-10-15 06:21:06'), (9230, 4, '2021-10-15 06:21:06', '2021-10-15 06:21:06'), (9231, 4, '2021-10-15 06:21:06', '2021-10-15 06:21:06'), (9232, 4, '2021-10-15 06:21:06', '2021-10-15 06:21:06'), (9233, 4, '2021-10-15 06:21:07', '2021-10-15 06:21:07'), (9234, 4, '2021-10-15 06:21:09', '2021-10-15 06:21:09'), (9235, 4, '2021-10-15 06:21:10', '2021-10-15 06:21:10'), (9236, 4, '2021-10-15 06:21:10', '2021-10-15 06:21:10'), (9237, 4, '2021-10-15 06:21:11', '2021-10-15 06:21:11'), (9238, 4, '2021-10-15 06:21:12', '2021-10-15 06:21:12'), (9239, 4, '2021-10-15 06:21:12', '2021-10-15 06:21:12'), (9240, 4, '2021-10-15 06:21:13', '2021-10-15 06:21:13'), (9241, 4, '2021-10-15 06:21:13', '2021-10-15 06:21:13'), (9242, 4, '2021-10-15 06:21:13', '2021-10-15 06:21:13'), (9243, 4, '2021-10-15 06:21:13', '2021-10-15 06:21:13'), (9244, 4, '2021-10-15 06:21:14', '2021-10-15 06:21:14'), (9245, 4, '2021-10-15 06:21:14', '2021-10-15 06:21:14'), (9246, 4, '2021-10-15 06:21:14', '2021-10-15 06:21:14'), (9247, 4, '2021-10-15 06:21:14', '2021-10-15 06:21:14'), (9248, 4, '2021-10-15 06:21:15', '2021-10-15 06:21:15'), (9249, 4, '2021-10-15 06:21:15', '2021-10-15 06:21:15'), (9250, 4, '2021-10-15 06:21:15', '2021-10-15 06:21:15'), (9251, 4, '2021-10-15 06:21:16', '2021-10-15 06:21:16'), (9252, 4, '2021-10-15 06:21:16', '2021-10-15 06:21:16'), (9253, 4, '2021-10-15 06:21:16', '2021-10-15 06:21:16'), (9254, 4, '2021-10-15 06:21:17', '2021-10-15 06:21:17'), (9255, 4, '2021-10-15 06:21:17', '2021-10-15 06:21:17'), (9256, 4, '2021-10-15 06:21:17', '2021-10-15 06:21:17'), (9257, 4, '2021-10-15 06:21:17', '2021-10-15 06:21:17'), (9258, 4, '2021-10-15 06:21:18', '2021-10-15 06:21:18'), (9259, 4, '2021-10-15 06:21:18', '2021-10-15 06:21:18'), (9260, 4, '2021-10-15 06:21:18', '2021-10-15 06:21:18'), (9261, 4, '2021-10-15 06:21:19', '2021-10-15 06:21:19'), (9262, 4, '2021-10-15 06:21:19', '2021-10-15 06:21:19'), (9263, 4, '2021-10-15 06:21:19', '2021-10-15 06:21:19'), (9264, 4, '2021-10-15 06:21:20', '2021-10-15 06:21:20'), (9265, 4, '2021-10-15 06:21:20', '2021-10-15 06:21:20'), (9266, 4, '2021-10-15 06:21:20', '2021-10-15 06:21:20'), (9267, 4, '2021-10-15 06:21:21', '2021-10-15 06:21:21'), (9268, 4, '2021-10-15 06:21:21', '2021-10-15 06:21:21'), (9269, 4, '2021-10-15 06:21:21', '2021-10-15 06:21:21'), (9270, 4, '2021-10-15 06:21:22', '2021-10-15 06:21:22'), (9271, 4, '2021-10-15 06:21:22', '2021-10-15 06:21:22'), (9272, 4, '2021-10-15 06:21:22', '2021-10-15 06:21:22'), (9273, 4, '2021-10-15 06:21:23', '2021-10-15 06:21:23'), (9274, 4, '2021-10-15 06:21:23', '2021-10-15 06:21:23'), (9275, 4, '2021-10-15 06:21:23', '2021-10-15 06:21:23'), (9276, 4, '2021-10-15 06:21:23', '2021-10-15 06:21:23'), (9277, 4, '2021-10-15 06:21:24', '2021-10-15 06:21:24'), (9278, 4, '2021-10-15 06:21:24', '2021-10-15 06:21:24'), (9279, 4, '2021-10-15 06:21:24', '2021-10-15 06:21:24'), (9280, 4, '2021-10-15 06:21:25', '2021-10-15 06:21:25'), (9281, 4, '2021-10-15 06:21:25', '2021-10-15 06:21:25'), (9282, 4, '2021-10-15 06:21:25', '2021-10-15 06:21:25'), (9283, 4, '2021-10-15 06:21:26', '2021-10-15 06:21:26'), (9284, 4, '2021-10-15 06:21:26', '2021-10-15 06:21:26'), (9285, 4, '2021-10-15 06:21:26', '2021-10-15 06:21:26'), (9286, 4, '2021-10-15 06:21:27', '2021-10-15 06:21:27'), (9287, 4, '2021-10-15 06:21:27', '2021-10-15 06:21:27'), (9288, 4, '2021-10-15 06:21:27', '2021-10-15 06:21:27'), (9289, 4, '2021-10-15 06:21:27', '2021-10-15 06:21:27'), (9290, 4, '2021-10-15 06:21:28', '2021-10-15 06:21:28'), (9291, 4, '2021-10-15 06:21:28', '2021-10-15 06:21:28'), (9292, 4, '2021-10-15 06:21:28', '2021-10-15 06:21:28'), (9293, 4, '2021-10-15 06:21:29', '2021-10-15 06:21:29'), (9294, 4, '2021-10-15 06:21:29', '2021-10-15 06:21:29'), (9295, 4, '2021-10-15 06:21:29', '2021-10-15 06:21:29'), (9296, 4, '2021-10-15 06:21:29', '2021-10-15 06:21:29'), (9297, 4, '2021-10-15 06:21:30', '2021-10-15 06:21:30'), (9298, 4, '2021-10-15 06:21:30', '2021-10-15 06:21:30'), (9299, 4, '2021-10-15 06:21:31', '2021-10-15 06:21:31'), (9300, 4, '2021-10-15 06:21:31', '2021-10-15 06:21:31'), (9301, 4, '2021-10-15 06:21:31', '2021-10-15 06:21:31'), (9302, 4, '2021-10-15 06:21:31', '2021-10-15 06:21:31'), (9303, 4, '2021-10-15 06:21:32', '2021-10-15 06:21:32'), (9304, 4, '2021-10-15 06:21:32', '2021-10-15 06:21:32'), (9305, 4, '2021-10-15 06:21:32', '2021-10-15 06:21:32'), (9306, 4, '2021-10-16 06:21:36', '2021-10-16 06:21:36'), (9307, 4, '2021-10-16 06:21:37', '2021-10-16 06:21:37'), (9308, 4, '2021-10-16 06:21:37', '2021-10-16 06:21:37'), (9309, 4, '2021-10-16 06:21:37', '2021-10-16 06:21:37'), (9310, 4, '2021-10-16 06:21:37', '2021-10-16 06:21:37'), (9311, 4, '2021-10-16 06:21:37', '2021-10-16 06:21:37'), (9312, 4, '2021-10-16 06:21:38', '2021-10-16 06:21:38'), (9313, 4, '2021-10-16 06:21:38', '2021-10-16 06:21:38'), (9314, 4, '2021-10-16 06:21:38', '2021-10-16 06:21:38'), (9315, 4, '2021-10-16 06:21:38', '2021-10-16 06:21:38'), (9316, 4, '2021-10-16 06:21:39', '2021-10-16 06:21:39'), (9317, 4, '2021-10-16 06:21:39', '2021-10-16 06:21:39'), (9318, 4, '2021-10-16 06:21:39', '2021-10-16 06:21:39'), (9319, 4, '2021-10-16 06:21:39', '2021-10-16 06:21:39'), (9320, 4, '2021-10-16 06:21:39', '2021-10-16 06:21:39'), (9321, 4, '2021-10-16 06:21:40', '2021-10-16 06:21:40'), (9322, 4, '2021-10-16 06:21:40', '2021-10-16 06:21:40'), (9323, 4, '2021-10-16 06:21:40', '2021-10-16 06:21:40'), (9324, 4, '2021-10-16 06:21:40', '2021-10-16 06:21:40'), (9325, 4, '2021-10-16 06:21:41', '2021-10-16 06:21:41'), (9326, 4, '2021-10-16 06:21:41', '2021-10-16 06:21:41'), (9327, 4, '2021-10-16 06:21:41', '2021-10-16 06:21:41'), (9328, 4, '2021-10-16 06:21:42', '2021-10-16 06:21:42'), (9329, 4, '2021-10-16 06:21:42', '2021-10-16 06:21:42'), (9330, 4, '2021-10-16 06:21:42', '2021-10-16 06:21:42'), (9331, 4, '2021-10-16 06:21:42', '2021-10-16 06:21:42'), (9332, 4, '2021-10-16 06:21:43', '2021-10-16 06:21:43'), (9333, 4, '2021-10-16 06:21:43', '2021-10-16 06:21:43'), (9334, 4, '2021-10-16 06:21:43', '2021-10-16 06:21:43'), (9335, 4, '2021-10-16 06:21:43', '2021-10-16 06:21:43'), (9336, 4, '2021-10-16 06:21:43', '2021-10-16 06:21:43'), (9337, 4, '2021-10-16 06:21:43', '2021-10-16 06:21:43'), (9338, 4, '2021-10-16 06:21:44', '2021-10-16 06:21:44'), (9339, 4, '2021-10-16 06:21:44', '2021-10-16 06:21:44'), (9340, 4, '2021-10-16 06:21:44', '2021-10-16 06:21:44'), (9341, 4, '2021-10-16 06:21:44', '2021-10-16 06:21:44'), (9342, 4, '2021-10-16 06:21:44', '2021-10-16 06:21:44'), (9343, 4, '2021-10-16 06:21:45', '2021-10-16 06:21:45'), (9344, 4, '2021-10-16 06:21:45', '2021-10-16 06:21:45'), (9345, 4, '2021-10-16 06:21:45', '2021-10-16 06:21:45'), (9346, 4, '2021-10-16 06:21:45', '2021-10-16 06:21:45'), (9347, 4, '2021-10-16 06:21:47', '2021-10-16 06:21:47'), (9348, 4, '2021-10-16 06:21:47', '2021-10-16 06:21:47'), (9349, 4, '2021-10-16 06:21:50', '2021-10-16 06:21:50'), (9350, 4, '2021-10-16 06:21:50', '2021-10-16 06:21:50'), (9351, 4, '2021-10-16 06:21:51', '2021-10-16 06:21:51'), (9352, 4, '2021-10-16 06:21:51', '2021-10-16 06:21:51'), (9353, 4, '2021-10-16 06:21:51', '2021-10-16 06:21:51'), (9354, 4, '2021-10-16 06:21:51', '2021-10-16 06:21:51'), (9355, 4, '2021-10-16 06:21:51', '2021-10-16 06:21:51'), (9356, 4, '2021-10-16 06:21:52', '2021-10-16 06:21:52'), (9357, 4, '2021-10-16 06:21:52', '2021-10-16 06:21:52'), (9358, 4, '2021-10-16 06:21:52', '2021-10-16 06:21:52'), (9359, 4, '2021-10-16 06:21:52', '2021-10-16 06:21:52'), (9360, 4, '2021-10-16 06:21:53', '2021-10-16 06:21:53'), (9361, 4, '2021-10-16 06:21:53', '2021-10-16 06:21:53'), (9362, 4, '2021-10-16 06:21:53', '2021-10-16 06:21:53'), (9363, 4, '2021-10-16 06:21:54', '2021-10-16 06:21:54'), (9364, 4, '2021-10-16 06:21:54', '2021-10-16 06:21:54'), (9365, 4, '2021-10-16 06:21:54', '2021-10-16 06:21:54'), (9366, 4, '2021-10-16 06:21:54', '2021-10-16 06:21:54'), (9367, 4, '2021-10-16 06:21:54', '2021-10-16 06:21:54'), (9368, 4, '2021-10-16 06:21:55', '2021-10-16 06:21:55'), (9369, 4, '2021-10-16 06:21:55', '2021-10-16 06:21:55'), (9370, 4, '2021-10-16 06:21:55', '2021-10-16 06:21:55'), (9371, 4, '2021-10-16 06:21:55', '2021-10-16 06:21:55'), (9372, 4, '2021-10-16 06:21:55', '2021-10-16 06:21:55'), (9373, 4, '2021-10-16 06:21:55', '2021-10-16 06:21:55'), (9374, 4, '2021-10-16 06:21:56', '2021-10-16 06:21:56'), (9375, 4, '2021-10-16 06:21:56', '2021-10-16 06:21:56'), (9376, 4, '2021-10-16 06:21:56', '2021-10-16 06:21:56'), (9377, 4, '2021-10-16 06:21:56', '2021-10-16 06:21:56'), (9378, 4, '2021-10-16 06:21:56', '2021-10-16 06:21:56'), (9379, 4, '2021-10-16 06:21:57', '2021-10-16 06:21:57'), (9380, 4, '2021-10-16 06:21:57', '2021-10-16 06:21:57'), (9381, 4, '2021-10-16 06:21:57', '2021-10-16 06:21:57'), (9382, 4, '2021-10-16 06:21:57', '2021-10-16 06:21:57'), (9383, 4, '2021-10-16 06:21:57', '2021-10-16 06:21:57'), (9384, 4, '2021-10-16 06:21:58', '2021-10-16 06:21:58'), (9385, 4, '2021-10-16 06:21:58', '2021-10-16 06:21:58'), (9386, 4, '2021-10-16 06:21:58', '2021-10-16 06:21:58'), (9387, 4, '2021-10-16 06:21:58', '2021-10-16 06:21:58'), (9388, 4, '2021-10-16 06:21:59', '2021-10-16 06:21:59'), (9389, 4, '2021-10-16 06:21:59', '2021-10-16 06:21:59'), (9390, 4, '2021-10-16 06:22:00', '2021-10-16 06:22:00'), (9391, 4, '2021-10-17 06:22:02', '2021-10-17 06:22:02'), (9392, 4, '2021-10-17 06:22:03', '2021-10-17 06:22:03'), (9393, 4, '2021-10-17 06:22:03', '2021-10-17 06:22:03'), (9394, 4, '2021-10-17 06:22:03', '2021-10-17 06:22:03'), (9395, 4, '2021-10-17 06:22:04', '2021-10-17 06:22:04'), (9396, 4, '2021-10-17 06:22:04', '2021-10-17 06:22:04'), (9397, 4, '2021-10-17 06:22:04', '2021-10-17 06:22:04'), (9398, 4, '2021-10-17 06:22:05', '2021-10-17 06:22:05'), (9399, 4, '2021-10-17 06:22:05', '2021-10-17 06:22:05'), (9400, 4, '2021-10-17 06:22:05', '2021-10-17 06:22:05'), (9401, 4, '2021-10-17 06:22:06', '2021-10-17 06:22:06'), (9402, 4, '2021-10-17 06:22:06', '2021-10-17 06:22:06'), (9403, 4, '2021-10-17 06:22:06', '2021-10-17 06:22:06'), (9404, 4, '2021-10-17 06:22:06', '2021-10-17 06:22:06'), (9405, 4, '2021-10-17 06:22:06', '2021-10-17 06:22:06'), (9406, 4, '2021-10-17 06:22:06', '2021-10-17 06:22:06'), (9407, 4, '2021-10-17 06:22:07', '2021-10-17 06:22:07'), (9408, 4, '2021-10-17 06:22:07', '2021-10-17 06:22:07'), (9409, 4, '2021-10-17 06:22:07', '2021-10-17 06:22:07'), (9410, 4, '2021-10-17 06:22:07', '2021-10-17 06:22:07'), (9411, 4, '2021-10-17 06:22:07', '2021-10-17 06:22:07'), (9412, 4, '2021-10-17 06:22:07', '2021-10-17 06:22:07'), (9413, 4, '2021-10-17 06:22:08', '2021-10-17 06:22:08'), (9414, 4, '2021-10-17 06:22:08', '2021-10-17 06:22:08'), (9415, 4, '2021-10-17 06:22:08', '2021-10-17 06:22:08'), (9416, 4, '2021-10-17 06:22:08', '2021-10-17 06:22:08'), (9417, 4, '2021-10-17 06:22:08', '2021-10-17 06:22:08'), (9418, 4, '2021-10-17 06:22:09', '2021-10-17 06:22:09'), (9419, 4, '2021-10-17 06:22:09', '2021-10-17 06:22:09'), (9420, 4, '2021-10-17 06:22:09', '2021-10-17 06:22:09'), (9421, 4, '2021-10-17 06:22:09', '2021-10-17 06:22:09'), (9422, 4, '2021-10-17 06:22:09', '2021-10-17 06:22:09'), (9423, 4, '2021-10-17 06:22:10', '2021-10-17 06:22:10'), (9424, 4, '2021-10-17 06:22:10', '2021-10-17 06:22:10'), (9425, 4, '2021-10-17 06:22:10', '2021-10-17 06:22:10'), (9426, 4, '2021-10-17 06:22:10', '2021-10-17 06:22:10'), (9427, 4, '2021-10-17 06:22:10', '2021-10-17 06:22:10'), (9428, 4, '2021-10-17 06:22:11', '2021-10-17 06:22:11'), (9429, 4, '2021-10-17 06:22:11', '2021-10-17 06:22:11'), (9430, 4, '2021-10-17 06:22:12', '2021-10-17 06:22:12'), (9431, 4, '2021-10-17 06:22:12', '2021-10-17 06:22:12'), (9432, 4, '2021-10-17 06:22:12', '2021-10-17 06:22:12'), (9433, 4, '2021-10-17 06:22:13', '2021-10-17 06:22:13'), (9434, 4, '2021-10-17 06:22:13', '2021-10-17 06:22:13'), (9435, 4, '2021-10-17 06:22:13', '2021-10-17 06:22:13'), (9436, 4, '2021-10-17 06:22:13', '2021-10-17 06:22:13'), (9437, 4, '2021-10-17 06:22:13', '2021-10-17 06:22:13'), (9438, 4, '2021-10-17 06:22:13', '2021-10-17 06:22:13'), (9439, 4, '2021-10-17 06:22:14', '2021-10-17 06:22:14'), (9440, 4, '2021-10-17 06:22:14', '2021-10-17 06:22:14'), (9441, 4, '2021-10-17 06:22:14', '2021-10-17 06:22:14'), (9442, 4, '2021-10-17 06:22:14', '2021-10-17 06:22:14'), (9443, 4, '2021-10-17 06:22:15', '2021-10-17 06:22:15'), (9444, 4, '2021-10-17 06:22:15', '2021-10-17 06:22:15'), (9445, 4, '2021-10-17 06:22:15', '2021-10-17 06:22:15'), (9446, 4, '2021-10-17 06:22:15', '2021-10-17 06:22:15'), (9447, 4, '2021-10-17 06:22:15', '2021-10-17 06:22:15'), (9448, 4, '2021-10-17 06:22:15', '2021-10-17 06:22:15'), (9449, 4, '2021-10-17 06:22:16', '2021-10-17 06:22:16'), (9450, 4, '2021-10-17 06:22:16', '2021-10-17 06:22:16'), (9451, 4, '2021-10-17 06:22:16', '2021-10-17 06:22:16'), (9452, 4, '2021-10-17 06:22:16', '2021-10-17 06:22:16'), (9453, 4, '2021-10-17 06:22:16', '2021-10-17 06:22:16'), (9454, 4, '2021-10-17 06:22:17', '2021-10-17 06:22:17'), (9455, 4, '2021-10-17 06:22:17', '2021-10-17 06:22:17'), (9456, 4, '2021-10-17 06:22:17', '2021-10-17 06:22:17'), (9457, 4, '2021-10-17 06:22:17', '2021-10-17 06:22:17'), (9458, 4, '2021-10-17 06:22:17', '2021-10-17 06:22:17'), (9459, 4, '2021-10-17 06:22:18', '2021-10-17 06:22:18'), (9460, 4, '2021-10-17 06:22:18', '2021-10-17 06:22:18'), (9461, 4, '2021-10-17 06:22:18', '2021-10-17 06:22:18'), (9462, 4, '2021-10-17 06:22:18', '2021-10-17 06:22:18'), (9463, 4, '2021-10-17 06:22:19', '2021-10-17 06:22:19'), (9464, 4, '2021-10-17 06:22:19', '2021-10-17 06:22:19'), (9465, 4, '2021-10-17 06:22:19', '2021-10-17 06:22:19'), (9466, 4, '2021-10-17 06:22:19', '2021-10-17 06:22:19'), (9467, 4, '2021-10-17 06:22:19', '2021-10-17 06:22:19'), (9468, 4, '2021-10-17 06:22:20', '2021-10-17 06:22:20'), (9469, 4, '2021-10-17 06:22:20', '2021-10-17 06:22:20'), (9470, 4, '2021-10-17 06:22:20', '2021-10-17 06:22:20'), (9471, 4, '2021-10-17 06:22:20', '2021-10-17 06:22:20'), (9472, 4, '2021-10-17 06:22:20', '2021-10-17 06:22:20'), (9473, 4, '2021-10-17 06:22:21', '2021-10-17 06:22:21'), (9474, 4, '2021-10-17 06:22:21', '2021-10-17 06:22:21'), (9475, 4, '2021-10-17 06:22:21', '2021-10-17 06:22:21'), (9476, 4, '2021-10-17 06:22:21', '2021-10-17 06:22:21'), (9477, 4, '2021-10-17 06:22:21', '2021-10-17 06:22:21'), (9478, 4, '2021-10-17 06:22:22', '2021-10-17 06:22:22'), (9479, 4, '2021-10-17 06:22:22', '2021-10-17 06:22:22'), (9480, 4, '2021-10-17 06:22:22', '2021-10-17 06:22:22'), (9481, 4, '2021-10-17 06:22:22', '2021-10-17 06:22:22'), (9482, 4, '2021-10-17 06:22:22', '2021-10-17 06:22:22'), (9483, 4, '2021-10-17 06:22:23', '2021-10-17 06:22:23'), (9484, 4, '2021-10-17 06:22:23', '2021-10-17 06:22:23'), (9485, 4, '2021-10-17 06:22:23', '2021-10-17 06:22:23'), (9486, 4, '2021-10-17 06:22:24', '2021-10-17 06:22:24'), (9487, 4, '2021-10-17 06:22:24', '2021-10-17 06:22:24'), (9488, 4, '2021-10-17 06:22:25', '2021-10-17 06:22:25'), (9489, 4, '2021-10-17 06:22:25', '2021-10-17 06:22:25'), (9490, 4, '2021-10-17 06:22:25', '2021-10-17 06:22:25'), (9491, 4, '2021-10-17 06:22:25', '2021-10-17 06:22:25'), (9492, 4, '2021-10-17 06:22:25', '2021-10-17 06:22:25'), (9493, 4, '2021-10-17 06:22:26', '2021-10-17 06:22:26'), (9494, 4, '2021-10-17 06:22:26', '2021-10-17 06:22:26'), (9495, 4, '2021-10-17 06:22:26', '2021-10-17 06:22:26'), (9496, 4, '2021-10-17 06:22:26', '2021-10-17 06:22:26'), (9497, 4, '2021-10-17 06:22:26', '2021-10-17 06:22:26'), (9498, 4, '2021-10-17 06:22:27', '2021-10-17 06:22:27'), (9499, 4, '2021-10-17 06:22:27', '2021-10-17 06:22:27'), (9500, 4, '2021-10-17 06:22:27', '2021-10-17 06:22:27'), (9501, 4, '2021-10-17 06:22:27', '2021-10-17 06:22:27'), (9502, 4, '2021-10-17 06:22:27', '2021-10-17 06:22:27'), (9503, 4, '2021-10-17 06:22:28', '2021-10-17 06:22:28'), (9504, 4, '2021-10-17 06:22:28', '2021-10-17 06:22:28'), (9505, 4, '2021-10-17 06:22:28', '2021-10-17 06:22:28'), (9506, 4, '2021-10-17 06:22:28', '2021-10-17 06:22:28'), (9507, 4, '2021-10-17 06:22:29', '2021-10-17 06:22:29'), (9508, 4, '2021-10-17 06:22:29', '2021-10-17 06:22:29'), (9509, 4, '2021-10-17 06:22:29', '2021-10-17 06:22:29'), (9510, 4, '2021-10-17 06:22:29', '2021-10-17 06:22:29'), (9511, 4, '2021-10-17 06:22:29', '2021-10-17 06:22:29'), (9512, 4, '2021-10-17 06:22:30', '2021-10-17 06:22:30'), (9513, 4, '2021-10-18 06:22:34', '2021-10-18 06:22:34'), (9514, 4, '2021-10-18 06:22:37', '2021-10-18 06:22:37'), (9515, 4, '2021-10-18 06:22:37', '2021-10-18 06:22:37'), (9516, 4, '2021-10-18 06:22:37', '2021-10-18 06:22:37'), (9517, 4, '2021-10-18 06:22:37', '2021-10-18 06:22:37'), (9518, 4, '2021-10-18 06:22:38', '2021-10-18 06:22:38'), (9519, 4, '2021-10-18 06:22:38', '2021-10-18 06:22:38'), (9520, 4, '2021-10-18 06:22:38', '2021-10-18 06:22:38'), (9521, 4, '2021-10-18 06:22:38', '2021-10-18 06:22:38'), (9522, 4, '2021-10-18 06:22:38', '2021-10-18 06:22:38'), (9523, 4, '2021-10-18 06:22:39', '2021-10-18 06:22:39'), (9524, 4, '2021-10-18 06:22:39', '2021-10-18 06:22:39'), (9525, 4, '2021-10-18 06:22:39', '2021-10-18 06:22:39'), (9526, 4, '2021-10-18 06:22:39', '2021-10-18 06:22:39'), (9527, 4, '2021-10-18 06:22:40', '2021-10-18 06:22:40'), (9528, 4, '2021-10-18 06:22:40', '2021-10-18 06:22:40'), (9529, 4, '2021-10-18 06:22:40', '2021-10-18 06:22:40'), (9530, 4, '2021-10-18 06:22:40', '2021-10-18 06:22:40'), (9531, 4, '2021-10-18 06:22:41', '2021-10-18 06:22:41'), (9532, 4, '2021-10-18 06:22:41', '2021-10-18 06:22:41'), (9533, 4, '2021-10-18 06:22:41', '2021-10-18 06:22:41'), (9534, 4, '2021-10-18 06:22:41', '2021-10-18 06:22:41'), (9535, 4, '2021-10-18 06:22:41', '2021-10-18 06:22:41'), (9536, 4, '2021-10-18 06:22:42', '2021-10-18 06:22:42'), (9537, 4, '2021-10-18 06:22:42', '2021-10-18 06:22:42'), (9538, 4, '2021-10-18 06:22:42', '2021-10-18 06:22:42'), (9539, 4, '2021-10-18 06:22:42', '2021-10-18 06:22:42'), (9540, 4, '2021-10-18 06:22:43', '2021-10-18 06:22:43'), (9541, 4, '2021-10-18 06:22:43', '2021-10-18 06:22:43'), (9542, 4, '2021-10-18 06:22:43', '2021-10-18 06:22:43'), (9543, 4, '2021-10-18 06:22:43', '2021-10-18 06:22:43'), (9544, 4, '2021-10-18 06:22:44', '2021-10-18 06:22:44'), (9545, 4, '2021-10-18 06:22:44', '2021-10-18 06:22:44'), (9546, 4, '2021-10-18 06:22:44', '2021-10-18 06:22:44'), (9547, 4, '2021-10-18 06:22:44', '2021-10-18 06:22:44'), (9548, 4, '2021-10-18 06:22:44', '2021-10-18 06:22:44'), (9549, 4, '2021-10-18 06:22:45', '2021-10-18 06:22:45'), (9550, 4, '2021-10-18 06:22:45', '2021-10-18 06:22:45'), (9551, 4, '2021-10-18 06:22:45', '2021-10-18 06:22:45'), (9552, 4, '2021-10-18 06:22:45', '2021-10-18 06:22:45'), (9553, 4, '2021-10-18 06:22:45', '2021-10-18 06:22:45'), (9554, 4, '2021-10-18 06:22:46', '2021-10-18 06:22:46'), (9555, 4, '2021-10-18 06:22:46', '2021-10-18 06:22:46'), (9556, 4, '2021-10-18 06:22:46', '2021-10-18 06:22:46'), (9557, 4, '2021-10-18 06:22:46', '2021-10-18 06:22:46'), (9558, 4, '2021-10-18 06:22:46', '2021-10-18 06:22:46'), (9559, 4, '2021-10-18 06:22:47', '2021-10-18 06:22:47'), (9560, 4, '2021-10-18 06:22:47', '2021-10-18 06:22:47'), (9561, 4, '2021-10-18 06:22:47', '2021-10-18 06:22:47'), (9562, 4, '2021-10-18 06:22:47', '2021-10-18 06:22:47'), (9563, 4, '2021-10-18 06:22:47', '2021-10-18 06:22:47'), (9564, 4, '2021-10-18 06:22:48', '2021-10-18 06:22:48'), (9565, 4, '2021-10-18 06:22:48', '2021-10-18 06:22:48'), (9566, 4, '2021-10-18 06:22:48', '2021-10-18 06:22:48'), (9567, 4, '2021-10-18 06:22:49', '2021-10-18 06:22:49'), (9568, 4, '2021-10-18 06:22:49', '2021-10-18 06:22:49'), (9569, 4, '2021-10-18 06:22:49', '2021-10-18 06:22:49'), (9570, 4, '2021-10-18 06:22:50', '2021-10-18 06:22:50'), (9571, 4, '2021-10-18 06:22:50', '2021-10-18 06:22:50'), (9572, 4, '2021-10-18 06:22:50', '2021-10-18 06:22:50'), (9573, 4, '2021-10-18 06:22:50', '2021-10-18 06:22:50'), (9574, 4, '2021-10-18 06:22:51', '2021-10-18 06:22:51'), (9575, 4, '2021-10-18 06:22:51', '2021-10-18 06:22:51'), (9576, 4, '2021-10-18 06:22:51', '2021-10-18 06:22:51'), (9577, 4, '2021-10-18 06:22:51', '2021-10-18 06:22:51'), (9578, 4, '2021-10-18 06:22:52', '2021-10-18 06:22:52'), (9579, 4, '2021-10-18 06:22:52', '2021-10-18 06:22:52'), (9580, 4, '2021-10-18 06:22:52', '2021-10-18 06:22:52'), (9581, 4, '2021-10-18 06:22:52', '2021-10-18 06:22:52'), (9582, 4, '2021-10-18 06:22:52', '2021-10-18 06:22:52'), (9583, 4, '2021-10-18 06:22:53', '2021-10-18 06:22:53'), (9584, 4, '2021-10-18 06:22:53', '2021-10-18 06:22:53'), (9585, 4, '2021-10-18 06:22:53', '2021-10-18 06:22:53'), (9586, 4, '2021-10-18 06:22:53', '2021-10-18 06:22:53'), (9587, 4, '2021-10-18 06:22:54', '2021-10-18 06:22:54'), (9588, 4, '2021-10-18 06:22:54', '2021-10-18 06:22:54'), (9589, 4, '2021-10-18 06:22:54', '2021-10-18 06:22:54'), (9590, 4, '2021-10-18 06:22:54', '2021-10-18 06:22:54'), (9591, 4, '2021-10-18 06:22:54', '2021-10-18 06:22:54'), (9592, 4, '2021-10-18 06:22:55', '2021-10-18 06:22:55'), (9593, 4, '2021-10-18 06:22:55', '2021-10-18 06:22:55'), (9594, 4, '2021-10-18 06:22:55', '2021-10-18 06:22:55'), (9595, 4, '2021-10-18 06:22:55', '2021-10-18 06:22:55'), (9596, 4, '2021-10-18 06:22:55', '2021-10-18 06:22:55'), (9597, 4, '2021-10-18 06:22:56', '2021-10-18 06:22:56'), (9598, 4, '2021-10-18 06:22:56', '2021-10-18 06:22:56'), (9599, 4, '2021-10-18 06:22:56', '2021-10-18 06:22:56'), (9600, 4, '2021-10-18 06:22:56', '2021-10-18 06:22:56'), (9601, 4, '2021-10-18 06:22:57', '2021-10-18 06:22:57'), (9602, 4, '2021-10-18 06:22:57', '2021-10-18 06:22:57'), (9603, 4, '2021-10-18 06:22:57', '2021-10-18 06:22:57'), (9604, 4, '2021-10-18 06:22:57', '2021-10-18 06:22:57'), (9605, 4, '2021-10-18 06:22:57', '2021-10-18 06:22:57'), (9606, 4, '2021-10-18 06:22:58', '2021-10-18 06:22:58'), (9607, 4, '2021-10-18 06:22:58', '2021-10-18 06:22:58'), (9608, 4, '2021-10-18 06:22:58', '2021-10-18 06:22:58'), (9609, 4, '2021-10-18 06:22:58', '2021-10-18 06:22:58'), (9610, 4, '2021-10-18 06:22:59', '2021-10-18 06:22:59'), (9611, 4, '2021-10-18 06:22:59', '2021-10-18 06:22:59'), (9612, 4, '2021-10-18 06:22:59', '2021-10-18 06:22:59'), (9613, 4, '2021-10-18 06:22:59', '2021-10-18 06:22:59'), (9614, 4, '2021-10-18 06:22:59', '2021-10-18 06:22:59'), (9615, 4, '2021-10-18 06:23:00', '2021-10-18 06:23:00'), (9616, 4, '2021-10-18 06:23:00', '2021-10-18 06:23:00'), (9617, 4, '2021-10-18 06:23:00', '2021-10-18 06:23:00'), (9618, 4, '2021-10-18 06:23:01', '2021-10-18 06:23:01'), (9619, 4, '2021-10-18 06:23:01', '2021-10-18 06:23:01'), (9620, 4, '2021-10-18 06:23:01', '2021-10-18 06:23:01'), (9621, 4, '2021-10-18 06:23:01', '2021-10-18 06:23:01'), (9622, 4, '2021-10-18 06:23:01', '2021-10-18 06:23:01'), (9623, 4, '2021-10-18 06:23:02', '2021-10-18 06:23:02'), (9624, 4, '2021-10-18 06:23:02', '2021-10-18 06:23:02'), (9625, 4, '2021-10-18 06:23:02', '2021-10-18 06:23:02'), (9626, 4, '2021-10-18 06:23:02', '2021-10-18 06:23:02'), (9627, 4, '2021-10-18 06:23:03', '2021-10-18 06:23:03'), (9628, 4, '2021-10-18 06:23:03', '2021-10-18 06:23:03'), (9629, 4, '2021-10-18 06:23:03', '2021-10-18 06:23:03'), (9630, 4, '2021-10-18 06:23:03', '2021-10-18 06:23:03'), (9631, 4, '2021-10-18 06:23:04', '2021-10-18 06:23:04'), (9632, 4, '2021-10-18 06:23:04', '2021-10-18 06:23:04'), (9633, 4, '2021-10-18 06:23:04', '2021-10-18 06:23:04'), (9634, 4, '2021-10-18 06:23:04', '2021-10-18 06:23:04'), (9635, 4, '2021-10-18 06:23:05', '2021-10-18 06:23:05'), (9636, 4, '2021-10-18 06:23:05', '2021-10-18 06:23:05'), (9637, 4, '2021-10-18 06:23:05', '2021-10-18 06:23:05'), (9638, 4, '2021-10-18 06:23:05', '2021-10-18 06:23:05'), (9639, 4, '2021-10-18 06:23:05', '2021-10-18 06:23:05'), (9640, 4, '2021-10-18 06:23:06', '2021-10-18 06:23:06'), (9641, 4, '2021-10-18 06:23:06', '2021-10-18 06:23:06'), (9642, 4, '2021-10-18 06:23:06', '2021-10-18 06:23:06'), (9643, 4, '2021-10-18 06:23:06', '2021-10-18 06:23:06'), (9644, 4, '2021-10-18 06:23:07', '2021-10-18 06:23:07'), (9645, 4, '2021-10-18 06:23:07', '2021-10-18 06:23:07'), (9646, 4, '2021-10-18 06:23:07', '2021-10-18 06:23:07'), (9647, 4, '2021-10-18 06:23:08', '2021-10-18 06:23:08'), (9648, 4, '2021-10-18 06:23:08', '2021-10-18 06:23:08'), (9649, 4, '2021-10-18 06:23:08', '2021-10-18 06:23:08'), (9650, 4, '2021-10-18 06:23:08', '2021-10-18 06:23:08'), (9651, 4, '2021-10-18 06:23:09', '2021-10-18 06:23:09'), (9652, 4, '2021-10-18 06:23:09', '2021-10-18 06:23:09'), (9653, 4, '2021-10-18 06:23:09', '2021-10-18 06:23:09'), (9654, 4, '2021-10-18 06:23:09', '2021-10-18 06:23:09'), (9655, 4, '2021-10-18 06:23:10', '2021-10-18 06:23:10'), (9656, 4, '2021-10-18 06:23:10', '2021-10-18 06:23:10'), (9657, 4, '2021-10-18 06:23:10', '2021-10-18 06:23:10'), (9658, 4, '2021-10-18 06:23:10', '2021-10-18 06:23:10'), (9659, 4, '2021-10-18 06:23:11', '2021-10-18 06:23:11'), (9660, 4, '2021-10-18 06:23:11', '2021-10-18 06:23:11'), (9661, 4, '2021-10-18 06:23:11', '2021-10-18 06:23:11'), (9662, 4, '2021-10-18 06:23:12', '2021-10-18 06:23:12'), (9663, 4, '2021-10-19 06:23:16', '2021-10-19 06:23:16'), (9664, 4, '2021-10-19 06:23:16', '2021-10-19 06:23:16'), (9665, 4, '2021-10-19 06:23:16', '2021-10-19 06:23:16'), (9666, 4, '2021-10-19 06:23:17', '2021-10-19 06:23:17'), (9667, 4, '2021-10-19 06:23:17', '2021-10-19 06:23:17'), (9668, 4, '2021-10-19 06:23:17', '2021-10-19 06:23:17'), (9669, 4, '2021-10-19 06:23:17', '2021-10-19 06:23:17'), (9670, 4, '2021-10-19 06:23:18', '2021-10-19 06:23:18'), (9671, 4, '2021-10-19 06:23:18', '2021-10-19 06:23:18'), (9672, 4, '2021-10-19 06:23:18', '2021-10-19 06:23:18'), (9673, 4, '2021-10-19 06:23:18', '2021-10-19 06:23:18'), (9674, 4, '2021-10-19 06:23:19', '2021-10-19 06:23:19'), (9675, 4, '2021-10-19 06:23:19', '2021-10-19 06:23:19'), (9676, 4, '2021-10-19 06:23:19', '2021-10-19 06:23:19'), (9677, 4, '2021-10-19 06:23:20', '2021-10-19 06:23:20'), (9678, 4, '2021-10-19 06:23:20', '2021-10-19 06:23:20'), (9679, 4, '2021-10-19 06:23:20', '2021-10-19 06:23:20'), (9680, 4, '2021-10-19 06:23:20', '2021-10-19 06:23:20'), (9681, 4, '2021-10-19 06:23:20', '2021-10-19 06:23:20'), (9682, 4, '2021-10-19 06:23:21', '2021-10-19 06:23:21'), (9683, 4, '2021-10-19 06:23:21', '2021-10-19 06:23:21'), (9684, 4, '2021-10-19 06:23:21', '2021-10-19 06:23:21'), (9685, 4, '2021-10-19 06:23:22', '2021-10-19 06:23:22'), (9686, 4, '2021-10-19 06:23:22', '2021-10-19 06:23:22'), (9687, 4, '2021-10-19 06:23:22', '2021-10-19 06:23:22'), (9688, 4, '2021-10-19 06:23:22', '2021-10-19 06:23:22'), (9689, 4, '2021-10-19 06:23:22', '2021-10-19 06:23:22'), (9690, 4, '2021-10-19 06:23:23', '2021-10-19 06:23:23'), (9691, 4, '2021-10-19 06:23:23', '2021-10-19 06:23:23'), (9692, 4, '2021-10-19 06:23:23', '2021-10-19 06:23:23'), (9693, 4, '2021-10-19 06:23:23', '2021-10-19 06:23:23'), (9694, 4, '2021-10-19 06:23:24', '2021-10-19 06:23:24'), (9695, 4, '2021-10-19 06:23:24', '2021-10-19 06:23:24'), (9696, 4, '2021-10-19 06:23:24', '2021-10-19 06:23:24'), (9697, 4, '2021-10-19 06:23:24', '2021-10-19 06:23:24'), (9698, 4, '2021-10-19 06:23:25', '2021-10-19 06:23:25'), (9699, 4, '2021-10-19 06:23:25', '2021-10-19 06:23:25'), (9700, 4, '2021-10-19 06:23:25', '2021-10-19 06:23:25'), (9701, 4, '2021-10-19 06:23:25', '2021-10-19 06:23:25'), (9702, 4, '2021-10-19 06:23:26', '2021-10-19 06:23:26'), (9703, 4, '2021-10-19 06:23:26', '2021-10-19 06:23:26'), (9704, 4, '2021-10-19 06:23:26', '2021-10-19 06:23:26'), (9705, 4, '2021-10-19 06:23:26', '2021-10-19 06:23:26'), (9706, 4, '2021-10-19 06:23:27', '2021-10-19 06:23:27'), (9707, 4, '2021-10-19 06:23:27', '2021-10-19 06:23:27'), (9708, 4, '2021-10-19 06:23:27', '2021-10-19 06:23:27'), (9709, 4, '2021-10-19 06:23:27', '2021-10-19 06:23:27'), (9710, 4, '2021-10-19 06:23:28', '2021-10-19 06:23:28'), (9711, 4, '2021-10-19 06:23:28', '2021-10-19 06:23:28'), (9712, 4, '2021-10-19 06:23:28', '2021-10-19 06:23:28'), (9713, 4, '2021-10-19 06:23:28', '2021-10-19 06:23:28'), (9714, 4, '2021-10-19 06:23:29', '2021-10-19 06:23:29'), (9715, 4, '2021-10-19 06:23:29', '2021-10-19 06:23:29'), (9716, 4, '2021-10-19 06:23:29', '2021-10-19 06:23:29'), (9717, 4, '2021-10-19 06:23:29', '2021-10-19 06:23:29'), (9718, 4, '2021-10-19 06:23:30', '2021-10-19 06:23:30'), (9719, 4, '2021-10-19 06:23:30', '2021-10-19 06:23:30'), (9720, 4, '2021-10-19 06:23:30', '2021-10-19 06:23:30'), (9721, 4, '2021-10-19 06:23:30', '2021-10-19 06:23:30'), (9722, 4, '2021-10-19 06:23:30', '2021-10-19 06:23:30'), (9723, 4, '2021-10-19 06:23:31', '2021-10-19 06:23:31'), (9724, 4, '2021-10-19 06:23:31', '2021-10-19 06:23:31'), (9725, 4, '2021-10-19 06:23:31', '2021-10-19 06:23:31'), (9726, 4, '2021-10-19 06:23:32', '2021-10-19 06:23:32'), (9727, 4, '2021-10-19 06:23:32', '2021-10-19 06:23:32'), (9728, 4, '2021-10-19 06:23:32', '2021-10-19 06:23:32'), (9729, 4, '2021-10-19 06:23:32', '2021-10-19 06:23:32'), (9730, 4, '2021-10-19 06:23:33', '2021-10-19 06:23:33'), (9731, 4, '2021-10-19 06:23:33', '2021-10-19 06:23:33'), (9732, 4, '2021-10-19 06:23:33', '2021-10-19 06:23:33'), (9733, 4, '2021-10-19 06:23:33', '2021-10-19 06:23:33'), (9734, 4, '2021-10-19 06:23:33', '2021-10-19 06:23:33'), (9735, 4, '2021-10-19 06:23:34', '2021-10-19 06:23:34'), (9736, 4, '2021-10-19 06:23:34', '2021-10-19 06:23:34'), (9737, 4, '2021-10-19 06:23:34', '2021-10-19 06:23:34'), (9738, 4, '2021-10-19 06:23:35', '2021-10-19 06:23:35'), (9739, 4, '2021-10-19 06:23:35', '2021-10-19 06:23:35'), (9740, 4, '2021-10-19 06:23:35', '2021-10-19 06:23:35'), (9741, 4, '2021-10-19 06:23:35', '2021-10-19 06:23:35'), (9742, 4, '2021-10-19 06:23:35', '2021-10-19 06:23:35'), (9743, 4, '2021-10-19 06:23:36', '2021-10-19 06:23:36'), (9744, 4, '2021-10-19 06:23:36', '2021-10-19 06:23:36'), (9745, 4, '2021-10-19 06:23:36', '2021-10-19 06:23:36'), (9746, 4, '2021-10-19 06:23:36', '2021-10-19 06:23:36'), (9747, 4, '2021-10-19 06:23:37', '2021-10-19 06:23:37'), (9748, 4, '2021-10-19 06:23:37', '2021-10-19 06:23:37'), (9749, 4, '2021-10-19 06:23:37', '2021-10-19 06:23:37'), (9750, 4, '2021-10-19 06:23:38', '2021-10-19 06:23:38'), (9751, 4, '2021-10-19 06:23:38', '2021-10-19 06:23:38'), (9752, 4, '2021-10-19 06:23:38', '2021-10-19 06:23:38'), (9753, 4, '2021-10-19 06:23:38', '2021-10-19 06:23:38'), (9754, 4, '2021-10-19 06:23:38', '2021-10-19 06:23:38'), (9755, 4, '2021-10-19 06:23:39', '2021-10-19 06:23:39'), (9756, 4, '2021-10-19 06:23:39', '2021-10-19 06:23:39'), (9757, 4, '2021-10-19 06:23:39', '2021-10-19 06:23:39'), (9758, 4, '2021-10-19 06:23:39', '2021-10-19 06:23:39'), (9759, 4, '2021-10-19 06:23:40', '2021-10-19 06:23:40'), (9760, 4, '2021-10-19 06:23:40', '2021-10-19 06:23:40'), (9761, 4, '2021-10-19 06:23:40', '2021-10-19 06:23:40'), (9762, 4, '2021-10-19 06:23:45', '2021-10-19 06:23:45'), (9763, 4, '2021-10-19 06:23:45', '2021-10-19 06:23:45'), (9764, 4, '2021-10-19 06:23:45', '2021-10-19 06:23:45'), (9765, 4, '2021-10-19 06:23:45', '2021-10-19 06:23:45'), (9766, 4, '2021-10-19 06:23:45', '2021-10-19 06:23:45'), (9767, 4, '2021-10-20 06:23:50', '2021-10-20 06:23:50'), (9768, 4, '2021-10-20 06:23:51', '2021-10-20 06:23:51'), (9769, 4, '2021-10-20 06:23:51', '2021-10-20 06:23:51'), (9770, 4, '2021-10-20 06:23:51', '2021-10-20 06:23:51'), (9771, 4, '2021-10-20 06:23:52', '2021-10-20 06:23:52'), (9772, 4, '2021-10-20 06:23:52', '2021-10-20 06:23:52'), (9773, 4, '2021-10-20 06:23:52', '2021-10-20 06:23:52'), (9774, 4, '2021-10-20 06:23:52', '2021-10-20 06:23:52'), (9775, 4, '2021-10-20 06:23:52', '2021-10-20 06:23:52'), (9776, 4, '2021-10-20 06:23:53', '2021-10-20 06:23:53'), (9777, 4, '2021-10-20 06:23:53', '2021-10-20 06:23:53'), (9778, 4, '2021-10-20 06:23:53', '2021-10-20 06:23:53'), (9779, 4, '2021-10-20 06:23:54', '2021-10-20 06:23:54'), (9780, 4, '2021-10-20 06:23:54', '2021-10-20 06:23:54'), (9781, 4, '2021-10-20 06:23:54', '2021-10-20 06:23:54'), (9782, 4, '2021-10-20 06:23:54', '2021-10-20 06:23:54'), (9783, 4, '2021-10-20 06:23:55', '2021-10-20 06:23:55'), (9784, 4, '2021-10-20 06:23:55', '2021-10-20 06:23:55'), (9785, 4, '2021-10-20 06:23:55', '2021-10-20 06:23:55'), (9786, 4, '2021-10-20 06:23:55', '2021-10-20 06:23:55'), (9787, 4, '2021-10-20 06:23:56', '2021-10-20 06:23:56'), (9788, 4, '2021-10-20 06:23:56', '2021-10-20 06:23:56'), (9789, 4, '2021-10-20 06:23:56', '2021-10-20 06:23:56'), (9790, 4, '2021-10-20 06:23:56', '2021-10-20 06:23:56'), (9791, 4, '2021-10-20 06:23:57', '2021-10-20 06:23:57'), (9792, 4, '2021-10-20 06:23:57', '2021-10-20 06:23:57'), (9793, 4, '2021-10-20 06:23:57', '2021-10-20 06:23:57'), (9794, 4, '2021-10-20 06:23:57', '2021-10-20 06:23:57'), (9795, 4, '2021-10-20 06:23:57', '2021-10-20 06:23:57'), (9796, 4, '2021-10-20 06:23:58', '2021-10-20 06:23:58'), (9797, 4, '2021-10-20 06:23:58', '2021-10-20 06:23:58'), (9798, 4, '2021-10-20 06:23:58', '2021-10-20 06:23:58'), (9799, 4, '2021-10-20 06:23:58', '2021-10-20 06:23:58'), (9800, 4, '2021-10-20 06:23:59', '2021-10-20 06:23:59'), (9801, 4, '2021-10-20 06:23:59', '2021-10-20 06:23:59'), (9802, 4, '2021-10-20 06:23:59', '2021-10-20 06:23:59'), (9803, 4, '2021-10-20 06:23:59', '2021-10-20 06:23:59'), (9804, 4, '2021-10-20 06:23:59', '2021-10-20 06:23:59'), (9805, 4, '2021-10-20 06:24:00', '2021-10-20 06:24:00'), (9806, 4, '2021-10-20 06:24:00', '2021-10-20 06:24:00'), (9807, 4, '2021-10-20 06:24:01', '2021-10-20 06:24:01'), (9808, 4, '2021-10-20 06:24:01', '2021-10-20 06:24:01'), (9809, 4, '2021-10-20 06:24:02', '2021-10-20 06:24:02'), (9810, 4, '2021-10-20 06:24:02', '2021-10-20 06:24:02'), (9811, 4, '2021-10-20 06:24:02', '2021-10-20 06:24:02'), (9812, 4, '2021-10-20 06:24:02', '2021-10-20 06:24:02'), (9813, 4, '2021-10-20 06:24:02', '2021-10-20 06:24:02'), (9814, 4, '2021-10-20 06:24:03', '2021-10-20 06:24:03'), (9815, 4, '2021-10-20 06:24:03', '2021-10-20 06:24:03'), (9816, 4, '2021-10-20 06:24:03', '2021-10-20 06:24:03'), (9817, 4, '2021-10-20 06:24:04', '2021-10-20 06:24:04'), (9818, 4, '2021-10-20 06:24:04', '2021-10-20 06:24:04'), (9819, 4, '2021-10-20 06:24:04', '2021-10-20 06:24:04'), (9820, 4, '2021-10-20 06:24:04', '2021-10-20 06:24:04'), (9821, 4, '2021-10-20 06:24:05', '2021-10-20 06:24:05'), (9822, 4, '2021-10-20 06:24:05', '2021-10-20 06:24:05'), (9823, 4, '2021-10-20 06:24:05', '2021-10-20 06:24:05'), (9824, 4, '2021-10-20 06:24:05', '2021-10-20 06:24:05'), (9825, 4, '2021-10-20 06:24:06', '2021-10-20 06:24:06'), (9826, 4, '2021-10-20 06:24:06', '2021-10-20 06:24:06'), (9827, 4, '2021-10-20 06:24:06', '2021-10-20 06:24:06'), (9828, 4, '2021-10-20 06:24:06', '2021-10-20 06:24:06'), (9829, 4, '2021-10-20 06:24:06', '2021-10-20 06:24:06'), (9830, 4, '2021-10-20 06:24:07', '2021-10-20 06:24:07'), (9831, 4, '2021-10-20 06:24:07', '2021-10-20 06:24:07'), (9832, 4, '2021-10-20 06:24:07', '2021-10-20 06:24:07'), (9833, 4, '2021-10-20 06:24:07', '2021-10-20 06:24:07'), (9834, 4, '2021-10-20 06:24:08', '2021-10-20 06:24:08'), (9835, 4, '2021-10-20 06:24:08', '2021-10-20 06:24:08'), (9836, 4, '2021-10-20 06:24:09', '2021-10-20 06:24:09'), (9837, 4, '2021-10-20 06:24:09', '2021-10-20 06:24:09'), (9838, 4, '2021-10-20 06:24:09', '2021-10-20 06:24:09'), (9839, 4, '2021-10-20 06:24:09', '2021-10-20 06:24:09'), (9840, 4, '2021-10-20 06:24:09', '2021-10-20 06:24:09'), (9841, 4, '2021-10-20 06:24:10', '2021-10-20 06:24:10'), (9842, 4, '2021-10-20 06:24:10', '2021-10-20 06:24:10'), (9843, 4, '2021-10-20 06:24:10', '2021-10-20 06:24:10'), (9844, 4, '2021-10-20 06:24:11', '2021-10-20 06:24:11'), (9845, 4, '2021-10-20 06:24:11', '2021-10-20 06:24:11'), (9846, 4, '2021-10-20 06:24:11', '2021-10-20 06:24:11'), (9847, 4, '2021-10-20 06:24:11', '2021-10-20 06:24:11'), (9848, 4, '2021-10-20 06:24:12', '2021-10-20 06:24:12'), (9849, 4, '2021-10-20 06:24:12', '2021-10-20 06:24:12'), (9850, 4, '2021-10-20 06:24:12', '2021-10-20 06:24:12'), (9851, 4, '2021-10-20 06:24:12', '2021-10-20 06:24:12'), (9852, 4, '2021-10-20 06:24:13', '2021-10-20 06:24:13'), (9853, 4, '2021-10-20 06:24:13', '2021-10-20 06:24:13'), (9854, 4, '2021-10-20 06:24:13', '2021-10-20 06:24:13'), (9855, 4, '2021-10-20 06:24:13', '2021-10-20 06:24:13'), (9856, 4, '2021-10-20 06:24:13', '2021-10-20 06:24:13'), (9857, 4, '2021-10-20 06:24:13', '2021-10-20 06:24:13'), (9858, 4, '2021-10-20 06:24:14', '2021-10-20 06:24:14'), (9859, 4, '2021-10-20 06:24:14', '2021-10-20 06:24:14'), (9860, 4, '2021-10-20 06:24:14', '2021-10-20 06:24:14'), (9861, 4, '2021-10-20 06:24:15', '2021-10-20 06:24:15'), (9862, 4, '2021-10-20 06:24:15', '2021-10-20 06:24:15'), (9863, 4, '2021-10-20 06:24:15', '2021-10-20 06:24:15'), (9864, 4, '2021-10-20 06:24:16', '2021-10-20 06:24:16'), (9865, 4, '2021-10-20 06:24:16', '2021-10-20 06:24:16'), (9866, 4, '2021-10-20 06:24:16', '2021-10-20 06:24:16'), (9867, 4, '2021-10-20 06:24:16', '2021-10-20 06:24:16'), (9868, 4, '2021-10-20 06:24:16', '2021-10-20 06:24:16'), (9869, 4, '2021-10-20 06:24:17', '2021-10-20 06:24:17'), (9870, 4, '2021-10-20 06:24:17', '2021-10-20 06:24:17'), (9871, 4, '2021-10-20 06:24:17', '2021-10-20 06:24:17'), (9872, 4, '2021-10-20 06:24:18', '2021-10-20 06:24:18'), (9873, 4, '2021-10-20 06:24:18', '2021-10-20 06:24:18'), (9874, 4, '2021-10-20 06:24:18', '2021-10-20 06:24:18'), (9875, 4, '2021-10-20 06:24:18', '2021-10-20 06:24:18'), (9876, 4, '2021-10-20 06:24:18', '2021-10-20 06:24:18'), (9877, 4, '2021-10-20 06:24:19', '2021-10-20 06:24:19'), (9878, 4, '2021-10-20 06:24:19', '2021-10-20 06:24:19'), (9879, 4, '2021-10-20 06:24:19', '2021-10-20 06:24:19'), (9880, 4, '2021-10-20 06:24:19', '2021-10-20 06:24:19'), (9881, 4, '2021-10-20 06:24:20', '2021-10-20 06:24:20'), (9882, 4, '2021-10-20 06:24:20', '2021-10-20 06:24:20'), (9883, 4, '2021-10-20 06:24:20', '2021-10-20 06:24:20'), (9884, 4, '2021-10-20 06:24:20', '2021-10-20 06:24:20'), (9885, 4, '2021-10-20 06:24:21', '2021-10-20 06:24:21'), (9886, 4, '2021-10-20 06:24:21', '2021-10-20 06:24:21'), (9887, 4, '2021-10-20 06:24:21', '2021-10-20 06:24:21'), (9888, 4, '2021-10-20 06:24:21', '2021-10-20 06:24:21'), (9889, 4, '2021-10-20 06:24:22', '2021-10-20 06:24:22'), (9890, 4, '2021-10-20 06:24:22', '2021-10-20 06:24:22'), (9891, 4, '2021-10-20 06:24:22', '2021-10-20 06:24:22'), (9892, 4, '2021-10-20 06:24:22', '2021-10-20 06:24:22'), (9893, 4, '2021-10-20 06:24:22', '2021-10-20 06:24:22'), (9894, 4, '2021-10-20 06:24:23', '2021-10-20 06:24:23'), (9895, 4, '2021-10-20 06:24:23', '2021-10-20 06:24:23'), (9896, 4, '2021-10-20 06:24:23', '2021-10-20 06:24:23'), (9897, 4, '2021-10-20 06:24:24', '2021-10-20 06:24:24'), (9898, 4, '2021-10-20 06:24:24', '2021-10-20 06:24:24'), (9899, 4, '2021-10-20 06:24:24', '2021-10-20 06:24:24'), (9900, 4, '2021-10-20 06:24:24', '2021-10-20 06:24:24'), (9901, 4, '2021-10-20 06:24:25', '2021-10-20 06:24:25'), (9902, 4, '2021-10-20 06:24:25', '2021-10-20 06:24:25'), (9903, 4, '2021-10-20 06:24:25', '2021-10-20 06:24:25'), (9904, 4, '2021-10-20 06:24:25', '2021-10-20 06:24:25'), (9905, 4, '2021-10-20 06:24:26', '2021-10-20 06:24:26'), (9906, 4, '2021-10-20 06:24:26', '2021-10-20 06:24:26'), (9907, 4, '2021-10-20 06:24:26', '2021-10-20 06:24:26'), (9908, 4, '2021-10-20 06:24:27', '2021-10-20 06:24:27'), (9909, 4, '2021-10-20 06:24:27', '2021-10-20 06:24:27'), (9910, 4, '2021-10-20 06:24:27', '2021-10-20 06:24:27'), (9911, 4, '2021-10-20 06:24:27', '2021-10-20 06:24:27'), (9912, 4, '2021-10-20 06:24:27', '2021-10-20 06:24:27'), (9913, 4, '2021-10-21 06:24:30', '2021-10-21 06:24:30'), (9914, 4, '2021-10-21 06:24:31', '2021-10-21 06:24:31'), (9915, 4, '2021-10-21 06:24:31', '2021-10-21 06:24:31'), (9916, 4, '2021-10-21 06:24:32', '2021-10-21 06:24:32'), (9917, 4, '2021-10-21 06:24:32', '2021-10-21 06:24:32'), (9918, 4, '2021-10-21 06:24:32', '2021-10-21 06:24:32'), (9919, 4, '2021-10-21 06:24:32', '2021-10-21 06:24:32'), (9920, 4, '2021-10-21 06:24:32', '2021-10-21 06:24:32'), (9921, 4, '2021-10-21 06:24:32', '2021-10-21 06:24:32'), (9922, 4, '2021-10-21 06:24:33', '2021-10-21 06:24:33'), (9923, 4, '2021-10-21 06:24:33', '2021-10-21 06:24:33'), (9924, 4, '2021-10-21 06:24:34', '2021-10-21 06:24:34'), (9925, 4, '2021-10-21 06:24:34', '2021-10-21 06:24:34'), (9926, 4, '2021-10-21 06:24:34', '2021-10-21 06:24:34'), (9927, 4, '2021-10-21 06:24:34', '2021-10-21 06:24:34'), (9928, 4, '2021-10-21 06:24:34', '2021-10-21 06:24:34'), (9929, 4, '2021-10-21 06:24:35', '2021-10-21 06:24:35'), (9930, 4, '2021-10-21 06:24:35', '2021-10-21 06:24:35'), (9931, 4, '2021-10-21 06:24:35', '2021-10-21 06:24:35'), (9932, 4, '2021-10-21 06:24:35', '2021-10-21 06:24:35'), (9933, 4, '2021-10-21 06:24:35', '2021-10-21 06:24:35'), (9934, 4, '2021-10-21 06:24:36', '2021-10-21 06:24:36'), (9935, 4, '2021-10-21 06:24:36', '2021-10-21 06:24:36'), (9936, 4, '2021-10-21 06:24:36', '2021-10-21 06:24:36'), (9937, 4, '2021-10-21 06:24:36', '2021-10-21 06:24:36'), (9938, 4, '2021-10-21 06:24:36', '2021-10-21 06:24:36'), (9939, 4, '2021-10-21 06:24:37', '2021-10-21 06:24:37'), (9940, 4, '2021-10-21 06:24:37', '2021-10-21 06:24:37'), (9941, 4, '2021-10-21 06:24:37', '2021-10-21 06:24:37'), (9942, 4, '2021-10-21 06:24:37', '2021-10-21 06:24:37'), (9943, 4, '2021-10-21 06:24:37', '2021-10-21 06:24:37'), (9944, 4, '2021-10-21 06:24:38', '2021-10-21 06:24:38'), (9945, 4, '2021-10-21 06:24:38', '2021-10-21 06:24:38'), (9946, 4, '2021-10-21 06:24:38', '2021-10-21 06:24:38'), (9947, 4, '2021-10-21 06:24:38', '2021-10-21 06:24:38'), (9948, 4, '2021-10-21 06:24:38', '2021-10-21 06:24:38'), (9949, 4, '2021-10-21 06:24:39', '2021-10-21 06:24:39'), (9950, 4, '2021-10-21 06:24:39', '2021-10-21 06:24:39'), (9951, 4, '2021-10-21 06:24:40', '2021-10-21 06:24:40'), (9952, 4, '2021-10-21 06:24:40', '2021-10-21 06:24:40'), (9953, 4, '2021-10-21 06:24:40', '2021-10-21 06:24:40'), (9954, 4, '2021-10-21 06:24:40', '2021-10-21 06:24:40'), (9955, 4, '2021-10-21 06:24:40', '2021-10-21 06:24:40'), (9956, 4, '2021-10-21 06:24:41', '2021-10-21 06:24:41'), (9957, 4, '2021-10-21 06:24:41', '2021-10-21 06:24:41'), (9958, 4, '2021-10-21 06:24:41', '2021-10-21 06:24:41'), (9959, 4, '2021-10-21 06:24:41', '2021-10-21 06:24:41'), (9960, 4, '2021-10-21 06:24:41', '2021-10-21 06:24:41'), (9961, 4, '2021-10-21 06:24:42', '2021-10-21 06:24:42'), (9962, 4, '2021-10-21 06:24:42', '2021-10-21 06:24:42'), (9963, 4, '2021-10-21 06:24:42', '2021-10-21 06:24:42'), (9964, 4, '2021-10-21 06:24:42', '2021-10-21 06:24:42'), (9965, 4, '2021-10-21 06:24:42', '2021-10-21 06:24:42'), (9966, 4, '2021-10-21 06:24:43', '2021-10-21 06:24:43'), (9967, 4, '2021-10-21 06:24:43', '2021-10-21 06:24:43'), (9968, 4, '2021-10-21 06:24:43', '2021-10-21 06:24:43'), (9969, 4, '2021-10-21 06:24:44', '2021-10-21 06:24:44'), (9970, 4, '2021-10-21 06:24:44', '2021-10-21 06:24:44'), (9971, 4, '2021-10-21 06:24:44', '2021-10-21 06:24:44'), (9972, 4, '2021-10-21 06:24:44', '2021-10-21 06:24:44'), (9973, 4, '2021-10-21 06:24:45', '2021-10-21 06:24:45'), (9974, 4, '2021-10-21 06:24:45', '2021-10-21 06:24:45'), (9975, 4, '2021-10-21 06:24:45', '2021-10-21 06:24:45'), (9976, 4, '2021-10-21 06:24:45', '2021-10-21 06:24:45'), (9977, 4, '2021-10-21 06:24:46', '2021-10-21 06:24:46'), (9978, 4, '2021-10-21 06:24:46', '2021-10-21 06:24:46'), (9979, 4, '2021-10-21 06:24:46', '2021-10-21 06:24:46'), (9980, 4, '2021-10-21 06:24:46', '2021-10-21 06:24:46'), (9981, 4, '2021-10-21 06:24:46', '2021-10-21 06:24:46'), (9982, 4, '2021-10-21 06:24:47', '2021-10-21 06:24:47'), (9983, 4, '2021-10-21 06:24:47', '2021-10-21 06:24:47'), (9984, 4, '2021-10-21 06:24:47', '2021-10-21 06:24:47'), (9985, 4, '2021-10-21 06:24:47', '2021-10-21 06:24:47'), (9986, 4, '2021-10-21 06:24:48', '2021-10-21 06:24:48'), (9987, 4, '2021-10-21 06:24:48', '2021-10-21 06:24:48'), (9988, 4, '2021-10-21 06:24:48', '2021-10-21 06:24:48'), (9989, 4, '2021-10-21 06:24:49', '2021-10-21 06:24:49'), (9990, 4, '2021-10-21 06:24:49', '2021-10-21 06:24:49'), (9991, 4, '2021-10-21 06:24:49', '2021-10-21 06:24:49'), (9992, 4, '2021-10-21 06:24:49', '2021-10-21 06:24:49'), (9993, 4, '2021-10-21 06:24:50', '2021-10-21 06:24:50'), (9994, 4, '2021-10-21 06:24:50', '2021-10-21 06:24:50'), (9995, 4, '2021-10-21 06:24:50', '2021-10-21 06:24:50'), (9996, 4, '2021-10-21 06:24:50', '2021-10-21 06:24:50'), (9997, 4, '2021-10-21 06:24:50', '2021-10-21 06:24:50'), (9998, 4, '2021-10-21 06:24:51', '2021-10-21 06:24:51'), (9999, 4, '2021-10-21 06:24:51', '2021-10-21 06:24:51'), (10000, 4, '2021-10-21 06:24:52', '2021-10-21 06:24:52'), (10001, 4, '2021-10-21 06:24:52', '2021-10-21 06:24:52'), (10002, 4, '2021-10-21 06:24:52', '2021-10-21 06:24:52'), (10003, 4, '2021-10-21 06:24:52', '2021-10-21 06:24:52'), (10004, 4, '2021-10-21 06:24:53', '2021-10-21 06:24:53'), (10005, 4, '2021-10-21 06:24:53', '2021-10-21 06:24:53'), (10006, 4, '2021-10-21 06:24:53', '2021-10-21 06:24:53'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (10007, 4, '2021-10-21 06:24:53', '2021-10-21 06:24:53'), (10008, 4, '2021-10-21 06:24:53', '2021-10-21 06:24:53'), (10009, 4, '2021-10-21 06:24:54', '2021-10-21 06:24:54'), (10010, 4, '2021-10-21 06:24:54', '2021-10-21 06:24:54'), (10011, 4, '2021-10-21 06:24:54', '2021-10-21 06:24:54'), (10012, 4, '2021-10-21 06:24:54', '2021-10-21 06:24:54'), (10013, 4, '2021-10-21 06:24:54', '2021-10-21 06:24:54'), (10014, 4, '2021-10-21 06:24:55', '2021-10-21 06:24:55'), (10015, 4, '2021-10-21 06:24:55', '2021-10-21 06:24:55'), (10016, 4, '2021-10-21 06:24:55', '2021-10-21 06:24:55'), (10017, 4, '2021-10-21 06:24:55', '2021-10-21 06:24:55'), (10018, 4, '2021-10-21 06:24:55', '2021-10-21 06:24:55'), (10019, 4, '2021-10-21 06:24:56', '2021-10-21 06:24:56'), (10020, 4, '2021-10-21 06:24:56', '2021-10-21 06:24:56'), (10021, 4, '2021-10-21 06:24:56', '2021-10-21 06:24:56'), (10022, 4, '2021-10-21 06:24:56', '2021-10-21 06:24:56'), (10023, 4, '2021-10-21 06:24:57', '2021-10-21 06:24:57'), (10024, 4, '2021-10-21 06:24:57', '2021-10-21 06:24:57'), (10025, 4, '2021-10-21 06:24:57', '2021-10-21 06:24:57'), (10026, 4, '2021-10-21 06:24:58', '2021-10-21 06:24:58'), (10027, 4, '2021-10-21 06:24:58', '2021-10-21 06:24:58'), (10028, 4, '2021-10-21 06:24:58', '2021-10-21 06:24:58'), (10029, 4, '2021-10-21 06:24:59', '2021-10-21 06:24:59'), (10030, 4, '2021-10-21 06:24:59', '2021-10-21 06:24:59'), (10031, 4, '2021-10-21 06:24:59', '2021-10-21 06:24:59'), (10032, 4, '2021-10-21 06:25:00', '2021-10-21 06:25:00'), (10033, 4, '2021-10-21 06:25:00', '2021-10-21 06:25:00'), (10034, 4, '2021-10-21 06:25:00', '2021-10-21 06:25:00'), (10035, 4, '2021-10-21 06:25:00', '2021-10-21 06:25:00'), (10036, 4, '2021-10-21 06:25:01', '2021-10-21 06:25:01'), (10037, 4, '2021-10-21 06:25:01', '2021-10-21 06:25:01'), (10038, 4, '2021-10-21 06:25:01', '2021-10-21 06:25:01'), (10039, 4, '2021-10-21 06:25:01', '2021-10-21 06:25:01'), (10040, 4, '2021-10-21 06:25:01', '2021-10-21 06:25:01'), (10041, 4, '2021-10-22 06:25:20', '2021-10-22 06:25:20'), (10042, 4, '2021-10-22 06:25:23', '2021-10-22 06:25:23'), (10043, 4, '2021-10-22 06:25:23', '2021-10-22 06:25:23'), (10044, 4, '2021-10-22 06:25:23', '2021-10-22 06:25:23'), (10045, 4, '2021-10-22 06:25:24', '2021-10-22 06:25:24'), (10046, 4, '2021-10-22 06:25:24', '2021-10-22 06:25:24'), (10047, 4, '2021-10-22 06:25:24', '2021-10-22 06:25:24'), (10048, 4, '2021-10-22 06:25:24', '2021-10-22 06:25:24'), (10049, 4, '2021-10-22 06:25:24', '2021-10-22 06:25:24'), (10050, 4, '2021-10-22 06:25:25', '2021-10-22 06:25:25'), (10051, 4, '2021-10-22 06:25:25', '2021-10-22 06:25:25'), (10052, 4, '2021-10-22 06:25:25', '2021-10-22 06:25:25'), (10053, 4, '2021-10-22 06:25:25', '2021-10-22 06:25:25'), (10054, 4, '2021-10-22 06:25:25', '2021-10-22 06:25:25'), (10055, 4, '2021-10-22 06:25:25', '2021-10-22 06:25:25'), (10056, 4, '2021-10-22 06:25:26', '2021-10-22 06:25:26'), (10057, 4, '2021-10-22 06:25:26', '2021-10-22 06:25:26'), (10058, 4, '2021-10-22 06:25:26', '2021-10-22 06:25:26'), (10059, 4, '2021-10-22 06:25:26', '2021-10-22 06:25:26'), (10060, 4, '2021-10-22 06:25:26', '2021-10-22 06:25:26'), (10061, 4, '2021-10-22 06:25:27', '2021-10-22 06:25:27'), (10062, 4, '2021-10-22 06:25:27', '2021-10-22 06:25:27'), (10063, 4, '2021-10-22 06:25:27', '2021-10-22 06:25:27'), (10064, 4, '2021-10-22 06:25:27', '2021-10-22 06:25:27'), (10065, 4, '2021-10-22 06:25:27', '2021-10-22 06:25:27'), (10066, 4, '2021-10-22 06:25:28', '2021-10-22 06:25:28'), (10067, 4, '2021-10-22 06:25:28', '2021-10-22 06:25:28'), (10068, 4, '2021-10-22 06:25:28', '2021-10-22 06:25:28'), (10069, 4, '2021-10-22 06:25:28', '2021-10-22 06:25:28'), (10070, 4, '2021-10-22 06:25:29', '2021-10-22 06:25:29'), (10071, 4, '2021-10-22 06:25:29', '2021-10-22 06:25:29'), (10072, 4, '2021-10-22 06:25:29', '2021-10-22 06:25:29'), (10073, 4, '2021-10-22 06:25:29', '2021-10-22 06:25:29'), (10074, 4, '2021-10-22 06:25:29', '2021-10-22 06:25:29'), (10075, 4, '2021-10-22 06:25:30', '2021-10-22 06:25:30'), (10076, 4, '2021-10-22 06:25:30', '2021-10-22 06:25:30'), (10077, 4, '2021-10-22 06:25:30', '2021-10-22 06:25:30'), (10078, 4, '2021-10-22 06:25:30', '2021-10-22 06:25:30'), (10079, 4, '2021-10-22 06:25:30', '2021-10-22 06:25:30'), (10080, 4, '2021-10-22 06:25:30', '2021-10-22 06:25:30'), (10081, 4, '2021-10-22 06:25:31', '2021-10-22 06:25:31'), (10082, 4, '2021-10-22 06:25:31', '2021-10-22 06:25:31'), (10083, 4, '2021-10-22 06:25:31', '2021-10-22 06:25:31'), (10084, 4, '2021-10-22 06:25:31', '2021-10-22 06:25:31'), (10085, 4, '2021-10-22 06:25:31', '2021-10-22 06:25:31'), (10086, 4, '2021-10-22 06:25:31', '2021-10-22 06:25:31'), (10087, 4, '2021-10-22 06:25:32', '2021-10-22 06:25:32'), (10088, 4, '2021-10-22 06:25:32', '2021-10-22 06:25:32'), (10089, 4, '2021-10-22 06:25:32', '2021-10-22 06:25:32'), (10090, 4, '2021-10-22 06:25:32', '2021-10-22 06:25:32'), (10091, 4, '2021-10-22 06:25:32', '2021-10-22 06:25:32'), (10092, 4, '2021-10-22 06:25:32', '2021-10-22 06:25:32'), (10093, 4, '2021-10-22 06:25:33', '2021-10-22 06:25:33'), (10094, 4, '2021-10-22 06:25:33', '2021-10-22 06:25:33'), (10095, 4, '2021-10-22 06:25:33', '2021-10-22 06:25:33'), (10096, 4, '2021-10-22 06:25:33', '2021-10-22 06:25:33'), (10097, 4, '2021-10-22 06:25:33', '2021-10-22 06:25:33'), (10098, 4, '2021-10-22 06:25:34', '2021-10-22 06:25:34'), (10099, 4, '2021-10-22 06:25:34', '2021-10-22 06:25:34'), (10100, 4, '2021-10-22 06:25:34', '2021-10-22 06:25:34'), (10101, 4, '2021-10-22 06:25:35', '2021-10-22 06:25:35'), (10102, 4, '2021-10-22 06:25:35', '2021-10-22 06:25:35'), (10103, 4, '2021-10-22 06:25:35', '2021-10-22 06:25:35'), (10104, 4, '2021-10-22 06:25:35', '2021-10-22 06:25:35'), (10105, 4, '2021-10-22 06:25:35', '2021-10-22 06:25:35'), (10106, 4, '2021-10-22 06:25:36', '2021-10-22 06:25:36'), (10107, 4, '2021-10-22 06:25:36', '2021-10-22 06:25:36'), (10108, 4, '2021-10-22 06:25:36', '2021-10-22 06:25:36'), (10109, 4, '2021-10-22 06:25:36', '2021-10-22 06:25:36'), (10110, 4, '2021-10-22 06:25:36', '2021-10-22 06:25:36'), (10111, 4, '2021-10-22 06:25:37', '2021-10-22 06:25:37'), (10112, 4, '2021-10-22 06:25:37', '2021-10-22 06:25:37'), (10113, 4, '2021-10-22 06:25:37', '2021-10-22 06:25:37'), (10114, 4, '2021-10-22 06:25:37', '2021-10-22 06:25:37'), (10115, 4, '2021-10-22 06:25:37', '2021-10-22 06:25:37'), (10116, 4, '2021-10-22 06:25:37', '2021-10-22 06:25:37'), (10117, 4, '2021-10-22 06:25:38', '2021-10-22 06:25:38'), (10118, 4, '2021-10-22 06:25:38', '2021-10-22 06:25:38'), (10119, 4, '2021-10-22 06:25:38', '2021-10-22 06:25:38'), (10120, 4, '2021-10-22 06:25:38', '2021-10-22 06:25:38'), (10121, 4, '2021-10-22 06:25:38', '2021-10-22 06:25:38'), (10122, 4, '2021-10-22 06:25:38', '2021-10-22 06:25:38'), (10123, 4, '2021-10-22 06:25:39', '2021-10-22 06:25:39'), (10124, 4, '2021-10-22 06:25:39', '2021-10-22 06:25:39'), (10125, 4, '2021-10-22 06:25:39', '2021-10-22 06:25:39'), (10126, 4, '2021-10-22 06:25:39', '2021-10-22 06:25:39'), (10127, 4, '2021-10-22 06:25:39', '2021-10-22 06:25:39'), (10128, 4, '2021-10-22 06:25:40', '2021-10-22 06:25:40'), (10129, 4, '2021-10-22 06:25:40', '2021-10-22 06:25:40'), (10130, 4, '2021-10-22 06:25:40', '2021-10-22 06:25:40'), (10131, 4, '2021-10-22 06:25:40', '2021-10-22 06:25:40'), (10132, 4, '2021-10-22 06:25:40', '2021-10-22 06:25:40'), (10133, 4, '2021-10-22 06:25:41', '2021-10-22 06:25:41'), (10134, 4, '2021-10-22 06:25:41', '2021-10-22 06:25:41'), (10135, 4, '2021-10-22 06:25:41', '2021-10-22 06:25:41'), (10136, 4, '2021-10-22 06:25:41', '2021-10-22 06:25:41'), (10137, 4, '2021-10-22 06:25:41', '2021-10-22 06:25:41'), (10138, 4, '2021-10-22 06:25:42', '2021-10-22 06:25:42'), (10139, 4, '2021-10-22 06:25:42', '2021-10-22 06:25:42'), (10140, 4, '2021-10-22 06:25:42', '2021-10-22 06:25:42'), (10141, 4, '2021-10-22 06:25:42', '2021-10-22 06:25:42'), (10142, 4, '2021-10-22 06:25:42', '2021-10-22 06:25:42'), (10143, 4, '2021-10-22 06:25:42', '2021-10-22 06:25:42'), (10144, 4, '2021-10-22 06:25:43', '2021-10-22 06:25:43'), (10145, 4, '2021-10-22 06:25:43', '2021-10-22 06:25:43'), (10146, 4, '2021-10-22 06:25:43', '2021-10-22 06:25:43'), (10147, 4, '2021-10-22 06:25:43', '2021-10-22 06:25:43'), (10148, 4, '2021-10-22 06:25:43', '2021-10-22 06:25:43'), (10149, 4, '2021-10-22 06:25:44', '2021-10-22 06:25:44'), (10150, 4, '2021-10-22 06:25:44', '2021-10-22 06:25:44'), (10151, 4, '2021-10-22 06:25:44', '2021-10-22 06:25:44'), (10152, 4, '2021-10-22 06:25:44', '2021-10-22 06:25:44'), (10153, 4, '2021-10-22 06:25:44', '2021-10-22 06:25:44'), (10154, 4, '2021-10-22 06:25:45', '2021-10-22 06:25:45'), (10155, 4, '2021-10-22 06:25:45', '2021-10-22 06:25:45'), (10156, 4, '2021-10-22 06:25:45', '2021-10-22 06:25:45'), (10157, 4, '2021-10-22 06:25:45', '2021-10-22 06:25:45'), (10158, 4, '2021-10-22 06:25:45', '2021-10-22 06:25:45'), (10159, 4, '2021-10-22 06:25:45', '2021-10-22 06:25:45'), (10160, 4, '2021-10-22 06:25:46', '2021-10-22 06:25:46'), (10161, 4, '2021-10-22 06:25:46', '2021-10-22 06:25:46'), (10162, 4, '2021-10-22 06:25:47', '2021-10-22 06:25:47'), (10163, 4, '2021-10-22 06:25:47', '2021-10-22 06:25:47'), (10164, 4, '2021-10-22 06:25:48', '2021-10-22 06:25:48'), (10165, 4, '2021-10-22 06:25:48', '2021-10-22 06:25:48'), (10166, 4, '2021-10-22 06:25:48', '2021-10-22 06:25:48'), (10167, 4, '2021-10-22 06:25:48', '2021-10-22 06:25:48'), (10168, 4, '2021-10-22 06:25:48', '2021-10-22 06:25:48'), (10169, 4, '2021-10-22 06:25:49', '2021-10-22 06:25:49'), (10170, 4, '2021-10-22 06:25:49', '2021-10-22 06:25:49'), (10171, 4, '2021-10-22 06:25:49', '2021-10-22 06:25:49'), (10172, 4, '2021-10-22 06:25:49', '2021-10-22 06:25:49'), (10173, 4, '2021-10-22 06:25:49', '2021-10-22 06:25:49'), (10174, 4, '2021-10-22 06:25:50', '2021-10-22 06:25:50'), (10175, 4, '2021-10-22 06:25:50', '2021-10-22 06:25:50'), (10176, 4, '2021-10-22 06:25:50', '2021-10-22 06:25:50'), (10177, 4, '2021-10-22 06:25:50', '2021-10-22 06:25:50'), (10178, 4, '2021-10-22 06:25:50', '2021-10-22 06:25:50'), (10179, 4, '2021-10-22 06:25:51', '2021-10-22 06:25:51'), (10180, 4, '2021-10-22 06:25:51', '2021-10-22 06:25:51'), (10181, 4, '2021-10-22 06:25:51', '2021-10-22 06:25:51'), (10182, 4, '2021-10-22 06:25:51', '2021-10-22 06:25:51'), (10183, 4, '2021-10-22 06:25:51', '2021-10-22 06:25:51'), (10184, 4, '2021-10-22 06:25:52', '2021-10-22 06:25:52'), (10185, 4, '2021-10-22 06:25:52', '2021-10-22 06:25:52'), (10186, 4, '2021-10-22 06:25:52', '2021-10-22 06:25:52'), (10187, 4, '2021-10-22 06:25:53', '2021-10-22 06:25:53'), (10188, 4, '2021-10-22 06:25:54', '2021-10-22 06:25:54'), (10189, 4, '2021-10-22 06:25:54', '2021-10-22 06:25:54'), (10190, 4, '2021-10-22 06:25:54', '2021-10-22 06:25:54'), (10191, 4, '2021-10-22 06:25:54', '2021-10-22 06:25:54'), (10192, 4, '2021-10-22 06:25:55', '2021-10-22 06:25:55'), (10193, 4, '2021-10-22 06:25:55', '2021-10-22 06:25:55'), (10194, 4, '2021-10-22 06:25:55', '2021-10-22 06:25:55'), (10195, 4, '2021-10-22 06:25:55', '2021-10-22 06:25:55'), (10196, 4, '2021-10-22 06:25:55', '2021-10-22 06:25:55'), (10197, 4, '2021-10-22 06:25:55', '2021-10-22 06:25:55'), (10198, 4, '2021-10-22 06:25:56', '2021-10-22 06:25:56'), (10199, 4, '2021-10-22 06:25:56', '2021-10-22 06:25:56'), (10200, 4, '2021-10-22 06:25:56', '2021-10-22 06:25:56'), (10201, 4, '2021-10-22 06:25:56', '2021-10-22 06:25:56'), (10202, 4, '2021-10-22 06:25:56', '2021-10-22 06:25:56'), (10203, 4, '2021-10-22 06:25:57', '2021-10-22 06:25:57'), (10204, 4, '2021-10-22 06:25:57', '2021-10-22 06:25:57'), (10205, 4, '2021-10-22 06:25:57', '2021-10-22 06:25:57'), (10206, 4, '2021-10-22 06:25:57', '2021-10-22 06:25:57'), (10207, 4, '2021-10-22 06:25:58', '2021-10-22 06:25:58'), (10208, 4, '2021-10-22 06:25:58', '2021-10-22 06:25:58'), (10209, 4, '2021-10-22 06:25:58', '2021-10-22 06:25:58'), (10210, 4, '2021-10-22 06:25:58', '2021-10-22 06:25:58'), (10211, 4, '2021-10-22 06:25:58', '2021-10-22 06:25:58'), (10212, 4, '2021-10-22 06:25:59', '2021-10-22 06:25:59'), (10213, 4, '2021-10-22 06:25:59', '2021-10-22 06:25:59'), (10214, 4, '2021-10-22 06:26:00', '2021-10-22 06:26:00'), (10215, 4, '2021-10-22 06:26:00', '2021-10-22 06:26:00'), (10216, 4, '2021-10-22 06:26:00', '2021-10-22 06:26:00'), (10217, 4, '2021-10-22 06:26:00', '2021-10-22 06:26:00'), (10218, 4, '2021-10-22 06:26:00', '2021-10-22 06:26:00'), (10219, 4, '2021-10-22 06:26:01', '2021-10-22 06:26:01'), (10220, 4, '2021-10-22 06:26:01', '2021-10-22 06:26:01'), (10221, 4, '2021-10-22 06:26:01', '2021-10-22 06:26:01'), (10222, 4, '2021-10-22 06:26:01', '2021-10-22 06:26:01'), (10223, 4, '2021-10-22 06:26:02', '2021-10-22 06:26:02'), (10224, 4, '2021-10-22 06:26:02', '2021-10-22 06:26:02'), (10225, 4, '2021-10-22 06:26:02', '2021-10-22 06:26:02'), (10226, 4, '2021-10-22 06:26:02', '2021-10-22 06:26:02'), (10227, 4, '2021-10-22 06:26:02', '2021-10-22 06:26:02'), (10228, 4, '2021-10-22 06:26:02', '2021-10-22 06:26:02'), (10229, 4, '2021-10-22 06:26:03', '2021-10-22 06:26:03'), (10230, 4, '2021-10-22 06:26:03', '2021-10-22 06:26:03'), (10231, 4, '2021-10-22 06:26:03', '2021-10-22 06:26:03'), (10232, 4, '2021-10-22 06:26:03', '2021-10-22 06:26:03'), (10233, 4, '2021-10-22 06:26:03', '2021-10-22 06:26:03'), (10234, 4, '2021-10-22 06:26:04', '2021-10-22 06:26:04'), (10235, 4, '2021-10-22 06:26:04', '2021-10-22 06:26:04'), (10236, 4, '2021-10-22 06:26:04', '2021-10-22 06:26:04'), (10237, 4, '2021-10-22 06:26:05', '2021-10-22 06:26:05'), (10238, 4, '2021-10-22 06:26:05', '2021-10-22 06:26:05'), (10239, 4, '2021-10-22 06:26:06', '2021-10-22 06:26:06'), (10240, 4, '2021-10-23 06:26:09', '2021-10-23 06:26:09'), (10241, 4, '2021-10-23 06:26:10', '2021-10-23 06:26:10'), (10242, 4, '2021-10-23 06:26:11', '2021-10-23 06:26:11'), (10243, 4, '2021-10-23 06:26:11', '2021-10-23 06:26:11'), (10244, 4, '2021-10-23 06:26:11', '2021-10-23 06:26:11'), (10245, 4, '2021-10-23 06:26:11', '2021-10-23 06:26:11'), (10246, 4, '2021-10-23 06:26:12', '2021-10-23 06:26:12'), (10247, 4, '2021-10-23 06:26:12', '2021-10-23 06:26:12'), (10248, 4, '2021-10-23 06:26:14', '2021-10-23 06:26:14'), (10249, 4, '2021-10-23 06:26:15', '2021-10-23 06:26:15'), (10250, 4, '2021-10-23 06:26:15', '2021-10-23 06:26:15'), (10251, 4, '2021-10-23 06:26:16', '2021-10-23 06:26:16'), (10252, 4, '2021-10-23 06:26:16', '2021-10-23 06:26:16'), (10253, 4, '2021-10-23 06:26:16', '2021-10-23 06:26:16'), (10254, 4, '2021-10-23 06:26:16', '2021-10-23 06:26:16'), (10255, 4, '2021-10-23 06:26:17', '2021-10-23 06:26:17'), (10256, 4, '2021-10-23 06:26:17', '2021-10-23 06:26:17'), (10257, 4, '2021-10-23 06:26:17', '2021-10-23 06:26:17'), (10258, 4, '2021-10-23 06:26:18', '2021-10-23 06:26:18'), (10259, 4, '2021-10-23 06:26:18', '2021-10-23 06:26:18'), (10260, 4, '2021-10-23 06:26:18', '2021-10-23 06:26:18'), (10261, 4, '2021-10-23 06:26:18', '2021-10-23 06:26:18'), (10262, 4, '2021-10-23 06:26:19', '2021-10-23 06:26:19'), (10263, 4, '2021-10-23 06:26:19', '2021-10-23 06:26:19'), (10264, 4, '2021-10-23 06:26:19', '2021-10-23 06:26:19'), (10265, 4, '2021-10-23 06:26:20', '2021-10-23 06:26:20'), (10266, 4, '2021-10-23 06:26:20', '2021-10-23 06:26:20'), (10267, 4, '2021-10-23 06:26:20', '2021-10-23 06:26:20'), (10268, 4, '2021-10-23 06:26:20', '2021-10-23 06:26:20'), (10269, 4, '2021-10-23 06:26:21', '2021-10-23 06:26:21'), (10270, 4, '2021-10-23 06:26:21', '2021-10-23 06:26:21'), (10271, 4, '2021-10-23 06:26:23', '2021-10-23 06:26:23'), (10272, 4, '2021-10-23 06:26:23', '2021-10-23 06:26:23'), (10273, 4, '2021-10-23 06:26:23', '2021-10-23 06:26:23'), (10274, 4, '2021-10-23 06:26:24', '2021-10-23 06:26:24'), (10275, 4, '2021-10-23 06:26:24', '2021-10-23 06:26:24'), (10276, 4, '2021-10-23 06:26:24', '2021-10-23 06:26:24'), (10277, 4, '2021-10-23 06:26:24', '2021-10-23 06:26:24'), (10278, 4, '2021-10-23 06:26:24', '2021-10-23 06:26:24'), (10279, 4, '2021-10-23 06:26:25', '2021-10-23 06:26:25'), (10280, 4, '2021-10-23 06:26:25', '2021-10-23 06:26:25'), (10281, 4, '2021-10-23 06:26:25', '2021-10-23 06:26:25'), (10282, 4, '2021-10-23 06:26:26', '2021-10-23 06:26:26'), (10283, 4, '2021-10-23 06:26:26', '2021-10-23 06:26:26'), (10284, 4, '2021-10-23 06:26:26', '2021-10-23 06:26:26'), (10285, 4, '2021-10-23 06:26:27', '2021-10-23 06:26:27'), (10286, 4, '2021-10-23 06:26:27', '2021-10-23 06:26:27'), (10287, 4, '2021-10-23 06:26:27', '2021-10-23 06:26:27'), (10288, 4, '2021-10-23 06:26:30', '2021-10-23 06:26:30'), (10289, 4, '2021-10-23 06:26:30', '2021-10-23 06:26:30'), (10290, 4, '2021-10-23 06:26:30', '2021-10-23 06:26:30'), (10291, 4, '2021-10-23 06:26:30', '2021-10-23 06:26:30'), (10292, 4, '2021-10-23 06:26:31', '2021-10-23 06:26:31'), (10293, 4, '2021-10-23 06:26:31', '2021-10-23 06:26:31'), (10294, 4, '2021-10-23 06:26:31', '2021-10-23 06:26:31'), (10295, 4, '2021-10-23 06:26:31', '2021-10-23 06:26:31'), (10296, 4, '2021-10-23 06:26:32', '2021-10-23 06:26:32'), (10297, 4, '2021-10-23 06:26:32', '2021-10-23 06:26:32'), (10298, 4, '2021-10-23 06:26:32', '2021-10-23 06:26:32'), (10299, 4, '2021-10-23 06:26:33', '2021-10-23 06:26:33'), (10300, 4, '2021-10-23 06:26:33', '2021-10-23 06:26:33'), (10301, 4, '2021-10-23 06:26:33', '2021-10-23 06:26:33'), (10302, 4, '2021-10-23 06:26:34', '2021-10-23 06:26:34'), (10303, 4, '2021-10-23 06:26:34', '2021-10-23 06:26:34'), (10304, 4, '2021-10-23 06:26:37', '2021-10-23 06:26:37'), (10305, 4, '2021-10-23 06:26:37', '2021-10-23 06:26:37'), (10306, 4, '2021-10-23 06:26:37', '2021-10-23 06:26:37'), (10307, 4, '2021-10-23 06:26:37', '2021-10-23 06:26:37'), (10308, 4, '2021-10-23 06:26:38', '2021-10-23 06:26:38'), (10309, 4, '2021-10-23 06:26:39', '2021-10-23 06:26:39'), (10310, 4, '2021-10-23 06:26:39', '2021-10-23 06:26:39'), (10311, 4, '2021-10-23 06:26:40', '2021-10-23 06:26:40'), (10312, 4, '2021-10-23 06:26:40', '2021-10-23 06:26:40'), (10313, 4, '2021-10-23 06:26:40', '2021-10-23 06:26:40'), (10314, 4, '2021-10-23 06:26:40', '2021-10-23 06:26:40'), (10315, 4, '2021-10-23 06:26:41', '2021-10-23 06:26:41'), (10316, 4, '2021-10-23 06:26:41', '2021-10-23 06:26:41'), (10317, 4, '2021-10-23 06:26:41', '2021-10-23 06:26:41'), (10318, 4, '2021-10-23 06:26:41', '2021-10-23 06:26:41'), (10319, 4, '2021-10-23 06:26:42', '2021-10-23 06:26:42'), (10320, 4, '2021-10-23 06:26:42', '2021-10-23 06:26:42'), (10321, 4, '2021-10-23 06:26:44', '2021-10-23 06:26:44'), (10322, 4, '2021-10-23 06:26:44', '2021-10-23 06:26:44'), (10323, 4, '2021-10-23 06:26:45', '2021-10-23 06:26:45'), (10324, 4, '2021-10-23 06:26:45', '2021-10-23 06:26:45'), (10325, 4, '2021-10-23 06:26:45', '2021-10-23 06:26:45'), (10326, 4, '2021-10-23 06:26:45', '2021-10-23 06:26:45'), (10327, 4, '2021-10-23 06:26:46', '2021-10-23 06:26:46'), (10328, 4, '2021-10-23 06:26:46', '2021-10-23 06:26:46'), (10329, 4, '2021-10-23 06:26:46', '2021-10-23 06:26:46'), (10330, 4, '2021-10-23 06:26:46', '2021-10-23 06:26:46'), (10331, 4, '2021-10-23 06:26:47', '2021-10-23 06:26:47'), (10332, 4, '2021-10-23 06:26:47', '2021-10-23 06:26:47'), (10333, 4, '2021-10-23 06:26:47', '2021-10-23 06:26:47'), (10334, 4, '2021-10-23 06:26:48', '2021-10-23 06:26:48'), (10335, 4, '2021-10-23 06:26:48', '2021-10-23 06:26:48'), (10336, 4, '2021-10-23 06:26:48', '2021-10-23 06:26:48'), (10337, 4, '2021-10-23 06:26:48', '2021-10-23 06:26:48'), (10338, 4, '2021-10-23 06:26:49', '2021-10-23 06:26:49'), (10339, 4, '2021-10-23 06:26:49', '2021-10-23 06:26:49'), (10340, 4, '2021-10-23 06:26:49', '2021-10-23 06:26:49'), (10341, 4, '2021-10-23 06:26:49', '2021-10-23 06:26:49'), (10342, 4, '2021-10-23 06:26:50', '2021-10-23 06:26:50'), (10343, 4, '2021-10-23 06:26:50', '2021-10-23 06:26:50'), (10344, 4, '2021-10-23 06:26:50', '2021-10-23 06:26:50'), (10345, 4, '2021-10-23 06:26:51', '2021-10-23 06:26:51'), (10346, 4, '2021-10-23 06:26:51', '2021-10-23 06:26:51'), (10347, 4, '2021-10-23 06:26:51', '2021-10-23 06:26:51'), (10348, 4, '2021-10-23 06:26:51', '2021-10-23 06:26:51'), (10349, 4, '2021-10-23 06:26:52', '2021-10-23 06:26:52'), (10350, 4, '2021-10-23 06:26:52', '2021-10-23 06:26:52'), (10351, 4, '2021-10-23 06:26:52', '2021-10-23 06:26:52'), (10352, 4, '2021-10-23 06:26:52', '2021-10-23 06:26:52'), (10353, 4, '2021-10-23 06:26:53', '2021-10-23 06:26:53'), (10354, 4, '2021-10-23 06:26:53', '2021-10-23 06:26:53'), (10355, 4, '2021-10-23 06:26:53', '2021-10-23 06:26:53'), (10356, 4, '2021-10-23 06:26:53', '2021-10-23 06:26:53'), (10357, 4, '2021-10-23 06:26:53', '2021-10-23 06:26:53'), (10358, 4, '2021-10-23 06:26:55', '2021-10-23 06:26:55'), (10359, 4, '2021-10-23 06:27:17', '2021-10-23 06:27:17'), (10360, 4, '2021-10-23 06:27:17', '2021-10-23 06:27:17'), (10361, 4, '2021-10-23 06:27:17', '2021-10-23 06:27:17'), (10362, 4, '2021-10-23 06:27:18', '2021-10-23 06:27:18'), (10363, 4, '2021-10-23 06:27:18', '2021-10-23 06:27:18'), (10364, 4, '2021-10-23 06:27:18', '2021-10-23 06:27:18'), (10365, 4, '2021-10-23 06:27:19', '2021-10-23 06:27:19'), (10366, 4, '2021-10-23 06:27:19', '2021-10-23 06:27:19'), (10367, 4, '2021-10-23 06:27:19', '2021-10-23 06:27:19'), (10368, 4, '2021-10-23 06:27:20', '2021-10-23 06:27:20'), (10369, 4, '2021-10-23 06:27:20', '2021-10-23 06:27:20'), (10370, 4, '2021-10-23 06:27:20', '2021-10-23 06:27:20'), (10371, 4, '2021-10-23 06:27:20', '2021-10-23 06:27:20'), (10372, 4, '2021-10-23 06:27:21', '2021-10-23 06:27:21'), (10373, 4, '2021-10-23 06:27:21', '2021-10-23 06:27:21'), (10374, 4, '2021-10-23 06:27:21', '2021-10-23 06:27:21'), (10375, 4, '2021-10-23 06:27:21', '2021-10-23 06:27:21'), (10376, 4, '2021-10-23 06:27:21', '2021-10-23 06:27:21'), (10377, 4, '2021-10-23 06:27:22', '2021-10-23 06:27:22'), (10378, 4, '2021-10-23 06:27:22', '2021-10-23 06:27:22'), (10379, 4, '2021-10-23 06:27:22', '2021-10-23 06:27:22'), (10380, 4, '2021-10-23 06:27:22', '2021-10-23 06:27:22'), (10381, 4, '2021-10-23 06:27:22', '2021-10-23 06:27:22'), (10382, 4, '2021-10-23 06:27:22', '2021-10-23 06:27:22'), (10383, 4, '2021-10-23 06:27:23', '2021-10-23 06:27:23'), (10384, 4, '2021-10-23 06:27:23', '2021-10-23 06:27:23'), (10385, 4, '2021-10-23 06:27:23', '2021-10-23 06:27:23'), (10386, 4, '2021-10-23 06:27:23', '2021-10-23 06:27:23'), (10387, 4, '2021-10-23 06:27:24', '2021-10-23 06:27:24'), (10388, 4, '2021-10-23 06:27:24', '2021-10-23 06:27:24'), (10389, 4, '2021-10-23 06:27:24', '2021-10-23 06:27:24'), (10390, 4, '2021-10-23 06:27:24', '2021-10-23 06:27:24'), (10391, 4, '2021-10-23 06:27:25', '2021-10-23 06:27:25'), (10392, 4, '2021-10-23 06:27:25', '2021-10-23 06:27:25'), (10393, 4, '2021-10-23 06:27:25', '2021-10-23 06:27:25'), (10394, 4, '2021-10-23 06:27:26', '2021-10-23 06:27:26'), (10395, 4, '2021-10-23 06:27:26', '2021-10-23 06:27:26'), (10396, 4, '2021-10-23 06:27:26', '2021-10-23 06:27:26'), (10397, 4, '2021-10-23 06:27:26', '2021-10-23 06:27:26'), (10398, 4, '2021-10-23 06:27:27', '2021-10-23 06:27:27'), (10399, 4, '2021-10-23 06:27:27', '2021-10-23 06:27:27'), (10400, 4, '2021-10-23 06:27:28', '2021-10-23 06:27:28'), (10401, 4, '2021-10-23 06:27:28', '2021-10-23 06:27:28'), (10402, 4, '2021-10-23 06:27:28', '2021-10-23 06:27:28'), (10403, 4, '2021-10-23 06:27:28', '2021-10-23 06:27:28'), (10404, 4, '2021-10-23 06:27:28', '2021-10-23 06:27:28'), (10405, 4, '2021-10-23 06:27:29', '2021-10-23 06:27:29'), (10406, 4, '2021-10-23 06:27:29', '2021-10-23 06:27:29'), (10407, 4, '2021-10-23 06:27:29', '2021-10-23 06:27:29'), (10408, 4, '2021-10-23 06:27:29', '2021-10-23 06:27:29'), (10409, 4, '2021-10-23 06:27:29', '2021-10-23 06:27:29'), (10410, 4, '2021-10-23 06:27:30', '2021-10-23 06:27:30'), (10411, 4, '2021-10-23 06:27:30', '2021-10-23 06:27:30'), (10412, 4, '2021-10-23 06:27:30', '2021-10-23 06:27:30'), (10413, 4, '2021-10-23 06:27:30', '2021-10-23 06:27:30'), (10414, 4, '2021-10-23 06:27:30', '2021-10-23 06:27:30'), (10415, 4, '2021-10-23 06:27:31', '2021-10-23 06:27:31'), (10416, 4, '2021-10-23 06:27:31', '2021-10-23 06:27:31'), (10417, 4, '2021-10-23 06:27:31', '2021-10-23 06:27:31'), (10418, 4, '2021-10-23 06:27:31', '2021-10-23 06:27:31'), (10419, 4, '2021-10-23 06:27:32', '2021-10-23 06:27:32'), (10420, 4, '2021-10-23 06:27:32', '2021-10-23 06:27:32'), (10421, 4, '2021-10-23 06:27:32', '2021-10-23 06:27:32'), (10422, 4, '2021-10-23 06:27:32', '2021-10-23 06:27:32'), (10423, 4, '2021-10-23 06:27:32', '2021-10-23 06:27:32'), (10424, 4, '2021-10-23 06:27:32', '2021-10-23 06:27:32'), (10425, 4, '2021-10-23 06:27:33', '2021-10-23 06:27:33'), (10426, 4, '2021-10-23 06:27:33', '2021-10-23 06:27:33'), (10427, 4, '2021-10-23 06:27:34', '2021-10-23 06:27:34'), (10428, 4, '2021-10-23 06:27:34', '2021-10-23 06:27:34'), (10429, 4, '2021-10-24 06:27:39', '2021-10-24 06:27:39'), (10430, 4, '2021-10-24 06:27:40', '2021-10-24 06:27:40'), (10431, 4, '2021-10-24 06:27:40', '2021-10-24 06:27:40'), (10432, 4, '2021-10-24 06:27:41', '2021-10-24 06:27:41'), (10433, 4, '2021-10-24 06:27:41', '2021-10-24 06:27:41'), (10434, 4, '2021-10-24 06:27:41', '2021-10-24 06:27:41'), (10435, 4, '2021-10-24 06:27:41', '2021-10-24 06:27:41'), (10436, 4, '2021-10-24 06:27:41', '2021-10-24 06:27:41'), (10437, 4, '2021-10-24 06:27:41', '2021-10-24 06:27:41'), (10438, 4, '2021-10-24 06:27:42', '2021-10-24 06:27:42'), (10439, 4, '2021-10-24 06:27:42', '2021-10-24 06:27:42'), (10440, 4, '2021-10-24 06:27:42', '2021-10-24 06:27:42'), (10441, 4, '2021-10-24 06:27:42', '2021-10-24 06:27:42'), (10442, 4, '2021-10-24 06:27:42', '2021-10-24 06:27:42'), (10443, 4, '2021-10-24 06:27:43', '2021-10-24 06:27:43'), (10444, 4, '2021-10-24 06:27:43', '2021-10-24 06:27:43'), (10445, 4, '2021-10-24 06:27:43', '2021-10-24 06:27:43'), (10446, 4, '2021-10-24 06:27:43', '2021-10-24 06:27:43'), (10447, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10448, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10449, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10450, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10451, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10452, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10453, 4, '2021-10-24 06:27:44', '2021-10-24 06:27:44'), (10454, 4, '2021-10-24 06:27:45', '2021-10-24 06:27:45'), (10455, 4, '2021-10-24 06:27:45', '2021-10-24 06:27:45'), (10456, 4, '2021-10-24 06:27:49', '2021-10-24 06:27:49'), (10457, 4, '2021-10-24 06:27:49', '2021-10-24 06:27:49'), (10458, 4, '2021-10-24 06:27:49', '2021-10-24 06:27:49'), (10459, 4, '2021-10-24 06:27:50', '2021-10-24 06:27:50'), (10460, 4, '2021-10-24 06:27:50', '2021-10-24 06:27:50'), (10461, 4, '2021-10-24 06:27:51', '2021-10-24 06:27:51'), (10462, 4, '2021-10-24 06:27:51', '2021-10-24 06:27:51'), (10463, 4, '2021-10-24 06:27:51', '2021-10-24 06:27:51'), (10464, 4, '2021-10-24 06:27:51', '2021-10-24 06:27:51'), (10465, 4, '2021-10-24 06:27:51', '2021-10-24 06:27:51'), (10466, 4, '2021-10-24 06:27:51', '2021-10-24 06:27:51'), (10467, 4, '2021-10-24 06:27:52', '2021-10-24 06:27:52'), (10468, 4, '2021-10-24 06:27:52', '2021-10-24 06:27:52'), (10469, 4, '2021-10-24 06:27:52', '2021-10-24 06:27:52'), (10470, 4, '2021-10-24 06:27:52', '2021-10-24 06:27:52'), (10471, 4, '2021-10-24 06:27:52', '2021-10-24 06:27:52'), (10472, 4, '2021-10-24 06:27:53', '2021-10-24 06:27:53'), (10473, 4, '2021-10-24 06:27:53', '2021-10-24 06:27:53'), (10474, 4, '2021-10-24 06:27:53', '2021-10-24 06:27:53'), (10475, 4, '2021-10-24 06:27:53', '2021-10-24 06:27:53'), (10476, 4, '2021-10-24 06:27:53', '2021-10-24 06:27:53'), (10477, 4, '2021-10-24 06:27:54', '2021-10-24 06:27:54'), (10478, 4, '2021-10-24 06:27:54', '2021-10-24 06:27:54'), (10479, 4, '2021-10-24 06:27:54', '2021-10-24 06:27:54'), (10480, 4, '2021-10-24 06:27:54', '2021-10-24 06:27:54'), (10481, 4, '2021-10-24 06:27:54', '2021-10-24 06:27:54'), (10482, 4, '2021-10-24 06:27:55', '2021-10-24 06:27:55'), (10483, 4, '2021-10-24 06:27:55', '2021-10-24 06:27:55'), (10484, 4, '2021-10-24 06:27:55', '2021-10-24 06:27:55'), (10485, 4, '2021-10-24 06:27:55', '2021-10-24 06:27:55'), (10486, 4, '2021-10-24 06:27:55', '2021-10-24 06:27:55'), (10487, 4, '2021-10-24 06:27:56', '2021-10-24 06:27:56'), (10488, 4, '2021-10-24 06:27:56', '2021-10-24 06:27:56'), (10489, 4, '2021-10-24 06:27:57', '2021-10-24 06:27:57'), (10490, 4, '2021-10-24 06:27:57', '2021-10-24 06:27:57'), (10491, 4, '2021-10-24 06:27:57', '2021-10-24 06:27:57'), (10492, 4, '2021-10-24 06:27:57', '2021-10-24 06:27:57'), (10493, 4, '2021-10-24 06:27:57', '2021-10-24 06:27:57'), (10494, 4, '2021-10-24 06:27:57', '2021-10-24 06:27:57'), (10495, 4, '2021-10-24 06:27:58', '2021-10-24 06:27:58'), (10496, 4, '2021-10-24 06:27:58', '2021-10-24 06:27:58'), (10497, 4, '2021-10-24 06:27:58', '2021-10-24 06:27:58'), (10498, 4, '2021-10-24 06:27:58', '2021-10-24 06:27:58'), (10499, 4, '2021-10-24 06:27:58', '2021-10-24 06:27:58'), (10500, 4, '2021-10-24 06:27:59', '2021-10-24 06:27:59'), (10501, 4, '2021-10-24 06:27:59', '2021-10-24 06:27:59'), (10502, 4, '2021-10-24 06:27:59', '2021-10-24 06:27:59'), (10503, 4, '2021-10-24 06:27:59', '2021-10-24 06:27:59'), (10504, 4, '2021-10-24 06:27:59', '2021-10-24 06:27:59'), (10505, 4, '2021-10-24 06:28:00', '2021-10-24 06:28:00'), (10506, 4, '2021-10-24 06:28:00', '2021-10-24 06:28:00'), (10507, 4, '2021-10-24 06:28:00', '2021-10-24 06:28:00'), (10508, 4, '2021-10-24 06:28:00', '2021-10-24 06:28:00'), (10509, 4, '2021-10-24 06:28:00', '2021-10-24 06:28:00'), (10510, 4, '2021-10-24 06:28:00', '2021-10-24 06:28:00'), (10511, 4, '2021-10-24 06:28:01', '2021-10-24 06:28:01'), (10512, 4, '2021-10-24 06:28:01', '2021-10-24 06:28:01'), (10513, 4, '2021-10-24 06:28:01', '2021-10-24 06:28:01'), (10514, 4, '2021-10-24 06:28:01', '2021-10-24 06:28:01'), (10515, 4, '2021-10-24 06:28:01', '2021-10-24 06:28:01'), (10516, 4, '2021-10-24 06:28:02', '2021-10-24 06:28:02'), (10517, 4, '2021-10-24 06:28:02', '2021-10-24 06:28:02'), (10518, 4, '2021-10-24 06:28:02', '2021-10-24 06:28:02'), (10519, 4, '2021-10-24 06:28:02', '2021-10-24 06:28:02'), (10520, 4, '2021-10-24 06:28:03', '2021-10-24 06:28:03'), (10521, 4, '2021-10-24 06:28:03', '2021-10-24 06:28:03'), (10522, 4, '2021-10-24 06:28:03', '2021-10-24 06:28:03'), (10523, 4, '2021-10-24 06:28:03', '2021-10-24 06:28:03'), (10524, 4, '2021-10-24 06:28:04', '2021-10-24 06:28:04'), (10525, 4, '2021-10-24 06:28:04', '2021-10-24 06:28:04'), (10526, 4, '2021-10-24 06:28:04', '2021-10-24 06:28:04'), (10527, 4, '2021-10-24 06:28:04', '2021-10-24 06:28:04'), (10528, 4, '2021-10-24 06:28:04', '2021-10-24 06:28:04'), (10529, 4, '2021-10-24 06:28:05', '2021-10-24 06:28:05'), (10530, 4, '2021-10-24 06:28:05', '2021-10-24 06:28:05'), (10531, 4, '2021-10-24 06:28:05', '2021-10-24 06:28:05'), (10532, 4, '2021-10-24 06:28:05', '2021-10-24 06:28:05'), (10533, 4, '2021-10-24 06:28:05', '2021-10-24 06:28:05'), (10534, 4, '2021-10-24 06:28:05', '2021-10-24 06:28:05'), (10535, 4, '2021-10-24 06:28:06', '2021-10-24 06:28:06'), (10536, 4, '2021-10-24 06:28:06', '2021-10-24 06:28:06'), (10537, 4, '2021-10-24 06:28:06', '2021-10-24 06:28:06'), (10538, 4, '2021-10-24 06:28:06', '2021-10-24 06:28:06'), (10539, 4, '2021-10-24 06:28:06', '2021-10-24 06:28:06'), (10540, 4, '2021-10-24 06:28:07', '2021-10-24 06:28:07'), (10541, 4, '2021-10-24 06:28:07', '2021-10-24 06:28:07'), (10542, 4, '2021-10-24 06:28:07', '2021-10-24 06:28:07'), (10543, 4, '2021-10-25 06:28:13', '2021-10-25 06:28:13'), (10544, 4, '2021-10-25 06:28:15', '2021-10-25 06:28:15'), (10545, 4, '2021-10-25 06:28:15', '2021-10-25 06:28:15'), (10546, 4, '2021-10-25 06:28:15', '2021-10-25 06:28:15'), (10547, 4, '2021-10-25 06:28:15', '2021-10-25 06:28:15'), (10548, 4, '2021-10-25 06:28:16', '2021-10-25 06:28:16'), (10549, 4, '2021-10-25 06:28:16', '2021-10-25 06:28:16'), (10550, 4, '2021-10-25 06:28:16', '2021-10-25 06:28:16'), (10551, 4, '2021-10-25 06:28:17', '2021-10-25 06:28:17'), (10552, 4, '2021-10-25 06:28:17', '2021-10-25 06:28:17'), (10553, 4, '2021-10-25 06:28:17', '2021-10-25 06:28:17'), (10554, 4, '2021-10-25 06:28:17', '2021-10-25 06:28:17'), (10555, 4, '2021-10-25 06:28:17', '2021-10-25 06:28:17'), (10556, 4, '2021-10-25 06:28:18', '2021-10-25 06:28:18'), (10557, 4, '2021-10-25 06:28:18', '2021-10-25 06:28:18'), (10558, 4, '2021-10-25 06:28:18', '2021-10-25 06:28:18'), (10559, 4, '2021-10-25 06:28:18', '2021-10-25 06:28:18'), (10560, 4, '2021-10-25 06:28:18', '2021-10-25 06:28:18'), (10561, 4, '2021-10-25 06:28:18', '2021-10-25 06:28:18'), (10562, 4, '2021-10-25 06:28:19', '2021-10-25 06:28:19'), (10563, 4, '2021-10-25 06:28:19', '2021-10-25 06:28:19'), (10564, 4, '2021-10-25 06:28:19', '2021-10-25 06:28:19'), (10565, 4, '2021-10-25 06:28:19', '2021-10-25 06:28:19'), (10566, 4, '2021-10-25 06:28:19', '2021-10-25 06:28:19'), (10567, 4, '2021-10-25 06:28:20', '2021-10-25 06:28:20'), (10568, 4, '2021-10-25 06:28:20', '2021-10-25 06:28:20'), (10569, 4, '2021-10-25 06:28:20', '2021-10-25 06:28:20'), (10570, 4, '2021-10-25 06:28:20', '2021-10-25 06:28:20'), (10571, 4, '2021-10-25 06:28:20', '2021-10-25 06:28:20'), (10572, 4, '2021-10-25 06:28:20', '2021-10-25 06:28:20'), (10573, 4, '2021-10-25 06:28:21', '2021-10-25 06:28:21'), (10574, 4, '2021-10-25 06:28:21', '2021-10-25 06:28:21'), (10575, 4, '2021-10-25 06:28:21', '2021-10-25 06:28:21'), (10576, 4, '2021-10-25 06:28:22', '2021-10-25 06:28:22'), (10577, 4, '2021-10-25 06:28:22', '2021-10-25 06:28:22'), (10578, 4, '2021-10-25 06:28:22', '2021-10-25 06:28:22'), (10579, 4, '2021-10-25 06:28:22', '2021-10-25 06:28:22'), (10580, 4, '2021-10-25 06:28:22', '2021-10-25 06:28:22'), (10581, 4, '2021-10-25 06:28:23', '2021-10-25 06:28:23'), (10582, 4, '2021-10-25 06:28:23', '2021-10-25 06:28:23'), (10583, 4, '2021-10-25 06:28:23', '2021-10-25 06:28:23'), (10584, 4, '2021-10-25 06:28:23', '2021-10-25 06:28:23'), (10585, 4, '2021-10-25 06:28:23', '2021-10-25 06:28:23'), (10586, 4, '2021-10-25 06:28:24', '2021-10-25 06:28:24'), (10587, 4, '2021-10-25 06:28:24', '2021-10-25 06:28:24'), (10588, 4, '2021-10-25 06:28:24', '2021-10-25 06:28:24'), (10589, 4, '2021-10-25 06:28:24', '2021-10-25 06:28:24'), (10590, 4, '2021-10-25 06:28:24', '2021-10-25 06:28:24'), (10591, 4, '2021-10-25 06:28:24', '2021-10-25 06:28:24'), (10592, 4, '2021-10-25 06:28:25', '2021-10-25 06:28:25'), (10593, 4, '2021-10-25 06:28:25', '2021-10-25 06:28:25'), (10594, 4, '2021-10-25 06:28:25', '2021-10-25 06:28:25'), (10595, 4, '2021-10-25 06:28:25', '2021-10-25 06:28:25'), (10596, 4, '2021-10-25 06:28:26', '2021-10-25 06:28:26'), (10597, 4, '2021-10-25 06:28:26', '2021-10-25 06:28:26'), (10598, 4, '2021-10-25 06:28:26', '2021-10-25 06:28:26'), (10599, 4, '2021-10-25 06:28:26', '2021-10-25 06:28:26'), (10600, 4, '2021-10-25 06:28:26', '2021-10-25 06:28:26'), (10601, 4, '2021-10-25 06:28:27', '2021-10-25 06:28:27'), (10602, 4, '2021-10-25 06:28:27', '2021-10-25 06:28:27'), (10603, 4, '2021-10-25 06:28:27', '2021-10-25 06:28:27'), (10604, 4, '2021-10-25 06:28:28', '2021-10-25 06:28:28'), (10605, 4, '2021-10-25 06:28:28', '2021-10-25 06:28:28'), (10606, 4, '2021-10-25 06:28:28', '2021-10-25 06:28:28'), (10607, 4, '2021-10-25 06:28:29', '2021-10-25 06:28:29'), (10608, 4, '2021-10-25 06:28:29', '2021-10-25 06:28:29'), (10609, 4, '2021-10-25 06:28:29', '2021-10-25 06:28:29'), (10610, 4, '2021-10-25 06:28:29', '2021-10-25 06:28:29'), (10611, 4, '2021-10-25 06:28:29', '2021-10-25 06:28:29'), (10612, 4, '2021-10-25 06:28:30', '2021-10-25 06:28:30'), (10613, 4, '2021-10-25 06:28:30', '2021-10-25 06:28:30'), (10614, 4, '2021-10-25 06:28:30', '2021-10-25 06:28:30'), (10615, 4, '2021-10-25 06:28:30', '2021-10-25 06:28:30'), (10616, 4, '2021-10-25 06:28:30', '2021-10-25 06:28:30'), (10617, 4, '2021-10-25 06:28:31', '2021-10-25 06:28:31'), (10618, 4, '2021-10-25 06:28:31', '2021-10-25 06:28:31'), (10619, 4, '2021-10-25 06:28:31', '2021-10-25 06:28:31'), (10620, 4, '2021-10-25 06:28:31', '2021-10-25 06:28:31'), (10621, 4, '2021-10-25 06:28:31', '2021-10-25 06:28:31'), (10622, 4, '2021-10-25 06:28:32', '2021-10-25 06:28:32'), (10623, 4, '2021-10-25 06:28:32', '2021-10-25 06:28:32'), (10624, 4, '2021-10-25 06:28:32', '2021-10-25 06:28:32'), (10625, 4, '2021-10-25 06:28:32', '2021-10-25 06:28:32'), (10626, 4, '2021-10-25 06:28:33', '2021-10-25 06:28:33'), (10627, 4, '2021-10-25 06:28:33', '2021-10-25 06:28:33'), (10628, 4, '2021-10-25 06:28:33', '2021-10-25 06:28:33'), (10629, 4, '2021-10-25 06:28:33', '2021-10-25 06:28:33'), (10630, 4, '2021-10-25 06:28:33', '2021-10-25 06:28:33'), (10631, 4, '2021-10-25 06:28:34', '2021-10-25 06:28:34'), (10632, 4, '2021-10-25 06:28:34', '2021-10-25 06:28:34'), (10633, 4, '2021-10-25 06:28:34', '2021-10-25 06:28:34'), (10634, 4, '2021-10-25 06:28:34', '2021-10-25 06:28:34'), (10635, 4, '2021-10-25 06:28:35', '2021-10-25 06:28:35'), (10636, 4, '2021-10-25 06:28:35', '2021-10-25 06:28:35'), (10637, 4, '2021-10-25 06:28:35', '2021-10-25 06:28:35'), (10638, 4, '2021-10-25 06:28:35', '2021-10-25 06:28:35'), (10639, 4, '2021-10-25 06:28:36', '2021-10-25 06:28:36'), (10640, 4, '2021-10-25 06:28:36', '2021-10-25 06:28:36'), (10641, 4, '2021-10-25 06:28:36', '2021-10-25 06:28:36'), (10642, 4, '2021-10-25 06:28:36', '2021-10-25 06:28:36'), (10643, 4, '2021-10-25 06:28:36', '2021-10-25 06:28:36'), (10644, 4, '2021-10-25 06:28:37', '2021-10-25 06:28:37'), (10645, 4, '2021-10-25 06:28:37', '2021-10-25 06:28:37'), (10646, 4, '2021-10-25 06:28:37', '2021-10-25 06:28:37'), (10647, 4, '2021-10-25 06:28:37', '2021-10-25 06:28:37'), (10648, 4, '2021-10-25 06:28:37', '2021-10-25 06:28:37'), (10649, 4, '2021-10-25 06:28:38', '2021-10-25 06:28:38'), (10650, 4, '2021-10-25 06:28:38', '2021-10-25 06:28:38'), (10651, 4, '2021-10-25 06:28:38', '2021-10-25 06:28:38'), (10652, 4, '2021-10-25 06:28:38', '2021-10-25 06:28:38'), (10653, 4, '2021-10-25 06:28:39', '2021-10-25 06:28:39'), (10654, 4, '2021-10-25 06:28:39', '2021-10-25 06:28:39'), (10655, 4, '2021-10-25 06:28:39', '2021-10-25 06:28:39'), (10656, 4, '2021-10-25 06:28:40', '2021-10-25 06:28:40'), (10657, 4, '2021-10-25 06:28:40', '2021-10-25 06:28:40'), (10658, 4, '2021-10-25 06:28:40', '2021-10-25 06:28:40'), (10659, 4, '2021-10-25 06:28:40', '2021-10-25 06:28:40'), (10660, 4, '2021-10-25 06:28:41', '2021-10-25 06:28:41'), (10661, 4, '2021-10-25 06:28:41', '2021-10-25 06:28:41'), (10662, 4, '2021-10-25 06:28:41', '2021-10-25 06:28:41'), (10663, 4, '2021-10-25 06:28:41', '2021-10-25 06:28:41'), (10664, 4, '2021-10-25 06:28:42', '2021-10-25 06:28:42'), (10665, 4, '2021-10-25 06:28:42', '2021-10-25 06:28:42'), (10666, 4, '2021-10-25 06:28:42', '2021-10-25 06:28:42'), (10667, 4, '2021-10-25 06:28:42', '2021-10-25 06:28:42'), (10668, 4, '2021-10-25 06:28:42', '2021-10-25 06:28:42'), (10669, 4, '2021-10-25 06:28:43', '2021-10-25 06:28:43'), (10670, 4, '2021-10-25 06:28:43', '2021-10-25 06:28:43'), (10671, 4, '2021-10-25 06:28:43', '2021-10-25 06:28:43'), (10672, 4, '2021-10-25 06:28:43', '2021-10-25 06:28:43'), (10673, 4, '2021-10-25 06:28:43', '2021-10-25 06:28:43'), (10674, 4, '2021-10-25 06:28:44', '2021-10-25 06:28:44'), (10675, 4, '2021-10-25 06:28:44', '2021-10-25 06:28:44'), (10676, 4, '2021-10-25 06:28:44', '2021-10-25 06:28:44'), (10677, 4, '2021-10-25 06:28:44', '2021-10-25 06:28:44'), (10678, 4, '2021-10-25 06:28:45', '2021-10-25 06:28:45'), (10679, 4, '2021-10-25 06:28:45', '2021-10-25 06:28:45'), (10680, 4, '2021-10-25 06:28:45', '2021-10-25 06:28:45'), (10681, 4, '2021-10-25 06:28:46', '2021-10-25 06:28:46'), (10682, 4, '2021-10-25 06:28:46', '2021-10-25 06:28:46'), (10683, 4, '2021-10-25 06:28:46', '2021-10-25 06:28:46'), (10684, 4, '2021-10-25 06:28:46', '2021-10-25 06:28:46'), (10685, 4, '2021-10-25 06:28:46', '2021-10-25 06:28:46'), (10686, 4, '2021-10-25 06:28:46', '2021-10-25 06:28:46'), (10687, 4, '2021-10-25 06:28:47', '2021-10-25 06:28:47'), (10688, 4, '2021-10-25 06:28:47', '2021-10-25 06:28:47'), (10689, 4, '2021-10-25 06:28:47', '2021-10-25 06:28:47'), (10690, 4, '2021-10-25 06:28:47', '2021-10-25 06:28:47'), (10691, 4, '2021-10-25 06:28:48', '2021-10-25 06:28:48'), (10692, 4, '2021-10-25 06:28:48', '2021-10-25 06:28:48'), (10693, 4, '2021-10-25 06:28:48', '2021-10-25 06:28:48'), (10694, 4, '2021-10-25 06:28:48', '2021-10-25 06:28:48'), (10695, 4, '2021-10-25 06:28:48', '2021-10-25 06:28:48'), (10696, 4, '2021-10-25 06:28:49', '2021-10-25 06:28:49'), (10697, 4, '2021-10-25 06:28:49', '2021-10-25 06:28:49'), (10698, 4, '2021-10-25 06:28:49', '2021-10-25 06:28:49'), (10699, 4, '2021-10-25 06:28:49', '2021-10-25 06:28:49'), (10700, 4, '2021-10-25 06:28:50', '2021-10-25 06:28:50'), (10701, 4, '2021-10-25 06:28:50', '2021-10-25 06:28:50'), (10702, 4, '2021-10-25 06:28:50', '2021-10-25 06:28:50'), (10703, 4, '2021-10-25 06:28:50', '2021-10-25 06:28:50'), (10704, 4, '2021-10-25 06:28:50', '2021-10-25 06:28:50'), (10705, 4, '2021-10-26 06:28:58', '2021-10-26 06:28:58'), (10706, 4, '2021-10-26 06:29:00', '2021-10-26 06:29:00'), (10707, 4, '2021-10-26 06:29:01', '2021-10-26 06:29:01'), (10708, 4, '2021-10-26 06:29:02', '2021-10-26 06:29:02'), (10709, 4, '2021-10-26 06:29:04', '2021-10-26 06:29:04'), (10710, 4, '2021-10-26 06:29:04', '2021-10-26 06:29:04'), (10711, 4, '2021-10-26 06:29:04', '2021-10-26 06:29:04'), (10712, 4, '2021-10-26 06:29:05', '2021-10-26 06:29:05'), (10713, 4, '2021-10-26 06:29:05', '2021-10-26 06:29:05'), (10714, 4, '2021-10-26 06:29:06', '2021-10-26 06:29:06'), (10715, 4, '2021-10-26 06:29:06', '2021-10-26 06:29:06'), (10716, 4, '2021-10-26 06:29:07', '2021-10-26 06:29:07'), (10717, 4, '2021-10-26 06:29:07', '2021-10-26 06:29:07'), (10718, 4, '2021-10-26 06:29:08', '2021-10-26 06:29:08'), (10719, 4, '2021-10-26 06:29:09', '2021-10-26 06:29:09'), (10720, 4, '2021-10-26 06:29:09', '2021-10-26 06:29:09'), (10721, 4, '2021-10-26 06:29:09', '2021-10-26 06:29:09'), (10722, 4, '2021-10-26 06:29:09', '2021-10-26 06:29:09'), (10723, 4, '2021-10-26 06:29:10', '2021-10-26 06:29:10'), (10724, 4, '2021-10-26 06:29:11', '2021-10-26 06:29:11'), (10725, 4, '2021-10-26 06:29:12', '2021-10-26 06:29:12'), (10726, 4, '2021-10-26 06:29:13', '2021-10-26 06:29:13'), (10727, 4, '2021-10-26 06:29:14', '2021-10-26 06:29:14'), (10728, 4, '2021-10-26 06:29:14', '2021-10-26 06:29:14'), (10729, 4, '2021-10-26 06:29:15', '2021-10-26 06:29:15'), (10730, 4, '2021-10-26 06:29:15', '2021-10-26 06:29:15'), (10731, 4, '2021-10-26 06:29:16', '2021-10-26 06:29:16'), (10732, 4, '2021-10-26 06:29:17', '2021-10-26 06:29:17'), (10733, 4, '2021-10-26 06:29:18', '2021-10-26 06:29:18'), (10734, 4, '2021-10-26 06:29:19', '2021-10-26 06:29:19'), (10735, 4, '2021-10-26 06:29:20', '2021-10-26 06:29:20'), (10736, 4, '2021-10-26 06:29:20', '2021-10-26 06:29:20'), (10737, 4, '2021-10-26 06:29:21', '2021-10-26 06:29:21'), (10738, 4, '2021-10-26 06:29:22', '2021-10-26 06:29:22'), (10739, 4, '2021-10-26 06:29:23', '2021-10-26 06:29:23'), (10740, 4, '2021-10-26 06:29:24', '2021-10-26 06:29:24'), (10741, 4, '2021-10-26 06:29:25', '2021-10-26 06:29:25'), (10742, 4, '2021-10-26 06:29:26', '2021-10-26 06:29:26'), (10743, 4, '2021-10-26 06:29:26', '2021-10-26 06:29:26'), (10744, 4, '2021-10-26 06:29:27', '2021-10-26 06:29:27'), (10745, 4, '2021-10-26 06:29:27', '2021-10-26 06:29:27'), (10746, 4, '2021-10-26 06:29:28', '2021-10-26 06:29:28'), (10747, 4, '2021-10-26 06:29:29', '2021-10-26 06:29:29'), (10748, 4, '2021-10-26 06:29:30', '2021-10-26 06:29:30'), (10749, 4, '2021-10-26 06:29:31', '2021-10-26 06:29:31'), (10750, 4, '2021-10-26 06:29:32', '2021-10-26 06:29:32'), (10751, 4, '2021-10-26 06:29:32', '2021-10-26 06:29:32'), (10752, 4, '2021-10-26 06:29:33', '2021-10-26 06:29:33'), (10753, 4, '2021-10-26 06:29:33', '2021-10-26 06:29:33'), (10754, 4, '2021-10-26 06:29:35', '2021-10-26 06:29:35'), (10755, 4, '2021-10-26 06:29:35', '2021-10-26 06:29:35'), (10756, 4, '2021-10-26 06:29:35', '2021-10-26 06:29:35'), (10757, 4, '2021-10-26 06:29:36', '2021-10-26 06:29:36'), (10758, 4, '2021-10-26 06:29:36', '2021-10-26 06:29:36'), (10759, 4, '2021-10-26 06:29:37', '2021-10-26 06:29:37'), (10760, 4, '2021-10-26 06:29:37', '2021-10-26 06:29:37'), (10761, 4, '2021-10-26 06:29:38', '2021-10-26 06:29:38'), (10762, 4, '2021-10-26 06:29:39', '2021-10-26 06:29:39'), (10763, 4, '2021-10-26 06:29:40', '2021-10-26 06:29:40'), (10764, 4, '2021-10-26 06:29:41', '2021-10-26 06:29:41'), (10765, 4, '2021-10-26 06:29:42', '2021-10-26 06:29:42'), (10766, 4, '2021-10-26 06:29:43', '2021-10-26 06:29:43'), (10767, 4, '2021-10-26 06:29:43', '2021-10-26 06:29:43'), (10768, 4, '2021-10-26 06:29:43', '2021-10-26 06:29:43'), (10769, 4, '2021-10-26 06:29:43', '2021-10-26 06:29:43'), (10770, 4, '2021-10-26 06:29:44', '2021-10-26 06:29:44'), (10771, 4, '2021-10-26 06:29:44', '2021-10-26 06:29:44'), (10772, 4, '2021-10-26 06:29:44', '2021-10-26 06:29:44'), (10773, 4, '2021-10-26 06:29:45', '2021-10-26 06:29:45'), (10774, 4, '2021-10-26 06:29:46', '2021-10-26 06:29:46'), (10775, 4, '2021-10-26 06:29:46', '2021-10-26 06:29:46'), (10776, 4, '2021-10-26 06:29:46', '2021-10-26 06:29:46'), (10777, 4, '2021-10-26 06:29:46', '2021-10-26 06:29:46'), (10778, 4, '2021-10-26 06:29:47', '2021-10-26 06:29:47'), (10779, 4, '2021-10-26 06:29:47', '2021-10-26 06:29:47'), (10780, 4, '2021-10-26 06:29:48', '2021-10-26 06:29:48'), (10781, 4, '2021-10-26 06:29:48', '2021-10-26 06:29:48'), (10782, 4, '2021-10-26 06:29:49', '2021-10-26 06:29:49'), (10783, 4, '2021-10-26 06:29:49', '2021-10-26 06:29:49'), (10784, 4, '2021-10-26 06:29:50', '2021-10-26 06:29:50'), (10785, 4, '2021-10-26 06:29:50', '2021-10-26 06:29:50'), (10786, 4, '2021-10-26 06:29:51', '2021-10-26 06:29:51'), (10787, 4, '2021-10-26 06:29:52', '2021-10-26 06:29:52'), (10788, 4, '2021-10-26 06:29:52', '2021-10-26 06:29:52'), (10789, 4, '2021-10-26 06:29:53', '2021-10-26 06:29:53'), (10790, 4, '2021-10-26 06:29:53', '2021-10-26 06:29:53'), (10791, 4, '2021-10-26 06:29:54', '2021-10-26 06:29:54'), (10792, 4, '2021-10-26 06:29:55', '2021-10-26 06:29:55'), (10793, 4, '2021-10-26 06:29:56', '2021-10-26 06:29:56'), (10794, 4, '2021-10-26 06:29:57', '2021-10-26 06:29:57'), (10795, 4, '2021-10-26 06:29:58', '2021-10-26 06:29:58'), (10796, 4, '2021-10-26 06:29:58', '2021-10-26 06:29:58'), (10797, 4, '2021-10-26 06:29:59', '2021-10-26 06:29:59'), (10798, 4, '2021-10-26 06:30:00', '2021-10-26 06:30:00'), (10799, 4, '2021-10-26 06:30:00', '2021-10-26 06:30:00'), (10800, 4, '2021-10-26 06:30:01', '2021-10-26 06:30:01'), (10801, 4, '2021-10-26 06:30:02', '2021-10-26 06:30:02'), (10802, 4, '2021-10-26 06:30:08', '2021-10-26 06:30:08'), (10803, 4, '2021-10-26 06:30:08', '2021-10-26 06:30:08'), (10804, 4, '2021-10-26 06:30:09', '2021-10-26 06:30:09'), (10805, 4, '2021-10-26 06:30:09', '2021-10-26 06:30:09'), (10806, 4, '2021-10-26 06:30:10', '2021-10-26 06:30:10'), (10807, 4, '2021-10-26 06:30:10', '2021-10-26 06:30:10'), (10808, 4, '2021-10-26 06:30:11', '2021-10-26 06:30:11'), (10809, 4, '2021-10-26 06:30:12', '2021-10-26 06:30:12'), (10810, 4, '2021-10-26 06:30:12', '2021-10-26 06:30:12'), (10811, 4, '2021-10-26 06:30:12', '2021-10-26 06:30:12'), (10812, 4, '2021-10-26 06:30:13', '2021-10-26 06:30:13'), (10813, 4, '2021-10-26 06:30:14', '2021-10-26 06:30:14'), (10814, 4, '2021-10-26 06:30:15', '2021-10-26 06:30:15'), (10815, 4, '2021-10-26 06:30:15', '2021-10-26 06:30:15'), (10816, 4, '2021-10-26 06:30:16', '2021-10-26 06:30:16'), (10817, 4, '2021-10-26 06:30:17', '2021-10-26 06:30:17'), (10818, 4, '2021-10-26 06:30:18', '2021-10-26 06:30:18'), (10819, 4, '2021-10-26 06:30:18', '2021-10-26 06:30:18'), (10820, 4, '2021-10-26 06:30:19', '2021-10-26 06:30:19'), (10821, 4, '2021-10-26 06:30:20', '2021-10-26 06:30:20'), (10822, 4, '2021-10-26 06:30:20', '2021-10-26 06:30:20'), (10823, 4, '2021-10-26 06:30:21', '2021-10-26 06:30:21'), (10824, 4, '2021-10-26 06:30:22', '2021-10-26 06:30:22'), (10825, 4, '2021-10-26 06:30:23', '2021-10-26 06:30:23'), (10826, 4, '2021-10-26 06:30:24', '2021-10-26 06:30:24'), (10827, 4, '2021-10-26 06:30:24', '2021-10-26 06:30:24'), (10828, 4, '2021-10-26 06:30:25', '2021-10-26 06:30:25'), (10829, 4, '2021-10-26 06:30:25', '2021-10-26 06:30:25'), (10830, 4, '2021-10-26 06:30:26', '2021-10-26 06:30:26'), (10831, 4, '2021-10-26 06:30:27', '2021-10-26 06:30:27'), (10832, 4, '2021-10-26 06:30:27', '2021-10-26 06:30:27'), (10833, 4, '2021-10-26 06:30:28', '2021-10-26 06:30:28'), (10834, 4, '2021-10-26 06:30:29', '2021-10-26 06:30:29'), (10835, 4, '2021-10-26 06:30:30', '2021-10-26 06:30:30'), (10836, 4, '2021-10-26 06:30:30', '2021-10-26 06:30:30'), (10837, 4, '2021-10-26 06:30:30', '2021-10-26 06:30:30'), (10838, 4, '2021-10-26 06:30:31', '2021-10-26 06:30:31'), (10839, 4, '2021-10-26 06:30:31', '2021-10-26 06:30:31'), (10840, 4, '2021-10-26 06:30:32', '2021-10-26 06:30:32'), (10841, 4, '2021-10-26 06:30:33', '2021-10-26 06:30:33'), (10842, 4, '2021-10-26 06:30:33', '2021-10-26 06:30:33'), (10843, 4, '2021-10-26 06:30:34', '2021-10-26 06:30:34'), (10844, 4, '2021-10-26 06:30:34', '2021-10-26 06:30:34'), (10845, 4, '2021-10-26 06:30:35', '2021-10-26 06:30:35'), (10846, 4, '2021-10-26 06:30:35', '2021-10-26 06:30:35'), (10847, 4, '2021-10-26 06:30:36', '2021-10-26 06:30:36'), (10848, 4, '2021-10-26 06:30:36', '2021-10-26 06:30:36'), (10849, 4, '2021-10-26 06:30:36', '2021-10-26 06:30:36'), (10850, 4, '2021-10-26 06:30:37', '2021-10-26 06:30:37'), (10851, 4, '2021-10-26 06:30:37', '2021-10-26 06:30:37'), (10852, 4, '2021-10-26 06:30:38', '2021-10-26 06:30:38'), (10853, 4, '2021-10-26 06:30:40', '2021-10-26 06:30:40'), (10854, 4, '2021-10-26 06:30:41', '2021-10-26 06:30:41'), (10855, 4, '2021-10-26 06:30:41', '2021-10-26 06:30:41'), (10856, 4, '2021-10-26 06:30:41', '2021-10-26 06:30:41'), (10857, 4, '2021-10-26 06:30:41', '2021-10-26 06:30:41'), (10858, 4, '2021-10-26 06:30:42', '2021-10-26 06:30:42'), (10859, 4, '2021-10-26 06:30:42', '2021-10-26 06:30:42'), (10860, 4, '2021-10-26 06:30:42', '2021-10-26 06:30:42'), (10861, 4, '2021-10-26 06:30:42', '2021-10-26 06:30:42'), (10862, 4, '2021-10-26 06:30:43', '2021-10-26 06:30:43'), (10863, 4, '2021-10-26 06:30:43', '2021-10-26 06:30:43'), (10864, 4, '2021-10-26 06:30:43', '2021-10-26 06:30:43'), (10865, 4, '2021-10-26 06:30:43', '2021-10-26 06:30:43'), (10866, 4, '2021-10-26 06:30:43', '2021-10-26 06:30:43'), (10867, 4, '2021-10-26 06:30:44', '2021-10-26 06:30:44'), (10868, 4, '2021-10-26 06:30:44', '2021-10-26 06:30:44'), (10869, 4, '2021-10-26 06:30:44', '2021-10-26 06:30:44'), (10870, 4, '2021-10-26 06:30:44', '2021-10-26 06:30:44'), (10871, 4, '2021-10-26 06:30:44', '2021-10-26 06:30:44'), (10872, 4, '2021-10-26 06:30:45', '2021-10-26 06:30:45'), (10873, 4, '2021-10-26 06:30:45', '2021-10-26 06:30:45'), (10874, 4, '2021-10-26 06:30:45', '2021-10-26 06:30:45'), (10875, 4, '2021-10-26 06:30:45', '2021-10-26 06:30:45'), (10876, 4, '2021-10-26 06:30:45', '2021-10-26 06:30:45'), (10877, 4, '2021-10-26 06:30:45', '2021-10-26 06:30:45'), (10878, 4, '2021-10-26 06:30:46', '2021-10-26 06:30:46'), (10879, 4, '2021-10-26 06:30:46', '2021-10-26 06:30:46'), (10880, 4, '2021-10-26 06:30:46', '2021-10-26 06:30:46'), (10881, 4, '2021-10-26 06:30:46', '2021-10-26 06:30:46'), (10882, 4, '2021-10-26 06:30:46', '2021-10-26 06:30:46'), (10883, 4, '2021-10-26 06:30:46', '2021-10-26 06:30:46'), (10884, 4, '2021-10-26 06:30:47', '2021-10-26 06:30:47'), (10885, 4, '2021-10-26 06:30:47', '2021-10-26 06:30:47'), (10886, 4, '2021-10-26 06:30:47', '2021-10-26 06:30:47'), (10887, 4, '2021-10-26 06:30:47', '2021-10-26 06:30:47'), (10888, 4, '2021-10-26 06:30:47', '2021-10-26 06:30:47'), (10889, 4, '2021-10-26 06:30:48', '2021-10-26 06:30:48'), (10890, 4, '2021-10-26 06:30:48', '2021-10-26 06:30:48'), (10891, 4, '2021-10-26 06:30:48', '2021-10-26 06:30:48'), (10892, 4, '2021-10-26 06:30:48', '2021-10-26 06:30:48'), (10893, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'), (10894, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'), (10895, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'), (10896, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'), (10897, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (10898, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'), (10899, 4, '2021-10-26 06:30:49', '2021-10-26 06:30:49'), (10900, 4, '2021-10-26 06:30:50', '2021-10-26 06:30:50'), (10901, 4, '2021-10-26 06:30:50', '2021-10-26 06:30:50'), (10902, 4, '2021-10-26 06:30:50', '2021-10-26 06:30:50'), (10903, 4, '2021-10-26 06:30:50', '2021-10-26 06:30:50'), (10904, 4, '2021-10-26 06:30:50', '2021-10-26 06:30:50'), (10905, 4, '2021-10-26 06:30:51', '2021-10-26 06:30:51'), (10906, 4, '2021-10-26 06:30:51', '2021-10-26 06:30:51'), (10907, 4, '2021-10-26 06:30:51', '2021-10-26 06:30:51'), (10908, 4, '2021-10-26 06:30:51', '2021-10-26 06:30:51'), (10909, 4, '2021-10-26 06:30:51', '2021-10-26 06:30:51'), (10910, 4, '2021-10-26 06:30:52', '2021-10-26 06:30:52'), (10911, 4, '2021-10-26 06:30:52', '2021-10-26 06:30:52'), (10912, 4, '2021-10-26 06:30:52', '2021-10-26 06:30:52'), (10913, 4, '2021-10-26 06:30:52', '2021-10-26 06:30:52'), (10914, 4, '2021-10-26 06:30:52', '2021-10-26 06:30:52'), (10915, 4, '2021-10-26 06:30:53', '2021-10-26 06:30:53'), (10916, 4, '2021-10-26 06:30:53', '2021-10-26 06:30:53'), (10917, 4, '2021-10-26 06:30:53', '2021-10-26 06:30:53'), (10918, 4, '2021-10-26 06:30:53', '2021-10-26 06:30:53'), (10919, 4, '2021-10-26 06:30:53', '2021-10-26 06:30:53'), (10920, 4, '2021-10-26 06:30:53', '2021-10-26 06:30:53'), (10921, 4, '2021-10-26 06:30:54', '2021-10-26 06:30:54'), (10922, 4, '2021-10-26 06:30:54', '2021-10-26 06:30:54'), (10923, 4, '2021-10-26 06:30:54', '2021-10-26 06:30:54'), (10924, 4, '2021-10-26 06:30:54', '2021-10-26 06:30:54'), (10925, 4, '2021-10-26 06:30:54', '2021-10-26 06:30:54'), (10926, 4, '2021-10-26 06:30:55', '2021-10-26 06:30:55'), (10927, 4, '2021-10-26 06:30:55', '2021-10-26 06:30:55'), (10928, 4, '2021-10-26 06:30:55', '2021-10-26 06:30:55'), (10929, 4, '2021-10-26 06:30:55', '2021-10-26 06:30:55'), (10930, 4, '2021-10-26 06:30:55', '2021-10-26 06:30:55'), (10931, 4, '2021-10-26 06:30:55', '2021-10-26 06:30:55'), (10932, 4, '2021-10-26 06:30:56', '2021-10-26 06:30:56'), (10933, 4, '2021-10-26 06:30:56', '2021-10-26 06:30:56'), (10934, 4, '2021-10-26 06:30:56', '2021-10-26 06:30:56'), (10935, 4, '2021-10-26 06:30:56', '2021-10-26 06:30:56'), (10936, 4, '2021-10-26 06:30:56', '2021-10-26 06:30:56'), (10937, 4, '2021-10-26 06:30:57', '2021-10-26 06:30:57'), (10938, 4, '2021-10-26 06:30:57', '2021-10-26 06:30:57'), (10939, 4, '2021-10-26 06:30:57', '2021-10-26 06:30:57'), (10940, 4, '2021-10-26 06:30:57', '2021-10-26 06:30:57'), (10941, 4, '2021-10-26 06:30:57', '2021-10-26 06:30:57'), (10942, 4, '2021-10-26 06:30:57', '2021-10-26 06:30:57'), (10943, 4, '2021-10-26 06:30:58', '2021-10-26 06:30:58'), (10944, 4, '2021-10-26 06:30:58', '2021-10-26 06:30:58'), (10945, 4, '2021-10-26 06:30:58', '2021-10-26 06:30:58'), (10946, 4, '2021-10-26 06:30:58', '2021-10-26 06:30:58'), (10947, 4, '2021-10-26 06:30:58', '2021-10-26 06:30:58'), (10948, 4, '2021-10-26 06:30:59', '2021-10-26 06:30:59'), (10949, 4, '2021-10-26 06:30:59', '2021-10-26 06:30:59'), (10950, 4, '2021-10-26 06:30:59', '2021-10-26 06:30:59'), (10951, 4, '2021-10-26 06:30:59', '2021-10-26 06:30:59'), (10952, 4, '2021-10-26 06:30:59', '2021-10-26 06:30:59'), (10953, 4, '2021-10-26 06:30:59', '2021-10-26 06:30:59'), (10954, 4, '2021-10-26 06:31:00', '2021-10-26 06:31:00'), (10955, 4, '2021-10-26 06:31:00', '2021-10-26 06:31:00'), (10956, 4, '2021-10-26 06:31:00', '2021-10-26 06:31:00'), (10957, 4, '2021-10-26 06:31:00', '2021-10-26 06:31:00'), (10958, 4, '2021-10-26 06:31:00', '2021-10-26 06:31:00'), (10959, 4, '2021-10-26 06:31:01', '2021-10-26 06:31:01'), (10960, 4, '2021-10-26 06:31:01', '2021-10-26 06:31:01'), (10961, 4, '2021-10-26 06:31:01', '2021-10-26 06:31:01'), (10962, 4, '2021-10-26 06:31:01', '2021-10-26 06:31:01'), (10963, 4, '2021-10-26 06:31:01', '2021-10-26 06:31:01'), (10964, 4, '2021-10-26 06:31:01', '2021-10-26 06:31:01'), (10965, 4, '2021-10-26 06:31:02', '2021-10-26 06:31:02'), (10966, 4, '2021-10-26 06:31:02', '2021-10-26 06:31:02'), (10967, 4, '2021-10-26 06:31:02', '2021-10-26 06:31:02'), (10968, 4, '2021-10-26 06:31:02', '2021-10-26 06:31:02'), (10969, 4, '2021-10-26 06:31:02', '2021-10-26 06:31:02'), (10970, 4, '2021-10-26 06:31:03', '2021-10-26 06:31:03'), (10971, 4, '2021-10-26 06:31:03', '2021-10-26 06:31:03'), (10972, 4, '2021-10-26 06:31:03', '2021-10-26 06:31:03'), (10973, 4, '2021-10-26 06:31:03', '2021-10-26 06:31:03'), (10974, 4, '2021-10-26 06:31:03', '2021-10-26 06:31:03'), (10975, 4, '2021-10-26 06:31:04', '2021-10-26 06:31:04'), (10976, 4, '2021-10-26 06:31:04', '2021-10-26 06:31:04'), (10977, 4, '2021-10-26 06:31:04', '2021-10-26 06:31:04'), (10978, 4, '2021-10-26 06:31:04', '2021-10-26 06:31:04'), (10979, 4, '2021-10-26 06:31:04', '2021-10-26 06:31:04'), (10980, 4, '2021-10-26 06:31:05', '2021-10-26 06:31:05'), (10981, 4, '2021-10-26 06:31:05', '2021-10-26 06:31:05'), (10982, 4, '2021-10-26 06:31:05', '2021-10-26 06:31:05'), (10983, 4, '2021-10-26 06:31:05', '2021-10-26 06:31:05'), (10984, 4, '2021-10-26 06:31:05', '2021-10-26 06:31:05'), (10985, 4, '2021-10-26 06:31:06', '2021-10-26 06:31:06'), (10986, 4, '2021-10-26 06:31:06', '2021-10-26 06:31:06'), (10987, 4, '2021-10-26 06:31:06', '2021-10-26 06:31:06'), (10988, 4, '2021-10-26 06:31:06', '2021-10-26 06:31:06'), (10989, 4, '2021-10-26 06:31:07', '2021-10-26 06:31:07'), (10990, 4, '2021-10-26 06:31:07', '2021-10-26 06:31:07'), (10991, 4, '2021-10-26 06:31:07', '2021-10-26 06:31:07'), (10992, 4, '2021-10-26 06:31:07', '2021-10-26 06:31:07'), (10993, 4, '2021-10-26 06:31:07', '2021-10-26 06:31:07'), (10994, 4, '2021-10-26 06:31:07', '2021-10-26 06:31:07'), (10995, 4, '2021-10-26 06:31:08', '2021-10-26 06:31:08'), (10996, 4, '2021-10-26 06:31:08', '2021-10-26 06:31:08'), (10997, 4, '2021-10-26 06:31:08', '2021-10-26 06:31:08'), (10998, 4, '2021-10-26 06:31:08', '2021-10-26 06:31:08'), (10999, 4, '2021-10-26 06:31:08', '2021-10-26 06:31:08'), (11000, 4, '2021-10-26 06:31:09', '2021-10-26 06:31:09'), (11001, 4, '2021-10-26 06:31:09', '2021-10-26 06:31:09'), (11002, 4, '2021-10-26 06:31:09', '2021-10-26 06:31:09'), (11003, 4, '2021-10-26 06:31:09', '2021-10-26 06:31:09'), (11004, 4, '2021-10-26 06:31:09', '2021-10-26 06:31:09'), (11005, 4, '2021-10-26 06:31:10', '2021-10-26 06:31:10'), (11006, 4, '2021-10-26 06:31:10', '2021-10-26 06:31:10'), (11007, 4, '2021-10-26 06:31:10', '2021-10-26 06:31:10'), (11008, 4, '2021-10-26 06:31:10', '2021-10-26 06:31:10'), (11009, 4, '2021-10-26 06:31:10', '2021-10-26 06:31:10'), (11010, 4, '2021-10-26 06:31:11', '2021-10-26 06:31:11'), (11011, 4, '2021-10-26 06:31:11', '2021-10-26 06:31:11'), (11012, 4, '2021-10-26 06:31:11', '2021-10-26 06:31:11'), (11013, 4, '2021-10-26 06:31:11', '2021-10-26 06:31:11'), (11014, 4, '2021-10-26 06:31:11', '2021-10-26 06:31:11'), (11015, 4, '2021-10-26 06:31:11', '2021-10-26 06:31:11'), (11016, 4, '2021-10-26 06:31:12', '2021-10-26 06:31:12'), (11017, 4, '2021-10-26 06:31:12', '2021-10-26 06:31:12'), (11018, 4, '2021-10-26 06:31:12', '2021-10-26 06:31:12'), (11019, 4, '2021-10-26 06:31:12', '2021-10-26 06:31:12'), (11020, 4, '2021-10-26 06:31:12', '2021-10-26 06:31:12'), (11021, 4, '2021-10-26 06:31:13', '2021-10-26 06:31:13'), (11022, 4, '2021-10-26 06:31:13', '2021-10-26 06:31:13'), (11023, 4, '2021-10-26 06:31:13', '2021-10-26 06:31:13'), (11024, 4, '2021-10-26 06:31:14', '2021-10-26 06:31:14'), (11025, 4, '2021-10-26 06:31:14', '2021-10-26 06:31:14'), (11026, 4, '2021-10-26 06:31:14', '2021-10-26 06:31:14'), (11027, 4, '2021-10-26 06:31:14', '2021-10-26 06:31:14'), (11028, 4, '2021-10-26 06:31:14', '2021-10-26 06:31:14'), (11029, 4, '2021-10-26 06:31:15', '2021-10-26 06:31:15'), (11030, 4, '2021-10-26 06:31:15', '2021-10-26 06:31:15'), (11031, 4, '2021-10-26 06:31:15', '2021-10-26 06:31:15'), (11032, 4, '2021-10-26 06:31:15', '2021-10-26 06:31:15'), (11033, 4, '2021-10-26 06:31:15', '2021-10-26 06:31:15'), (11034, 4, '2021-10-26 06:31:16', '2021-10-26 06:31:16'), (11035, 4, '2021-10-26 06:31:16', '2021-10-26 06:31:16'), (11036, 4, '2021-10-26 06:31:16', '2021-10-26 06:31:16'), (11037, 4, '2021-10-26 06:31:16', '2021-10-26 06:31:16'), (11038, 4, '2021-10-26 06:31:16', '2021-10-26 06:31:16'), (11039, 4, '2021-10-26 06:31:17', '2021-10-26 06:31:17'), (11040, 4, '2021-10-26 06:31:17', '2021-10-26 06:31:17'), (11041, 4, '2021-10-26 06:31:17', '2021-10-26 06:31:17'), (11042, 4, '2021-10-26 06:31:17', '2021-10-26 06:31:17'), (11043, 4, '2021-10-26 06:31:17', '2021-10-26 06:31:17'), (11044, 4, '2021-10-26 06:31:18', '2021-10-26 06:31:18'), (11045, 4, '2021-10-26 06:31:18', '2021-10-26 06:31:18'), (11046, 4, '2021-10-26 06:31:18', '2021-10-26 06:31:18'), (11047, 4, '2021-10-26 06:31:18', '2021-10-26 06:31:18'), (11048, 4, '2021-10-26 06:31:18', '2021-10-26 06:31:18'), (11049, 4, '2021-10-26 06:31:19', '2021-10-26 06:31:19'), (11050, 4, '2021-10-26 06:31:19', '2021-10-26 06:31:19'), (11051, 4, '2021-10-26 06:31:19', '2021-10-26 06:31:19'), (11052, 4, '2021-10-27 06:31:28', '2021-10-27 06:31:28'), (11053, 4, '2021-10-27 06:31:30', '2021-10-27 06:31:30'), (11054, 4, '2021-10-27 06:31:31', '2021-10-27 06:31:31'), (11055, 4, '2021-10-27 06:31:32', '2021-10-27 06:31:32'), (11056, 4, '2021-10-27 06:31:32', '2021-10-27 06:31:32'), (11057, 4, '2021-10-27 06:31:32', '2021-10-27 06:31:32'), (11058, 4, '2021-10-27 06:31:32', '2021-10-27 06:31:32'), (11059, 4, '2021-10-27 06:31:33', '2021-10-27 06:31:33'), (11060, 4, '2021-10-27 06:31:33', '2021-10-27 06:31:33'), (11061, 4, '2021-10-27 06:31:33', '2021-10-27 06:31:33'), (11062, 4, '2021-10-27 06:31:33', '2021-10-27 06:31:33'), (11063, 4, '2021-10-27 06:31:33', '2021-10-27 06:31:33'), (11064, 4, '2021-10-27 06:31:33', '2021-10-27 06:31:33'), (11065, 4, '2021-10-27 06:31:34', '2021-10-27 06:31:34'), (11066, 4, '2021-10-27 06:31:34', '2021-10-27 06:31:34'), (11067, 4, '2021-10-27 06:31:34', '2021-10-27 06:31:34'), (11068, 4, '2021-10-27 06:31:34', '2021-10-27 06:31:34'), (11069, 4, '2021-10-27 06:31:34', '2021-10-27 06:31:34'), (11070, 4, '2021-10-27 06:31:35', '2021-10-27 06:31:35'), (11071, 4, '2021-10-27 06:31:35', '2021-10-27 06:31:35'), (11072, 4, '2021-10-27 06:31:35', '2021-10-27 06:31:35'), (11073, 4, '2021-10-27 06:31:35', '2021-10-27 06:31:35'), (11074, 4, '2021-10-27 06:31:36', '2021-10-27 06:31:36'), (11075, 4, '2021-10-27 06:31:36', '2021-10-27 06:31:36'), (11076, 4, '2021-10-27 06:31:36', '2021-10-27 06:31:36'), (11077, 4, '2021-10-27 06:31:36', '2021-10-27 06:31:36'), (11078, 4, '2021-10-27 06:31:36', '2021-10-27 06:31:36'), (11079, 4, '2021-10-27 06:31:36', '2021-10-27 06:31:36'), (11080, 4, '2021-10-27 06:31:37', '2021-10-27 06:31:37'), (11081, 4, '2021-10-27 06:31:37', '2021-10-27 06:31:37'), (11082, 4, '2021-10-27 06:31:37', '2021-10-27 06:31:37'), (11083, 4, '2021-10-27 06:31:38', '2021-10-27 06:31:38'), (11084, 4, '2021-10-27 06:31:38', '2021-10-27 06:31:38'), (11085, 4, '2021-10-27 06:31:38', '2021-10-27 06:31:38'), (11086, 4, '2021-10-27 06:31:38', '2021-10-27 06:31:38'), (11087, 4, '2021-10-27 06:31:38', '2021-10-27 06:31:38'), (11088, 4, '2021-10-27 06:31:38', '2021-10-27 06:31:38'), (11089, 4, '2021-10-27 06:31:39', '2021-10-27 06:31:39'), (11090, 4, '2021-10-27 06:31:39', '2021-10-27 06:31:39'), (11091, 4, '2021-10-27 06:31:39', '2021-10-27 06:31:39'), (11092, 4, '2021-10-27 06:31:39', '2021-10-27 06:31:39'), (11093, 4, '2021-10-27 06:31:39', '2021-10-27 06:31:39'), (11094, 4, '2021-10-27 06:31:40', '2021-10-27 06:31:40'), (11095, 4, '2021-10-27 06:31:40', '2021-10-27 06:31:40'), (11096, 4, '2021-10-27 06:31:40', '2021-10-27 06:31:40'), (11097, 4, '2021-10-27 06:31:40', '2021-10-27 06:31:40'), (11098, 4, '2021-10-27 06:31:40', '2021-10-27 06:31:40'), (11099, 4, '2021-10-27 06:31:41', '2021-10-27 06:31:41'), (11100, 4, '2021-10-27 06:31:41', '2021-10-27 06:31:41'), (11101, 4, '2021-10-27 06:31:41', '2021-10-27 06:31:41'), (11102, 4, '2021-10-27 06:31:41', '2021-10-27 06:31:41'), (11103, 4, '2021-10-27 06:31:41', '2021-10-27 06:31:41'), (11104, 4, '2021-10-27 06:31:42', '2021-10-27 06:31:42'), (11105, 4, '2021-10-27 06:31:42', '2021-10-27 06:31:42'), (11106, 4, '2021-10-27 06:31:42', '2021-10-27 06:31:42'), (11107, 4, '2021-10-27 06:31:42', '2021-10-27 06:31:42'), (11108, 4, '2021-10-27 06:31:42', '2021-10-27 06:31:42'), (11109, 4, '2021-10-27 06:31:43', '2021-10-27 06:31:43'), (11110, 4, '2021-10-27 06:31:43', '2021-10-27 06:31:43'), (11111, 4, '2021-10-27 06:31:43', '2021-10-27 06:31:43'), (11112, 4, '2021-10-27 06:31:43', '2021-10-27 06:31:43'), (11113, 4, '2021-10-27 06:31:43', '2021-10-27 06:31:43'), (11114, 4, '2021-10-27 06:31:44', '2021-10-27 06:31:44'), (11115, 4, '2021-10-27 06:31:44', '2021-10-27 06:31:44'), (11116, 4, '2021-10-27 06:31:45', '2021-10-27 06:31:45'), (11117, 4, '2021-10-27 06:31:45', '2021-10-27 06:31:45'), (11118, 4, '2021-10-27 06:31:45', '2021-10-27 06:31:45'), (11119, 4, '2021-10-27 06:31:45', '2021-10-27 06:31:45'), (11120, 4, '2021-10-27 06:31:46', '2021-10-27 06:31:46'), (11121, 4, '2021-10-27 06:31:46', '2021-10-27 06:31:46'), (11122, 4, '2021-10-27 06:31:46', '2021-10-27 06:31:46'), (11123, 4, '2021-10-27 06:31:46', '2021-10-27 06:31:46'), (11124, 4, '2021-10-27 06:31:46', '2021-10-27 06:31:46'), (11125, 4, '2021-10-27 06:31:47', '2021-10-27 06:31:47'), (11126, 4, '2021-10-27 06:31:47', '2021-10-27 06:31:47'), (11127, 4, '2021-10-27 06:31:47', '2021-10-27 06:31:47'), (11128, 4, '2021-10-27 06:31:47', '2021-10-27 06:31:47'), (11129, 4, '2021-10-27 06:31:48', '2021-10-27 06:31:48'), (11130, 4, '2021-10-27 06:31:48', '2021-10-27 06:31:48'), (11131, 4, '2021-10-27 06:31:48', '2021-10-27 06:31:48'), (11132, 4, '2021-10-27 06:31:48', '2021-10-27 06:31:48'), (11133, 4, '2021-10-27 06:31:48', '2021-10-27 06:31:48'), (11134, 4, '2021-10-27 06:31:49', '2021-10-27 06:31:49'), (11135, 4, '2021-10-27 06:31:49', '2021-10-27 06:31:49'), (11136, 4, '2021-10-27 06:31:49', '2021-10-27 06:31:49'), (11137, 4, '2021-10-27 06:31:49', '2021-10-27 06:31:49'), (11138, 4, '2021-10-27 06:31:49', '2021-10-27 06:31:49'), (11139, 4, '2021-10-27 06:31:50', '2021-10-27 06:31:50'), (11140, 4, '2021-10-27 06:31:50', '2021-10-27 06:31:50'), (11141, 4, '2021-10-27 06:31:51', '2021-10-27 06:31:51'), (11142, 4, '2021-10-27 06:31:51', '2021-10-27 06:31:51'), (11143, 4, '2021-10-27 06:31:51', '2021-10-27 06:31:51'), (11144, 4, '2021-10-27 06:31:51', '2021-10-27 06:31:51'), (11145, 4, '2021-10-27 06:31:51', '2021-10-27 06:31:51'), (11146, 4, '2021-10-27 06:31:51', '2021-10-27 06:31:51'), (11147, 4, '2021-10-27 06:31:52', '2021-10-27 06:31:52'), (11148, 4, '2021-10-27 06:31:52', '2021-10-27 06:31:52'), (11149, 4, '2021-10-27 06:31:52', '2021-10-27 06:31:52'), (11150, 4, '2021-10-27 06:31:52', '2021-10-27 06:31:52'), (11151, 4, '2021-10-27 06:31:52', '2021-10-27 06:31:52'), (11152, 4, '2021-10-27 06:31:53', '2021-10-27 06:31:53'), (11153, 4, '2021-10-27 06:31:53', '2021-10-27 06:31:53'), (11154, 4, '2021-10-27 06:31:53', '2021-10-27 06:31:53'), (11155, 4, '2021-10-27 06:31:53', '2021-10-27 06:31:53'), (11156, 4, '2021-10-27 06:31:53', '2021-10-27 06:31:53'), (11157, 4, '2021-10-27 06:31:54', '2021-10-27 06:31:54'), (11158, 4, '2021-10-27 06:31:54', '2021-10-27 06:31:54'), (11159, 4, '2021-10-27 06:31:54', '2021-10-27 06:31:54'), (11160, 4, '2021-10-27 06:31:54', '2021-10-27 06:31:54'), (11161, 4, '2021-10-27 06:31:54', '2021-10-27 06:31:54'), (11162, 4, '2021-10-27 06:31:55', '2021-10-27 06:31:55'), (11163, 4, '2021-10-27 06:31:55', '2021-10-27 06:31:55'), (11164, 4, '2021-10-27 06:31:55', '2021-10-27 06:31:55'), (11165, 4, '2021-10-27 06:31:55', '2021-10-27 06:31:55'), (11166, 4, '2021-10-27 06:31:55', '2021-10-27 06:31:55'), (11167, 4, '2021-10-27 06:31:55', '2021-10-27 06:31:55'), (11168, 4, '2021-10-27 06:31:56', '2021-10-27 06:31:56'), (11169, 4, '2021-10-27 06:31:56', '2021-10-27 06:31:56'), (11170, 4, '2021-10-27 06:31:57', '2021-10-27 06:31:57'), (11171, 4, '2021-10-27 06:31:57', '2021-10-27 06:31:57'), (11172, 4, '2021-10-27 06:31:57', '2021-10-27 06:31:57'), (11173, 4, '2021-10-27 06:31:57', '2021-10-27 06:31:57'), (11174, 4, '2021-10-27 06:31:57', '2021-10-27 06:31:57'), (11175, 4, '2021-10-27 06:31:58', '2021-10-27 06:31:58'), (11176, 4, '2021-10-27 06:31:58', '2021-10-27 06:31:58'), (11177, 4, '2021-10-27 06:31:58', '2021-10-27 06:31:58'), (11178, 4, '2021-10-27 06:31:58', '2021-10-27 06:31:58'), (11179, 4, '2021-10-27 06:31:58', '2021-10-27 06:31:58'), (11180, 4, '2021-10-27 06:31:59', '2021-10-27 06:31:59'), (11181, 4, '2021-10-27 06:31:59', '2021-10-27 06:31:59'), (11182, 4, '2021-10-27 06:31:59', '2021-10-27 06:31:59'), (11183, 4, '2021-10-27 06:31:59', '2021-10-27 06:31:59'), (11184, 4, '2021-10-27 06:31:59', '2021-10-27 06:31:59'), (11185, 4, '2021-10-27 06:32:00', '2021-10-27 06:32:00'), (11186, 4, '2021-10-27 06:32:00', '2021-10-27 06:32:00'), (11187, 4, '2021-10-27 06:32:00', '2021-10-27 06:32:00'), (11188, 4, '2021-10-27 06:32:00', '2021-10-27 06:32:00'), (11189, 4, '2021-10-27 06:32:01', '2021-10-27 06:32:01'), (11190, 4, '2021-10-27 06:32:01', '2021-10-27 06:32:01'), (11191, 4, '2021-10-27 06:32:01', '2021-10-27 06:32:01'), (11192, 4, '2021-10-27 06:32:01', '2021-10-27 06:32:01'), (11193, 4, '2021-10-27 06:32:01', '2021-10-27 06:32:01'), (11194, 4, '2021-10-27 06:32:02', '2021-10-27 06:32:02'), (11195, 4, '2021-10-27 06:32:02', '2021-10-27 06:32:02'), (11196, 4, '2021-10-27 06:32:02', '2021-10-27 06:32:02'), (11197, 4, '2021-10-27 06:32:02', '2021-10-27 06:32:02'), (11198, 4, '2021-10-27 06:32:02', '2021-10-27 06:32:02'), (11199, 4, '2021-10-27 06:32:03', '2021-10-27 06:32:03'), (11200, 4, '2021-10-27 06:32:03', '2021-10-27 06:32:03'), (11201, 4, '2021-10-27 06:32:03', '2021-10-27 06:32:03'), (11202, 4, '2021-10-27 06:32:03', '2021-10-27 06:32:03'), (11203, 4, '2021-10-27 06:32:03', '2021-10-27 06:32:03'), (11204, 4, '2021-10-27 06:32:04', '2021-10-27 06:32:04'), (11205, 4, '2021-10-27 06:32:04', '2021-10-27 06:32:04'), (11206, 4, '2021-10-27 06:32:04', '2021-10-27 06:32:04'), (11207, 4, '2021-10-27 06:32:04', '2021-10-27 06:32:04'), (11208, 4, '2021-10-27 06:32:04', '2021-10-27 06:32:04'), (11209, 4, '2021-10-27 06:32:05', '2021-10-27 06:32:05'), (11210, 4, '2021-10-27 06:32:05', '2021-10-27 06:32:05'), (11211, 4, '2021-10-27 06:32:05', '2021-10-27 06:32:05'), (11212, 4, '2021-10-27 06:32:05', '2021-10-27 06:32:05'), (11213, 4, '2021-10-27 06:32:05', '2021-10-27 06:32:05'), (11214, 4, '2021-10-27 06:32:06', '2021-10-27 06:32:06'), (11215, 4, '2021-10-27 06:32:06', '2021-10-27 06:32:06'), (11216, 4, '2021-10-27 06:32:06', '2021-10-27 06:32:06'), (11217, 4, '2021-10-27 06:32:06', '2021-10-27 06:32:06'), (11218, 4, '2021-10-27 06:32:06', '2021-10-27 06:32:06'), (11219, 4, '2021-10-27 06:32:07', '2021-10-27 06:32:07'), (11220, 4, '2021-10-27 06:32:07', '2021-10-27 06:32:07'), (11221, 4, '2021-10-27 06:32:07', '2021-10-27 06:32:07'), (11222, 4, '2021-10-27 06:32:07', '2021-10-27 06:32:07'), (11223, 4, '2021-10-27 06:32:07', '2021-10-27 06:32:07'), (11224, 4, '2021-10-27 06:32:08', '2021-10-27 06:32:08'), (11225, 4, '2021-10-27 06:32:08', '2021-10-27 06:32:08'), (11226, 4, '2021-10-27 06:32:08', '2021-10-27 06:32:08'), (11227, 4, '2021-10-27 06:32:09', '2021-10-27 06:32:09'), (11228, 4, '2021-10-27 06:32:09', '2021-10-27 06:32:09'), (11229, 4, '2021-10-27 06:32:09', '2021-10-27 06:32:09'), (11230, 4, '2021-10-27 06:32:09', '2021-10-27 06:32:09'), (11231, 4, '2021-10-27 06:32:09', '2021-10-27 06:32:09'), (11232, 4, '2021-10-27 06:32:10', '2021-10-27 06:32:10'), (11233, 4, '2021-10-27 06:32:10', '2021-10-27 06:32:10'), (11234, 4, '2021-10-27 06:32:10', '2021-10-27 06:32:10'), (11235, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11236, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11237, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11238, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11239, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11240, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11241, 4, '2021-10-27 06:32:11', '2021-10-27 06:32:11'), (11242, 4, '2021-10-27 06:32:12', '2021-10-27 06:32:12'), (11243, 4, '2021-10-27 06:32:12', '2021-10-27 06:32:12'), (11244, 4, '2021-10-27 06:32:12', '2021-10-27 06:32:12'), (11245, 4, '2021-10-27 06:32:12', '2021-10-27 06:32:12'), (11246, 4, '2021-10-27 06:32:12', '2021-10-27 06:32:12'), (11247, 4, '2021-10-27 06:32:13', '2021-10-27 06:32:13'), (11248, 4, '2021-10-27 06:32:13', '2021-10-27 06:32:13'), (11249, 4, '2021-10-27 06:32:13', '2021-10-27 06:32:13'), (11250, 4, '2021-10-27 06:32:13', '2021-10-27 06:32:13'), (11251, 4, '2021-10-27 06:32:13', '2021-10-27 06:32:13'), (11252, 4, '2021-10-27 06:32:14', '2021-10-27 06:32:14'), (11253, 4, '2021-10-27 06:32:14', '2021-10-27 06:32:14'), (11254, 4, '2021-10-27 06:32:14', '2021-10-27 06:32:14'), (11255, 4, '2021-10-27 06:32:15', '2021-10-27 06:32:15'), (11256, 4, '2021-10-27 06:32:15', '2021-10-27 06:32:15'), (11257, 4, '2021-10-27 06:32:15', '2021-10-27 06:32:15'), (11258, 4, '2021-10-27 06:32:15', '2021-10-27 06:32:15'), (11259, 4, '2021-10-27 06:32:15', '2021-10-27 06:32:15'), (11260, 4, '2021-10-27 06:32:16', '2021-10-27 06:32:16'), (11261, 4, '2021-10-27 06:32:16', '2021-10-27 06:32:16'), (11262, 4, '2021-10-27 06:32:16', '2021-10-27 06:32:16'), (11263, 4, '2021-10-27 06:32:16', '2021-10-27 06:32:16'), (11264, 4, '2021-10-27 06:32:16', '2021-10-27 06:32:16'), (11265, 4, '2021-10-27 06:32:17', '2021-10-27 06:32:17'), (11266, 4, '2021-10-27 06:32:17', '2021-10-27 06:32:17'), (11267, 4, '2021-10-27 06:32:17', '2021-10-27 06:32:17'), (11268, 4, '2021-10-27 06:32:17', '2021-10-27 06:32:17'), (11269, 4, '2021-10-27 06:32:17', '2021-10-27 06:32:17'), (11270, 4, '2021-10-27 06:32:18', '2021-10-27 06:32:18'), (11271, 4, '2021-10-27 06:32:18', '2021-10-27 06:32:18'), (11272, 4, '2021-10-27 06:32:18', '2021-10-27 06:32:18'), (11273, 4, '2021-10-27 06:32:18', '2021-10-27 06:32:18'), (11274, 4, '2021-10-27 06:32:18', '2021-10-27 06:32:18'), (11275, 4, '2021-10-27 06:32:19', '2021-10-27 06:32:19'), (11276, 4, '2021-10-27 06:32:19', '2021-10-27 06:32:19'), (11277, 4, '2021-10-27 06:32:19', '2021-10-27 06:32:19'), (11278, 4, '2021-10-27 06:32:19', '2021-10-27 06:32:19'), (11279, 4, '2021-10-27 06:32:19', '2021-10-27 06:32:19'), (11280, 4, '2021-10-27 06:32:20', '2021-10-27 06:32:20'), (11281, 4, '2021-10-27 06:32:20', '2021-10-27 06:32:20'), (11282, 4, '2021-10-27 06:32:20', '2021-10-27 06:32:20'), (11283, 4, '2021-10-27 06:32:20', '2021-10-27 06:32:20'), (11284, 4, '2021-10-27 06:32:21', '2021-10-27 06:32:21'), (11285, 4, '2021-10-27 06:32:21', '2021-10-27 06:32:21'), (11286, 4, '2021-10-27 06:32:21', '2021-10-27 06:32:21'), (11287, 4, '2021-10-27 06:32:21', '2021-10-27 06:32:21'), (11288, 4, '2021-10-27 06:32:21', '2021-10-27 06:32:21'), (11289, 4, '2021-10-27 06:32:22', '2021-10-27 06:32:22'), (11290, 4, '2021-10-27 06:32:22', '2021-10-27 06:32:22'), (11291, 4, '2021-10-27 06:32:22', '2021-10-27 06:32:22'), (11292, 4, '2021-10-27 06:32:22', '2021-10-27 06:32:22'), (11293, 4, '2021-10-27 06:32:22', '2021-10-27 06:32:22'), (11294, 4, '2021-10-27 06:32:23', '2021-10-27 06:32:23'), (11295, 4, '2021-10-27 06:32:23', '2021-10-27 06:32:23'), (11296, 4, '2021-10-27 06:32:23', '2021-10-27 06:32:23'), (11297, 4, '2021-10-27 06:32:23', '2021-10-27 06:32:23'), (11298, 4, '2021-10-27 06:32:23', '2021-10-27 06:32:23'), (11299, 4, '2021-10-27 06:32:24', '2021-10-27 06:32:24'), (11300, 4, '2021-10-27 06:32:24', '2021-10-27 06:32:24'), (11301, 4, '2021-10-27 06:32:24', '2021-10-27 06:32:24'), (11302, 4, '2021-10-27 06:32:24', '2021-10-27 06:32:24'), (11303, 4, '2021-10-27 06:32:24', '2021-10-27 06:32:24'), (11304, 4, '2021-10-27 06:32:25', '2021-10-27 06:32:25'), (11305, 4, '2021-10-27 06:32:25', '2021-10-27 06:32:25'), (11306, 4, '2021-10-27 06:32:25', '2021-10-27 06:32:25'), (11307, 4, '2021-10-27 06:32:25', '2021-10-27 06:32:25'), (11308, 4, '2021-10-27 06:32:26', '2021-10-27 06:32:26'), (11309, 4, '2021-10-27 06:32:26', '2021-10-27 06:32:26'), (11310, 4, '2021-10-27 06:32:26', '2021-10-27 06:32:26'), (11311, 4, '2021-10-27 06:32:26', '2021-10-27 06:32:26'), (11312, 4, '2021-10-27 06:32:27', '2021-10-27 06:32:27'), (11313, 4, '2021-10-27 06:32:27', '2021-10-27 06:32:27'), (11314, 4, '2021-10-27 06:32:27', '2021-10-27 06:32:27'), (11315, 4, '2021-10-27 06:32:27', '2021-10-27 06:32:27'), (11316, 4, '2021-10-27 06:32:27', '2021-10-27 06:32:27'), (11317, 4, '2021-10-27 06:32:28', '2021-10-27 06:32:28'), (11318, 4, '2021-10-27 06:32:28', '2021-10-27 06:32:28'), (11319, 4, '2021-10-27 06:32:28', '2021-10-27 06:32:28'), (11320, 4, '2021-10-27 06:32:28', '2021-10-27 06:32:28'), (11321, 4, '2021-10-27 06:32:28', '2021-10-27 06:32:28'), (11322, 4, '2021-10-27 06:32:29', '2021-10-27 06:32:29'), (11323, 4, '2021-10-27 06:32:29', '2021-10-27 06:32:29'), (11324, 4, '2021-10-27 06:32:29', '2021-10-27 06:32:29'), (11325, 4, '2021-10-27 06:32:29', '2021-10-27 06:32:29'), (11326, 4, '2021-10-27 06:32:29', '2021-10-27 06:32:29'), (11327, 4, '2021-10-27 06:32:30', '2021-10-27 06:32:30'), (11328, 4, '2021-10-27 06:32:30', '2021-10-27 06:32:30'), (11329, 4, '2021-10-27 06:32:30', '2021-10-27 06:32:30'), (11330, 4, '2021-10-27 06:32:30', '2021-10-27 06:32:30'), (11331, 4, '2021-10-27 06:32:31', '2021-10-27 06:32:31'), (11332, 4, '2021-10-27 06:32:31', '2021-10-27 06:32:31'), (11333, 4, '2021-10-27 06:32:31', '2021-10-27 06:32:31'), (11334, 4, '2021-10-27 06:32:31', '2021-10-27 06:32:31'), (11335, 4, '2021-10-27 06:32:31', '2021-10-27 06:32:31'), (11336, 4, '2021-10-27 06:32:31', '2021-10-27 06:32:31'), (11337, 4, '2021-10-27 06:32:32', '2021-10-27 06:32:32'), (11338, 4, '2021-10-27 06:32:32', '2021-10-27 06:32:32'), (11339, 4, '2021-10-27 06:32:32', '2021-10-27 06:32:32'), (11340, 4, '2021-10-27 06:32:32', '2021-10-27 06:32:32'), (11341, 4, '2021-10-27 06:32:32', '2021-10-27 06:32:32'), (11342, 4, '2021-10-27 06:32:33', '2021-10-27 06:32:33'), (11343, 4, '2021-10-27 06:32:33', '2021-10-27 06:32:33'), (11344, 4, '2021-10-27 06:32:33', '2021-10-27 06:32:33'), (11345, 4, '2021-10-27 06:32:33', '2021-10-27 06:32:33'), (11346, 4, '2021-10-27 06:32:33', '2021-10-27 06:32:33'), (11347, 4, '2021-10-27 06:32:34', '2021-10-27 06:32:34'), (11348, 4, '2021-10-27 06:32:34', '2021-10-27 06:32:34'), (11349, 4, '2021-10-27 06:32:34', '2021-10-27 06:32:34'), (11350, 4, '2021-10-27 06:32:34', '2021-10-27 06:32:34'), (11351, 4, '2021-10-27 06:32:34', '2021-10-27 06:32:34'), (11352, 4, '2021-10-27 06:32:34', '2021-10-27 06:32:34'), (11353, 4, '2021-10-27 06:32:35', '2021-10-27 06:32:35'), (11354, 4, '2021-10-27 06:32:35', '2021-10-27 06:32:35'), (11355, 4, '2021-10-27 06:32:35', '2021-10-27 06:32:35'), (11356, 4, '2021-10-27 06:32:35', '2021-10-27 06:32:35'), (11357, 4, '2021-10-27 06:32:36', '2021-10-27 06:32:36'), (11358, 4, '2021-10-27 06:32:36', '2021-10-27 06:32:36'), (11359, 4, '2021-10-27 06:32:36', '2021-10-27 06:32:36'), (11360, 4, '2021-10-27 06:32:36', '2021-10-27 06:32:36'), (11361, 4, '2021-10-27 06:32:36', '2021-10-27 06:32:36'), (11362, 4, '2021-10-27 06:32:37', '2021-10-27 06:32:37'), (11363, 4, '2021-10-27 06:32:37', '2021-10-27 06:32:37'), (11364, 4, '2021-10-27 06:32:37', '2021-10-27 06:32:37'), (11365, 4, '2021-10-27 06:32:37', '2021-10-27 06:32:37'), (11366, 4, '2021-10-27 06:32:37', '2021-10-27 06:32:37'), (11367, 4, '2021-10-27 06:32:38', '2021-10-27 06:32:38'), (11368, 4, '2021-10-27 06:32:38', '2021-10-27 06:32:38'), (11369, 4, '2021-10-27 06:32:38', '2021-10-27 06:32:38'), (11370, 4, '2021-10-27 06:32:38', '2021-10-27 06:32:38'), (11371, 4, '2021-10-27 06:32:38', '2021-10-27 06:32:38'), (11372, 4, '2021-10-27 06:32:39', '2021-10-27 06:32:39'), (11373, 4, '2021-10-27 06:32:39', '2021-10-27 06:32:39'), (11374, 4, '2021-10-27 06:32:40', '2021-10-27 06:32:40'), (11375, 4, '2021-10-27 06:32:40', '2021-10-27 06:32:40'), (11376, 4, '2021-10-27 06:32:40', '2021-10-27 06:32:40'), (11377, 4, '2021-10-27 06:32:40', '2021-10-27 06:32:40'), (11378, 4, '2021-10-27 06:32:40', '2021-10-27 06:32:40'), (11379, 4, '2021-10-27 06:32:40', '2021-10-27 06:32:40'), (11380, 4, '2021-10-27 06:32:41', '2021-10-27 06:32:41'), (11381, 4, '2021-10-27 06:32:41', '2021-10-27 06:32:41'), (11382, 4, '2021-10-27 06:32:41', '2021-10-27 06:32:41'), (11383, 4, '2021-10-27 06:32:41', '2021-10-27 06:32:41'), (11384, 4, '2021-10-27 06:32:41', '2021-10-27 06:32:41'), (11385, 4, '2021-10-27 06:32:42', '2021-10-27 06:32:42'), (11386, 4, '2021-10-27 06:32:42', '2021-10-27 06:32:42'), (11387, 4, '2021-10-27 06:32:42', '2021-10-27 06:32:42'), (11388, 4, '2021-10-27 06:32:42', '2021-10-27 06:32:42'), (11389, 4, '2021-10-27 06:32:42', '2021-10-27 06:32:42'), (11390, 4, '2021-10-27 06:32:43', '2021-10-27 06:32:43'), (11391, 4, '2021-10-27 06:32:43', '2021-10-27 06:32:43'), (11392, 4, '2021-10-27 06:32:43', '2021-10-27 06:32:43'), (11393, 4, '2021-10-27 06:32:43', '2021-10-27 06:32:43'), (11394, 4, '2021-10-27 06:32:43', '2021-10-27 06:32:43'), (11395, 4, '2021-10-27 06:32:44', '2021-10-27 06:32:44'), (11396, 4, '2021-10-27 06:32:44', '2021-10-27 06:32:44'), (11397, 4, '2021-10-27 06:32:44', '2021-10-27 06:32:44'), (11398, 4, '2021-10-27 06:32:44', '2021-10-27 06:32:44'), (11399, 4, '2021-10-27 06:32:44', '2021-10-27 06:32:44'), (11400, 4, '2021-10-27 06:32:45', '2021-10-27 06:32:45'), (11401, 4, '2021-10-27 06:32:45', '2021-10-27 06:32:45'), (11402, 4, '2021-10-27 06:32:45', '2021-10-27 06:32:45'), (11403, 4, '2021-10-27 06:32:46', '2021-10-27 06:32:46'), (11404, 4, '2021-10-27 06:32:46', '2021-10-27 06:32:46'), (11405, 4, '2021-10-27 06:32:46', '2021-10-27 06:32:46'), (11406, 4, '2021-10-27 06:32:46', '2021-10-27 06:32:46'), (11407, 4, '2021-10-27 06:32:46', '2021-10-27 06:32:46'), (11408, 4, '2021-10-27 06:32:47', '2021-10-27 06:32:47'), (11409, 4, '2021-10-27 06:32:47', '2021-10-27 06:32:47'), (11410, 4, '2021-10-27 06:32:47', '2021-10-27 06:32:47'), (11411, 4, '2021-10-27 06:32:47', '2021-10-27 06:32:47'), (11412, 4, '2021-10-27 06:32:48', '2021-10-27 06:32:48'), (11413, 4, '2021-10-27 06:32:48', '2021-10-27 06:32:48'), (11414, 4, '2021-10-27 06:32:48', '2021-10-27 06:32:48'), (11415, 4, '2021-10-27 06:32:48', '2021-10-27 06:32:48'), (11416, 4, '2021-10-27 06:32:48', '2021-10-27 06:32:48'), (11417, 4, '2021-10-27 06:32:49', '2021-10-27 06:32:49'), (11418, 4, '2021-10-27 06:32:49', '2021-10-27 06:32:49'), (11419, 4, '2021-10-27 06:32:49', '2021-10-27 06:32:49'), (11420, 4, '2021-10-27 06:32:49', '2021-10-27 06:32:49'), (11421, 4, '2021-10-27 06:32:50', '2021-10-27 06:32:50'), (11422, 4, '2021-10-27 06:32:50', '2021-10-27 06:32:50'), (11423, 4, '2021-10-27 06:32:50', '2021-10-27 06:32:50'), (11424, 4, '2021-10-27 06:32:50', '2021-10-27 06:32:50'), (11425, 4, '2021-10-27 06:32:50', '2021-10-27 06:32:50'), (11426, 4, '2021-10-27 06:32:51', '2021-10-27 06:32:51'), (11427, 4, '2021-10-27 06:32:51', '2021-10-27 06:32:51'), (11428, 4, '2021-10-27 06:32:51', '2021-10-27 06:32:51'), (11429, 4, '2021-10-27 06:32:51', '2021-10-27 06:32:51'), (11430, 4, '2021-10-27 06:32:51', '2021-10-27 06:32:51'), (11431, 4, '2021-10-27 06:32:52', '2021-10-27 06:32:52'), (11432, 4, '2021-10-27 06:32:52', '2021-10-27 06:32:52'), (11433, 4, '2021-10-27 06:32:52', '2021-10-27 06:32:52'), (11434, 4, '2021-10-27 06:32:52', '2021-10-27 06:32:52'), (11435, 4, '2021-10-27 06:32:52', '2021-10-27 06:32:52'), (11436, 4, '2021-10-27 06:32:52', '2021-10-27 06:32:52'), (11437, 4, '2021-10-27 06:32:53', '2021-10-27 06:32:53'), (11438, 4, '2021-10-27 06:32:53', '2021-10-27 06:32:53'), (11439, 4, '2021-10-27 06:32:53', '2021-10-27 06:32:53'), (11440, 4, '2021-10-27 06:32:53', '2021-10-27 06:32:53'), (11441, 4, '2021-10-27 06:32:53', '2021-10-27 06:32:53'), (11442, 4, '2021-10-27 06:32:54', '2021-10-27 06:32:54'), (11443, 4, '2021-10-27 06:32:54', '2021-10-27 06:32:54'), (11444, 4, '2021-10-27 06:32:54', '2021-10-27 06:32:54'), (11445, 4, '2021-10-27 06:32:54', '2021-10-27 06:32:54'), (11446, 4, '2021-10-27 06:32:54', '2021-10-27 06:32:54'), (11447, 4, '2021-10-27 06:32:55', '2021-10-27 06:32:55'), (11448, 4, '2021-10-27 06:32:55', '2021-10-27 06:32:55'), (11449, 4, '2021-10-27 06:32:55', '2021-10-27 06:32:55'), (11450, 4, '2021-10-27 06:32:55', '2021-10-27 06:32:55'), (11451, 4, '2021-10-27 06:32:55', '2021-10-27 06:32:55'), (11452, 4, '2021-10-27 06:32:56', '2021-10-27 06:32:56'), (11453, 4, '2021-10-27 06:32:56', '2021-10-27 06:32:56'), (11454, 4, '2021-10-27 06:32:56', '2021-10-27 06:32:56'), (11455, 4, '2021-10-27 06:32:56', '2021-10-27 06:32:56'), (11456, 4, '2021-10-27 06:32:56', '2021-10-27 06:32:56'), (11457, 4, '2021-10-27 06:32:57', '2021-10-27 06:32:57'), (11458, 4, '2021-10-27 06:32:57', '2021-10-27 06:32:57'), (11459, 4, '2021-10-27 06:32:57', '2021-10-27 06:32:57'), (11460, 4, '2021-10-27 06:32:57', '2021-10-27 06:32:57'), (11461, 4, '2021-10-27 06:32:57', '2021-10-27 06:32:57'), (11462, 4, '2021-10-27 06:32:58', '2021-10-27 06:32:58'), (11463, 4, '2021-10-27 06:32:58', '2021-10-27 06:32:58'), (11464, 4, '2021-10-27 06:32:58', '2021-10-27 06:32:58'), (11465, 4, '2021-10-27 06:32:58', '2021-10-27 06:32:58'), (11466, 4, '2021-10-27 06:32:58', '2021-10-27 06:32:58'), (11467, 4, '2021-10-27 06:32:58', '2021-10-27 06:32:58'), (11468, 4, '2021-10-27 06:32:59', '2021-10-27 06:32:59'), (11469, 4, '2021-10-27 06:32:59', '2021-10-27 06:32:59'), (11470, 4, '2021-10-27 06:32:59', '2021-10-27 06:32:59'), (11471, 4, '2021-10-27 06:32:59', '2021-10-27 06:32:59'), (11472, 4, '2021-10-27 06:32:59', '2021-10-27 06:32:59'), (11473, 4, '2021-10-27 06:33:00', '2021-10-27 06:33:00'), (11474, 4, '2021-10-27 06:33:00', '2021-10-27 06:33:00'), (11475, 4, '2021-10-27 06:33:00', '2021-10-27 06:33:00'), (11476, 4, '2021-10-27 06:33:00', '2021-10-27 06:33:00'), (11477, 4, '2021-10-27 06:33:00', '2021-10-27 06:33:00'), (11478, 4, '2021-10-27 06:33:01', '2021-10-27 06:33:01'), (11479, 4, '2021-10-27 06:33:01', '2021-10-27 06:33:01'), (11480, 4, '2021-10-27 06:33:01', '2021-10-27 06:33:01'), (11481, 4, '2021-10-27 06:33:01', '2021-10-27 06:33:01'), (11482, 4, '2021-10-28 06:33:15', '2021-10-28 06:33:15'), (11483, 4, '2021-10-28 06:33:16', '2021-10-28 06:33:16'), (11484, 4, '2021-10-28 06:33:17', '2021-10-28 06:33:17'), (11485, 4, '2021-10-28 06:33:17', '2021-10-28 06:33:17'), (11486, 4, '2021-10-28 06:33:17', '2021-10-28 06:33:17'), (11487, 4, '2021-10-28 06:33:17', '2021-10-28 06:33:17'), (11488, 4, '2021-10-28 06:33:17', '2021-10-28 06:33:17'), (11489, 4, '2021-10-28 06:33:17', '2021-10-28 06:33:17'), (11490, 4, '2021-10-28 06:33:18', '2021-10-28 06:33:18'), (11491, 4, '2021-10-28 06:33:18', '2021-10-28 06:33:18'), (11492, 4, '2021-10-28 06:33:18', '2021-10-28 06:33:18'), (11493, 4, '2021-10-28 06:33:18', '2021-10-28 06:33:18'), (11494, 4, '2021-10-28 06:33:18', '2021-10-28 06:33:18'), (11495, 4, '2021-10-28 06:33:19', '2021-10-28 06:33:19'), (11496, 4, '2021-10-28 06:33:19', '2021-10-28 06:33:19'), (11497, 4, '2021-10-28 06:33:19', '2021-10-28 06:33:19'), (11498, 4, '2021-10-28 06:33:19', '2021-10-28 06:33:19'), (11499, 4, '2021-10-28 06:33:19', '2021-10-28 06:33:19'), (11500, 4, '2021-10-28 06:33:20', '2021-10-28 06:33:20'), (11501, 4, '2021-10-28 06:33:20', '2021-10-28 06:33:20'), (11502, 4, '2021-10-28 06:33:20', '2021-10-28 06:33:20'), (11503, 4, '2021-10-28 06:33:20', '2021-10-28 06:33:20'), (11504, 4, '2021-10-28 06:33:20', '2021-10-28 06:33:20'), (11505, 4, '2021-10-28 06:33:21', '2021-10-28 06:33:21'), (11506, 4, '2021-10-28 06:33:21', '2021-10-28 06:33:21'), (11507, 4, '2021-10-28 06:33:21', '2021-10-28 06:33:21'), (11508, 4, '2021-10-28 06:33:21', '2021-10-28 06:33:21'), (11509, 4, '2021-10-28 06:33:21', '2021-10-28 06:33:21'), (11510, 4, '2021-10-28 06:33:22', '2021-10-28 06:33:22'), (11511, 4, '2021-10-28 06:33:22', '2021-10-28 06:33:22'), (11512, 4, '2021-10-28 06:33:23', '2021-10-28 06:33:23'), (11513, 4, '2021-10-28 06:33:23', '2021-10-28 06:33:23'), (11514, 4, '2021-10-28 06:33:23', '2021-10-28 06:33:23'), (11515, 4, '2021-10-28 06:33:23', '2021-10-28 06:33:23'), (11516, 4, '2021-10-28 06:33:23', '2021-10-28 06:33:23'), (11517, 4, '2021-10-28 06:33:24', '2021-10-28 06:33:24'), (11518, 4, '2021-10-28 06:33:24', '2021-10-28 06:33:24'), (11519, 4, '2021-10-28 06:33:24', '2021-10-28 06:33:24'), (11520, 4, '2021-10-28 06:33:24', '2021-10-28 06:33:24'), (11521, 4, '2021-10-28 06:33:24', '2021-10-28 06:33:24'), (11522, 4, '2021-10-28 06:33:25', '2021-10-28 06:33:25'), (11523, 4, '2021-10-28 06:33:25', '2021-10-28 06:33:25'), (11524, 4, '2021-10-28 06:33:25', '2021-10-28 06:33:25'), (11525, 4, '2021-10-28 06:33:25', '2021-10-28 06:33:25'), (11526, 4, '2021-10-28 06:33:25', '2021-10-28 06:33:25'), (11527, 4, '2021-10-28 06:33:26', '2021-10-28 06:33:26'), (11528, 4, '2021-10-28 06:33:26', '2021-10-28 06:33:26'), (11529, 4, '2021-10-28 06:33:26', '2021-10-28 06:33:26'), (11530, 4, '2021-10-28 06:33:26', '2021-10-28 06:33:26'), (11531, 4, '2021-10-28 06:33:26', '2021-10-28 06:33:26'), (11532, 4, '2021-10-28 06:33:27', '2021-10-28 06:33:27'), (11533, 4, '2021-10-28 06:33:27', '2021-10-28 06:33:27'), (11534, 4, '2021-10-28 06:33:27', '2021-10-28 06:33:27'), (11535, 4, '2021-10-28 06:33:27', '2021-10-28 06:33:27'), (11536, 4, '2021-10-28 06:33:27', '2021-10-28 06:33:27'), (11537, 4, '2021-10-28 06:33:28', '2021-10-28 06:33:28'), (11538, 4, '2021-10-28 06:33:29', '2021-10-28 06:33:29'), (11539, 4, '2021-10-28 06:33:29', '2021-10-28 06:33:29'), (11540, 4, '2021-10-28 06:33:29', '2021-10-28 06:33:29'), (11541, 4, '2021-10-28 06:33:29', '2021-10-28 06:33:29'), (11542, 4, '2021-10-28 06:33:30', '2021-10-28 06:33:30'), (11543, 4, '2021-10-28 06:33:30', '2021-10-28 06:33:30'), (11544, 4, '2021-10-28 06:33:30', '2021-10-28 06:33:30'), (11545, 4, '2021-10-28 06:33:30', '2021-10-28 06:33:30'), (11546, 4, '2021-10-28 06:33:30', '2021-10-28 06:33:30'), (11547, 4, '2021-10-28 06:33:31', '2021-10-28 06:33:31'), (11548, 4, '2021-10-28 06:33:31', '2021-10-28 06:33:31'), (11549, 4, '2021-10-28 06:33:31', '2021-10-28 06:33:31'), (11550, 4, '2021-10-28 06:33:31', '2021-10-28 06:33:31'), (11551, 4, '2021-10-28 06:33:31', '2021-10-28 06:33:31'), (11552, 4, '2021-10-28 06:33:32', '2021-10-28 06:33:32'), (11553, 4, '2021-10-28 06:33:32', '2021-10-28 06:33:32'), (11554, 4, '2021-10-28 06:33:32', '2021-10-28 06:33:32'), (11555, 4, '2021-10-28 06:33:32', '2021-10-28 06:33:32'), (11556, 4, '2021-10-28 06:33:32', '2021-10-28 06:33:32'), (11557, 4, '2021-10-28 06:33:33', '2021-10-28 06:33:33'), (11558, 4, '2021-10-28 06:33:33', '2021-10-28 06:33:33'), (11559, 4, '2021-10-28 06:33:33', '2021-10-28 06:33:33'), (11560, 4, '2021-10-28 06:33:33', '2021-10-28 06:33:33'), (11561, 4, '2021-10-28 06:33:34', '2021-10-28 06:33:34'), (11562, 4, '2021-10-28 06:33:34', '2021-10-28 06:33:34'), (11563, 4, '2021-10-28 06:33:34', '2021-10-28 06:33:34'), (11564, 4, '2021-10-28 06:33:35', '2021-10-28 06:33:35'), (11565, 4, '2021-10-28 06:33:35', '2021-10-28 06:33:35'), (11566, 4, '2021-10-28 06:33:35', '2021-10-28 06:33:35'), (11567, 4, '2021-10-28 06:33:35', '2021-10-28 06:33:35'), (11568, 4, '2021-10-28 06:33:35', '2021-10-28 06:33:35'), (11569, 4, '2021-10-28 06:33:35', '2021-10-28 06:33:35'), (11570, 4, '2021-10-28 06:33:36', '2021-10-28 06:33:36'), (11571, 4, '2021-10-28 06:33:36', '2021-10-28 06:33:36'), (11572, 4, '2021-10-28 06:33:36', '2021-10-28 06:33:36'), (11573, 4, '2021-10-28 06:33:36', '2021-10-28 06:33:36'), (11574, 4, '2021-10-28 06:33:36', '2021-10-28 06:33:36'), (11575, 4, '2021-10-28 06:33:37', '2021-10-28 06:33:37'), (11576, 4, '2021-10-28 06:33:37', '2021-10-28 06:33:37'), (11577, 4, '2021-10-28 06:33:37', '2021-10-28 06:33:37'), (11578, 4, '2021-10-28 06:33:37', '2021-10-28 06:33:37'), (11579, 4, '2021-10-28 06:33:38', '2021-10-28 06:33:38'), (11580, 4, '2021-10-28 06:33:38', '2021-10-28 06:33:38'), (11581, 4, '2021-10-28 06:33:38', '2021-10-28 06:33:38'), (11582, 4, '2021-10-28 06:33:38', '2021-10-28 06:33:38'), (11583, 4, '2021-10-28 06:33:38', '2021-10-28 06:33:38'), (11584, 4, '2021-10-28 06:33:39', '2021-10-28 06:33:39'), (11585, 4, '2021-10-28 06:33:39', '2021-10-28 06:33:39'), (11586, 4, '2021-10-28 06:33:39', '2021-10-28 06:33:39'), (11587, 4, '2021-10-28 06:33:39', '2021-10-28 06:33:39'), (11588, 4, '2021-10-28 06:33:39', '2021-10-28 06:33:39'), (11589, 4, '2021-10-28 06:33:40', '2021-10-28 06:33:40'), (11590, 4, '2021-10-28 06:33:40', '2021-10-28 06:33:40'), (11591, 4, '2021-10-28 06:33:40', '2021-10-28 06:33:40'), (11592, 4, '2021-10-28 06:33:40', '2021-10-28 06:33:40'), (11593, 4, '2021-10-28 06:33:40', '2021-10-28 06:33:40'), (11594, 4, '2021-10-28 06:33:41', '2021-10-28 06:33:41'), (11595, 4, '2021-10-28 06:33:41', '2021-10-28 06:33:41'), (11596, 4, '2021-10-28 06:33:41', '2021-10-28 06:33:41'), (11597, 4, '2021-10-28 06:33:42', '2021-10-28 06:33:42'), (11598, 4, '2021-10-28 06:33:42', '2021-10-28 06:33:42'), (11599, 4, '2021-10-28 06:33:42', '2021-10-28 06:33:42'), (11600, 4, '2021-10-28 06:33:42', '2021-10-28 06:33:42'), (11601, 4, '2021-10-28 06:33:42', '2021-10-28 06:33:42'), (11602, 4, '2021-10-28 06:33:43', '2021-10-28 06:33:43'), (11603, 4, '2021-10-28 06:33:43', '2021-10-28 06:33:43'), (11604, 4, '2021-10-28 06:33:43', '2021-10-28 06:33:43'), (11605, 4, '2021-10-28 06:33:43', '2021-10-28 06:33:43'), (11606, 4, '2021-10-28 06:33:43', '2021-10-28 06:33:43'), (11607, 4, '2021-10-28 06:33:44', '2021-10-28 06:33:44'), (11608, 4, '2021-10-28 06:33:44', '2021-10-28 06:33:44'), (11609, 4, '2021-10-28 06:33:44', '2021-10-28 06:33:44'), (11610, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11611, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11612, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11613, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11614, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11615, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11616, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11617, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11618, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11619, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11620, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11621, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11622, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11623, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11624, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11625, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11626, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11627, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11628, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11629, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11630, 4, '2021-10-28 06:33:45', '2021-10-28 06:33:45'), (11631, 4, '2021-10-28 06:33:46', '2021-10-28 06:33:46'), (11632, 4, '2021-10-28 06:33:46', '2021-10-28 06:33:46'), (11633, 4, '2021-10-28 06:33:46', '2021-10-28 06:33:46'), (11634, 4, '2021-10-28 06:33:46', '2021-10-28 06:33:46'), (11635, 4, '2021-10-28 06:33:46', '2021-10-28 06:33:46'), (11636, 4, '2021-10-28 06:33:47', '2021-10-28 06:33:47'), (11637, 4, '2021-10-28 06:33:47', '2021-10-28 06:33:47'), (11638, 4, '2021-10-28 06:33:47', '2021-10-28 06:33:47'), (11639, 4, '2021-10-28 06:33:47', '2021-10-28 06:33:47'), (11640, 4, '2021-10-28 06:33:47', '2021-10-28 06:33:47'), (11641, 4, '2021-10-28 06:33:48', '2021-10-28 06:33:48'), (11642, 4, '2021-10-28 06:33:48', '2021-10-28 06:33:48'), (11643, 4, '2021-10-28 06:33:48', '2021-10-28 06:33:48'), (11644, 4, '2021-10-28 06:33:48', '2021-10-28 06:33:48'), (11645, 4, '2021-10-28 06:33:49', '2021-10-28 06:33:49'), (11646, 4, '2021-10-28 06:33:49', '2021-10-28 06:33:49'), (11647, 4, '2021-10-28 06:33:49', '2021-10-28 06:33:49'), (11648, 4, '2021-10-28 06:33:49', '2021-10-28 06:33:49'), (11649, 4, '2021-10-28 06:33:49', '2021-10-28 06:33:49'), (11650, 4, '2021-10-28 06:33:50', '2021-10-28 06:33:50'), (11651, 4, '2021-10-28 06:33:50', '2021-10-28 06:33:50'), (11652, 4, '2021-10-28 06:33:50', '2021-10-28 06:33:50'), (11653, 4, '2021-10-28 06:33:50', '2021-10-28 06:33:50'), (11654, 4, '2021-10-28 06:33:50', '2021-10-28 06:33:50'), (11655, 4, '2021-10-28 06:33:51', '2021-10-28 06:33:51'), (11656, 4, '2021-10-28 06:33:51', '2021-10-28 06:33:51'), (11657, 4, '2021-10-28 06:33:51', '2021-10-28 06:33:51'), (11658, 4, '2021-10-28 06:33:51', '2021-10-28 06:33:51'), (11659, 4, '2021-10-28 06:33:51', '2021-10-28 06:33:51'), (11660, 4, '2021-10-28 06:33:52', '2021-10-28 06:33:52'), (11661, 4, '2021-10-28 06:33:52', '2021-10-28 06:33:52'), (11662, 4, '2021-10-28 06:33:52', '2021-10-28 06:33:52'), (11663, 4, '2021-10-28 06:33:52', '2021-10-28 06:33:52'), (11664, 4, '2021-10-28 06:33:52', '2021-10-28 06:33:52'), (11665, 4, '2021-10-28 06:33:54', '2021-10-28 06:33:54'), (11666, 4, '2021-10-28 06:33:54', '2021-10-28 06:33:54'), (11667, 4, '2021-10-28 06:33:54', '2021-10-28 06:33:54'), (11668, 4, '2021-10-28 06:33:54', '2021-10-28 06:33:54'), (11669, 4, '2021-10-28 06:33:54', '2021-10-28 06:33:54'), (11670, 4, '2021-10-28 06:33:55', '2021-10-28 06:33:55'), (11671, 4, '2021-10-28 06:33:55', '2021-10-28 06:33:55'), (11672, 4, '2021-10-28 06:33:55', '2021-10-28 06:33:55'), (11673, 4, '2021-10-28 06:33:55', '2021-10-28 06:33:55'), (11674, 4, '2021-10-28 06:33:55', '2021-10-28 06:33:55'), (11675, 4, '2021-10-28 06:33:55', '2021-10-28 06:33:55'), (11676, 4, '2021-10-28 06:33:56', '2021-10-28 06:33:56'), (11677, 4, '2021-10-28 06:33:56', '2021-10-28 06:33:56'), (11678, 4, '2021-10-28 06:33:56', '2021-10-28 06:33:56'), (11679, 4, '2021-10-28 06:33:56', '2021-10-28 06:33:56'), (11680, 4, '2021-10-28 06:33:56', '2021-10-28 06:33:56'), (11681, 4, '2021-10-28 06:33:57', '2021-10-28 06:33:57'), (11682, 4, '2021-10-28 06:33:57', '2021-10-28 06:33:57'), (11683, 4, '2021-10-28 06:33:57', '2021-10-28 06:33:57'), (11684, 4, '2021-10-28 06:33:57', '2021-10-28 06:33:57'), (11685, 4, '2021-10-28 06:33:57', '2021-10-28 06:33:57'), (11686, 4, '2021-10-28 06:33:58', '2021-10-28 06:33:58'), (11687, 4, '2021-10-28 06:33:58', '2021-10-28 06:33:58'), (11688, 4, '2021-10-28 06:33:58', '2021-10-28 06:33:58'), (11689, 4, '2021-10-28 06:33:58', '2021-10-28 06:33:58'), (11690, 4, '2021-10-28 06:33:58', '2021-10-28 06:33:58'), (11691, 4, '2021-10-28 06:33:59', '2021-10-28 06:33:59'), (11692, 4, '2021-10-28 06:33:59', '2021-10-28 06:33:59'), (11693, 4, '2021-10-28 06:33:59', '2021-10-28 06:33:59'), (11694, 4, '2021-10-28 06:33:59', '2021-10-28 06:33:59'), (11695, 4, '2021-10-28 06:34:00', '2021-10-28 06:34:00'), (11696, 4, '2021-10-28 06:34:00', '2021-10-28 06:34:00'), (11697, 4, '2021-10-28 06:34:00', '2021-10-28 06:34:00'), (11698, 4, '2021-10-28 06:34:00', '2021-10-28 06:34:00'), (11699, 4, '2021-10-28 06:34:00', '2021-10-28 06:34:00'), (11700, 4, '2021-10-28 06:34:01', '2021-10-28 06:34:01'), (11701, 4, '2021-10-28 06:34:01', '2021-10-28 06:34:01'), (11702, 4, '2021-10-28 06:34:01', '2021-10-28 06:34:01'), (11703, 4, '2021-10-28 06:34:01', '2021-10-28 06:34:01'), (11704, 4, '2021-10-28 06:34:01', '2021-10-28 06:34:01'), (11705, 4, '2021-10-28 06:34:02', '2021-10-28 06:34:02'), (11706, 4, '2021-10-28 06:34:02', '2021-10-28 06:34:02'), (11707, 4, '2021-10-28 06:34:02', '2021-10-28 06:34:02'), (11708, 4, '2021-10-28 06:34:02', '2021-10-28 06:34:02'), (11709, 4, '2021-10-28 06:34:02', '2021-10-28 06:34:02'), (11710, 4, '2021-10-28 06:34:03', '2021-10-28 06:34:03'), (11711, 4, '2021-10-28 06:34:03', '2021-10-28 06:34:03'), (11712, 4, '2021-10-28 06:34:03', '2021-10-28 06:34:03'), (11713, 4, '2021-10-28 06:34:03', '2021-10-28 06:34:03'), (11714, 4, '2021-10-28 06:34:03', '2021-10-28 06:34:03'), (11715, 4, '2021-10-28 06:34:04', '2021-10-28 06:34:04'), (11716, 4, '2021-10-28 06:34:04', '2021-10-28 06:34:04'), (11717, 4, '2021-10-28 06:34:04', '2021-10-28 06:34:04'), (11718, 4, '2021-10-28 06:34:04', '2021-10-28 06:34:04'), (11719, 4, '2021-10-28 06:34:04', '2021-10-28 06:34:04'), (11720, 4, '2021-10-28 06:34:05', '2021-10-28 06:34:05'), (11721, 4, '2021-10-28 06:34:05', '2021-10-28 06:34:05'), (11722, 4, '2021-10-28 06:34:05', '2021-10-28 06:34:05'), (11723, 4, '2021-10-28 06:34:05', '2021-10-28 06:34:05'), (11724, 4, '2021-10-28 06:34:05', '2021-10-28 06:34:05'), (11725, 4, '2021-10-28 06:34:06', '2021-10-28 06:34:06'), (11726, 4, '2021-10-28 06:34:06', '2021-10-28 06:34:06'), (11727, 4, '2021-10-28 06:34:06', '2021-10-28 06:34:06'), (11728, 4, '2021-10-28 06:34:06', '2021-10-28 06:34:06'), (11729, 4, '2021-10-28 06:34:06', '2021-10-28 06:34:06'), (11730, 4, '2021-10-28 06:34:07', '2021-10-28 06:34:07'), (11731, 4, '2021-10-28 06:34:07', '2021-10-28 06:34:07'), (11732, 4, '2021-10-28 06:34:07', '2021-10-28 06:34:07'), (11733, 4, '2021-10-28 06:34:07', '2021-10-28 06:34:07'), (11734, 4, '2021-10-28 06:34:07', '2021-10-28 06:34:07'), (11735, 4, '2021-10-28 06:34:08', '2021-10-28 06:34:08'), (11736, 4, '2021-10-28 06:34:08', '2021-10-28 06:34:08'), (11737, 4, '2021-10-28 06:34:09', '2021-10-28 06:34:09'), (11738, 4, '2021-10-28 06:34:09', '2021-10-28 06:34:09'), (11739, 4, '2021-10-28 06:34:09', '2021-10-28 06:34:09'), (11740, 4, '2021-10-28 06:34:09', '2021-10-28 06:34:09'), (11741, 4, '2021-10-28 06:34:10', '2021-10-28 06:34:10'), (11742, 4, '2021-10-28 06:34:10', '2021-10-28 06:34:10'), (11743, 4, '2021-10-28 06:34:10', '2021-10-28 06:34:10'), (11744, 4, '2021-10-28 06:34:10', '2021-10-28 06:34:10'), (11745, 4, '2021-10-28 06:34:11', '2021-10-28 06:34:11'), (11746, 4, '2021-10-28 06:34:11', '2021-10-28 06:34:11'), (11747, 4, '2021-10-28 06:34:12', '2021-10-28 06:34:12'), (11748, 4, '2021-10-29 06:34:16', '2021-10-29 06:34:16'), (11749, 4, '2021-10-29 06:34:18', '2021-10-29 06:34:18'), (11750, 4, '2021-10-29 06:34:18', '2021-10-29 06:34:18'), (11751, 4, '2021-10-29 06:34:18', '2021-10-29 06:34:18'), (11752, 4, '2021-10-29 06:34:19', '2021-10-29 06:34:19'), (11753, 4, '2021-10-29 06:34:19', '2021-10-29 06:34:19'), (11754, 4, '2021-10-29 06:34:19', '2021-10-29 06:34:19'), (11755, 4, '2021-10-29 06:34:19', '2021-10-29 06:34:19'), (11756, 4, '2021-10-29 06:34:19', '2021-10-29 06:34:19'), (11757, 4, '2021-10-29 06:34:20', '2021-10-29 06:34:20'), (11758, 4, '2021-10-29 06:34:20', '2021-10-29 06:34:20'), (11759, 4, '2021-10-29 06:34:20', '2021-10-29 06:34:20'), (11760, 4, '2021-10-29 06:34:20', '2021-10-29 06:34:20'), (11761, 4, '2021-10-29 06:34:20', '2021-10-29 06:34:20'), (11762, 4, '2021-10-29 06:34:21', '2021-10-29 06:34:21'), (11763, 4, '2021-10-29 06:34:21', '2021-10-29 06:34:21'), (11764, 4, '2021-10-29 06:34:21', '2021-10-29 06:34:21'), (11765, 4, '2021-10-29 06:34:21', '2021-10-29 06:34:21'), (11766, 4, '2021-10-29 06:34:21', '2021-10-29 06:34:21'), (11767, 4, '2021-10-29 06:34:22', '2021-10-29 06:34:22'), (11768, 4, '2021-10-29 06:34:22', '2021-10-29 06:34:22'), (11769, 4, '2021-10-29 06:34:22', '2021-10-29 06:34:22'), (11770, 4, '2021-10-29 06:34:22', '2021-10-29 06:34:22'), (11771, 4, '2021-10-29 06:34:22', '2021-10-29 06:34:22'), (11772, 4, '2021-10-29 06:34:23', '2021-10-29 06:34:23'), (11773, 4, '2021-10-29 06:34:23', '2021-10-29 06:34:23'), (11774, 4, '2021-10-29 06:34:23', '2021-10-29 06:34:23'), (11775, 4, '2021-10-29 06:34:23', '2021-10-29 06:34:23'), (11776, 4, '2021-10-29 06:34:23', '2021-10-29 06:34:23'), (11777, 4, '2021-10-29 06:34:24', '2021-10-29 06:34:24'), (11778, 4, '2021-10-29 06:34:24', '2021-10-29 06:34:24'), (11779, 4, '2021-10-29 06:34:24', '2021-10-29 06:34:24'), (11780, 4, '2021-10-29 06:34:25', '2021-10-29 06:34:25'), (11781, 4, '2021-10-29 06:34:25', '2021-10-29 06:34:25'), (11782, 4, '2021-10-29 06:34:25', '2021-10-29 06:34:25'), (11783, 4, '2021-10-29 06:34:25', '2021-10-29 06:34:25'), (11784, 4, '2021-10-29 06:34:25', '2021-10-29 06:34:25'), (11785, 4, '2021-10-29 06:34:25', '2021-10-29 06:34:25'), (11786, 4, '2021-10-29 06:34:26', '2021-10-29 06:34:26'), (11787, 4, '2021-10-29 06:34:26', '2021-10-29 06:34:26'), (11788, 4, '2021-10-29 06:34:26', '2021-10-29 06:34:26'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (11789, 4, '2021-10-29 06:34:26', '2021-10-29 06:34:26'), (11790, 4, '2021-10-29 06:34:26', '2021-10-29 06:34:26'), (11791, 4, '2021-10-29 06:34:27', '2021-10-29 06:34:27'), (11792, 4, '2021-10-29 06:34:27', '2021-10-29 06:34:27'), (11793, 4, '2021-10-29 06:34:27', '2021-10-29 06:34:27'), (11794, 4, '2021-10-29 06:34:27', '2021-10-29 06:34:27'), (11795, 4, '2021-10-29 06:34:27', '2021-10-29 06:34:27'), (11796, 4, '2021-10-29 06:34:28', '2021-10-29 06:34:28'), (11797, 4, '2021-10-29 06:34:28', '2021-10-29 06:34:28'), (11798, 4, '2021-10-29 06:34:28', '2021-10-29 06:34:28'), (11799, 4, '2021-10-29 06:34:28', '2021-10-29 06:34:28'), (11800, 4, '2021-10-29 06:34:28', '2021-10-29 06:34:28'), (11801, 4, '2021-10-29 06:34:28', '2021-10-29 06:34:28'), (11802, 4, '2021-10-29 06:34:29', '2021-10-29 06:34:29'), (11803, 4, '2021-10-29 06:34:29', '2021-10-29 06:34:29'), (11804, 4, '2021-10-29 06:34:29', '2021-10-29 06:34:29'), (11805, 4, '2021-10-29 06:34:29', '2021-10-29 06:34:29'), (11806, 4, '2021-10-29 06:34:29', '2021-10-29 06:34:29'), (11807, 4, '2021-10-29 06:34:30', '2021-10-29 06:34:30'), (11808, 4, '2021-10-29 06:34:30', '2021-10-29 06:34:30'), (11809, 4, '2021-10-29 06:34:31', '2021-10-29 06:34:31'), (11810, 4, '2021-10-29 06:34:31', '2021-10-29 06:34:31'), (11811, 4, '2021-10-29 06:34:31', '2021-10-29 06:34:31'), (11812, 4, '2021-10-29 06:34:31', '2021-10-29 06:34:31'), (11813, 4, '2021-10-29 06:34:31', '2021-10-29 06:34:31'), (11814, 4, '2021-10-29 06:34:31', '2021-10-29 06:34:31'), (11815, 4, '2021-10-29 06:34:32', '2021-10-29 06:34:32'), (11816, 4, '2021-10-29 06:34:32', '2021-10-29 06:34:32'), (11817, 4, '2021-10-29 06:34:32', '2021-10-29 06:34:32'), (11818, 4, '2021-10-29 06:34:32', '2021-10-29 06:34:32'), (11819, 4, '2021-10-29 06:34:32', '2021-10-29 06:34:32'), (11820, 4, '2021-10-29 06:34:33', '2021-10-29 06:34:33'), (11821, 4, '2021-10-29 06:34:33', '2021-10-29 06:34:33'), (11822, 4, '2021-10-29 06:34:33', '2021-10-29 06:34:33'), (11823, 4, '2021-10-29 06:34:33', '2021-10-29 06:34:33'), (11824, 4, '2021-10-29 06:34:33', '2021-10-29 06:34:33'), (11825, 4, '2021-10-29 06:34:34', '2021-10-29 06:34:34'), (11826, 4, '2021-10-29 06:34:34', '2021-10-29 06:34:34'), (11827, 4, '2021-10-29 06:34:34', '2021-10-29 06:34:34'), (11828, 4, '2021-10-29 06:34:34', '2021-10-29 06:34:34'), (11829, 4, '2021-10-29 06:34:34', '2021-10-29 06:34:34'), (11830, 4, '2021-10-29 06:34:35', '2021-10-29 06:34:35'), (11831, 4, '2021-10-29 06:34:35', '2021-10-29 06:34:35'), (11832, 4, '2021-10-29 06:34:35', '2021-10-29 06:34:35'), (11833, 4, '2021-10-29 06:34:35', '2021-10-29 06:34:35'), (11834, 4, '2021-10-29 06:34:35', '2021-10-29 06:34:35'), (11835, 4, '2021-10-29 06:34:36', '2021-10-29 06:34:36'), (11836, 4, '2021-10-29 06:34:36', '2021-10-29 06:34:36'), (11837, 4, '2021-10-29 06:34:36', '2021-10-29 06:34:36'), (11838, 4, '2021-10-29 06:34:36', '2021-10-29 06:34:36'), (11839, 4, '2021-10-29 06:34:36', '2021-10-29 06:34:36'), (11840, 4, '2021-10-29 06:34:37', '2021-10-29 06:34:37'), (11841, 4, '2021-10-29 06:34:37', '2021-10-29 06:34:37'), (11842, 4, '2021-10-29 06:34:37', '2021-10-29 06:34:37'), (11843, 4, '2021-10-29 06:34:37', '2021-10-29 06:34:37'), (11844, 4, '2021-10-29 06:34:37', '2021-10-29 06:34:37'), (11845, 4, '2021-10-29 06:34:38', '2021-10-29 06:34:38'), (11846, 4, '2021-10-29 06:34:38', '2021-10-29 06:34:38'), (11847, 4, '2021-10-29 06:34:38', '2021-10-29 06:34:38'), (11848, 4, '2021-10-29 06:34:38', '2021-10-29 06:34:38'), (11849, 4, '2021-10-29 06:34:38', '2021-10-29 06:34:38'), (11850, 4, '2021-10-29 06:34:39', '2021-10-29 06:34:39'), (11851, 4, '2021-10-29 06:34:39', '2021-10-29 06:34:39'), (11852, 4, '2021-10-29 06:34:39', '2021-10-29 06:34:39'), (11853, 4, '2021-10-29 06:34:39', '2021-10-29 06:34:39'), (11854, 4, '2021-10-29 06:34:40', '2021-10-29 06:34:40'), (11855, 4, '2021-10-29 06:34:40', '2021-10-29 06:34:40'), (11856, 4, '2021-10-29 06:34:40', '2021-10-29 06:34:40'), (11857, 4, '2021-10-29 06:34:40', '2021-10-29 06:34:40'), (11858, 4, '2021-10-29 06:34:40', '2021-10-29 06:34:40'), (11859, 4, '2021-10-29 06:34:41', '2021-10-29 06:34:41'), (11860, 4, '2021-10-29 06:34:41', '2021-10-29 06:34:41'), (11861, 4, '2021-10-29 06:34:41', '2021-10-29 06:34:41'), (11862, 4, '2021-10-29 06:34:41', '2021-10-29 06:34:41'), (11863, 4, '2021-10-29 06:34:41', '2021-10-29 06:34:41'), (11864, 4, '2021-10-29 06:34:42', '2021-10-29 06:34:42'), (11865, 4, '2021-10-29 06:34:42', '2021-10-29 06:34:42'), (11866, 4, '2021-10-29 06:34:42', '2021-10-29 06:34:42'), (11867, 4, '2021-10-29 06:34:43', '2021-10-29 06:34:43'), (11868, 4, '2021-10-29 06:34:43', '2021-10-29 06:34:43'), (11869, 4, '2021-10-29 06:34:43', '2021-10-29 06:34:43'), (11870, 4, '2021-10-29 06:34:43', '2021-10-29 06:34:43'), (11871, 4, '2021-10-29 06:34:43', '2021-10-29 06:34:43'), (11872, 4, '2021-10-29 06:34:43', '2021-10-29 06:34:43'), (11873, 4, '2021-10-29 06:34:44', '2021-10-29 06:34:44'), (11874, 4, '2021-10-29 06:34:44', '2021-10-29 06:34:44'), (11875, 4, '2021-10-29 06:34:44', '2021-10-29 06:34:44'), (11876, 4, '2021-10-29 06:34:44', '2021-10-29 06:34:44'), (11877, 4, '2021-10-29 06:34:45', '2021-10-29 06:34:45'), (11878, 4, '2021-10-29 06:34:45', '2021-10-29 06:34:45'), (11879, 4, '2021-10-29 06:34:45', '2021-10-29 06:34:45'), (11880, 4, '2021-10-29 06:34:45', '2021-10-29 06:34:45'), (11881, 4, '2021-10-29 06:34:45', '2021-10-29 06:34:45'), (11882, 4, '2021-10-29 06:34:46', '2021-10-29 06:34:46'), (11883, 4, '2021-10-29 06:34:46', '2021-10-29 06:34:46'), (11884, 4, '2021-10-29 06:34:46', '2021-10-29 06:34:46'), (11885, 4, '2021-10-29 06:34:46', '2021-10-29 06:34:46'), (11886, 4, '2021-10-29 06:34:46', '2021-10-29 06:34:46'), (11887, 4, '2021-10-29 06:34:47', '2021-10-29 06:34:47'), (11888, 4, '2021-10-29 06:34:47', '2021-10-29 06:34:47'), (11889, 4, '2021-10-29 06:34:47', '2021-10-29 06:34:47'), (11890, 4, '2021-10-29 06:34:47', '2021-10-29 06:34:47'), (11891, 4, '2021-10-29 06:34:47', '2021-10-29 06:34:47'), (11892, 4, '2021-10-29 06:34:48', '2021-10-29 06:34:48'), (11893, 4, '2021-10-29 06:34:48', '2021-10-29 06:34:48'), (11894, 4, '2021-10-29 06:34:49', '2021-10-29 06:34:49'), (11895, 4, '2021-10-29 06:34:49', '2021-10-29 06:34:49'), (11896, 4, '2021-10-29 06:34:49', '2021-10-29 06:34:49'), (11897, 4, '2021-10-29 06:34:50', '2021-10-29 06:34:50'), (11898, 4, '2021-10-29 06:34:50', '2021-10-29 06:34:50'), (11899, 4, '2021-10-29 06:34:50', '2021-10-29 06:34:50'), (11900, 4, '2021-10-29 06:34:50', '2021-10-29 06:34:50'), (11901, 4, '2021-10-29 06:34:50', '2021-10-29 06:34:50'), (11902, 4, '2021-10-29 06:34:51', '2021-10-29 06:34:51'), (11903, 4, '2021-10-29 06:34:51', '2021-10-29 06:34:51'), (11904, 4, '2021-10-29 06:34:51', '2021-10-29 06:34:51'), (11905, 4, '2021-10-29 06:34:51', '2021-10-29 06:34:51'), (11906, 4, '2021-10-29 06:34:51', '2021-10-29 06:34:51'), (11907, 4, '2021-10-29 06:34:52', '2021-10-29 06:34:52'), (11908, 4, '2021-10-29 06:34:52', '2021-10-29 06:34:52'), (11909, 4, '2021-10-29 06:34:52', '2021-10-29 06:34:52'), (11910, 4, '2021-10-29 06:34:52', '2021-10-29 06:34:52'), (11911, 4, '2021-10-29 06:34:53', '2021-10-29 06:34:53'), (11912, 4, '2021-10-29 06:34:53', '2021-10-29 06:34:53'), (11913, 4, '2021-10-29 06:34:53', '2021-10-29 06:34:53'), (11914, 4, '2021-10-29 06:34:53', '2021-10-29 06:34:53'), (11915, 4, '2021-10-29 06:34:53', '2021-10-29 06:34:53'), (11916, 4, '2021-10-29 06:34:54', '2021-10-29 06:34:54'), (11917, 4, '2021-10-29 06:34:54', '2021-10-29 06:34:54'), (11918, 4, '2021-10-29 06:34:54', '2021-10-29 06:34:54'), (11919, 4, '2021-10-29 06:34:54', '2021-10-29 06:34:54'), (11920, 4, '2021-10-29 06:34:55', '2021-10-29 06:34:55'), (11921, 4, '2021-10-29 06:34:55', '2021-10-29 06:34:55'), (11922, 4, '2021-10-29 06:34:55', '2021-10-29 06:34:55'), (11923, 4, '2021-10-29 06:34:55', '2021-10-29 06:34:55'), (11924, 4, '2021-10-29 06:34:56', '2021-10-29 06:34:56'), (11925, 4, '2021-10-29 06:34:56', '2021-10-29 06:34:56'), (11926, 4, '2021-10-29 06:34:56', '2021-10-29 06:34:56'), (11927, 4, '2021-10-29 06:34:56', '2021-10-29 06:34:56'), (11928, 4, '2021-10-29 06:34:56', '2021-10-29 06:34:56'), (11929, 4, '2021-10-29 06:34:57', '2021-10-29 06:34:57'), (11930, 4, '2021-10-29 06:34:57', '2021-10-29 06:34:57'), (11931, 4, '2021-10-29 06:34:57', '2021-10-29 06:34:57'), (11932, 4, '2021-10-29 06:34:57', '2021-10-29 06:34:57'), (11933, 4, '2021-10-29 06:34:57', '2021-10-29 06:34:57'), (11934, 4, '2021-10-29 06:34:58', '2021-10-29 06:34:58'), (11935, 4, '2021-10-29 06:34:58', '2021-10-29 06:34:58'), (11936, 4, '2021-10-29 06:34:58', '2021-10-29 06:34:58'), (11937, 4, '2021-10-29 06:34:58', '2021-10-29 06:34:58'), (11938, 4, '2021-10-29 06:34:59', '2021-10-29 06:34:59'), (11939, 4, '2021-10-29 06:34:59', '2021-10-29 06:34:59'), (11940, 4, '2021-10-29 06:34:59', '2021-10-29 06:34:59'), (11941, 4, '2021-10-29 06:34:59', '2021-10-29 06:34:59'), (11942, 4, '2021-10-29 06:34:59', '2021-10-29 06:34:59'), (11943, 4, '2021-10-29 06:35:00', '2021-10-29 06:35:00'), (11944, 4, '2021-10-29 06:35:00', '2021-10-29 06:35:00'), (11945, 4, '2021-10-29 06:35:00', '2021-10-29 06:35:00'), (11946, 4, '2021-10-29 06:35:00', '2021-10-29 06:35:00'), (11947, 4, '2021-10-29 06:35:01', '2021-10-29 06:35:01'), (11948, 4, '2021-10-29 06:35:01', '2021-10-29 06:35:01'), (11949, 4, '2021-10-29 06:35:01', '2021-10-29 06:35:01'), (11950, 4, '2021-10-29 06:35:01', '2021-10-29 06:35:01'), (11951, 4, '2021-10-29 06:35:01', '2021-10-29 06:35:01'), (11952, 4, '2021-10-29 06:35:02', '2021-10-29 06:35:02'), (11953, 4, '2021-10-29 06:35:02', '2021-10-29 06:35:02'), (11954, 4, '2021-10-29 06:35:02', '2021-10-29 06:35:02'), (11955, 4, '2021-10-29 06:35:02', '2021-10-29 06:35:02'), (11956, 4, '2021-10-29 06:35:03', '2021-10-29 06:35:03'), (11957, 4, '2021-10-29 06:35:03', '2021-10-29 06:35:03'), (11958, 4, '2021-10-29 06:35:03', '2021-10-29 06:35:03'), (11959, 4, '2021-10-29 06:35:03', '2021-10-29 06:35:03'), (11960, 4, '2021-10-29 06:35:03', '2021-10-29 06:35:03'), (11961, 4, '2021-10-29 06:35:04', '2021-10-29 06:35:04'), (11962, 4, '2021-10-29 06:35:04', '2021-10-29 06:35:04'), (11963, 4, '2021-10-29 06:35:04', '2021-10-29 06:35:04'), (11964, 4, '2021-10-29 06:35:04', '2021-10-29 06:35:04'), (11965, 4, '2021-10-29 06:35:05', '2021-10-29 06:35:05'), (11966, 4, '2021-10-29 06:35:05', '2021-10-29 06:35:05'), (11967, 4, '2021-10-29 06:35:05', '2021-10-29 06:35:05'), (11968, 4, '2021-10-29 06:35:05', '2021-10-29 06:35:05'), (11969, 4, '2021-10-29 06:35:05', '2021-10-29 06:35:05'), (11970, 4, '2021-10-29 06:35:06', '2021-10-29 06:35:06'), (11971, 4, '2021-10-29 06:35:06', '2021-10-29 06:35:06'), (11972, 4, '2021-10-29 06:35:06', '2021-10-29 06:35:06'), (11973, 4, '2021-10-29 06:35:06', '2021-10-29 06:35:06'), (11974, 4, '2021-10-29 06:35:07', '2021-10-29 06:35:07'), (11975, 4, '2021-10-29 06:35:07', '2021-10-29 06:35:07'), (11976, 4, '2021-10-29 06:35:07', '2021-10-29 06:35:07'), (11977, 4, '2021-10-29 06:35:07', '2021-10-29 06:35:07'), (11978, 4, '2021-10-29 06:35:08', '2021-10-29 06:35:08'), (11979, 4, '2021-10-29 06:35:08', '2021-10-29 06:35:08'), (11980, 4, '2021-10-29 06:35:08', '2021-10-29 06:35:08'), (11981, 4, '2021-10-29 06:35:08', '2021-10-29 06:35:08'), (11982, 4, '2021-10-29 06:35:08', '2021-10-29 06:35:08'), (11983, 4, '2021-10-29 06:35:09', '2021-10-29 06:35:09'), (11984, 4, '2021-10-29 06:35:09', '2021-10-29 06:35:09'), (11985, 4, '2021-10-29 06:35:09', '2021-10-29 06:35:09'), (11986, 4, '2021-10-29 06:35:09', '2021-10-29 06:35:09'), (11987, 4, '2021-10-29 06:35:10', '2021-10-29 06:35:10'), (11988, 4, '2021-10-29 06:35:10', '2021-10-29 06:35:10'), (11989, 4, '2021-10-29 06:35:10', '2021-10-29 06:35:10'), (11990, 4, '2021-10-29 06:35:10', '2021-10-29 06:35:10'), (11991, 4, '2021-10-29 06:35:11', '2021-10-29 06:35:11'), (11992, 4, '2021-10-29 06:35:11', '2021-10-29 06:35:11'), (11993, 4, '2021-10-29 06:35:11', '2021-10-29 06:35:11'), (11994, 4, '2021-10-29 06:35:11', '2021-10-29 06:35:11'), (11995, 4, '2021-10-29 06:35:11', '2021-10-29 06:35:11'), (11996, 4, '2021-10-29 06:35:12', '2021-10-29 06:35:12'), (11997, 4, '2021-10-29 06:35:12', '2021-10-29 06:35:12'), (11998, 4, '2021-10-29 06:35:12', '2021-10-29 06:35:12'), (11999, 4, '2021-10-29 06:35:12', '2021-10-29 06:35:12'), (12000, 4, '2021-10-29 06:35:12', '2021-10-29 06:35:12'), (12001, 4, '2021-10-29 06:35:13', '2021-10-29 06:35:13'), (12002, 4, '2021-10-29 06:35:13', '2021-10-29 06:35:13'), (12003, 4, '2021-10-29 06:35:13', '2021-10-29 06:35:13'), (12004, 4, '2021-10-29 06:35:13', '2021-10-29 06:35:13'), (12005, 4, '2021-10-29 06:35:14', '2021-10-29 06:35:14'), (12006, 4, '2021-10-29 06:35:14', '2021-10-29 06:35:14'), (12007, 4, '2021-10-29 06:35:14', '2021-10-29 06:35:14'), (12008, 4, '2021-10-29 06:35:14', '2021-10-29 06:35:14'), (12009, 4, '2021-10-29 06:35:14', '2021-10-29 06:35:14'), (12010, 4, '2021-10-29 06:35:15', '2021-10-29 06:35:15'), (12011, 4, '2021-10-29 06:35:15', '2021-10-29 06:35:15'), (12012, 4, '2021-10-29 06:35:15', '2021-10-29 06:35:15'), (12013, 4, '2021-10-29 06:35:15', '2021-10-29 06:35:15'), (12014, 4, '2021-10-29 06:35:16', '2021-10-29 06:35:16'), (12015, 4, '2021-10-29 06:35:16', '2021-10-29 06:35:16'), (12016, 4, '2021-10-29 06:35:16', '2021-10-29 06:35:16'), (12017, 4, '2021-10-29 06:35:16', '2021-10-29 06:35:16'), (12018, 4, '2021-10-29 06:35:16', '2021-10-29 06:35:16'), (12019, 4, '2021-10-29 06:35:17', '2021-10-29 06:35:17'), (12020, 4, '2021-10-29 06:35:17', '2021-10-29 06:35:17'), (12021, 4, '2021-10-29 06:35:17', '2021-10-29 06:35:17'), (12022, 4, '2021-10-29 06:35:17', '2021-10-29 06:35:17'), (12023, 4, '2021-10-29 06:35:17', '2021-10-29 06:35:17'), (12024, 4, '2021-10-29 06:35:18', '2021-10-29 06:35:18'), (12025, 4, '2021-10-29 06:35:18', '2021-10-29 06:35:18'), (12026, 4, '2021-10-29 06:35:18', '2021-10-29 06:35:18'), (12027, 4, '2021-10-29 06:35:18', '2021-10-29 06:35:18'), (12028, 4, '2021-10-29 06:35:19', '2021-10-29 06:35:19'), (12029, 4, '2021-10-29 06:35:19', '2021-10-29 06:35:19'), (12030, 4, '2021-10-29 06:35:20', '2021-10-29 06:35:20'), (12031, 4, '2021-10-29 06:35:20', '2021-10-29 06:35:20'), (12032, 4, '2021-10-29 06:35:20', '2021-10-29 06:35:20'), (12033, 4, '2021-10-29 06:35:20', '2021-10-29 06:35:20'), (12034, 4, '2021-10-30 06:35:27', '2021-10-30 06:35:27'), (12035, 4, '2021-10-30 06:35:30', '2021-10-30 06:35:30'), (12036, 4, '2021-10-30 06:35:30', '2021-10-30 06:35:30'), (12037, 4, '2021-10-30 06:35:30', '2021-10-30 06:35:30'), (12038, 4, '2021-10-30 06:35:32', '2021-10-30 06:35:32'), (12039, 4, '2021-10-30 06:35:32', '2021-10-30 06:35:32'), (12040, 4, '2021-10-30 06:35:32', '2021-10-30 06:35:32'), (12041, 4, '2021-10-30 06:35:32', '2021-10-30 06:35:32'), (12042, 4, '2021-10-30 06:35:32', '2021-10-30 06:35:32'), (12043, 4, '2021-10-30 06:35:33', '2021-10-30 06:35:33'), (12044, 4, '2021-10-30 06:35:33', '2021-10-30 06:35:33'), (12045, 4, '2021-10-30 06:35:33', '2021-10-30 06:35:33'), (12046, 4, '2021-10-30 06:35:33', '2021-10-30 06:35:33'), (12047, 4, '2021-10-30 06:35:33', '2021-10-30 06:35:33'), (12048, 4, '2021-10-30 06:35:33', '2021-10-30 06:35:33'), (12049, 4, '2021-10-30 06:35:34', '2021-10-30 06:35:34'), (12050, 4, '2021-10-30 06:35:34', '2021-10-30 06:35:34'), (12051, 4, '2021-10-30 06:35:34', '2021-10-30 06:35:34'), (12052, 4, '2021-10-30 06:35:34', '2021-10-30 06:35:34'), (12053, 4, '2021-10-30 06:35:34', '2021-10-30 06:35:34'), (12054, 4, '2021-10-30 06:35:35', '2021-10-30 06:35:35'), (12055, 4, '2021-10-30 06:35:35', '2021-10-30 06:35:35'), (12056, 4, '2021-10-30 06:35:35', '2021-10-30 06:35:35'), (12057, 4, '2021-10-30 06:35:35', '2021-10-30 06:35:35'), (12058, 4, '2021-10-30 06:35:36', '2021-10-30 06:35:36'), (12059, 4, '2021-10-30 06:35:36', '2021-10-30 06:35:36'), (12060, 4, '2021-10-30 06:35:36', '2021-10-30 06:35:36'), (12061, 4, '2021-10-30 06:35:36', '2021-10-30 06:35:36'), (12062, 4, '2021-10-30 06:35:36', '2021-10-30 06:35:36'), (12063, 4, '2021-10-30 06:35:37', '2021-10-30 06:35:37'), (12064, 4, '2021-10-30 06:35:37', '2021-10-30 06:35:37'), (12065, 4, '2021-10-30 06:35:37', '2021-10-30 06:35:37'), (12066, 4, '2021-10-30 06:35:37', '2021-10-30 06:35:37'), (12067, 4, '2021-10-30 06:35:37', '2021-10-30 06:35:37'), (12068, 4, '2021-10-30 06:35:37', '2021-10-30 06:35:37'), (12069, 4, '2021-10-30 06:35:38', '2021-10-30 06:35:38'), (12070, 4, '2021-10-30 06:35:38', '2021-10-30 06:35:38'), (12071, 4, '2021-10-30 06:35:38', '2021-10-30 06:35:38'), (12072, 4, '2021-10-30 06:35:39', '2021-10-30 06:35:39'), (12073, 4, '2021-10-30 06:35:39', '2021-10-30 06:35:39'), (12074, 4, '2021-10-30 06:35:39', '2021-10-30 06:35:39'), (12075, 4, '2021-10-30 06:35:39', '2021-10-30 06:35:39'), (12076, 4, '2021-10-30 06:35:39', '2021-10-30 06:35:39'), (12077, 4, '2021-10-30 06:35:39', '2021-10-30 06:35:39'), (12078, 4, '2021-10-30 06:35:40', '2021-10-30 06:35:40'), (12079, 4, '2021-10-30 06:35:40', '2021-10-30 06:35:40'), (12080, 4, '2021-10-30 06:35:40', '2021-10-30 06:35:40'), (12081, 4, '2021-10-30 06:35:40', '2021-10-30 06:35:40'), (12082, 4, '2021-10-30 06:35:40', '2021-10-30 06:35:40'), (12083, 4, '2021-10-30 06:35:41', '2021-10-30 06:35:41'), (12084, 4, '2021-10-30 06:35:41', '2021-10-30 06:35:41'), (12085, 4, '2021-10-30 06:35:41', '2021-10-30 06:35:41'), (12086, 4, '2021-10-30 06:35:41', '2021-10-30 06:35:41'), (12087, 4, '2021-10-30 06:35:41', '2021-10-30 06:35:41'), (12088, 4, '2021-10-30 06:35:42', '2021-10-30 06:35:42'), (12089, 4, '2021-10-30 06:35:42', '2021-10-30 06:35:42'), (12090, 4, '2021-10-30 06:35:42', '2021-10-30 06:35:42'), (12091, 4, '2021-10-30 06:35:42', '2021-10-30 06:35:42'), (12092, 4, '2021-10-30 06:35:42', '2021-10-30 06:35:42'), (12093, 4, '2021-10-30 06:35:43', '2021-10-30 06:35:43'), (12094, 4, '2021-10-30 06:35:43', '2021-10-30 06:35:43'), (12095, 4, '2021-10-30 06:35:43', '2021-10-30 06:35:43'), (12096, 4, '2021-10-30 06:35:43', '2021-10-30 06:35:43'), (12097, 4, '2021-10-30 06:35:43', '2021-10-30 06:35:43'), (12098, 4, '2021-10-30 06:35:44', '2021-10-30 06:35:44'), (12099, 4, '2021-10-30 06:35:44', '2021-10-30 06:35:44'), (12100, 4, '2021-10-30 06:35:44', '2021-10-30 06:35:44'), (12101, 4, '2021-10-30 06:35:44', '2021-10-30 06:35:44'), (12102, 4, '2021-10-30 06:35:45', '2021-10-30 06:35:45'), (12103, 4, '2021-10-30 06:35:45', '2021-10-30 06:35:45'), (12104, 4, '2021-10-30 06:35:45', '2021-10-30 06:35:45'), (12105, 4, '2021-10-30 06:35:45', '2021-10-30 06:35:45'), (12106, 4, '2021-10-30 06:35:45', '2021-10-30 06:35:45'), (12107, 4, '2021-10-30 06:35:46', '2021-10-30 06:35:46'), (12108, 4, '2021-10-30 06:35:46', '2021-10-30 06:35:46'), (12109, 4, '2021-10-30 06:35:46', '2021-10-30 06:35:46'), (12110, 4, '2021-10-30 06:35:46', '2021-10-30 06:35:46'), (12111, 4, '2021-10-30 06:35:46', '2021-10-30 06:35:46'), (12112, 4, '2021-10-30 06:35:46', '2021-10-30 06:35:46'), (12113, 4, '2021-10-30 06:35:47', '2021-10-30 06:35:47'), (12114, 4, '2021-10-30 06:35:47', '2021-10-30 06:35:47'), (12115, 4, '2021-10-30 06:35:47', '2021-10-30 06:35:47'), (12116, 4, '2021-10-30 06:35:47', '2021-10-30 06:35:47'), (12117, 4, '2021-10-30 06:35:47', '2021-10-30 06:35:47'), (12118, 4, '2021-10-30 06:35:48', '2021-10-30 06:35:48'), (12119, 4, '2021-10-30 06:35:48', '2021-10-30 06:35:48'), (12120, 4, '2021-10-30 06:35:48', '2021-10-30 06:35:48'), (12121, 4, '2021-10-30 06:35:48', '2021-10-30 06:35:48'), (12122, 4, '2021-10-30 06:35:48', '2021-10-30 06:35:48'), (12123, 4, '2021-10-30 06:35:49', '2021-10-30 06:35:49'), (12124, 4, '2021-10-30 06:35:49', '2021-10-30 06:35:49'), (12125, 4, '2021-10-30 06:35:49', '2021-10-30 06:35:49'), (12126, 4, '2021-10-30 06:35:49', '2021-10-30 06:35:49'), (12127, 4, '2021-10-30 06:35:49', '2021-10-30 06:35:49'), (12128, 4, '2021-10-30 06:35:50', '2021-10-30 06:35:50'), (12129, 4, '2021-10-30 06:35:50', '2021-10-30 06:35:50'), (12130, 4, '2021-10-30 06:35:50', '2021-10-30 06:35:50'), (12131, 4, '2021-10-30 06:35:51', '2021-10-30 06:35:51'), (12132, 4, '2021-10-30 06:35:51', '2021-10-30 06:35:51'), (12133, 4, '2021-10-30 06:35:51', '2021-10-30 06:35:51'), (12134, 4, '2021-10-30 06:35:52', '2021-10-30 06:35:52'), (12135, 4, '2021-10-30 06:35:52', '2021-10-30 06:35:52'), (12136, 4, '2021-10-30 06:35:52', '2021-10-30 06:35:52'), (12137, 4, '2021-10-30 06:35:52', '2021-10-30 06:35:52'), (12138, 4, '2021-10-30 06:35:52', '2021-10-30 06:35:52'), (12139, 4, '2021-10-30 06:35:53', '2021-10-30 06:35:53'), (12140, 4, '2021-10-30 06:35:53', '2021-10-30 06:35:53'), (12141, 4, '2021-10-30 06:35:53', '2021-10-30 06:35:53'), (12142, 4, '2021-10-30 06:35:53', '2021-10-30 06:35:53'), (12143, 4, '2021-10-30 06:35:54', '2021-10-30 06:35:54'), (12144, 4, '2021-10-30 06:35:54', '2021-10-30 06:35:54'), (12145, 4, '2021-10-30 06:35:54', '2021-10-30 06:35:54'), (12146, 4, '2021-10-30 06:35:54', '2021-10-30 06:35:54'), (12147, 4, '2021-10-30 06:35:54', '2021-10-30 06:35:54'), (12148, 4, '2021-10-30 06:35:54', '2021-10-30 06:35:54'), (12149, 4, '2021-10-30 06:35:55', '2021-10-30 06:35:55'), (12150, 4, '2021-10-30 06:35:55', '2021-10-30 06:35:55'), (12151, 4, '2021-10-30 06:35:55', '2021-10-30 06:35:55'), (12152, 4, '2021-10-30 06:35:55', '2021-10-30 06:35:55'), (12153, 4, '2021-10-30 06:35:56', '2021-10-30 06:35:56'), (12154, 4, '2021-10-30 06:35:56', '2021-10-30 06:35:56'), (12155, 4, '2021-10-30 06:35:56', '2021-10-30 06:35:56'), (12156, 4, '2021-10-30 06:35:56', '2021-10-30 06:35:56'), (12157, 4, '2021-10-30 06:35:56', '2021-10-30 06:35:56'), (12158, 4, '2021-10-30 06:35:57', '2021-10-30 06:35:57'), (12159, 4, '2021-10-30 06:35:57', '2021-10-30 06:35:57'), (12160, 4, '2021-10-30 06:35:57', '2021-10-30 06:35:57'), (12161, 4, '2021-10-30 06:35:57', '2021-10-30 06:35:57'), (12162, 4, '2021-10-30 06:35:57', '2021-10-30 06:35:57'), (12163, 4, '2021-10-30 06:35:58', '2021-10-30 06:35:58'), (12164, 4, '2021-10-30 06:35:58', '2021-10-30 06:35:58'), (12165, 4, '2021-10-30 06:35:58', '2021-10-30 06:35:58'), (12166, 4, '2021-10-30 06:35:58', '2021-10-30 06:35:58'), (12167, 4, '2021-10-30 06:35:58', '2021-10-30 06:35:58'), (12168, 4, '2021-10-30 06:35:59', '2021-10-30 06:35:59'), (12169, 4, '2021-10-30 06:35:59', '2021-10-30 06:35:59'), (12170, 4, '2021-10-30 06:35:59', '2021-10-30 06:35:59'), (12171, 4, '2021-10-30 06:35:59', '2021-10-30 06:35:59'), (12172, 4, '2021-10-30 06:36:00', '2021-10-30 06:36:00'), (12173, 4, '2021-10-30 06:36:00', '2021-10-30 06:36:00'), (12174, 4, '2021-10-30 06:36:00', '2021-10-30 06:36:00'), (12175, 4, '2021-10-30 06:36:00', '2021-10-30 06:36:00'), (12176, 4, '2021-10-30 06:36:00', '2021-10-30 06:36:00'), (12177, 4, '2021-10-30 06:36:01', '2021-10-30 06:36:01'), (12178, 4, '2021-10-30 06:36:01', '2021-10-30 06:36:01'), (12179, 4, '2021-10-30 06:36:01', '2021-10-30 06:36:01'), (12180, 4, '2021-10-30 06:36:01', '2021-10-30 06:36:01'), (12181, 4, '2021-10-30 06:36:02', '2021-10-30 06:36:02'), (12182, 4, '2021-10-30 06:36:02', '2021-10-30 06:36:02'), (12183, 4, '2021-10-30 06:36:02', '2021-10-30 06:36:02'), (12184, 4, '2021-10-30 06:36:02', '2021-10-30 06:36:02'), (12185, 4, '2021-10-30 06:36:03', '2021-10-30 06:36:03'), (12186, 4, '2021-10-30 06:36:03', '2021-10-30 06:36:03'), (12187, 4, '2021-10-30 06:36:03', '2021-10-30 06:36:03'), (12188, 4, '2021-10-30 06:36:03', '2021-10-30 06:36:03'), (12189, 4, '2021-10-30 06:36:03', '2021-10-30 06:36:03'), (12190, 4, '2021-10-30 06:36:03', '2021-10-30 06:36:03'), (12191, 4, '2021-10-30 06:36:04', '2021-10-30 06:36:04'), (12192, 4, '2021-10-30 06:36:04', '2021-10-30 06:36:04'), (12193, 4, '2021-10-30 06:36:04', '2021-10-30 06:36:04'), (12194, 4, '2021-10-30 06:36:04', '2021-10-30 06:36:04'), (12195, 4, '2021-10-30 06:36:04', '2021-10-30 06:36:04'), (12196, 4, '2021-10-30 06:36:05', '2021-10-30 06:36:05'), (12197, 4, '2021-10-30 06:36:05', '2021-10-30 06:36:05'), (12198, 4, '2021-10-30 06:36:05', '2021-10-30 06:36:05'), (12199, 4, '2021-10-30 06:36:05', '2021-10-30 06:36:05'), (12200, 4, '2021-10-30 06:36:06', '2021-10-30 06:36:06'), (12201, 4, '2021-10-30 06:36:06', '2021-10-30 06:36:06'), (12202, 4, '2021-10-30 06:36:06', '2021-10-30 06:36:06'), (12203, 4, '2021-10-30 06:36:06', '2021-10-30 06:36:06'), (12204, 4, '2021-10-30 06:36:06', '2021-10-30 06:36:06'), (12205, 4, '2021-10-30 06:36:07', '2021-10-30 06:36:07'), (12206, 4, '2021-10-30 06:36:07', '2021-10-30 06:36:07'), (12207, 4, '2021-10-30 06:36:07', '2021-10-30 06:36:07'), (12208, 4, '2021-10-30 06:36:07', '2021-10-30 06:36:07'), (12209, 4, '2021-10-30 06:36:07', '2021-10-30 06:36:07'), (12210, 4, '2021-10-30 06:36:08', '2021-10-30 06:36:08'), (12211, 4, '2021-10-30 06:36:08', '2021-10-30 06:36:08'), (12212, 4, '2021-10-30 06:36:08', '2021-10-30 06:36:08'), (12213, 4, '2021-10-30 06:36:08', '2021-10-30 06:36:08'), (12214, 4, '2021-10-30 06:36:09', '2021-10-30 06:36:09'), (12215, 4, '2021-10-30 06:36:09', '2021-10-30 06:36:09'), (12216, 4, '2021-10-30 06:36:10', '2021-10-30 06:36:10'), (12217, 4, '2021-10-30 06:36:10', '2021-10-30 06:36:10'), (12218, 4, '2021-10-30 06:36:10', '2021-10-30 06:36:10'), (12219, 4, '2021-10-30 06:36:11', '2021-10-30 06:36:11'), (12220, 4, '2021-10-30 06:36:11', '2021-10-30 06:36:11'), (12221, 4, '2021-10-30 06:36:11', '2021-10-30 06:36:11'), (12222, 4, '2021-10-30 06:36:11', '2021-10-30 06:36:11'), (12223, 4, '2021-10-30 06:36:11', '2021-10-30 06:36:11'), (12224, 4, '2021-10-30 06:36:12', '2021-10-30 06:36:12'), (12225, 4, '2021-10-30 06:36:12', '2021-10-30 06:36:12'), (12226, 4, '2021-10-30 06:36:12', '2021-10-30 06:36:12'), (12227, 4, '2021-10-30 06:36:12', '2021-10-30 06:36:12'), (12228, 4, '2021-10-30 06:36:12', '2021-10-30 06:36:12'), (12229, 4, '2021-10-30 06:36:13', '2021-10-30 06:36:13'), (12230, 4, '2021-10-30 06:36:13', '2021-10-30 06:36:13'), (12231, 4, '2021-10-30 06:36:13', '2021-10-30 06:36:13'), (12232, 4, '2021-10-30 06:36:13', '2021-10-30 06:36:13'), (12233, 4, '2021-10-30 06:36:14', '2021-10-30 06:36:14'), (12234, 4, '2021-10-30 06:36:14', '2021-10-30 06:36:14'), (12235, 4, '2021-10-30 06:36:14', '2021-10-30 06:36:14'), (12236, 4, '2021-10-30 06:36:14', '2021-10-30 06:36:14'), (12237, 4, '2021-10-30 06:36:14', '2021-10-30 06:36:14'), (12238, 4, '2021-10-30 06:36:15', '2021-10-30 06:36:15'), (12239, 4, '2021-10-30 06:36:15', '2021-10-30 06:36:15'), (12240, 4, '2021-10-30 06:36:16', '2021-10-30 06:36:16'), (12241, 4, '2021-10-30 06:36:16', '2021-10-30 06:36:16'), (12242, 4, '2021-10-30 06:36:16', '2021-10-30 06:36:16'), (12243, 4, '2021-10-30 06:36:39', '2021-10-30 06:36:39'), (12244, 4, '2021-10-30 06:36:41', '2021-10-30 06:36:41'), (12245, 4, '2021-10-30 06:36:41', '2021-10-30 06:36:41'), (12246, 4, '2021-10-30 06:36:41', '2021-10-30 06:36:41'), (12247, 4, '2021-10-30 06:36:41', '2021-10-30 06:36:41'), (12248, 4, '2021-10-30 06:36:42', '2021-10-30 06:36:42'), (12249, 4, '2021-10-30 06:36:42', '2021-10-30 06:36:42'), (12250, 4, '2021-10-30 06:36:42', '2021-10-30 06:36:42'), (12251, 4, '2021-10-30 06:36:42', '2021-10-30 06:36:42'), (12252, 4, '2021-10-30 06:36:42', '2021-10-30 06:36:42'), (12253, 4, '2021-10-30 06:36:43', '2021-10-30 06:36:43'), (12254, 4, '2021-10-30 06:36:43', '2021-10-30 06:36:43'), (12255, 4, '2021-10-30 06:36:43', '2021-10-30 06:36:43'), (12256, 4, '2021-10-30 06:36:43', '2021-10-30 06:36:43'), (12257, 4, '2021-10-30 06:36:43', '2021-10-30 06:36:43'), (12258, 4, '2021-10-30 06:36:44', '2021-10-30 06:36:44'), (12259, 4, '2021-10-30 06:36:44', '2021-10-30 06:36:44'), (12260, 4, '2021-10-30 06:36:44', '2021-10-30 06:36:44'), (12261, 4, '2021-10-30 06:36:44', '2021-10-30 06:36:44'), (12262, 4, '2021-10-30 06:36:44', '2021-10-30 06:36:44'), (12263, 4, '2021-10-30 06:36:45', '2021-10-30 06:36:45'), (12264, 4, '2021-10-30 06:36:45', '2021-10-30 06:36:45'), (12265, 4, '2021-10-30 06:36:45', '2021-10-30 06:36:45'), (12266, 4, '2021-10-30 06:36:45', '2021-10-30 06:36:45'), (12267, 4, '2021-10-30 06:36:45', '2021-10-30 06:36:45'), (12268, 4, '2021-10-30 06:36:46', '2021-10-30 06:36:46'), (12269, 4, '2021-10-30 06:36:46', '2021-10-30 06:36:46'), (12270, 4, '2021-10-30 06:36:46', '2021-10-30 06:36:46'), (12271, 4, '2021-10-30 06:36:46', '2021-10-30 06:36:46'), (12272, 4, '2021-10-30 06:36:47', '2021-10-30 06:36:47'), (12273, 4, '2021-10-30 06:36:47', '2021-10-30 06:36:47'), (12274, 4, '2021-10-30 06:36:47', '2021-10-30 06:36:47'), (12275, 4, '2021-10-30 06:36:47', '2021-10-30 06:36:47'), (12276, 4, '2021-10-30 06:36:48', '2021-10-30 06:36:48'), (12277, 4, '2021-10-30 06:36:48', '2021-10-30 06:36:48'), (12278, 4, '2021-10-30 06:36:48', '2021-10-30 06:36:48'), (12279, 4, '2021-10-30 06:36:48', '2021-10-30 06:36:48'), (12280, 4, '2021-10-30 06:36:48', '2021-10-30 06:36:48'), (12281, 4, '2021-10-30 06:36:48', '2021-10-30 06:36:48'), (12282, 4, '2021-10-30 06:36:49', '2021-10-30 06:36:49'), (12283, 4, '2021-10-30 06:36:49', '2021-10-30 06:36:49'), (12284, 4, '2021-10-30 06:36:49', '2021-10-30 06:36:49'), (12285, 4, '2021-10-30 06:36:49', '2021-10-30 06:36:49'), (12286, 4, '2021-10-30 06:36:50', '2021-10-30 06:36:50'), (12287, 4, '2021-10-30 06:36:50', '2021-10-30 06:36:50'), (12288, 4, '2021-10-30 06:36:50', '2021-10-30 06:36:50'), (12289, 4, '2021-10-30 06:36:50', '2021-10-30 06:36:50'), (12290, 4, '2021-10-30 06:36:50', '2021-10-30 06:36:50'), (12291, 4, '2021-10-30 06:36:50', '2021-10-30 06:36:50'), (12292, 4, '2021-10-30 06:36:51', '2021-10-30 06:36:51'), (12293, 4, '2021-10-30 06:36:51', '2021-10-30 06:36:51'), (12294, 4, '2021-10-30 06:36:51', '2021-10-30 06:36:51'), (12295, 4, '2021-10-30 06:36:51', '2021-10-30 06:36:51'), (12296, 4, '2021-10-30 06:36:51', '2021-10-30 06:36:51'), (12297, 4, '2021-10-30 06:36:53', '2021-10-30 06:36:53'), (12298, 4, '2021-10-30 06:36:53', '2021-10-30 06:36:53'), (12299, 4, '2021-10-30 06:36:53', '2021-10-30 06:36:53'), (12300, 4, '2021-10-30 06:36:53', '2021-10-30 06:36:53'), (12301, 4, '2021-10-30 06:36:54', '2021-10-30 06:36:54'), (12302, 4, '2021-10-30 06:36:54', '2021-10-30 06:36:54'), (12303, 4, '2021-10-30 06:36:55', '2021-10-30 06:36:55'), (12304, 4, '2021-10-30 06:36:55', '2021-10-30 06:36:55'), (12305, 4, '2021-10-30 06:36:55', '2021-10-30 06:36:55'), (12306, 4, '2021-10-30 06:36:56', '2021-10-30 06:36:56'), (12307, 4, '2021-10-30 06:36:56', '2021-10-30 06:36:56'), (12308, 4, '2021-10-30 06:36:56', '2021-10-30 06:36:56'), (12309, 4, '2021-10-30 06:36:56', '2021-10-30 06:36:56'), (12310, 4, '2021-10-30 06:36:57', '2021-10-30 06:36:57'), (12311, 4, '2021-10-30 06:36:57', '2021-10-30 06:36:57'), (12312, 4, '2021-10-30 06:36:57', '2021-10-30 06:36:57'), (12313, 4, '2021-10-30 06:36:57', '2021-10-30 06:36:57'), (12314, 4, '2021-10-30 06:36:58', '2021-10-30 06:36:58'), (12315, 4, '2021-10-30 06:36:58', '2021-10-30 06:36:58'), (12316, 4, '2021-10-30 06:36:58', '2021-10-30 06:36:58'), (12317, 4, '2021-10-30 06:36:59', '2021-10-30 06:36:59'), (12318, 4, '2021-10-30 06:36:59', '2021-10-30 06:36:59'), (12319, 4, '2021-10-30 06:36:59', '2021-10-30 06:36:59'), (12320, 4, '2021-10-30 06:36:59', '2021-10-30 06:36:59'), (12321, 4, '2021-10-30 06:37:00', '2021-10-30 06:37:00'), (12322, 4, '2021-10-30 06:37:00', '2021-10-30 06:37:00'), (12323, 4, '2021-10-30 06:37:00', '2021-10-30 06:37:00'), (12324, 4, '2021-10-30 06:37:00', '2021-10-30 06:37:00'), (12325, 4, '2021-10-30 06:37:00', '2021-10-30 06:37:00'), (12326, 4, '2021-10-30 06:37:01', '2021-10-30 06:37:01'), (12327, 4, '2021-10-30 06:37:01', '2021-10-30 06:37:01'), (12328, 4, '2021-10-30 06:37:01', '2021-10-30 06:37:01'), (12329, 4, '2021-10-30 06:37:01', '2021-10-30 06:37:01'), (12330, 4, '2021-10-30 06:37:01', '2021-10-30 06:37:01'), (12331, 4, '2021-10-30 06:37:02', '2021-10-30 06:37:02'), (12332, 4, '2021-10-30 06:37:02', '2021-10-30 06:37:02'), (12333, 4, '2021-10-30 06:37:02', '2021-10-30 06:37:02'), (12334, 4, '2021-10-30 06:37:02', '2021-10-30 06:37:02'), (12335, 4, '2021-10-30 06:37:03', '2021-10-30 06:37:03'), (12336, 4, '2021-10-30 06:37:03', '2021-10-30 06:37:03'), (12337, 4, '2021-10-30 06:37:03', '2021-10-30 06:37:03'), (12338, 4, '2021-10-30 06:37:03', '2021-10-30 06:37:03'), (12339, 4, '2021-10-30 06:37:03', '2021-10-30 06:37:03'), (12340, 4, '2021-10-30 06:37:04', '2021-10-30 06:37:04'), (12341, 4, '2021-10-30 06:37:04', '2021-10-30 06:37:04'), (12342, 4, '2021-10-30 06:37:04', '2021-10-30 06:37:04'), (12343, 4, '2021-10-30 06:37:05', '2021-10-30 06:37:05'), (12344, 4, '2021-10-30 06:37:05', '2021-10-30 06:37:05'), (12345, 4, '2021-10-30 06:37:05', '2021-10-30 06:37:05'), (12346, 4, '2021-10-30 06:37:05', '2021-10-30 06:37:05'), (12347, 4, '2021-10-30 06:37:05', '2021-10-30 06:37:05'), (12348, 4, '2021-10-30 06:37:06', '2021-10-30 06:37:06'), (12349, 4, '2021-10-30 06:37:06', '2021-10-30 06:37:06'), (12350, 4, '2021-10-30 06:37:06', '2021-10-30 06:37:06'), (12351, 4, '2021-10-30 06:37:06', '2021-10-30 06:37:06'), (12352, 4, '2021-10-30 06:37:07', '2021-10-30 06:37:07'), (12353, 4, '2021-10-30 06:37:07', '2021-10-30 06:37:07'), (12354, 4, '2021-10-30 06:37:07', '2021-10-30 06:37:07'), (12355, 4, '2021-10-30 06:37:07', '2021-10-30 06:37:07'), (12356, 4, '2021-10-30 06:37:07', '2021-10-30 06:37:07'), (12357, 4, '2021-10-30 06:37:08', '2021-10-30 06:37:08'), (12358, 4, '2021-10-30 06:37:08', '2021-10-30 06:37:08'), (12359, 4, '2021-10-30 06:37:08', '2021-10-30 06:37:08'), (12360, 4, '2021-10-30 06:37:08', '2021-10-30 06:37:08'), (12361, 4, '2021-10-30 06:37:09', '2021-10-30 06:37:09'), (12362, 4, '2021-10-30 06:37:09', '2021-10-30 06:37:09'), (12363, 4, '2021-10-30 06:37:09', '2021-10-30 06:37:09'), (12364, 4, '2021-10-30 06:37:09', '2021-10-30 06:37:09'), (12365, 4, '2021-10-30 06:37:10', '2021-10-30 06:37:10'), (12366, 4, '2021-10-30 06:37:10', '2021-10-30 06:37:10'), (12367, 4, '2021-10-30 06:37:10', '2021-10-30 06:37:10'), (12368, 4, '2021-10-30 06:37:11', '2021-10-30 06:37:11'), (12369, 4, '2021-10-30 06:37:11', '2021-10-30 06:37:11'), (12370, 4, '2021-10-30 06:37:11', '2021-10-30 06:37:11'), (12371, 4, '2021-10-30 06:37:11', '2021-10-30 06:37:11'), (12372, 4, '2021-10-30 06:37:11', '2021-10-30 06:37:11'), (12373, 4, '2021-10-30 06:37:12', '2021-10-30 06:37:12'), (12374, 4, '2021-10-30 06:37:12', '2021-10-30 06:37:12'), (12375, 4, '2021-10-30 06:37:12', '2021-10-30 06:37:12'), (12376, 4, '2021-10-30 06:37:12', '2021-10-30 06:37:12'), (12377, 4, '2021-10-30 06:37:13', '2021-10-30 06:37:13'), (12378, 4, '2021-10-30 06:37:13', '2021-10-30 06:37:13'), (12379, 4, '2021-10-30 06:37:13', '2021-10-30 06:37:13'), (12380, 4, '2021-10-30 06:37:13', '2021-10-30 06:37:13'), (12381, 4, '2021-10-30 06:37:13', '2021-10-30 06:37:13'), (12382, 4, '2021-10-30 06:37:14', '2021-10-30 06:37:14'), (12383, 4, '2021-10-30 06:37:14', '2021-10-30 06:37:14'), (12384, 4, '2021-10-30 06:37:14', '2021-10-30 06:37:14'), (12385, 4, '2021-10-30 06:37:14', '2021-10-30 06:37:14'), (12386, 4, '2021-10-30 06:37:15', '2021-10-30 06:37:15'), (12387, 4, '2021-10-30 06:37:15', '2021-10-30 06:37:15'), (12388, 4, '2021-10-30 06:37:15', '2021-10-30 06:37:15'), (12389, 4, '2021-10-30 06:37:15', '2021-10-30 06:37:15'), (12390, 4, '2021-10-30 06:37:15', '2021-10-30 06:37:15'), (12391, 4, '2021-10-30 06:37:16', '2021-10-30 06:37:16'), (12392, 4, '2021-10-30 06:37:16', '2021-10-30 06:37:16'), (12393, 4, '2021-10-30 06:37:16', '2021-10-30 06:37:16'), (12394, 4, '2021-10-30 06:37:16', '2021-10-30 06:37:16'), (12395, 4, '2021-10-30 06:37:17', '2021-10-30 06:37:17'), (12396, 4, '2021-10-30 06:37:17', '2021-10-30 06:37:17'), (12397, 4, '2021-10-30 06:37:17', '2021-10-30 06:37:17'), (12398, 4, '2021-10-30 06:37:18', '2021-10-30 06:37:18'), (12399, 4, '2021-10-30 06:37:18', '2021-10-30 06:37:18'), (12400, 4, '2021-10-30 06:37:18', '2021-10-30 06:37:18'), (12401, 4, '2021-10-30 06:37:18', '2021-10-30 06:37:18'), (12402, 4, '2021-10-30 06:37:18', '2021-10-30 06:37:18'), (12403, 4, '2021-10-30 06:37:19', '2021-10-30 06:37:19'), (12404, 4, '2021-10-30 06:37:19', '2021-10-30 06:37:19'), (12405, 4, '2021-10-30 06:37:19', '2021-10-30 06:37:19'), (12406, 4, '2021-10-30 06:37:19', '2021-10-30 06:37:19'), (12407, 4, '2021-10-30 06:37:20', '2021-10-30 06:37:20'), (12408, 4, '2021-10-30 06:37:20', '2021-10-30 06:37:20'), (12409, 4, '2021-10-30 06:37:20', '2021-10-30 06:37:20'), (12410, 4, '2021-10-30 06:37:21', '2021-10-30 06:37:21'), (12411, 4, '2021-10-30 06:37:21', '2021-10-30 06:37:21'), (12412, 4, '2021-10-30 06:37:21', '2021-10-30 06:37:21'), (12413, 4, '2021-10-30 06:37:22', '2021-10-30 06:37:22'), (12414, 4, '2021-10-30 06:37:22', '2021-10-30 06:37:22'), (12415, 4, '2021-10-30 06:37:22', '2021-10-30 06:37:22'), (12416, 4, '2021-10-30 06:37:23', '2021-10-30 06:37:23'), (12417, 4, '2021-10-30 06:37:23', '2021-10-30 06:37:23'), (12418, 4, '2021-10-30 06:37:24', '2021-10-30 06:37:24'), (12419, 4, '2021-10-30 06:37:24', '2021-10-30 06:37:24'), (12420, 4, '2021-10-30 06:37:24', '2021-10-30 06:37:24'), (12421, 4, '2021-10-30 06:37:24', '2021-10-30 06:37:24'), (12422, 4, '2021-10-30 06:37:25', '2021-10-30 06:37:25'), (12423, 4, '2021-10-30 06:37:25', '2021-10-30 06:37:25'), (12424, 4, '2021-10-30 06:37:26', '2021-10-30 06:37:26'), (12425, 4, '2021-10-30 06:37:26', '2021-10-30 06:37:26'), (12426, 4, '2021-10-30 06:37:26', '2021-10-30 06:37:26'), (12427, 4, '2021-10-30 06:37:26', '2021-10-30 06:37:26'), (12428, 4, '2021-10-30 06:37:27', '2021-10-30 06:37:27'), (12429, 4, '2021-10-30 06:37:27', '2021-10-30 06:37:27'), (12430, 4, '2021-10-30 06:37:27', '2021-10-30 06:37:27'), (12431, 4, '2021-10-30 06:37:27', '2021-10-30 06:37:27'), (12432, 4, '2021-10-30 06:37:27', '2021-10-30 06:37:27'), (12433, 4, '2021-10-30 06:37:28', '2021-10-30 06:37:28'), (12434, 4, '2021-10-30 06:37:28', '2021-10-30 06:37:28'), (12435, 4, '2021-10-30 06:37:28', '2021-10-30 06:37:28'), (12436, 4, '2021-10-30 06:37:28', '2021-10-30 06:37:28'), (12437, 4, '2021-10-30 06:37:29', '2021-10-30 06:37:29'), (12438, 4, '2021-10-30 06:37:29', '2021-10-30 06:37:29'), (12439, 4, '2021-10-30 06:37:29', '2021-10-30 06:37:29'), (12440, 4, '2021-10-30 06:37:30', '2021-10-30 06:37:30'), (12441, 4, '2021-10-30 06:37:30', '2021-10-30 06:37:30'), (12442, 4, '2021-10-30 06:37:30', '2021-10-30 06:37:30'), (12443, 4, '2021-10-30 06:37:30', '2021-10-30 06:37:30'), (12444, 4, '2021-10-30 06:37:30', '2021-10-30 06:37:30'), (12445, 4, '2021-10-30 06:37:31', '2021-10-30 06:37:31'), (12446, 4, '2021-10-30 06:37:31', '2021-10-30 06:37:31'), (12447, 4, '2021-10-30 06:37:31', '2021-10-30 06:37:31'), (12448, 4, '2021-10-30 06:37:31', '2021-10-30 06:37:31'), (12449, 4, '2021-10-30 06:37:32', '2021-10-30 06:37:32'), (12450, 4, '2021-10-30 06:37:32', '2021-10-30 06:37:32'), (12451, 4, '2021-10-30 06:37:32', '2021-10-30 06:37:32'), (12452, 4, '2021-10-30 06:37:32', '2021-10-30 06:37:32'), (12453, 4, '2021-10-30 06:37:32', '2021-10-30 06:37:32'), (12454, 4, '2021-10-30 06:37:33', '2021-10-30 06:37:33'), (12455, 4, '2021-10-30 06:37:33', '2021-10-30 06:37:33'), (12456, 4, '2021-10-30 06:37:33', '2021-10-30 06:37:33'), (12457, 4, '2021-10-30 06:37:33', '2021-10-30 06:37:33'), (12458, 4, '2021-10-30 06:37:34', '2021-10-30 06:37:34'), (12459, 4, '2021-10-30 06:37:34', '2021-10-30 06:37:34'), (12460, 4, '2021-10-30 06:37:34', '2021-10-30 06:37:34'), (12461, 4, '2021-10-30 06:37:34', '2021-10-30 06:37:34'), (12462, 4, '2021-10-30 06:37:34', '2021-10-30 06:37:34'), (12463, 4, '2021-10-30 06:37:35', '2021-10-30 06:37:35'), (12464, 4, '2021-10-30 06:37:35', '2021-10-30 06:37:35'), (12465, 4, '2021-10-30 06:37:35', '2021-10-30 06:37:35'), (12466, 4, '2021-10-30 06:37:36', '2021-10-30 06:37:36'), (12467, 4, '2021-10-30 06:37:36', '2021-10-30 06:37:36'), (12468, 4, '2021-10-30 06:37:36', '2021-10-30 06:37:36'), (12469, 4, '2021-10-30 06:37:37', '2021-10-30 06:37:37'), (12470, 4, '2021-10-30 06:37:37', '2021-10-30 06:37:37'), (12471, 4, '2021-10-30 06:37:37', '2021-10-30 06:37:37'), (12472, 4, '2021-10-30 06:37:37', '2021-10-30 06:37:37'), (12473, 4, '2021-10-30 06:37:38', '2021-10-30 06:37:38'), (12474, 4, '2021-10-30 06:37:38', '2021-10-30 06:37:38'), (12475, 4, '2021-10-30 06:37:38', '2021-10-30 06:37:38'), (12476, 4, '2021-10-30 06:37:38', '2021-10-30 06:37:38'), (12477, 4, '2021-10-30 06:37:38', '2021-10-30 06:37:38'), (12478, 4, '2021-10-30 06:37:39', '2021-10-30 06:37:39'), (12479, 4, '2021-10-30 06:37:39', '2021-10-30 06:37:39'), (12480, 4, '2021-10-30 06:37:39', '2021-10-30 06:37:39'), (12481, 4, '2021-10-30 06:37:39', '2021-10-30 06:37:39'), (12482, 4, '2021-10-30 06:37:40', '2021-10-30 06:37:40'), (12483, 4, '2021-10-30 06:37:40', '2021-10-30 06:37:40'), (12484, 4, '2021-10-30 06:37:40', '2021-10-30 06:37:40'), (12485, 4, '2021-10-30 06:37:40', '2021-10-30 06:37:40'), (12486, 4, '2021-10-30 06:37:40', '2021-10-30 06:37:40'), (12487, 4, '2021-10-30 06:37:41', '2021-10-30 06:37:41'), (12488, 4, '2021-10-30 06:37:41', '2021-10-30 06:37:41'), (12489, 4, '2021-10-30 06:37:41', '2021-10-30 06:37:41'), (12490, 4, '2021-10-30 06:37:42', '2021-10-30 06:37:42'), (12491, 4, '2021-10-30 06:37:42', '2021-10-30 06:37:42'), (12492, 4, '2021-10-30 06:37:42', '2021-10-30 06:37:42'), (12493, 4, '2021-10-30 06:37:42', '2021-10-30 06:37:42'), (12494, 4, '2021-10-30 06:37:43', '2021-10-30 06:37:43'), (12495, 4, '2021-10-30 06:37:43', '2021-10-30 06:37:43'), (12496, 4, '2021-10-30 06:37:43', '2021-10-30 06:37:43'), (12497, 4, '2021-10-30 06:37:43', '2021-10-30 06:37:43'), (12498, 4, '2021-10-30 06:37:44', '2021-10-30 06:37:44'), (12499, 4, '2021-10-30 06:37:44', '2021-10-30 06:37:44'), (12500, 4, '2021-10-30 06:37:44', '2021-10-30 06:37:44'), (12501, 4, '2021-10-30 06:37:44', '2021-10-30 06:37:44'), (12502, 4, '2021-10-30 06:37:44', '2021-10-30 06:37:44'), (12503, 4, '2021-10-30 06:37:45', '2021-10-30 06:37:45'), (12504, 4, '2021-10-30 06:37:45', '2021-10-30 06:37:45'), (12505, 4, '2021-10-30 06:37:45', '2021-10-30 06:37:45'), (12506, 4, '2021-10-30 06:37:45', '2021-10-30 06:37:45'), (12507, 4, '2021-10-30 06:37:46', '2021-10-30 06:37:46'), (12508, 4, '2021-10-30 06:37:46', '2021-10-30 06:37:46'), (12509, 4, '2021-10-30 06:37:46', '2021-10-30 06:37:46'), (12510, 4, '2021-10-30 06:37:46', '2021-10-30 06:37:46'), (12511, 4, '2021-10-30 06:37:47', '2021-10-30 06:37:47'), (12512, 4, '2021-10-30 06:37:47', '2021-10-30 06:37:47'), (12513, 4, '2021-10-30 06:37:47', '2021-10-30 06:37:47'), (12514, 4, '2021-10-30 06:37:47', '2021-10-30 06:37:47'), (12515, 4, '2021-10-30 06:37:47', '2021-10-30 06:37:47'), (12516, 4, '2021-10-30 06:37:47', '2021-10-30 06:37:47'), (12517, 4, '2021-10-30 06:37:48', '2021-10-30 06:37:48'), (12518, 4, '2021-10-30 06:37:48', '2021-10-30 06:37:48'), (12519, 4, '2021-10-30 06:37:48', '2021-10-30 06:37:48'), (12520, 4, '2021-10-30 06:37:49', '2021-10-30 06:37:49'), (12521, 4, '2021-10-30 06:37:49', '2021-10-30 06:37:49'), (12522, 4, '2021-10-30 06:37:49', '2021-10-30 06:37:49'), (12523, 4, '2021-10-30 06:37:49', '2021-10-30 06:37:49'), (12524, 4, '2021-10-30 06:37:49', '2021-10-30 06:37:49'), (12525, 4, '2021-10-30 06:37:50', '2021-10-30 06:37:50'), (12526, 4, '2021-10-30 06:37:50', '2021-10-30 06:37:50'), (12527, 4, '2021-10-30 06:37:50', '2021-10-30 06:37:50'), (12528, 4, '2021-10-30 06:37:50', '2021-10-30 06:37:50'), (12529, 4, '2021-10-30 06:37:51', '2021-10-30 06:37:51'), (12530, 4, '2021-10-30 06:37:51', '2021-10-30 06:37:51'), (12531, 4, '2021-10-30 06:37:51', '2021-10-30 06:37:51'), (12532, 4, '2021-10-30 06:37:51', '2021-10-30 06:37:51'), (12533, 4, '2021-10-30 06:37:52', '2021-10-30 06:37:52'), (12534, 4, '2021-10-30 06:37:52', '2021-10-30 06:37:52'), (12535, 4, '2021-10-30 06:37:52', '2021-10-30 06:37:52'), (12536, 4, '2021-10-30 06:37:52', '2021-10-30 06:37:52'), (12537, 4, '2021-10-30 06:37:53', '2021-10-30 06:37:53'), (12538, 4, '2021-10-30 06:37:53', '2021-10-30 06:37:53'), (12539, 4, '2021-10-30 06:37:53', '2021-10-30 06:37:53'), (12540, 4, '2021-10-30 06:37:53', '2021-10-30 06:37:53'), (12541, 4, '2021-10-30 06:37:54', '2021-10-30 06:37:54'), (12542, 4, '2021-10-30 06:37:54', '2021-10-30 06:37:54'), (12543, 4, '2021-10-30 06:37:54', '2021-10-30 06:37:54'), (12544, 4, '2021-10-30 06:37:54', '2021-10-30 06:37:54'), (12545, 4, '2021-10-30 06:37:54', '2021-10-30 06:37:54'), (12546, 4, '2021-10-30 06:37:55', '2021-10-30 06:37:55'), (12547, 4, '2021-10-30 06:37:55', '2021-10-30 06:37:55'), (12548, 4, '2021-10-30 06:37:55', '2021-10-30 06:37:55'), (12549, 4, '2021-10-30 06:37:55', '2021-10-30 06:37:55'), (12550, 4, '2021-10-30 06:37:56', '2021-10-30 06:37:56'), (12551, 4, '2021-10-31 06:38:02', '2021-10-31 06:38:02'), (12552, 4, '2021-10-31 06:38:04', '2021-10-31 06:38:04'), (12553, 4, '2021-10-31 06:38:04', '2021-10-31 06:38:04'), (12554, 4, '2021-10-31 06:38:04', '2021-10-31 06:38:04'), (12555, 4, '2021-10-31 06:38:04', '2021-10-31 06:38:04'), (12556, 4, '2021-10-31 06:38:04', '2021-10-31 06:38:04'), (12557, 4, '2021-10-31 06:38:05', '2021-10-31 06:38:05'), (12558, 4, '2021-10-31 06:38:05', '2021-10-31 06:38:05'), (12559, 4, '2021-10-31 06:38:05', '2021-10-31 06:38:05'), (12560, 4, '2021-10-31 06:38:05', '2021-10-31 06:38:05'), (12561, 4, '2021-10-31 06:38:06', '2021-10-31 06:38:06'), (12562, 4, '2021-10-31 06:38:06', '2021-10-31 06:38:06'), (12563, 4, '2021-10-31 06:38:06', '2021-10-31 06:38:06'), (12564, 4, '2021-10-31 06:38:06', '2021-10-31 06:38:06'), (12565, 4, '2021-10-31 06:38:06', '2021-10-31 06:38:06'), (12566, 4, '2021-10-31 06:38:06', '2021-10-31 06:38:06'), (12567, 4, '2021-10-31 06:38:07', '2021-10-31 06:38:07'), (12568, 4, '2021-10-31 06:38:07', '2021-10-31 06:38:07'), (12569, 4, '2021-10-31 06:38:07', '2021-10-31 06:38:07'), (12570, 4, '2021-10-31 06:38:07', '2021-10-31 06:38:07'), (12571, 4, '2021-10-31 06:38:07', '2021-10-31 06:38:07'), (12572, 4, '2021-10-31 06:38:08', '2021-10-31 06:38:08'), (12573, 4, '2021-10-31 06:38:08', '2021-10-31 06:38:08'), (12574, 4, '2021-10-31 06:38:08', '2021-10-31 06:38:08'), (12575, 4, '2021-10-31 06:38:08', '2021-10-31 06:38:08'), (12576, 4, '2021-10-31 06:38:08', '2021-10-31 06:38:08'), (12577, 4, '2021-10-31 06:38:09', '2021-10-31 06:38:09'), (12578, 4, '2021-10-31 06:38:09', '2021-10-31 06:38:09'), (12579, 4, '2021-10-31 06:38:09', '2021-10-31 06:38:09'), (12580, 4, '2021-10-31 06:38:09', '2021-10-31 06:38:09'), (12581, 4, '2021-10-31 06:38:10', '2021-10-31 06:38:10'), (12582, 4, '2021-10-31 06:38:10', '2021-10-31 06:38:10'), (12583, 4, '2021-10-31 06:38:10', '2021-10-31 06:38:10'), (12584, 4, '2021-10-31 06:38:11', '2021-10-31 06:38:11'), (12585, 4, '2021-10-31 06:38:11', '2021-10-31 06:38:11'), (12586, 4, '2021-10-31 06:38:11', '2021-10-31 06:38:11'), (12587, 4, '2021-10-31 06:38:11', '2021-10-31 06:38:11'), (12588, 4, '2021-10-31 06:38:12', '2021-10-31 06:38:12'), (12589, 4, '2021-10-31 06:38:12', '2021-10-31 06:38:12'), (12590, 4, '2021-10-31 06:38:13', '2021-10-31 06:38:13'), (12591, 4, '2021-10-31 06:38:13', '2021-10-31 06:38:13'), (12592, 4, '2021-10-31 06:38:13', '2021-10-31 06:38:13'), (12593, 4, '2021-10-31 06:38:13', '2021-10-31 06:38:13'), (12594, 4, '2021-10-31 06:38:13', '2021-10-31 06:38:13'), (12595, 4, '2021-10-31 06:38:13', '2021-10-31 06:38:13'), (12596, 4, '2021-10-31 06:38:14', '2021-10-31 06:38:14'), (12597, 4, '2021-10-31 06:38:14', '2021-10-31 06:38:14'), (12598, 4, '2021-10-31 06:38:14', '2021-10-31 06:38:14'), (12599, 4, '2021-10-31 06:38:14', '2021-10-31 06:38:14'), (12600, 4, '2021-10-31 06:38:15', '2021-10-31 06:38:15'), (12601, 4, '2021-10-31 06:38:15', '2021-10-31 06:38:15'), (12602, 4, '2021-10-31 06:38:15', '2021-10-31 06:38:15'), (12603, 4, '2021-10-31 06:38:15', '2021-10-31 06:38:15'), (12604, 4, '2021-10-31 06:38:16', '2021-10-31 06:38:16'), (12605, 4, '2021-10-31 06:38:16', '2021-10-31 06:38:16'), (12606, 4, '2021-10-31 06:38:16', '2021-10-31 06:38:16'), (12607, 4, '2021-10-31 06:38:16', '2021-10-31 06:38:16'), (12608, 4, '2021-10-31 06:38:17', '2021-10-31 06:38:17'), (12609, 4, '2021-10-31 06:38:17', '2021-10-31 06:38:17'), (12610, 4, '2021-10-31 06:38:17', '2021-10-31 06:38:17'), (12611, 4, '2021-10-31 06:38:17', '2021-10-31 06:38:17'), (12612, 4, '2021-10-31 06:38:17', '2021-10-31 06:38:17'), (12613, 4, '2021-10-31 06:38:18', '2021-10-31 06:38:18'), (12614, 4, '2021-10-31 06:38:18', '2021-10-31 06:38:18'), (12615, 4, '2021-10-31 06:38:19', '2021-10-31 06:38:19'), (12616, 4, '2021-10-31 06:38:19', '2021-10-31 06:38:19'), (12617, 4, '2021-10-31 06:38:20', '2021-10-31 06:38:20'), (12618, 4, '2021-10-31 06:38:20', '2021-10-31 06:38:20'), (12619, 4, '2021-10-31 06:38:20', '2021-10-31 06:38:20'), (12620, 4, '2021-10-31 06:38:20', '2021-10-31 06:38:20'), (12621, 4, '2021-10-31 06:38:20', '2021-10-31 06:38:20'), (12622, 4, '2021-10-31 06:38:20', '2021-10-31 06:38:20'), (12623, 4, '2021-10-31 06:38:21', '2021-10-31 06:38:21'), (12624, 4, '2021-10-31 06:38:21', '2021-10-31 06:38:21'), (12625, 4, '2021-10-31 06:38:21', '2021-10-31 06:38:21'), (12626, 4, '2021-10-31 06:38:21', '2021-10-31 06:38:21'), (12627, 4, '2021-10-31 06:38:22', '2021-10-31 06:38:22'), (12628, 4, '2021-10-31 06:38:22', '2021-10-31 06:38:22'), (12629, 4, '2021-10-31 06:38:22', '2021-10-31 06:38:22'), (12630, 4, '2021-10-31 06:38:22', '2021-10-31 06:38:22'), (12631, 4, '2021-10-31 06:38:22', '2021-10-31 06:38:22'), (12632, 4, '2021-10-31 06:38:23', '2021-10-31 06:38:23'), (12633, 4, '2021-10-31 06:38:23', '2021-10-31 06:38:23'), (12634, 4, '2021-10-31 06:38:23', '2021-10-31 06:38:23'), (12635, 4, '2021-10-31 06:38:23', '2021-10-31 06:38:23'), (12636, 4, '2021-10-31 06:38:23', '2021-10-31 06:38:23'), (12637, 4, '2021-10-31 06:38:23', '2021-10-31 06:38:23'), (12638, 4, '2021-10-31 06:38:24', '2021-10-31 06:38:24'), (12639, 4, '2021-10-31 06:38:24', '2021-10-31 06:38:24'), (12640, 4, '2021-10-31 06:38:24', '2021-10-31 06:38:24'), (12641, 4, '2021-10-31 06:38:24', '2021-10-31 06:38:24'), (12642, 4, '2021-10-31 06:38:25', '2021-10-31 06:38:25'), (12643, 4, '2021-10-31 06:38:25', '2021-10-31 06:38:25'), (12644, 4, '2021-10-31 06:38:25', '2021-10-31 06:38:25'), (12645, 4, '2021-10-31 06:38:26', '2021-10-31 06:38:26'), (12646, 4, '2021-10-31 06:38:26', '2021-10-31 06:38:26'), (12647, 4, '2021-10-31 06:38:26', '2021-10-31 06:38:26'), (12648, 4, '2021-10-31 06:38:26', '2021-10-31 06:38:26'), (12649, 4, '2021-10-31 06:38:26', '2021-10-31 06:38:26'), (12650, 4, '2021-10-31 06:38:27', '2021-10-31 06:38:27'), (12651, 4, '2021-10-31 06:38:27', '2021-10-31 06:38:27'), (12652, 4, '2021-10-31 06:38:27', '2021-10-31 06:38:27'), (12653, 4, '2021-10-31 06:38:27', '2021-10-31 06:38:27'), (12654, 4, '2021-10-31 06:38:27', '2021-10-31 06:38:27'), (12655, 4, '2021-10-31 06:38:28', '2021-10-31 06:38:28'), (12656, 4, '2021-10-31 06:38:28', '2021-10-31 06:38:28'), (12657, 4, '2021-10-31 06:38:28', '2021-10-31 06:38:28'), (12658, 4, '2021-10-31 06:38:28', '2021-10-31 06:38:28'), (12659, 4, '2021-10-31 06:38:28', '2021-10-31 06:38:28'), (12660, 4, '2021-10-31 06:38:29', '2021-10-31 06:38:29'), (12661, 4, '2021-10-31 06:38:29', '2021-10-31 06:38:29'), (12662, 4, '2021-10-31 06:38:29', '2021-10-31 06:38:29'), (12663, 4, '2021-10-31 06:38:29', '2021-10-31 06:38:29'), (12664, 4, '2021-10-31 06:38:29', '2021-10-31 06:38:29'), (12665, 4, '2021-10-31 06:38:29', '2021-10-31 06:38:29'), (12666, 4, '2021-10-31 06:38:30', '2021-10-31 06:38:30'), (12667, 4, '2021-10-31 06:38:30', '2021-10-31 06:38:30'), (12668, 4, '2021-10-31 06:38:30', '2021-10-31 06:38:30'), (12669, 4, '2021-10-31 06:38:30', '2021-10-31 06:38:30'), (12670, 4, '2021-10-31 06:38:30', '2021-10-31 06:38:30'), (12671, 4, '2021-10-31 06:38:31', '2021-10-31 06:38:31'), (12672, 4, '2021-10-31 06:38:31', '2021-10-31 06:38:31'), (12673, 4, '2021-10-31 06:38:31', '2021-10-31 06:38:31'), (12674, 4, '2021-10-31 06:38:31', '2021-10-31 06:38:31'), (12675, 4, '2021-10-31 06:38:32', '2021-10-31 06:38:32'), (12676, 4, '2021-10-31 06:38:32', '2021-10-31 06:38:32'), (12677, 4, '2021-10-31 06:38:32', '2021-10-31 06:38:32'), (12678, 4, '2021-10-31 06:38:32', '2021-10-31 06:38:32'), (12679, 4, '2021-10-31 06:38:32', '2021-10-31 06:38:32'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (12680, 4, '2021-10-31 06:38:33', '2021-10-31 06:38:33'), (12681, 4, '2021-10-31 06:38:33', '2021-10-31 06:38:33'), (12682, 4, '2021-10-31 06:38:33', '2021-10-31 06:38:33'), (12683, 4, '2021-10-31 06:38:33', '2021-10-31 06:38:33'), (12684, 4, '2021-10-31 06:38:33', '2021-10-31 06:38:33'), (12685, 4, '2021-10-31 06:38:34', '2021-10-31 06:38:34'), (12686, 4, '2021-10-31 06:38:34', '2021-10-31 06:38:34'), (12687, 4, '2021-10-31 06:38:34', '2021-10-31 06:38:34'), (12688, 4, '2021-10-31 06:38:34', '2021-10-31 06:38:34'), (12689, 4, '2021-10-31 06:38:35', '2021-10-31 06:38:35'), (12690, 4, '2021-10-31 06:38:35', '2021-10-31 06:38:35'), (12691, 4, '2021-10-31 06:38:35', '2021-10-31 06:38:35'), (12692, 4, '2021-10-31 06:38:35', '2021-10-31 06:38:35'), (12693, 4, '2021-10-31 06:38:36', '2021-10-31 06:38:36'), (12694, 4, '2021-10-31 06:38:36', '2021-10-31 06:38:36'), (12695, 4, '2021-10-31 06:38:36', '2021-10-31 06:38:36'), (12696, 4, '2021-10-31 06:38:36', '2021-10-31 06:38:36'), (12697, 4, '2021-10-31 06:38:36', '2021-10-31 06:38:36'), (12698, 4, '2021-10-31 06:38:37', '2021-10-31 06:38:37'), (12699, 4, '2021-10-31 06:38:37', '2021-10-31 06:38:37'), (12700, 4, '2021-10-31 06:38:37', '2021-10-31 06:38:37'), (12701, 4, '2021-10-31 06:38:37', '2021-10-31 06:38:37'), (12702, 4, '2021-10-31 06:38:37', '2021-10-31 06:38:37'), (12703, 4, '2021-10-31 06:38:38', '2021-10-31 06:38:38'), (12704, 4, '2021-10-31 06:38:38', '2021-10-31 06:38:38'), (12705, 4, '2021-10-31 06:38:38', '2021-10-31 06:38:38'), (12706, 4, '2021-10-31 06:38:38', '2021-10-31 06:38:38'), (12707, 4, '2021-10-31 06:38:39', '2021-10-31 06:38:39'), (12708, 4, '2021-10-31 06:38:39', '2021-10-31 06:38:39'), (12709, 4, '2021-10-31 06:38:39', '2021-10-31 06:38:39'), (12710, 4, '2021-10-31 06:38:39', '2021-10-31 06:38:39'), (12711, 4, '2021-10-31 06:38:40', '2021-10-31 06:38:40'), (12712, 4, '2021-10-31 06:38:40', '2021-10-31 06:38:40'), (12713, 4, '2021-10-31 06:38:40', '2021-10-31 06:38:40'), (12714, 4, '2021-10-31 06:38:41', '2021-10-31 06:38:41'), (12715, 4, '2021-10-31 06:38:41', '2021-10-31 06:38:41'), (12716, 4, '2021-10-31 06:38:41', '2021-10-31 06:38:41'), (12717, 4, '2021-10-31 06:38:41', '2021-10-31 06:38:41'), (12718, 4, '2021-10-31 06:38:42', '2021-10-31 06:38:42'), (12719, 4, '2021-10-31 06:38:42', '2021-10-31 06:38:42'), (12720, 4, '2021-10-31 06:38:42', '2021-10-31 06:38:42'), (12721, 4, '2021-10-31 06:38:42', '2021-10-31 06:38:42'), (12722, 4, '2021-10-31 06:38:43', '2021-10-31 06:38:43'), (12723, 4, '2021-10-31 06:38:43', '2021-10-31 06:38:43'), (12724, 4, '2021-10-31 06:38:43', '2021-10-31 06:38:43'), (12725, 4, '2021-10-31 06:38:43', '2021-10-31 06:38:43'), (12726, 4, '2021-10-31 06:38:43', '2021-10-31 06:38:43'), (12727, 4, '2021-10-31 06:38:44', '2021-10-31 06:38:44'), (12728, 4, '2021-10-31 06:38:44', '2021-10-31 06:38:44'), (12729, 4, '2021-10-31 06:38:44', '2021-10-31 06:38:44'), (12730, 4, '2021-10-31 06:38:44', '2021-10-31 06:38:44'), (12731, 4, '2021-10-31 06:38:44', '2021-10-31 06:38:44'), (12732, 4, '2021-10-31 06:38:45', '2021-10-31 06:38:45'), (12733, 4, '2021-10-31 06:38:45', '2021-10-31 06:38:45'), (12734, 4, '2021-10-31 06:38:45', '2021-10-31 06:38:45'), (12735, 4, '2021-10-31 06:38:45', '2021-10-31 06:38:45'), (12736, 4, '2021-10-31 06:38:45', '2021-10-31 06:38:45'), (12737, 4, '2021-10-31 06:38:46', '2021-10-31 06:38:46'), (12738, 4, '2021-10-31 06:38:46', '2021-10-31 06:38:46'), (12739, 4, '2021-10-31 06:38:46', '2021-10-31 06:38:46'), (12740, 4, '2021-10-31 06:38:46', '2021-10-31 06:38:46'), (12741, 4, '2021-10-31 06:38:47', '2021-10-31 06:38:47'), (12742, 4, '2021-10-31 06:38:47', '2021-10-31 06:38:47'), (12743, 4, '2021-10-31 06:38:47', '2021-10-31 06:38:47'), (12744, 4, '2021-10-31 06:38:47', '2021-10-31 06:38:47'), (12745, 4, '2021-10-31 06:38:47', '2021-10-31 06:38:47'), (12746, 4, '2021-10-31 06:38:47', '2021-10-31 06:38:47'), (12747, 4, '2021-10-31 06:38:48', '2021-10-31 06:38:48'), (12748, 4, '2021-10-31 06:38:48', '2021-10-31 06:38:48'), (12749, 4, '2021-10-31 06:38:48', '2021-10-31 06:38:48'), (12750, 4, '2021-10-31 06:38:48', '2021-10-31 06:38:48'), (12751, 4, '2021-10-31 06:38:48', '2021-10-31 06:38:48'), (12752, 4, '2021-10-31 06:38:49', '2021-10-31 06:38:49'), (12753, 4, '2021-10-31 06:38:49', '2021-10-31 06:38:49'), (12754, 4, '2021-10-31 06:38:50', '2021-10-31 06:38:50'), (12755, 4, '2021-10-31 06:38:50', '2021-10-31 06:38:50'), (12756, 4, '2021-10-31 06:38:50', '2021-10-31 06:38:50'), (12757, 4, '2021-10-31 06:38:50', '2021-10-31 06:38:50'), (12758, 4, '2021-10-31 06:38:50', '2021-10-31 06:38:50'), (12759, 4, '2021-10-31 06:38:51', '2021-10-31 06:38:51'), (12760, 4, '2021-10-31 06:38:51', '2021-10-31 06:38:51'), (12761, 4, '2021-10-31 06:38:51', '2021-10-31 06:38:51'), (12762, 4, '2021-10-31 06:38:51', '2021-10-31 06:38:51'), (12763, 4, '2021-10-31 06:38:52', '2021-10-31 06:38:52'), (12764, 4, '2021-10-31 06:38:52', '2021-10-31 06:38:52'), (12765, 4, '2021-10-31 06:38:52', '2021-10-31 06:38:52'), (12766, 4, '2021-10-31 06:38:52', '2021-10-31 06:38:52'), (12767, 4, '2021-10-31 06:38:52', '2021-10-31 06:38:52'), (12768, 4, '2021-10-31 06:38:52', '2021-10-31 06:38:52'), (12769, 4, '2021-10-31 06:38:53', '2021-10-31 06:38:53'), (12770, 4, '2021-10-31 06:38:53', '2021-10-31 06:38:53'), (12771, 4, '2021-10-31 06:38:53', '2021-10-31 06:38:53'), (12772, 4, '2021-10-31 06:38:53', '2021-10-31 06:38:53'), (12773, 4, '2021-10-31 06:38:53', '2021-10-31 06:38:53'), (12774, 4, '2021-10-31 06:38:54', '2021-10-31 06:38:54'), (12775, 4, '2021-10-31 06:38:54', '2021-10-31 06:38:54'), (12776, 4, '2021-10-31 06:38:54', '2021-10-31 06:38:54'), (12777, 4, '2021-10-31 06:38:54', '2021-10-31 06:38:54'), (12778, 4, '2021-10-31 06:38:54', '2021-10-31 06:38:54'), (12779, 4, '2021-10-31 06:38:55', '2021-10-31 06:38:55'), (12780, 4, '2021-10-31 06:38:55', '2021-10-31 06:38:55'), (12781, 4, '2021-10-31 06:38:55', '2021-10-31 06:38:55'), (12782, 4, '2021-10-31 06:38:56', '2021-10-31 06:38:56'), (12783, 4, '2021-10-31 06:38:56', '2021-10-31 06:38:56'), (12784, 4, '2021-10-31 06:38:56', '2021-10-31 06:38:56'), (12785, 4, '2021-10-31 06:38:56', '2021-10-31 06:38:56'), (12786, 4, '2021-10-31 06:38:56', '2021-10-31 06:38:56'), (12787, 4, '2021-10-31 06:38:56', '2021-10-31 06:38:56'), (12788, 4, '2021-10-31 06:38:57', '2021-10-31 06:38:57'), (12789, 4, '2021-10-31 06:38:57', '2021-10-31 06:38:57'), (12790, 4, '2021-10-31 06:38:57', '2021-10-31 06:38:57'), (12791, 4, '2021-10-31 06:38:57', '2021-10-31 06:38:57'), (12792, 4, '2021-10-31 06:38:58', '2021-10-31 06:38:58'), (12793, 4, '2021-10-31 06:38:58', '2021-10-31 06:38:58'), (12794, 4, '2021-10-31 06:38:58', '2021-10-31 06:38:58'), (12795, 4, '2021-10-31 06:38:58', '2021-10-31 06:38:58'), (12796, 4, '2021-10-31 06:38:58', '2021-10-31 06:38:58'), (12797, 4, '2021-10-31 06:38:58', '2021-10-31 06:38:58'), (12798, 4, '2021-10-31 06:38:59', '2021-10-31 06:38:59'), (12799, 4, '2021-10-31 06:38:59', '2021-10-31 06:38:59'), (12800, 4, '2021-10-31 06:38:59', '2021-10-31 06:38:59'), (12801, 4, '2021-10-31 06:38:59', '2021-10-31 06:38:59'), (12802, 4, '2021-10-31 06:38:59', '2021-10-31 06:38:59'), (12803, 4, '2021-10-31 06:39:00', '2021-10-31 06:39:00'), (12804, 4, '2021-10-31 06:39:00', '2021-10-31 06:39:00'), (12805, 4, '2021-10-31 06:39:00', '2021-10-31 06:39:00'), (12806, 4, '2021-10-31 06:39:00', '2021-10-31 06:39:00'), (12807, 4, '2021-10-31 06:39:00', '2021-10-31 06:39:00'), (12808, 4, '2021-10-31 06:39:01', '2021-10-31 06:39:01'), (12809, 4, '2021-10-31 06:39:01', '2021-10-31 06:39:01'), (12810, 4, '2021-10-31 06:39:01', '2021-10-31 06:39:01'), (12811, 4, '2021-10-31 06:39:01', '2021-10-31 06:39:01'), (12812, 4, '2021-10-31 06:39:02', '2021-10-31 06:39:02'), (12813, 4, '2021-10-31 06:39:02', '2021-10-31 06:39:02'), (12814, 4, '2021-10-31 06:39:02', '2021-10-31 06:39:02'), (12815, 4, '2021-10-31 06:39:02', '2021-10-31 06:39:02'), (12816, 4, '2021-10-31 06:39:02', '2021-10-31 06:39:02'), (12817, 4, '2021-10-31 06:39:03', '2021-10-31 06:39:03'), (12818, 4, '2021-10-31 06:39:03', '2021-10-31 06:39:03'), (12819, 4, '2021-10-31 06:39:03', '2021-10-31 06:39:03'), (12820, 4, '2021-10-31 06:39:03', '2021-10-31 06:39:03'), (12821, 4, '2021-10-31 06:39:03', '2021-10-31 06:39:03'), (12822, 4, '2021-10-31 06:39:04', '2021-10-31 06:39:04'), (12823, 4, '2021-10-31 06:39:04', '2021-10-31 06:39:04'), (12824, 4, '2021-10-31 06:39:04', '2021-10-31 06:39:04'), (12825, 4, '2021-10-31 06:39:04', '2021-10-31 06:39:04'), (12826, 4, '2021-10-31 06:39:04', '2021-10-31 06:39:04'), (12827, 4, '2021-10-31 06:39:05', '2021-10-31 06:39:05'), (12828, 4, '2021-10-31 06:39:05', '2021-10-31 06:39:05'), (12829, 4, '2021-10-31 06:39:05', '2021-10-31 06:39:05'), (12830, 4, '2021-10-31 06:39:05', '2021-10-31 06:39:05'), (12831, 4, '2021-10-31 06:39:05', '2021-10-31 06:39:05'), (12832, 4, '2021-10-31 06:39:06', '2021-10-31 06:39:06'), (12833, 4, '2021-10-31 06:39:06', '2021-10-31 06:39:06'), (12834, 4, '2021-10-31 06:39:06', '2021-10-31 06:39:06'), (12835, 4, '2021-10-31 06:39:06', '2021-10-31 06:39:06'), (12836, 4, '2021-10-31 06:39:06', '2021-10-31 06:39:06'), (12837, 4, '2021-10-31 06:39:07', '2021-10-31 06:39:07'), (12838, 4, '2021-10-31 06:39:07', '2021-10-31 06:39:07'), (12839, 4, '2021-10-31 06:39:07', '2021-10-31 06:39:07'), (12840, 4, '2021-10-31 06:39:07', '2021-10-31 06:39:07'), (12841, 4, '2021-10-31 06:39:07', '2021-10-31 06:39:07'), (12842, 4, '2021-10-31 06:39:08', '2021-10-31 06:39:08'), (12843, 4, '2021-10-31 06:39:08', '2021-10-31 06:39:08'), (12844, 4, '2021-10-31 06:39:08', '2021-10-31 06:39:08'), (12845, 4, '2021-10-31 06:39:08', '2021-10-31 06:39:08'), (12846, 4, '2021-10-31 06:39:08', '2021-10-31 06:39:08'), (12847, 4, '2021-10-31 06:39:09', '2021-10-31 06:39:09'), (12848, 4, '2021-10-31 06:39:09', '2021-10-31 06:39:09'), (12849, 4, '2021-10-31 06:39:09', '2021-10-31 06:39:09'), (12850, 4, '2021-10-31 06:39:09', '2021-10-31 06:39:09'), (12851, 4, '2021-10-31 06:39:10', '2021-10-31 06:39:10'), (12852, 4, '2021-10-31 06:39:10', '2021-10-31 06:39:10'), (12853, 4, '2021-10-31 06:39:10', '2021-10-31 06:39:10'), (12854, 4, '2021-10-31 06:39:10', '2021-10-31 06:39:10'), (12855, 4, '2021-10-31 06:39:10', '2021-10-31 06:39:10'), (12856, 4, '2021-10-31 06:39:11', '2021-10-31 06:39:11'), (12857, 4, '2021-10-31 06:39:11', '2021-10-31 06:39:11'), (12858, 4, '2021-10-31 06:39:11', '2021-10-31 06:39:11'), (12859, 4, '2021-10-31 06:39:11', '2021-10-31 06:39:11'), (12860, 4, '2021-10-31 06:39:11', '2021-10-31 06:39:11'), (12861, 4, '2021-10-31 06:39:11', '2021-10-31 06:39:11'), (12862, 4, '2021-10-31 06:39:12', '2021-10-31 06:39:12'), (12863, 4, '2021-10-31 06:39:12', '2021-10-31 06:39:12'), (12864, 4, '2021-10-31 06:39:12', '2021-10-31 06:39:12'), (12865, 4, '2021-10-31 06:39:12', '2021-10-31 06:39:12'), (12866, 4, '2021-10-31 06:39:12', '2021-10-31 06:39:12'), (12867, 4, '2021-10-31 06:39:13', '2021-10-31 06:39:13'), (12868, 4, '2021-10-31 06:39:13', '2021-10-31 06:39:13'), (12869, 4, '2021-10-31 06:39:13', '2021-10-31 06:39:13'), (12870, 4, '2021-10-31 06:39:13', '2021-10-31 06:39:13'), (12871, 4, '2021-10-31 06:39:14', '2021-10-31 06:39:14'), (12872, 4, '2021-10-31 06:39:14', '2021-10-31 06:39:14'), (12873, 4, '2021-10-31 06:39:14', '2021-10-31 06:39:14'), (12874, 4, '2021-10-31 06:39:14', '2021-10-31 06:39:14'), (12875, 4, '2021-10-31 06:39:14', '2021-10-31 06:39:14'), (12876, 4, '2021-10-31 06:39:15', '2021-10-31 06:39:15'), (12877, 4, '2021-10-31 06:39:15', '2021-10-31 06:39:15'), (12878, 4, '2021-10-31 06:39:15', '2021-10-31 06:39:15'), (12879, 4, '2021-10-31 06:39:15', '2021-10-31 06:39:15'), (12880, 4, '2021-10-31 06:39:15', '2021-10-31 06:39:15'), (12881, 4, '2021-10-31 06:39:16', '2021-10-31 06:39:16'), (12882, 4, '2021-10-31 06:39:16', '2021-10-31 06:39:16'), (12883, 4, '2021-10-31 06:39:16', '2021-10-31 06:39:16'), (12884, 4, '2021-10-31 06:39:16', '2021-10-31 06:39:16'), (12885, 4, '2021-10-31 06:39:17', '2021-10-31 06:39:17'), (12886, 4, '2021-10-31 06:39:17', '2021-10-31 06:39:17'), (12887, 4, '2021-10-31 06:39:17', '2021-10-31 06:39:17'), (12888, 4, '2021-10-31 06:39:17', '2021-10-31 06:39:17'), (12889, 4, '2021-10-31 06:39:18', '2021-10-31 06:39:18'), (12890, 4, '2021-10-31 06:39:18', '2021-10-31 06:39:18'), (12891, 4, '2021-10-31 06:39:18', '2021-10-31 06:39:18'), (12892, 4, '2021-10-31 06:39:18', '2021-10-31 06:39:18'), (12893, 4, '2021-10-31 06:39:18', '2021-10-31 06:39:18'), (12894, 4, '2021-10-31 06:39:19', '2021-10-31 06:39:19'), (12895, 4, '2021-10-31 06:39:19', '2021-10-31 06:39:19'), (12896, 4, '2021-10-31 06:39:19', '2021-10-31 06:39:19'), (12897, 4, '2021-10-31 06:39:19', '2021-10-31 06:39:19'), (12898, 4, '2021-10-31 06:39:19', '2021-10-31 06:39:19'), (12899, 4, '2021-10-31 06:39:20', '2021-10-31 06:39:20'), (12900, 4, '2021-10-31 06:39:20', '2021-10-31 06:39:20'), (12901, 4, '2021-10-31 06:39:20', '2021-10-31 06:39:20'), (12902, 4, '2021-10-31 06:39:21', '2021-10-31 06:39:21'), (12903, 4, '2021-10-31 06:39:21', '2021-10-31 06:39:21'), (12904, 4, '2021-10-31 06:39:21', '2021-10-31 06:39:21'), (12905, 4, '2021-10-31 06:39:21', '2021-10-31 06:39:21'), (12906, 4, '2021-10-31 06:39:22', '2021-10-31 06:39:22'), (12907, 4, '2021-10-31 06:39:22', '2021-10-31 06:39:22'), (12908, 4, '2021-10-31 06:39:22', '2021-10-31 06:39:22'), (12909, 4, '2021-10-31 06:39:22', '2021-10-31 06:39:22'), (12910, 4, '2021-10-31 06:39:22', '2021-10-31 06:39:22'), (12911, 4, '2021-10-31 06:39:23', '2021-10-31 06:39:23'), (12912, 4, '2021-10-31 06:39:23', '2021-10-31 06:39:23'), (12913, 4, '2021-10-31 06:39:23', '2021-10-31 06:39:23'), (12914, 4, '2021-10-31 06:39:24', '2021-10-31 06:39:24'), (12915, 4, '2021-10-31 06:39:24', '2021-10-31 06:39:24'), (12916, 4, '2021-10-31 06:39:24', '2021-10-31 06:39:24'), (12917, 4, '2021-10-31 06:39:24', '2021-10-31 06:39:24'), (12918, 4, '2021-10-31 06:39:24', '2021-10-31 06:39:24'), (12919, 4, '2021-10-31 06:39:25', '2021-10-31 06:39:25'), (12920, 4, '2021-10-31 06:39:25', '2021-10-31 06:39:25'), (12921, 4, '2021-10-31 06:39:25', '2021-10-31 06:39:25'), (12922, 4, '2021-10-31 06:39:25', '2021-10-31 06:39:25'), (12923, 4, '2021-10-31 06:39:25', '2021-10-31 06:39:25'), (12924, 4, '2021-10-31 06:39:26', '2021-10-31 06:39:26'), (12925, 4, '2021-10-31 06:39:26', '2021-10-31 06:39:26'), (12926, 4, '2021-10-31 06:39:27', '2021-10-31 06:39:27'), (12927, 4, '2021-10-31 06:39:27', '2021-10-31 06:39:27'), (12928, 4, '2021-10-31 06:39:27', '2021-10-31 06:39:27'), (12929, 4, '2021-10-31 06:39:27', '2021-10-31 06:39:27'), (12930, 4, '2021-10-31 06:39:28', '2021-10-31 06:39:28'), (12931, 4, '2021-10-31 06:39:28', '2021-10-31 06:39:28'), (12932, 4, '2021-10-31 06:39:28', '2021-10-31 06:39:28'), (12933, 4, '2021-10-31 06:39:28', '2021-10-31 06:39:28'), (12934, 4, '2021-10-31 06:39:28', '2021-10-31 06:39:28'), (12935, 4, '2021-10-31 06:39:29', '2021-10-31 06:39:29'), (12936, 4, '2021-10-31 06:39:29', '2021-10-31 06:39:29'), (12937, 4, '2021-10-31 06:39:29', '2021-10-31 06:39:29'), (12938, 4, '2021-10-31 06:39:29', '2021-10-31 06:39:29'), (12939, 4, '2021-10-31 06:39:30', '2021-10-31 06:39:30'), (12940, 4, '2021-10-31 06:39:30', '2021-10-31 06:39:30'), (12941, 4, '2021-10-31 06:39:30', '2021-10-31 06:39:30'), (12942, 4, '2021-10-31 06:39:31', '2021-10-31 06:39:31'), (12943, 4, '2021-10-31 06:39:31', '2021-10-31 06:39:31'), (12944, 4, '2021-10-31 06:39:31', '2021-10-31 06:39:31'), (12945, 4, '2021-10-31 06:39:31', '2021-10-31 06:39:31'), (12946, 4, '2021-10-31 06:39:31', '2021-10-31 06:39:31'), (12947, 4, '2021-10-31 06:39:32', '2021-10-31 06:39:32'), (12948, 4, '2021-10-31 06:39:32', '2021-10-31 06:39:32'), (12949, 4, '2021-10-31 06:39:32', '2021-10-31 06:39:32'), (12950, 4, '2021-10-31 06:39:33', '2021-10-31 06:39:33'), (12951, 4, '2021-10-31 06:39:33', '2021-10-31 06:39:33'), (12952, 4, '2021-10-31 06:39:33', '2021-10-31 06:39:33'), (12953, 4, '2021-10-31 06:39:33', '2021-10-31 06:39:33'), (12954, 4, '2021-10-31 06:39:33', '2021-10-31 06:39:33'), (12955, 4, '2021-10-31 06:39:34', '2021-10-31 06:39:34'), (12956, 4, '2021-10-31 06:39:34', '2021-10-31 06:39:34'), (12957, 4, '2021-10-31 06:39:34', '2021-10-31 06:39:34'), (12958, 4, '2021-10-31 06:39:35', '2021-10-31 06:39:35'), (12959, 4, '2021-10-31 06:39:35', '2021-10-31 06:39:35'), (12960, 4, '2021-10-31 06:39:35', '2021-10-31 06:39:35'), (12961, 4, '2021-10-31 06:39:35', '2021-10-31 06:39:35'), (12962, 4, '2021-10-31 06:39:35', '2021-10-31 06:39:35'), (12963, 4, '2021-10-31 06:39:36', '2021-10-31 06:39:36'), (12964, 4, '2021-10-31 06:39:36', '2021-10-31 06:39:36'), (12965, 4, '2021-10-31 06:39:36', '2021-10-31 06:39:36'), (12966, 4, '2021-10-31 06:39:36', '2021-10-31 06:39:36'), (12967, 4, '2021-10-31 06:39:37', '2021-10-31 06:39:37'), (12968, 4, '2021-10-31 06:39:37', '2021-10-31 06:39:37'), (12969, 4, '2021-10-31 06:39:37', '2021-10-31 06:39:37'), (12970, 4, '2021-10-31 06:39:37', '2021-10-31 06:39:37'), (12971, 4, '2021-10-31 06:39:38', '2021-10-31 06:39:38'), (12972, 4, '2021-10-31 06:39:38', '2021-10-31 06:39:38'), (12973, 4, '2021-10-31 06:39:38', '2021-10-31 06:39:38'), (12974, 4, '2021-10-31 06:39:39', '2021-10-31 06:39:39'), (12975, 4, '2021-10-31 06:39:39', '2021-10-31 06:39:39'), (12976, 4, '2021-10-31 06:39:39', '2021-10-31 06:39:39'), (12977, 4, '2021-10-31 06:39:40', '2021-10-31 06:39:40'), (12978, 4, '2021-10-31 06:39:40', '2021-10-31 06:39:40'), (12979, 4, '2021-10-31 06:39:41', '2021-10-31 06:39:41'), (12980, 4, '2021-10-31 06:39:41', '2021-10-31 06:39:41'), (12981, 4, '2021-10-31 06:39:41', '2021-10-31 06:39:41'), (12982, 4, '2021-10-31 06:39:43', '2021-10-31 06:39:43'), (12983, 4, '2021-10-31 06:39:43', '2021-10-31 06:39:43'), (12984, 4, '2021-10-31 06:39:43', '2021-10-31 06:39:43'), (12985, 4, '2021-10-31 06:39:43', '2021-10-31 06:39:43'), (12986, 4, '2021-10-31 06:39:44', '2021-10-31 06:39:44'), (12987, 4, '2021-10-31 06:39:44', '2021-10-31 06:39:44'), (12988, 4, '2021-10-31 06:39:44', '2021-10-31 06:39:44'), (12989, 4, '2021-10-31 06:39:45', '2021-10-31 06:39:45'), (12990, 4, '2021-10-31 06:39:45', '2021-10-31 06:39:45'), (12991, 4, '2021-10-31 06:39:45', '2021-10-31 06:39:45'), (12992, 4, '2021-10-31 06:39:45', '2021-10-31 06:39:45'), (12993, 4, '2021-10-31 06:39:46', '2021-10-31 06:39:46'), (12994, 4, '2021-10-31 06:39:46', '2021-10-31 06:39:46'), (12995, 4, '2021-10-31 06:39:46', '2021-10-31 06:39:46'), (12996, 4, '2021-10-31 06:39:46', '2021-10-31 06:39:46'), (12997, 4, '2021-10-31 06:39:48', '2021-10-31 06:39:48'), (12998, 4, '2021-10-31 06:39:48', '2021-10-31 06:39:48'), (12999, 4, '2021-10-31 06:39:49', '2021-10-31 06:39:49'), (13000, 4, '2021-10-31 06:39:49', '2021-10-31 06:39:49'), (13001, 4, '2021-10-31 06:39:49', '2021-10-31 06:39:49'), (13002, 4, '2021-10-31 06:39:49', '2021-10-31 06:39:49'), (13003, 4, '2021-10-31 06:39:50', '2021-10-31 06:39:50'), (13004, 4, '2021-10-31 06:39:50', '2021-10-31 06:39:50'), (13005, 4, '2021-10-31 06:39:50', '2021-10-31 06:39:50'), (13006, 4, '2021-10-31 06:39:51', '2021-10-31 06:39:51'), (13007, 4, '2021-10-31 06:39:51', '2021-10-31 06:39:51'), (13008, 4, '2021-10-31 06:39:51', '2021-10-31 06:39:51'), (13009, 4, '2021-10-31 06:39:51', '2021-10-31 06:39:51'), (13010, 4, '2021-10-31 06:39:52', '2021-10-31 06:39:52'), (13011, 4, '2021-10-31 06:39:52', '2021-10-31 06:39:52'), (13012, 4, '2021-10-31 06:39:52', '2021-10-31 06:39:52'), (13013, 4, '2021-10-31 06:39:52', '2021-10-31 06:39:52'), (13014, 4, '2021-10-31 06:39:52', '2021-10-31 06:39:52'), (13015, 4, '2021-10-31 06:39:53', '2021-10-31 06:39:53'), (13016, 4, '2021-10-31 06:39:53', '2021-10-31 06:39:53'), (13017, 4, '2021-10-31 06:39:53', '2021-10-31 06:39:53'), (13018, 4, '2021-10-31 06:39:53', '2021-10-31 06:39:53'), (13019, 4, '2021-10-31 06:39:53', '2021-10-31 06:39:53'), (13020, 4, '2021-10-31 06:39:54', '2021-10-31 06:39:54'), (13021, 4, '2021-10-31 06:39:54', '2021-10-31 06:39:54'), (13022, 4, '2021-10-31 06:39:54', '2021-10-31 06:39:54'), (13023, 4, '2021-10-31 06:39:54', '2021-10-31 06:39:54'), (13024, 4, '2021-10-31 06:39:54', '2021-10-31 06:39:54'), (13025, 4, '2021-10-31 06:39:54', '2021-10-31 06:39:54'), (13026, 4, '2021-10-31 06:39:55', '2021-10-31 06:39:55'), (13027, 4, '2021-10-31 06:39:55', '2021-10-31 06:39:55'), (13028, 4, '2021-10-31 06:39:56', '2021-10-31 06:39:56'), (13029, 4, '2021-10-31 06:39:56', '2021-10-31 06:39:56'), (13030, 4, '2021-10-31 06:39:56', '2021-10-31 06:39:56'), (13031, 4, '2021-10-31 06:39:56', '2021-10-31 06:39:56'), (13032, 4, '2021-10-31 06:39:58', '2021-10-31 06:39:58'), (13033, 4, '2021-10-31 06:40:00', '2021-10-31 06:40:00'), (13034, 4, '2021-10-31 06:40:00', '2021-10-31 06:40:00'), (13035, 4, '2021-10-31 06:40:00', '2021-10-31 06:40:00'), (13036, 4, '2021-10-31 06:40:00', '2021-10-31 06:40:00'), (13037, 4, '2021-10-31 06:40:00', '2021-10-31 06:40:00'), (13038, 4, '2021-10-31 06:40:01', '2021-10-31 06:40:01'), (13039, 4, '2021-10-31 06:40:01', '2021-10-31 06:40:01'), (13040, 4, '2021-10-31 06:40:01', '2021-10-31 06:40:01'), (13041, 4, '2021-10-31 06:40:01', '2021-10-31 06:40:01'), (13042, 4, '2021-10-31 06:40:01', '2021-10-31 06:40:01'), (13043, 4, '2021-10-31 06:40:01', '2021-10-31 06:40:01'), (13044, 4, '2021-10-31 06:40:02', '2021-10-31 06:40:02'), (13045, 4, '2021-10-31 06:40:02', '2021-10-31 06:40:02'), (13046, 4, '2021-10-31 06:40:02', '2021-10-31 06:40:02'), (13047, 4, '2021-11-01 06:40:10', '2021-11-01 06:40:10'), (13048, 4, '2021-11-01 06:40:12', '2021-11-01 06:40:12'), (13049, 4, '2021-11-01 06:40:13', '2021-11-01 06:40:13'), (13050, 4, '2021-11-01 06:40:14', '2021-11-01 06:40:14'), (13051, 4, '2021-11-01 06:40:14', '2021-11-01 06:40:14'), (13052, 4, '2021-11-01 06:40:14', '2021-11-01 06:40:14'), (13053, 4, '2021-11-01 06:40:14', '2021-11-01 06:40:14'), (13054, 4, '2021-11-01 06:40:15', '2021-11-01 06:40:15'), (13055, 4, '2021-11-01 06:40:15', '2021-11-01 06:40:15'), (13056, 4, '2021-11-01 06:40:15', '2021-11-01 06:40:15'), (13057, 4, '2021-11-01 06:40:15', '2021-11-01 06:40:15'), (13058, 4, '2021-11-01 06:40:16', '2021-11-01 06:40:16'), (13059, 4, '2021-11-01 06:40:16', '2021-11-01 06:40:16'), (13060, 4, '2021-11-01 06:40:16', '2021-11-01 06:40:16'), (13061, 4, '2021-11-01 06:40:17', '2021-11-01 06:40:17'), (13062, 4, '2021-11-01 06:40:17', '2021-11-01 06:40:17'), (13063, 4, '2021-11-01 06:40:17', '2021-11-01 06:40:17'), (13064, 4, '2021-11-01 06:40:17', '2021-11-01 06:40:17'), (13065, 4, '2021-11-01 06:40:17', '2021-11-01 06:40:17'), (13066, 4, '2021-11-01 06:40:18', '2021-11-01 06:40:18'), (13067, 4, '2021-11-01 06:40:18', '2021-11-01 06:40:18'), (13068, 4, '2021-11-01 06:40:18', '2021-11-01 06:40:18'), (13069, 4, '2021-11-01 06:40:18', '2021-11-01 06:40:18'), (13070, 4, '2021-11-01 06:40:18', '2021-11-01 06:40:18'), (13071, 4, '2021-11-01 06:40:18', '2021-11-01 06:40:18'), (13072, 4, '2021-11-01 06:40:19', '2021-11-01 06:40:19'), (13073, 4, '2021-11-01 06:40:19', '2021-11-01 06:40:19'), (13074, 4, '2021-11-01 06:40:19', '2021-11-01 06:40:19'), (13075, 4, '2021-11-01 06:40:19', '2021-11-01 06:40:19'), (13076, 4, '2021-11-01 06:40:19', '2021-11-01 06:40:19'), (13077, 4, '2021-11-01 06:40:20', '2021-11-01 06:40:20'), (13078, 4, '2021-11-01 06:40:20', '2021-11-01 06:40:20'), (13079, 4, '2021-11-01 06:40:20', '2021-11-01 06:40:20'), (13080, 4, '2021-11-01 06:40:20', '2021-11-01 06:40:20'), (13081, 4, '2021-11-01 06:40:20', '2021-11-01 06:40:20'), (13082, 4, '2021-11-01 06:40:21', '2021-11-01 06:40:21'), (13083, 4, '2021-11-01 06:40:21', '2021-11-01 06:40:21'), (13084, 4, '2021-11-01 06:40:21', '2021-11-01 06:40:21'), (13085, 4, '2021-11-01 06:40:21', '2021-11-01 06:40:21'), (13086, 4, '2021-11-01 06:40:21', '2021-11-01 06:40:21'), (13087, 4, '2021-11-01 06:40:22', '2021-11-01 06:40:22'), (13088, 4, '2021-11-01 06:40:22', '2021-11-01 06:40:22'), (13089, 4, '2021-11-01 06:40:22', '2021-11-01 06:40:22'), (13090, 4, '2021-11-01 06:40:22', '2021-11-01 06:40:22'), (13091, 4, '2021-11-01 06:40:22', '2021-11-01 06:40:22'), (13092, 4, '2021-11-01 06:40:23', '2021-11-01 06:40:23'), (13093, 4, '2021-11-01 06:40:23', '2021-11-01 06:40:23'), (13094, 4, '2021-11-01 06:40:23', '2021-11-01 06:40:23'), (13095, 4, '2021-11-01 06:40:23', '2021-11-01 06:40:23'), (13096, 4, '2021-11-01 06:40:23', '2021-11-01 06:40:23'), (13097, 4, '2021-11-01 06:40:23', '2021-11-01 06:40:23'), (13098, 4, '2021-11-01 06:40:24', '2021-11-01 06:40:24'), (13099, 4, '2021-11-01 06:40:24', '2021-11-01 06:40:24'), (13100, 4, '2021-11-01 06:40:24', '2021-11-01 06:40:24'), (13101, 4, '2021-11-01 06:40:24', '2021-11-01 06:40:24'), (13102, 4, '2021-11-01 06:40:24', '2021-11-01 06:40:24'), (13103, 4, '2021-11-01 06:40:25', '2021-11-01 06:40:25'), (13104, 4, '2021-11-01 06:40:25', '2021-11-01 06:40:25'), (13105, 4, '2021-11-01 06:40:25', '2021-11-01 06:40:25'), (13106, 4, '2021-11-01 06:40:25', '2021-11-01 06:40:25'), (13107, 4, '2021-11-01 06:40:25', '2021-11-01 06:40:25'), (13108, 4, '2021-11-01 06:40:26', '2021-11-01 06:40:26'), (13109, 4, '2021-11-01 06:40:26', '2021-11-01 06:40:26'), (13110, 4, '2021-11-01 06:40:26', '2021-11-01 06:40:26'), (13111, 4, '2021-11-01 06:40:26', '2021-11-01 06:40:26'), (13112, 4, '2021-11-01 06:40:26', '2021-11-01 06:40:26'), (13113, 4, '2021-11-01 06:40:27', '2021-11-01 06:40:27'), (13114, 4, '2021-11-01 06:40:27', '2021-11-01 06:40:27'), (13115, 4, '2021-11-01 06:40:27', '2021-11-01 06:40:27'), (13116, 4, '2021-11-01 06:40:27', '2021-11-01 06:40:27'), (13117, 4, '2021-11-01 06:40:27', '2021-11-01 06:40:27'), (13118, 4, '2021-11-01 06:40:28', '2021-11-01 06:40:28'), (13119, 4, '2021-11-01 06:40:28', '2021-11-01 06:40:28'), (13120, 4, '2021-11-01 06:40:28', '2021-11-01 06:40:28'), (13121, 4, '2021-11-01 06:40:28', '2021-11-01 06:40:28'), (13122, 4, '2021-11-01 06:40:28', '2021-11-01 06:40:28'), (13123, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13124, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13125, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13126, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13127, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13128, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13129, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13130, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13131, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13132, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13133, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13134, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13135, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13136, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13137, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13138, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13139, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13140, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13141, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13142, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13143, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13144, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13145, 4, '2021-11-01 06:40:29', '2021-11-01 06:40:29'), (13146, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13147, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13148, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13149, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13150, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13151, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13152, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13153, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13154, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13155, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13156, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13157, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13158, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13159, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13160, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13161, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13162, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13163, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13164, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13165, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13166, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13167, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13168, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13169, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13170, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13171, 4, '2021-11-01 06:40:30', '2021-11-01 06:40:30'), (13172, 4, '2021-11-01 06:40:31', '2021-11-01 06:40:31'), (13173, 4, '2021-11-01 06:40:31', '2021-11-01 06:40:31'), (13174, 4, '2021-11-01 06:40:31', '2021-11-01 06:40:31'), (13175, 4, '2021-11-01 06:40:31', '2021-11-01 06:40:31'), (13176, 4, '2021-11-01 06:40:31', '2021-11-01 06:40:31'), (13177, 4, '2021-11-01 06:40:32', '2021-11-01 06:40:32'), (13178, 4, '2021-11-01 06:40:32', '2021-11-01 06:40:32'), (13179, 4, '2021-11-01 06:40:32', '2021-11-01 06:40:32'), (13180, 4, '2021-11-01 06:40:32', '2021-11-01 06:40:32'), (13181, 4, '2021-11-01 06:40:32', '2021-11-01 06:40:32'), (13182, 4, '2021-11-01 06:40:32', '2021-11-01 06:40:32'), (13183, 4, '2021-11-01 06:40:33', '2021-11-01 06:40:33'), (13184, 4, '2021-11-01 06:40:33', '2021-11-01 06:40:33'), (13185, 4, '2021-11-01 06:40:33', '2021-11-01 06:40:33'), (13186, 4, '2021-11-01 06:40:33', '2021-11-01 06:40:33'), (13187, 4, '2021-11-01 06:40:34', '2021-11-01 06:40:34'), (13188, 4, '2021-11-01 06:40:34', '2021-11-01 06:40:34'), (13189, 4, '2021-11-01 06:40:35', '2021-11-01 06:40:35'), (13190, 4, '2021-11-01 06:40:35', '2021-11-01 06:40:35'), (13191, 4, '2021-11-01 06:40:35', '2021-11-01 06:40:35'), (13192, 4, '2021-11-01 06:40:36', '2021-11-01 06:40:36'), (13193, 4, '2021-11-01 06:40:36', '2021-11-01 06:40:36'), (13194, 4, '2021-11-01 06:40:36', '2021-11-01 06:40:36'), (13195, 4, '2021-11-01 06:40:36', '2021-11-01 06:40:36'), (13196, 4, '2021-11-01 06:40:36', '2021-11-01 06:40:36'), (13197, 4, '2021-11-01 06:40:36', '2021-11-01 06:40:36'), (13198, 4, '2021-11-01 06:40:37', '2021-11-01 06:40:37'), (13199, 4, '2021-11-01 06:40:37', '2021-11-01 06:40:37'), (13200, 4, '2021-11-01 06:40:37', '2021-11-01 06:40:37'), (13201, 4, '2021-11-01 06:40:37', '2021-11-01 06:40:37'), (13202, 4, '2021-11-01 06:40:37', '2021-11-01 06:40:37'), (13203, 4, '2021-11-01 06:40:38', '2021-11-01 06:40:38'), (13204, 4, '2021-11-01 06:40:38', '2021-11-01 06:40:38'), (13205, 4, '2021-11-01 06:40:38', '2021-11-01 06:40:38'), (13206, 4, '2021-11-01 06:40:38', '2021-11-01 06:40:38'), (13207, 4, '2021-11-01 06:40:38', '2021-11-01 06:40:38'), (13208, 4, '2021-11-01 06:40:39', '2021-11-01 06:40:39'), (13209, 4, '2021-11-01 06:40:39', '2021-11-01 06:40:39'), (13210, 4, '2021-11-01 06:40:39', '2021-11-01 06:40:39'), (13211, 4, '2021-11-01 06:40:39', '2021-11-01 06:40:39'), (13212, 4, '2021-11-01 06:40:39', '2021-11-01 06:40:39'), (13213, 4, '2021-11-01 06:40:40', '2021-11-01 06:40:40'), (13214, 4, '2021-11-01 06:40:40', '2021-11-01 06:40:40'), (13215, 4, '2021-11-01 06:40:40', '2021-11-01 06:40:40'), (13216, 4, '2021-11-01 06:40:40', '2021-11-01 06:40:40'), (13217, 4, '2021-11-01 06:40:41', '2021-11-01 06:40:41'), (13218, 4, '2021-11-01 06:40:41', '2021-11-01 06:40:41'), (13219, 4, '2021-11-01 06:40:41', '2021-11-01 06:40:41'), (13220, 4, '2021-11-01 06:40:41', '2021-11-01 06:40:41'), (13221, 4, '2021-11-01 06:40:42', '2021-11-01 06:40:42'), (13222, 4, '2021-11-01 06:40:42', '2021-11-01 06:40:42'), (13223, 4, '2021-11-01 06:40:42', '2021-11-01 06:40:42'), (13224, 4, '2021-11-01 06:40:42', '2021-11-01 06:40:42'), (13225, 4, '2021-11-01 06:40:42', '2021-11-01 06:40:42'), (13226, 4, '2021-11-01 06:40:43', '2021-11-01 06:40:43'), (13227, 4, '2021-11-01 06:40:43', '2021-11-01 06:40:43'), (13228, 4, '2021-11-01 06:40:43', '2021-11-01 06:40:43'), (13229, 4, '2021-11-01 06:40:43', '2021-11-01 06:40:43'), (13230, 4, '2021-11-01 06:40:43', '2021-11-01 06:40:43'), (13231, 4, '2021-11-01 06:40:44', '2021-11-01 06:40:44'), (13232, 4, '2021-11-01 06:40:44', '2021-11-01 06:40:44'), (13233, 4, '2021-11-01 06:40:44', '2021-11-01 06:40:44'), (13234, 4, '2021-11-01 06:40:44', '2021-11-01 06:40:44'), (13235, 4, '2021-11-01 06:40:44', '2021-11-01 06:40:44'), (13236, 4, '2021-11-01 06:40:44', '2021-11-01 06:40:44'), (13237, 4, '2021-11-01 06:40:45', '2021-11-01 06:40:45'), (13238, 4, '2021-11-01 06:40:45', '2021-11-01 06:40:45'), (13239, 4, '2021-11-01 06:40:45', '2021-11-01 06:40:45'), (13240, 4, '2021-11-01 06:40:45', '2021-11-01 06:40:45'), (13241, 4, '2021-11-01 06:40:45', '2021-11-01 06:40:45'), (13242, 4, '2021-11-01 06:40:46', '2021-11-01 06:40:46'), (13243, 4, '2021-11-01 06:40:46', '2021-11-01 06:40:46'), (13244, 4, '2021-11-01 06:40:46', '2021-11-01 06:40:46'), (13245, 4, '2021-11-01 06:40:46', '2021-11-01 06:40:46'), (13246, 4, '2021-11-01 06:40:46', '2021-11-01 06:40:46'), (13247, 4, '2021-11-01 06:40:47', '2021-11-01 06:40:47'), (13248, 4, '2021-11-01 06:40:47', '2021-11-01 06:40:47'), (13249, 4, '2021-11-01 06:40:47', '2021-11-01 06:40:47'), (13250, 4, '2021-11-01 06:40:47', '2021-11-01 06:40:47'), (13251, 4, '2021-11-01 06:40:47', '2021-11-01 06:40:47'), (13252, 4, '2021-11-01 06:40:48', '2021-11-01 06:40:48'), (13253, 4, '2021-11-01 06:40:48', '2021-11-01 06:40:48'), (13254, 4, '2021-11-01 06:40:48', '2021-11-01 06:40:48'), (13255, 4, '2021-11-01 06:40:48', '2021-11-01 06:40:48'), (13256, 4, '2021-11-01 06:40:48', '2021-11-01 06:40:48'), (13257, 4, '2021-11-01 06:40:49', '2021-11-01 06:40:49'), (13258, 4, '2021-11-01 06:40:49', '2021-11-01 06:40:49'), (13259, 4, '2021-11-01 06:40:49', '2021-11-01 06:40:49'), (13260, 4, '2021-11-01 06:40:49', '2021-11-01 06:40:49'), (13261, 4, '2021-11-01 06:40:49', '2021-11-01 06:40:49'), (13262, 4, '2021-11-01 06:40:50', '2021-11-01 06:40:50'), (13263, 4, '2021-11-01 06:40:50', '2021-11-01 06:40:50'), (13264, 4, '2021-11-01 06:40:50', '2021-11-01 06:40:50'), (13265, 4, '2021-11-01 06:40:50', '2021-11-01 06:40:50'), (13266, 4, '2021-11-01 06:40:51', '2021-11-01 06:40:51'), (13267, 4, '2021-11-01 06:40:51', '2021-11-01 06:40:51'), (13268, 4, '2021-11-01 06:40:51', '2021-11-01 06:40:51'), (13269, 4, '2021-11-01 06:40:51', '2021-11-01 06:40:51'), (13270, 4, '2021-11-01 06:40:52', '2021-11-01 06:40:52'), (13271, 4, '2021-11-01 06:40:52', '2021-11-01 06:40:52'), (13272, 4, '2021-11-01 06:40:52', '2021-11-01 06:40:52'), (13273, 4, '2021-11-01 06:40:52', '2021-11-01 06:40:52'), (13274, 4, '2021-11-01 06:40:53', '2021-11-01 06:40:53'), (13275, 4, '2021-11-01 06:40:53', '2021-11-01 06:40:53'), (13276, 4, '2021-11-01 06:40:53', '2021-11-01 06:40:53'), (13277, 4, '2021-11-01 06:40:53', '2021-11-01 06:40:53'), (13278, 4, '2021-11-01 06:40:53', '2021-11-01 06:40:53'), (13279, 4, '2021-11-01 06:40:54', '2021-11-01 06:40:54'), (13280, 4, '2021-11-01 06:40:54', '2021-11-01 06:40:54'), (13281, 4, '2021-11-01 06:40:54', '2021-11-01 06:40:54'), (13282, 4, '2021-11-01 06:40:54', '2021-11-01 06:40:54'), (13283, 4, '2021-11-01 06:40:54', '2021-11-01 06:40:54'), (13284, 4, '2021-11-01 06:40:55', '2021-11-01 06:40:55'), (13285, 4, '2021-11-01 06:40:55', '2021-11-01 06:40:55'), (13286, 4, '2021-11-01 06:40:55', '2021-11-01 06:40:55'), (13287, 4, '2021-11-01 06:40:55', '2021-11-01 06:40:55'), (13288, 4, '2021-11-01 06:40:55', '2021-11-01 06:40:55'), (13289, 4, '2021-11-01 06:40:56', '2021-11-01 06:40:56'), (13290, 4, '2021-11-01 06:40:56', '2021-11-01 06:40:56'), (13291, 4, '2021-11-01 06:40:56', '2021-11-01 06:40:56'), (13292, 4, '2021-11-01 06:40:56', '2021-11-01 06:40:56'), (13293, 4, '2021-11-01 06:40:56', '2021-11-01 06:40:56'), (13294, 4, '2021-11-01 06:40:57', '2021-11-01 06:40:57'), (13295, 4, '2021-11-01 06:40:57', '2021-11-01 06:40:57'), (13296, 4, '2021-11-01 06:40:57', '2021-11-01 06:40:57'), (13297, 4, '2021-11-01 06:40:57', '2021-11-01 06:40:57'), (13298, 4, '2021-11-01 06:40:58', '2021-11-01 06:40:58'), (13299, 4, '2021-11-01 06:40:58', '2021-11-01 06:40:58'), (13300, 4, '2021-11-01 06:40:58', '2021-11-01 06:40:58'), (13301, 4, '2021-11-01 06:40:58', '2021-11-01 06:40:58'), (13302, 4, '2021-11-01 06:40:58', '2021-11-01 06:40:58'), (13303, 4, '2021-11-01 06:40:59', '2021-11-01 06:40:59'), (13304, 4, '2021-11-01 06:40:59', '2021-11-01 06:40:59'), (13305, 4, '2021-11-01 06:41:00', '2021-11-01 06:41:00'), (13306, 4, '2021-11-01 06:41:00', '2021-11-01 06:41:00'), (13307, 4, '2021-11-01 06:41:00', '2021-11-01 06:41:00'), (13308, 4, '2021-11-01 06:41:00', '2021-11-01 06:41:00'), (13309, 4, '2021-11-01 06:41:00', '2021-11-01 06:41:00'), (13310, 4, '2021-11-01 06:41:01', '2021-11-01 06:41:01'), (13311, 4, '2021-11-01 06:41:01', '2021-11-01 06:41:01'), (13312, 4, '2021-11-01 06:41:01', '2021-11-01 06:41:01'), (13313, 4, '2021-11-01 06:41:01', '2021-11-01 06:41:01'), (13314, 4, '2021-11-01 06:41:01', '2021-11-01 06:41:01'), (13315, 4, '2021-11-01 06:41:01', '2021-11-01 06:41:01'), (13316, 4, '2021-11-01 06:41:02', '2021-11-01 06:41:02'), (13317, 4, '2021-11-01 06:41:02', '2021-11-01 06:41:02'), (13318, 4, '2021-11-01 06:41:02', '2021-11-01 06:41:02'), (13319, 4, '2021-11-01 06:41:02', '2021-11-01 06:41:02'), (13320, 4, '2021-11-01 06:41:02', '2021-11-01 06:41:02'), (13321, 4, '2021-11-01 06:41:03', '2021-11-01 06:41:03'), (13322, 4, '2021-11-01 06:41:03', '2021-11-01 06:41:03'), (13323, 4, '2021-11-01 06:41:03', '2021-11-01 06:41:03'), (13324, 4, '2021-11-01 06:41:03', '2021-11-01 06:41:03'), (13325, 4, '2021-11-01 06:41:04', '2021-11-01 06:41:04'), (13326, 4, '2021-11-01 06:41:04', '2021-11-01 06:41:04'), (13327, 4, '2021-11-01 06:41:04', '2021-11-01 06:41:04'), (13328, 4, '2021-11-01 06:41:04', '2021-11-01 06:41:04'), (13329, 4, '2021-11-01 06:41:04', '2021-11-01 06:41:04'), (13330, 4, '2021-11-01 06:41:04', '2021-11-01 06:41:04'), (13331, 4, '2021-11-01 06:41:05', '2021-11-01 06:41:05'), (13332, 4, '2021-11-01 06:41:05', '2021-11-01 06:41:05'), (13333, 4, '2021-11-01 06:41:05', '2021-11-01 06:41:05'), (13334, 4, '2021-11-01 06:41:05', '2021-11-01 06:41:05'), (13335, 4, '2021-11-01 06:41:06', '2021-11-01 06:41:06'), (13336, 4, '2021-11-01 06:41:06', '2021-11-01 06:41:06'), (13337, 4, '2021-11-01 06:41:06', '2021-11-01 06:41:06'), (13338, 4, '2021-11-01 06:41:06', '2021-11-01 06:41:06'), (13339, 4, '2021-11-01 06:41:06', '2021-11-01 06:41:06'), (13340, 4, '2021-11-01 06:41:07', '2021-11-01 06:41:07'), (13341, 4, '2021-11-01 06:41:07', '2021-11-01 06:41:07'), (13342, 4, '2021-11-02 06:41:11', '2021-11-02 06:41:11'), (13343, 4, '2021-11-02 06:41:12', '2021-11-02 06:41:12'), (13344, 4, '2021-11-02 06:41:12', '2021-11-02 06:41:12'), (13345, 4, '2021-11-02 06:41:12', '2021-11-02 06:41:12'), (13346, 4, '2021-11-02 06:41:13', '2021-11-02 06:41:13'), (13347, 4, '2021-11-02 06:41:13', '2021-11-02 06:41:13'), (13348, 4, '2021-11-02 06:41:13', '2021-11-02 06:41:13'), (13349, 4, '2021-11-02 06:41:13', '2021-11-02 06:41:13'), (13350, 4, '2021-11-02 06:41:13', '2021-11-02 06:41:13'), (13351, 4, '2021-11-02 06:41:13', '2021-11-02 06:41:13'), (13352, 4, '2021-11-02 06:41:14', '2021-11-02 06:41:14'), (13353, 4, '2021-11-02 06:41:14', '2021-11-02 06:41:14'), (13354, 4, '2021-11-02 06:41:14', '2021-11-02 06:41:14'), (13355, 4, '2021-11-02 06:41:14', '2021-11-02 06:41:14'), (13356, 4, '2021-11-02 06:41:15', '2021-11-02 06:41:15'), (13357, 4, '2021-11-02 06:41:15', '2021-11-02 06:41:15'), (13358, 4, '2021-11-02 06:41:15', '2021-11-02 06:41:15'), (13359, 4, '2021-11-02 06:41:15', '2021-11-02 06:41:15'), (13360, 4, '2021-11-02 06:41:15', '2021-11-02 06:41:15'), (13361, 4, '2021-11-02 06:41:16', '2021-11-02 06:41:16'), (13362, 4, '2021-11-02 06:41:16', '2021-11-02 06:41:16'), (13363, 4, '2021-11-02 06:41:16', '2021-11-02 06:41:16'), (13364, 4, '2021-11-02 06:41:16', '2021-11-02 06:41:16'), (13365, 4, '2021-11-02 06:41:16', '2021-11-02 06:41:16'), (13366, 4, '2021-11-02 06:41:17', '2021-11-02 06:41:17'), (13367, 4, '2021-11-02 06:41:17', '2021-11-02 06:41:17'), (13368, 4, '2021-11-02 06:41:18', '2021-11-02 06:41:18'), (13369, 4, '2021-11-02 06:41:18', '2021-11-02 06:41:18'), (13370, 4, '2021-11-02 06:41:18', '2021-11-02 06:41:18'), (13371, 4, '2021-11-02 06:41:18', '2021-11-02 06:41:18'), (13372, 4, '2021-11-02 06:41:18', '2021-11-02 06:41:18'), (13373, 4, '2021-11-02 06:41:18', '2021-11-02 06:41:18'), (13374, 4, '2021-11-02 06:41:19', '2021-11-02 06:41:19'), (13375, 4, '2021-11-02 06:41:19', '2021-11-02 06:41:19'), (13376, 4, '2021-11-02 06:41:19', '2021-11-02 06:41:19'), (13377, 4, '2021-11-02 06:41:19', '2021-11-02 06:41:19'), (13378, 4, '2021-11-02 06:41:20', '2021-11-02 06:41:20'), (13379, 4, '2021-11-02 06:41:20', '2021-11-02 06:41:20'), (13380, 4, '2021-11-02 06:41:20', '2021-11-02 06:41:20'), (13381, 4, '2021-11-02 06:41:20', '2021-11-02 06:41:20'), (13382, 4, '2021-11-02 06:41:20', '2021-11-02 06:41:20'), (13383, 4, '2021-11-02 06:41:20', '2021-11-02 06:41:20'), (13384, 4, '2021-11-02 06:41:21', '2021-11-02 06:41:21'), (13385, 4, '2021-11-02 06:41:21', '2021-11-02 06:41:21'), (13386, 4, '2021-11-02 06:41:21', '2021-11-02 06:41:21'), (13387, 4, '2021-11-02 06:41:21', '2021-11-02 06:41:21'), (13388, 4, '2021-11-02 06:41:21', '2021-11-02 06:41:21'), (13389, 4, '2021-11-02 06:41:22', '2021-11-02 06:41:22'), (13390, 4, '2021-11-02 06:41:22', '2021-11-02 06:41:22'), (13391, 4, '2021-11-02 06:41:22', '2021-11-02 06:41:22'), (13392, 4, '2021-11-02 06:41:22', '2021-11-02 06:41:22'), (13393, 4, '2021-11-02 06:41:22', '2021-11-02 06:41:22'), (13394, 4, '2021-11-02 06:41:23', '2021-11-02 06:41:23'), (13395, 4, '2021-11-02 06:41:23', '2021-11-02 06:41:23'), (13396, 4, '2021-11-02 06:41:23', '2021-11-02 06:41:23'), (13397, 4, '2021-11-02 06:41:24', '2021-11-02 06:41:24'), (13398, 4, '2021-11-02 06:41:24', '2021-11-02 06:41:24'), (13399, 4, '2021-11-02 06:41:24', '2021-11-02 06:41:24'), (13400, 4, '2021-11-02 06:41:24', '2021-11-02 06:41:24'), (13401, 4, '2021-11-02 06:41:24', '2021-11-02 06:41:24'), (13402, 4, '2021-11-02 06:41:25', '2021-11-02 06:41:25'), (13403, 4, '2021-11-02 06:41:25', '2021-11-02 06:41:25'), (13404, 4, '2021-11-02 06:41:25', '2021-11-02 06:41:25'), (13405, 4, '2021-11-02 06:41:25', '2021-11-02 06:41:25'), (13406, 4, '2021-11-02 06:41:25', '2021-11-02 06:41:25'), (13407, 4, '2021-11-02 06:41:26', '2021-11-02 06:41:26'), (13408, 4, '2021-11-02 06:41:26', '2021-11-02 06:41:26'), (13409, 4, '2021-11-02 06:41:26', '2021-11-02 06:41:26'), (13410, 4, '2021-11-02 06:41:26', '2021-11-02 06:41:26'), (13411, 4, '2021-11-02 06:41:26', '2021-11-02 06:41:26'), (13412, 4, '2021-11-02 06:41:27', '2021-11-02 06:41:27'), (13413, 4, '2021-11-02 06:41:27', '2021-11-02 06:41:27'), (13414, 4, '2021-11-02 06:41:27', '2021-11-02 06:41:27'), (13415, 4, '2021-11-02 06:41:27', '2021-11-02 06:41:27'), (13416, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13417, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13418, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13419, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13420, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13421, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13422, 4, '2021-11-02 06:41:28', '2021-11-02 06:41:28'), (13423, 4, '2021-11-02 06:41:29', '2021-11-02 06:41:29'), (13424, 4, '2021-11-02 06:41:29', '2021-11-02 06:41:29'), (13425, 4, '2021-11-02 06:41:29', '2021-11-02 06:41:29'), (13426, 4, '2021-11-02 06:41:29', '2021-11-02 06:41:29'), (13427, 4, '2021-11-02 06:41:30', '2021-11-02 06:41:30'), (13428, 4, '2021-11-02 06:41:31', '2021-11-02 06:41:31'), (13429, 4, '2021-11-02 06:41:31', '2021-11-02 06:41:31'), (13430, 4, '2021-11-02 06:41:31', '2021-11-02 06:41:31'), (13431, 4, '2021-11-02 06:41:31', '2021-11-02 06:41:31'), (13432, 4, '2021-11-02 06:41:32', '2021-11-02 06:41:32'), (13433, 4, '2021-11-02 06:41:32', '2021-11-02 06:41:32'), (13434, 4, '2021-11-02 06:41:32', '2021-11-02 06:41:32'), (13435, 4, '2021-11-02 06:41:32', '2021-11-02 06:41:32'), (13436, 4, '2021-11-02 06:41:32', '2021-11-02 06:41:32'), (13437, 4, '2021-11-02 06:41:32', '2021-11-02 06:41:32'), (13438, 4, '2021-11-02 06:41:33', '2021-11-02 06:41:33'), (13439, 4, '2021-11-02 06:41:33', '2021-11-02 06:41:33'), (13440, 4, '2021-11-02 06:41:33', '2021-11-02 06:41:33'), (13441, 4, '2021-11-02 06:41:33', '2021-11-02 06:41:33'), (13442, 4, '2021-11-02 06:41:33', '2021-11-02 06:41:33'), (13443, 4, '2021-11-02 06:41:34', '2021-11-02 06:41:34'), (13444, 4, '2021-11-02 06:41:34', '2021-11-02 06:41:34'), (13445, 4, '2021-11-02 06:41:34', '2021-11-02 06:41:34'), (13446, 4, '2021-11-02 06:41:34', '2021-11-02 06:41:34'), (13447, 4, '2021-11-02 06:41:35', '2021-11-02 06:41:35'), (13448, 4, '2021-11-02 06:41:35', '2021-11-02 06:41:35'), (13449, 4, '2021-11-02 06:41:35', '2021-11-02 06:41:35'), (13450, 4, '2021-11-02 06:41:35', '2021-11-02 06:41:35'), (13451, 4, '2021-11-02 06:41:36', '2021-11-02 06:41:36'), (13452, 4, '2021-11-02 06:41:36', '2021-11-02 06:41:36'), (13453, 4, '2021-11-02 06:41:36', '2021-11-02 06:41:36'), (13454, 4, '2021-11-02 06:41:36', '2021-11-02 06:41:36'), (13455, 4, '2021-11-02 06:41:36', '2021-11-02 06:41:36'), (13456, 4, '2021-11-02 06:41:37', '2021-11-02 06:41:37'), (13457, 4, '2021-11-02 06:41:37', '2021-11-02 06:41:37'), (13458, 4, '2021-11-02 06:41:37', '2021-11-02 06:41:37'), (13459, 4, '2021-11-02 06:41:37', '2021-11-02 06:41:37'), (13460, 4, '2021-11-02 06:41:38', '2021-11-02 06:41:38'), (13461, 4, '2021-11-02 06:41:38', '2021-11-02 06:41:38'), (13462, 4, '2021-11-02 06:41:38', '2021-11-02 06:41:38'), (13463, 4, '2021-11-02 06:41:38', '2021-11-02 06:41:38'), (13464, 4, '2021-11-02 06:41:39', '2021-11-02 06:41:39'), (13465, 4, '2021-11-02 06:41:39', '2021-11-02 06:41:39'), (13466, 4, '2021-11-02 06:41:39', '2021-11-02 06:41:39'), (13467, 4, '2021-11-02 06:41:39', '2021-11-02 06:41:39'), (13468, 4, '2021-11-02 06:41:39', '2021-11-02 06:41:39'), (13469, 4, '2021-11-02 06:41:40', '2021-11-02 06:41:40'), (13470, 4, '2021-11-02 06:41:40', '2021-11-02 06:41:40'), (13471, 4, '2021-11-02 06:41:40', '2021-11-02 06:41:40'), (13472, 4, '2021-11-02 06:41:40', '2021-11-02 06:41:40'), (13473, 4, '2021-11-02 06:41:40', '2021-11-02 06:41:40'), (13474, 4, '2021-11-02 06:41:41', '2021-11-02 06:41:41'), (13475, 4, '2021-11-02 06:41:41', '2021-11-02 06:41:41'), (13476, 4, '2021-11-02 06:41:41', '2021-11-02 06:41:41'), (13477, 4, '2021-11-02 06:41:42', '2021-11-02 06:41:42'), (13478, 4, '2021-11-02 06:41:43', '2021-11-02 06:41:43'), (13479, 4, '2021-11-02 06:41:43', '2021-11-02 06:41:43'), (13480, 4, '2021-11-02 06:41:43', '2021-11-02 06:41:43'), (13481, 4, '2021-11-02 06:41:43', '2021-11-02 06:41:43'), (13482, 4, '2021-11-02 06:41:44', '2021-11-02 06:41:44'), (13483, 4, '2021-11-02 06:41:44', '2021-11-02 06:41:44'), (13484, 4, '2021-11-02 06:41:44', '2021-11-02 06:41:44'), (13485, 4, '2021-11-02 06:41:44', '2021-11-02 06:41:44'), (13486, 4, '2021-11-02 06:41:44', '2021-11-02 06:41:44'), (13487, 4, '2021-11-02 06:41:45', '2021-11-02 06:41:45'), (13488, 4, '2021-11-02 06:41:45', '2021-11-02 06:41:45'), (13489, 4, '2021-11-02 06:41:45', '2021-11-02 06:41:45'), (13490, 4, '2021-11-02 06:41:46', '2021-11-02 06:41:46'), (13491, 4, '2021-11-02 06:41:46', '2021-11-02 06:41:46'), (13492, 4, '2021-11-02 06:41:46', '2021-11-02 06:41:46'), (13493, 4, '2021-11-02 06:41:46', '2021-11-02 06:41:46'), (13494, 4, '2021-11-02 06:41:47', '2021-11-02 06:41:47'), (13495, 4, '2021-11-02 06:41:47', '2021-11-02 06:41:47'), (13496, 4, '2021-11-02 06:41:47', '2021-11-02 06:41:47'), (13497, 4, '2021-11-02 06:41:47', '2021-11-02 06:41:47'), (13498, 4, '2021-11-02 06:41:48', '2021-11-02 06:41:48'), (13499, 4, '2021-11-02 06:41:48', '2021-11-02 06:41:48'), (13500, 4, '2021-11-02 06:41:48', '2021-11-02 06:41:48'), (13501, 4, '2021-11-02 06:41:49', '2021-11-02 06:41:49'), (13502, 4, '2021-11-02 06:41:49', '2021-11-02 06:41:49'), (13503, 4, '2021-11-02 06:41:50', '2021-11-02 06:41:50'), (13504, 4, '2021-11-02 06:41:51', '2021-11-02 06:41:51'), (13505, 4, '2021-11-02 06:41:51', '2021-11-02 06:41:51'), (13506, 4, '2021-11-02 06:41:51', '2021-11-02 06:41:51'), (13507, 4, '2021-11-02 06:41:51', '2021-11-02 06:41:51'), (13508, 4, '2021-11-02 06:41:51', '2021-11-02 06:41:51'), (13509, 4, '2021-11-02 06:41:52', '2021-11-02 06:41:52'), (13510, 4, '2021-11-02 06:41:52', '2021-11-02 06:41:52'), (13511, 4, '2021-11-02 06:41:52', '2021-11-02 06:41:52'), (13512, 4, '2021-11-02 06:41:52', '2021-11-02 06:41:52'), (13513, 4, '2021-11-02 06:41:53', '2021-11-02 06:41:53'), (13514, 4, '2021-11-02 06:41:53', '2021-11-02 06:41:53'), (13515, 4, '2021-11-02 06:41:53', '2021-11-02 06:41:53'), (13516, 4, '2021-11-02 06:41:53', '2021-11-02 06:41:53'), (13517, 4, '2021-11-02 06:41:53', '2021-11-02 06:41:53'), (13518, 4, '2021-11-02 06:41:54', '2021-11-02 06:41:54'), (13519, 4, '2021-11-02 06:41:54', '2021-11-02 06:41:54'), (13520, 4, '2021-11-02 06:41:54', '2021-11-02 06:41:54'), (13521, 4, '2021-11-02 06:41:54', '2021-11-02 06:41:54'), (13522, 4, '2021-11-02 06:41:54', '2021-11-02 06:41:54'), (13523, 4, '2021-11-02 06:41:55', '2021-11-02 06:41:55'), (13524, 4, '2021-11-02 06:41:55', '2021-11-02 06:41:55'), (13525, 4, '2021-11-02 06:41:55', '2021-11-02 06:41:55'), (13526, 4, '2021-11-02 06:41:56', '2021-11-02 06:41:56'), (13527, 4, '2021-11-02 06:41:56', '2021-11-02 06:41:56'), (13528, 4, '2021-11-02 06:41:56', '2021-11-02 06:41:56'), (13529, 4, '2021-11-02 06:41:56', '2021-11-02 06:41:56'), (13530, 4, '2021-11-02 06:41:56', '2021-11-02 06:41:56'), (13531, 4, '2021-11-02 06:41:57', '2021-11-02 06:41:57'), (13532, 4, '2021-11-02 06:41:57', '2021-11-02 06:41:57'), (13533, 4, '2021-11-02 06:41:57', '2021-11-02 06:41:57'), (13534, 4, '2021-11-02 06:41:57', '2021-11-02 06:41:57'), (13535, 4, '2021-11-02 06:41:57', '2021-11-02 06:41:57'), (13536, 4, '2021-11-02 06:41:58', '2021-11-02 06:41:58'), (13537, 4, '2021-11-02 06:41:58', '2021-11-02 06:41:58'), (13538, 4, '2021-11-02 06:41:58', '2021-11-02 06:41:58'), (13539, 4, '2021-11-02 06:41:58', '2021-11-02 06:41:58'), (13540, 4, '2021-11-02 06:41:58', '2021-11-02 06:41:58'), (13541, 4, '2021-11-02 06:41:59', '2021-11-02 06:41:59'), (13542, 4, '2021-11-02 06:41:59', '2021-11-02 06:41:59'), (13543, 4, '2021-11-02 06:41:59', '2021-11-02 06:41:59'), (13544, 4, '2021-11-02 06:42:00', '2021-11-02 06:42:00'), (13545, 4, '2021-11-02 06:42:00', '2021-11-02 06:42:00'), (13546, 4, '2021-11-02 06:42:00', '2021-11-02 06:42:00'), (13547, 4, '2021-11-02 06:42:00', '2021-11-02 06:42:00'), (13548, 4, '2021-11-02 06:42:01', '2021-11-02 06:42:01'), (13549, 4, '2021-11-02 06:42:01', '2021-11-02 06:42:01'), (13550, 4, '2021-11-02 06:42:01', '2021-11-02 06:42:01'), (13551, 4, '2021-11-02 06:42:02', '2021-11-02 06:42:02'), (13552, 4, '2021-11-02 06:42:02', '2021-11-02 06:42:02'), (13553, 4, '2021-11-02 06:42:02', '2021-11-02 06:42:02'), (13554, 4, '2021-11-02 06:42:03', '2021-11-02 06:42:03'), (13555, 4, '2021-11-02 06:42:03', '2021-11-02 06:42:03'), (13556, 4, '2021-11-02 06:42:03', '2021-11-02 06:42:03'), (13557, 4, '2021-11-02 06:42:03', '2021-11-02 06:42:03'), (13558, 4, '2021-11-02 06:42:03', '2021-11-02 06:42:03'), (13559, 4, '2021-11-02 06:42:04', '2021-11-02 06:42:04'), (13560, 4, '2021-11-02 06:42:04', '2021-11-02 06:42:04'), (13561, 4, '2021-11-02 06:42:04', '2021-11-02 06:42:04'), (13562, 4, '2021-11-02 06:42:04', '2021-11-02 06:42:04'), (13563, 4, '2021-11-02 06:42:05', '2021-11-02 06:42:05'), (13564, 4, '2021-11-02 06:42:05', '2021-11-02 06:42:05'), (13565, 4, '2021-11-02 06:42:05', '2021-11-02 06:42:05'), (13566, 4, '2021-11-02 06:42:05', '2021-11-02 06:42:05'), (13567, 4, '2021-11-02 06:42:05', '2021-11-02 06:42:05'), (13568, 4, '2021-11-02 06:42:05', '2021-11-02 06:42:05'), (13569, 4, '2021-11-02 06:42:06', '2021-11-02 06:42:06'), (13570, 4, '2021-11-02 06:42:06', '2021-11-02 06:42:06'); INSERT INTO `logs` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (13571, 4, '2021-11-02 06:42:06', '2021-11-02 06:42:06'), (13572, 4, '2021-11-02 06:42:06', '2021-11-02 06:42:06'), (13573, 4, '2021-11-02 06:42:06', '2021-11-02 06:42:06'), (13574, 4, '2021-11-02 06:42:07', '2021-11-02 06:42:07'), (13575, 4, '2021-11-02 06:42:07', '2021-11-02 06:42:07'), (13576, 4, '2021-11-02 06:42:07', '2021-11-02 06:42:07'), (13577, 4, '2021-11-02 06:42:07', '2021-11-02 06:42:07'), (13578, 4, '2021-11-02 06:42:08', '2021-11-02 06:42:08'), (13579, 4, '2021-11-02 06:42:08', '2021-11-02 06:42:08'), (13580, 4, '2021-11-02 06:42:08', '2021-11-02 06:42:08'), (13581, 4, '2021-11-02 06:42:08', '2021-11-02 06:42:08'), (13582, 4, '2021-11-02 06:42:09', '2021-11-02 06:42:09'), (13583, 4, '2021-11-02 06:42:09', '2021-11-02 06:42:09'), (13584, 4, '2021-11-02 06:42:09', '2021-11-02 06:42:09'), (13585, 4, '2021-11-02 06:42:10', '2021-11-02 06:42:10'), (13586, 4, '2021-11-02 06:42:10', '2021-11-02 06:42:10'), (13587, 4, '2021-11-02 06:42:10', '2021-11-02 06:42:10'), (13588, 4, '2021-11-02 06:42:10', '2021-11-02 06:42:10'), (13589, 4, '2021-11-02 06:42:10', '2021-11-02 06:42:10'), (13590, 4, '2021-11-02 06:42:11', '2021-11-02 06:42:11'), (13591, 4, '2021-11-02 06:42:11', '2021-11-02 06:42:11'), (13592, 4, '2021-11-02 06:42:11', '2021-11-02 06:42:11'), (13593, 4, '2021-11-02 06:42:11', '2021-11-02 06:42:11'), (13594, 4, '2021-11-02 06:42:12', '2021-11-02 06:42:12'), (13595, 4, '2021-11-02 06:42:12', '2021-11-02 06:42:12'), (13596, 4, '2021-11-02 06:42:12', '2021-11-02 06:42:12'), (13597, 4, '2021-11-02 06:42:12', '2021-11-02 06:42:12'), (13598, 4, '2021-11-02 06:42:12', '2021-11-02 06:42:12'), (13599, 4, '2021-11-02 06:42:12', '2021-11-02 06:42:12'), (13600, 4, '2021-11-02 06:42:13', '2021-11-02 06:42:13'), (13601, 4, '2021-11-02 06:42:13', '2021-11-02 06:42:13'), (13602, 4, '2021-11-02 06:42:13', '2021-11-02 06:42:13'), (13603, 4, '2021-11-02 06:42:13', '2021-11-02 06:42:13'), (13604, 4, '2021-11-02 06:42:13', '2021-11-02 06:42:13'), (13605, 4, '2021-11-02 06:42:14', '2021-11-02 06:42:14'), (13606, 4, '2021-11-02 06:42:14', '2021-11-02 06:42:14'), (13607, 4, '2021-11-02 06:42:15', '2021-11-02 06:42:15'), (13608, 4, '2021-11-02 06:42:15', '2021-11-02 06:42:15'), (13609, 4, '2021-11-02 06:42:15', '2021-11-02 06:42:15'), (13610, 4, '2021-11-02 06:42:15', '2021-11-02 06:42:15'), (13611, 4, '2021-11-02 06:42:15', '2021-11-02 06:42:15'), (13612, 4, '2021-11-02 06:42:15', '2021-11-02 06:42:15'), (13613, 4, '2021-11-02 06:42:16', '2021-11-02 06:42:16'), (13614, 4, '2021-11-02 06:42:16', '2021-11-02 06:42:16'), (13615, 4, '2021-11-02 06:42:16', '2021-11-02 06:42:16'), (13616, 4, '2021-11-02 06:42:16', '2021-11-02 06:42:16'), (13617, 4, '2021-11-02 06:42:16', '2021-11-02 06:42:16'), (13618, 4, '2021-11-02 06:42:17', '2021-11-02 06:42:17'), (13619, 4, '2021-11-02 06:42:17', '2021-11-02 06:42:17'), (13620, 4, '2021-11-02 06:42:17', '2021-11-02 06:42:17'), (13621, 4, '2021-11-02 06:42:17', '2021-11-02 06:42:17'), (13622, 4, '2021-11-02 06:42:17', '2021-11-02 06:42:17'), (13623, 4, '2021-11-02 06:42:18', '2021-11-02 06:42:18'), (13624, 4, '2021-11-02 06:42:18', '2021-11-02 06:42:18'), (13625, 4, '2021-11-02 06:42:18', '2021-11-02 06:42:18'), (13626, 4, '2021-11-02 06:42:18', '2021-11-02 06:42:18'), (13627, 4, '2021-11-02 06:42:19', '2021-11-02 06:42:19'), (13628, 4, '2021-11-02 06:42:19', '2021-11-02 06:42:19'), (13629, 4, '2021-11-02 06:42:19', '2021-11-02 06:42:19'), (13630, 4, '2021-11-02 06:42:19', '2021-11-02 06:42:19'), (13631, 4, '2021-11-02 06:42:19', '2021-11-02 06:42:19'), (13632, 4, '2021-11-02 06:42:20', '2021-11-02 06:42:20'), (13633, 4, '2021-11-02 06:42:20', '2021-11-02 06:42:20'), (13634, 4, '2021-11-02 06:42:20', '2021-11-02 06:42:20'), (13635, 4, '2021-11-02 06:42:20', '2021-11-02 06:42:20'), (13636, 4, '2021-11-02 06:42:20', '2021-11-02 06:42:20'), (13637, 4, '2021-11-02 06:42:21', '2021-11-02 06:42:21'), (13638, 4, '2021-11-02 06:42:21', '2021-11-02 06:42:21'), (13639, 4, '2021-11-02 06:42:21', '2021-11-02 06:42:21'), (13640, 4, '2021-11-02 06:42:21', '2021-11-02 06:42:21'), (13641, 4, '2021-11-02 06:42:21', '2021-11-02 06:42:21'), (13642, 4, '2021-11-02 06:42:22', '2021-11-02 06:42:22'), (13643, 4, '2021-11-02 06:42:22', '2021-11-02 06:42:22'), (13644, 4, '2021-11-02 06:42:22', '2021-11-02 06:42:22'), (13645, 4, '2021-11-02 06:42:22', '2021-11-02 06:42:22'), (13646, 4, '2021-11-02 06:42:22', '2021-11-02 06:42:22'), (13647, 4, '2021-11-02 06:42:23', '2021-11-02 06:42:23'), (13648, 4, '2021-11-02 06:42:23', '2021-11-02 06:42:23'), (13649, 4, '2021-11-02 06:42:23', '2021-11-02 06:42:23'), (13650, 4, '2021-11-02 06:42:23', '2021-11-02 06:42:23'), (13651, 4, '2021-11-02 06:42:23', '2021-11-02 06:42:23'), (13652, 4, '2021-11-02 06:42:24', '2021-11-02 06:42:24'), (13653, 4, '2021-11-02 06:42:24', '2021-11-02 06:42:24'), (13654, 4, '2021-11-02 06:42:24', '2021-11-02 06:42:24'), (13655, 4, '2021-11-02 06:42:24', '2021-11-02 06:42:24'), (13656, 4, '2021-11-02 06:42:24', '2021-11-02 06:42:24'), (13657, 4, '2021-11-02 06:42:25', '2021-11-02 06:42:25'), (13658, 4, '2021-11-02 06:42:25', '2021-11-02 06:42:25'), (13659, 4, '2021-11-02 06:42:25', '2021-11-02 06:42:25'), (13660, 4, '2021-11-02 06:42:25', '2021-11-02 06:42:25'), (13661, 4, '2021-11-02 06:42:25', '2021-11-02 06:42:25'), (13662, 4, '2021-11-02 06:42:26', '2021-11-02 06:42:26'), (13663, 4, '2021-11-02 06:42:26', '2021-11-02 06:42:26'), (13664, 4, '2021-11-02 06:42:26', '2021-11-02 06:42:26'), (13665, 4, '2021-11-02 06:42:26', '2021-11-02 06:42:26'), (13666, 4, '2021-11-02 06:42:27', '2021-11-02 06:42:27'), (13667, 4, '2021-11-02 06:42:27', '2021-11-02 06:42:27'), (13668, 4, '2021-11-02 06:42:27', '2021-11-02 06:42:27'), (13669, 4, '2021-11-02 06:42:27', '2021-11-02 06:42:27'), (13670, 4, '2021-11-02 06:42:28', '2021-11-02 06:42:28'), (13671, 4, '2021-11-03 06:42:33', '2021-11-03 06:42:33'), (13672, 4, '2021-11-03 06:42:35', '2021-11-03 06:42:35'), (13673, 4, '2021-11-03 06:42:35', '2021-11-03 06:42:35'), (13674, 4, '2021-11-03 06:42:35', '2021-11-03 06:42:35'), (13675, 4, '2021-11-03 06:42:36', '2021-11-03 06:42:36'), (13676, 4, '2021-11-03 06:42:36', '2021-11-03 06:42:36'), (13677, 4, '2021-11-03 06:42:36', '2021-11-03 06:42:36'), (13678, 4, '2021-11-03 06:42:37', '2021-11-03 06:42:37'), (13679, 4, '2021-11-03 06:42:37', '2021-11-03 06:42:37'), (13680, 4, '2021-11-03 06:42:37', '2021-11-03 06:42:37'), (13681, 4, '2021-11-03 06:42:37', '2021-11-03 06:42:37'), (13682, 4, '2021-11-03 06:42:37', '2021-11-03 06:42:37'), (13683, 4, '2021-11-03 06:42:37', '2021-11-03 06:42:37'), (13684, 4, '2021-11-03 06:42:38', '2021-11-03 06:42:38'), (13685, 4, '2021-11-03 06:42:38', '2021-11-03 06:42:38'), (13686, 4, '2021-11-03 06:42:38', '2021-11-03 06:42:38'), (13687, 4, '2021-11-03 06:42:38', '2021-11-03 06:42:38'), (13688, 4, '2021-11-03 06:42:38', '2021-11-03 06:42:38'), (13689, 4, '2021-11-03 06:42:39', '2021-11-03 06:42:39'), (13690, 4, '2021-11-03 06:42:39', '2021-11-03 06:42:39'), (13691, 4, '2021-11-03 06:42:39', '2021-11-03 06:42:39'), (13692, 4, '2021-11-03 06:42:39', '2021-11-03 06:42:39'), (13693, 4, '2021-11-03 06:42:39', '2021-11-03 06:42:39'), (13694, 4, '2021-11-03 06:42:40', '2021-11-03 06:42:40'), (13695, 4, '2021-11-03 06:42:40', '2021-11-03 06:42:40'), (13696, 4, '2021-11-03 06:42:40', '2021-11-03 06:42:40'), (13697, 4, '2021-11-03 06:42:40', '2021-11-03 06:42:40'), (13698, 4, '2021-11-03 06:42:40', '2021-11-03 06:42:40'), (13699, 4, '2021-11-03 06:42:40', '2021-11-03 06:42:40'), (13700, 4, '2021-11-03 06:42:41', '2021-11-03 06:42:41'), (13701, 4, '2021-11-03 06:42:41', '2021-11-03 06:42:41'), (13702, 4, '2021-11-03 06:42:41', '2021-11-03 06:42:41'), (13703, 4, '2021-11-03 06:42:41', '2021-11-03 06:42:41'), (13704, 4, '2021-11-03 06:42:41', '2021-11-03 06:42:41'), (13705, 4, '2021-11-03 06:42:42', '2021-11-03 06:42:42'), (13706, 4, '2021-11-03 06:42:42', '2021-11-03 06:42:42'), (13707, 4, '2021-11-03 06:42:42', '2021-11-03 06:42:42'), (13708, 4, '2021-11-03 06:42:42', '2021-11-03 06:42:42'), (13709, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13710, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13711, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13712, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13713, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13714, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13715, 4, '2021-11-03 06:42:43', '2021-11-03 06:42:43'), (13716, 4, '2021-11-03 06:42:44', '2021-11-03 06:42:44'), (13717, 4, '2021-11-03 06:42:44', '2021-11-03 06:42:44'), (13718, 4, '2021-11-03 06:42:44', '2021-11-03 06:42:44'), (13719, 4, '2021-11-03 06:42:44', '2021-11-03 06:42:44'), (13720, 4, '2021-11-03 06:42:44', '2021-11-03 06:42:44'), (13721, 4, '2021-11-03 06:42:45', '2021-11-03 06:42:45'), (13722, 4, '2021-11-03 06:42:45', '2021-11-03 06:42:45'), (13723, 4, '2021-11-03 06:42:45', '2021-11-03 06:42:45'), (13724, 4, '2021-11-03 06:42:45', '2021-11-03 06:42:45'), (13725, 4, '2021-11-03 06:42:46', '2021-11-03 06:42:46'), (13726, 4, '2021-11-03 06:42:46', '2021-11-03 06:42:46'), (13727, 4, '2021-11-03 06:42:46', '2021-11-03 06:42:46'), (13728, 4, '2021-11-03 06:42:46', '2021-11-03 06:42:46'), (13729, 4, '2021-11-03 06:42:47', '2021-11-03 06:42:47'), (13730, 4, '2021-11-03 06:42:47', '2021-11-03 06:42:47'), (13731, 4, '2021-11-03 06:42:47', '2021-11-03 06:42:47'), (13732, 4, '2021-11-03 06:42:47', '2021-11-03 06:42:47'), (13733, 4, '2021-11-03 06:42:47', '2021-11-03 06:42:47'), (13734, 4, '2021-11-03 06:42:48', '2021-11-03 06:42:48'), (13735, 4, '2021-11-03 06:42:48', '2021-11-03 06:42:48'), (13736, 4, '2021-11-03 06:42:48', '2021-11-03 06:42:48'), (13737, 4, '2021-11-03 06:42:48', '2021-11-03 06:42:48'), (13738, 4, '2021-11-03 06:42:48', '2021-11-03 06:42:48'), (13739, 4, '2021-11-03 06:42:49', '2021-11-03 06:42:49'), (13740, 4, '2021-11-03 06:42:49', '2021-11-03 06:42:49'), (13741, 4, '2021-11-03 06:42:49', '2021-11-03 06:42:49'), (13742, 4, '2021-11-03 06:42:49', '2021-11-03 06:42:49'), (13743, 4, '2021-11-03 06:42:49', '2021-11-03 06:42:49'), (13744, 4, '2021-11-03 06:42:50', '2021-11-03 06:42:50'), (13745, 4, '2021-11-03 06:42:50', '2021-11-03 06:42:50'), (13746, 4, '2021-11-03 06:42:50', '2021-11-03 06:42:50'), (13747, 4, '2021-11-03 06:42:50', '2021-11-03 06:42:50'), (13748, 4, '2021-11-03 06:42:50', '2021-11-03 06:42:50'), (13749, 4, '2021-11-03 06:42:50', '2021-11-03 06:42:50'), (13750, 4, '2021-11-03 06:42:51', '2021-11-03 06:42:51'), (13751, 4, '2021-11-03 06:42:51', '2021-11-03 06:42:51'), (13752, 4, '2021-11-03 06:42:51', '2021-11-03 06:42:51'), (13753, 4, '2021-11-03 06:42:51', '2021-11-03 06:42:51'), (13754, 4, '2021-11-03 06:42:51', '2021-11-03 06:42:51'), (13755, 4, '2021-11-03 06:42:52', '2021-11-03 06:42:52'), (13756, 4, '2021-11-03 06:42:52', '2021-11-03 06:42:52'), (13757, 4, '2021-11-03 06:42:52', '2021-11-03 06:42:52'), (13758, 4, '2021-11-03 06:42:52', '2021-11-03 06:42:52'), (13759, 4, '2021-11-03 06:42:52', '2021-11-03 06:42:52'), (13760, 4, '2021-11-03 06:42:53', '2021-11-03 06:42:53'), (13761, 4, '2021-11-03 06:42:53', '2021-11-03 06:42:53'), (13762, 4, '2021-11-03 06:42:53', '2021-11-03 06:42:53'), (13763, 4, '2021-11-03 06:42:53', '2021-11-03 06:42:53'), (13764, 4, '2021-11-03 06:42:53', '2021-11-03 06:42:53'), (13765, 4, '2021-11-03 06:42:54', '2021-11-03 06:42:54'), (13766, 4, '2021-11-03 06:42:54', '2021-11-03 06:42:54'), (13767, 4, '2021-11-03 06:42:54', '2021-11-03 06:42:54'), (13768, 4, '2021-11-03 06:42:54', '2021-11-03 06:42:54'), (13769, 4, '2021-11-03 06:42:54', '2021-11-03 06:42:54'), (13770, 4, '2021-11-03 06:42:55', '2021-11-03 06:42:55'), (13771, 4, '2021-11-03 06:42:55', '2021-11-03 06:42:55'), (13772, 4, '2021-11-03 06:42:55', '2021-11-03 06:42:55'), (13773, 4, '2021-11-03 06:42:55', '2021-11-03 06:42:55'), (13774, 4, '2021-11-03 06:42:55', '2021-11-03 06:42:55'), (13775, 4, '2021-11-03 06:42:56', '2021-11-03 06:42:56'), (13776, 4, '2021-11-03 06:42:56', '2021-11-03 06:42:56'), (13777, 4, '2021-11-03 06:42:57', '2021-11-03 06:42:57'), (13778, 4, '2021-11-03 06:42:57', '2021-11-03 06:42:57'), (13779, 4, '2021-11-03 06:42:57', '2021-11-03 06:42:57'), (13780, 4, '2021-11-03 06:42:57', '2021-11-03 06:42:57'), (13781, 4, '2021-11-03 06:42:58', '2021-11-03 06:42:58'), (13782, 4, '2021-11-03 06:42:58', '2021-11-03 06:42:58'), (13783, 4, '2021-11-03 06:42:58', '2021-11-03 06:42:58'), (13784, 4, '2021-11-03 06:42:59', '2021-11-03 06:42:59'), (13785, 4, '2021-11-03 06:42:59', '2021-11-03 06:42:59'), (13786, 4, '2021-11-03 06:42:59', '2021-11-03 06:42:59'), (13787, 4, '2021-11-03 06:42:59', '2021-11-03 06:42:59'), (13788, 4, '2021-11-03 06:43:00', '2021-11-03 06:43:00'), (13789, 4, '2021-11-03 06:43:00', '2021-11-03 06:43:00'), (13790, 4, '2021-11-03 06:43:00', '2021-11-03 06:43:00'), (13791, 4, '2021-11-03 06:43:00', '2021-11-03 06:43:00'), (13792, 4, '2021-11-03 06:43:01', '2021-11-03 06:43:01'), (13793, 4, '2021-11-03 06:43:01', '2021-11-03 06:43:01'), (13794, 4, '2021-11-03 06:43:01', '2021-11-03 06:43:01'), (13795, 4, '2021-11-03 06:43:02', '2021-11-03 06:43:02'), (13796, 4, '2021-11-03 06:43:02', '2021-11-03 06:43:02'), (13797, 4, '2021-11-03 06:43:02', '2021-11-03 06:43:02'), (13798, 4, '2021-11-03 06:43:02', '2021-11-03 06:43:02'), (13799, 4, '2021-11-03 06:43:03', '2021-11-03 06:43:03'), (13800, 4, '2021-11-03 06:43:03', '2021-11-03 06:43:03'), (13801, 4, '2021-11-03 06:43:03', '2021-11-03 06:43:03'), (13802, 4, '2021-11-03 06:43:03', '2021-11-03 06:43:03'), (13803, 4, '2021-11-03 06:43:03', '2021-11-03 06:43:03'), (13804, 4, '2021-11-03 06:43:04', '2021-11-03 06:43:04'), (13805, 4, '2021-11-03 06:43:04', '2021-11-03 06:43:04'), (13806, 4, '2021-11-03 06:43:04', '2021-11-03 06:43:04'), (13807, 4, '2021-11-03 06:43:04', '2021-11-03 06:43:04'), (13808, 4, '2021-11-03 06:43:05', '2021-11-03 06:43:05'), (13809, 4, '2021-11-03 06:43:05', '2021-11-03 06:43:05'), (13810, 4, '2021-11-03 06:43:05', '2021-11-03 06:43:05'), (13811, 4, '2021-11-03 06:43:05', '2021-11-03 06:43:05'), (13812, 4, '2021-11-03 06:43:05', '2021-11-03 06:43:05'), (13813, 4, '2021-11-03 06:43:06', '2021-11-03 06:43:06'), (13814, 4, '2021-11-03 06:43:06', '2021-11-03 06:43:06'), (13815, 4, '2021-11-03 06:43:06', '2021-11-03 06:43:06'), (13816, 4, '2021-11-03 06:43:06', '2021-11-03 06:43:06'), (13817, 4, '2021-11-03 06:43:06', '2021-11-03 06:43:06'), (13818, 4, '2021-11-03 06:43:07', '2021-11-03 06:43:07'), (13819, 4, '2021-11-03 06:43:07', '2021-11-03 06:43:07'), (13820, 4, '2021-11-03 06:43:07', '2021-11-03 06:43:07'), (13821, 4, '2021-11-03 06:43:07', '2021-11-03 06:43:07'), (13822, 4, '2021-11-03 06:43:08', '2021-11-03 06:43:08'), (13823, 4, '2021-11-03 06:43:08', '2021-11-03 06:43:08'), (13824, 4, '2021-11-03 06:43:08', '2021-11-03 06:43:08'), (13825, 4, '2021-11-03 06:43:10', '2021-11-03 06:43:10'), (13826, 4, '2021-11-03 06:43:10', '2021-11-03 06:43:10'), (13827, 4, '2021-11-03 06:43:10', '2021-11-03 06:43:10'), (13828, 4, '2021-11-03 06:43:11', '2021-11-03 06:43:11'), (13829, 4, '2021-11-03 06:43:11', '2021-11-03 06:43:11'), (13830, 4, '2021-11-03 06:43:11', '2021-11-03 06:43:11'), (13831, 4, '2021-11-03 06:43:12', '2021-11-03 06:43:12'), (13832, 4, '2021-11-03 06:43:12', '2021-11-03 06:43:12'), (13833, 4, '2021-11-03 06:43:12', '2021-11-03 06:43:12'), (13834, 4, '2021-11-03 06:43:12', '2021-11-03 06:43:12'), (13835, 4, '2021-11-03 06:43:12', '2021-11-03 06:43:12'), (13836, 4, '2021-11-03 06:43:13', '2021-11-03 06:43:13'), (13837, 4, '2021-11-03 06:43:13', '2021-11-03 06:43:13'), (13838, 4, '2021-11-03 06:43:13', '2021-11-03 06:43:13'), (13839, 4, '2021-11-03 06:43:13', '2021-11-03 06:43:13'), (13840, 4, '2021-11-03 06:43:13', '2021-11-03 06:43:13'), (13841, 4, '2021-11-03 06:43:14', '2021-11-03 06:43:14'), (13842, 4, '2021-11-03 06:43:14', '2021-11-03 06:43:14'), (13843, 4, '2021-11-03 06:43:14', '2021-11-03 06:43:14'), (13844, 4, '2021-11-03 06:43:14', '2021-11-03 06:43:14'), (13845, 4, '2021-11-03 06:43:15', '2021-11-03 06:43:15'), (13846, 4, '2021-11-03 06:43:15', '2021-11-03 06:43:15'), (13847, 4, '2021-11-03 06:43:15', '2021-11-03 06:43:15'), (13848, 4, '2021-11-03 06:43:15', '2021-11-03 06:43:15'), (13849, 4, '2021-11-03 06:43:16', '2021-11-03 06:43:16'), (13850, 4, '2021-11-03 06:43:16', '2021-11-03 06:43:16'), (13851, 4, '2021-11-03 06:43:16', '2021-11-03 06:43:16'), (13852, 4, '2021-11-03 06:43:16', '2021-11-03 06:43:16'), (13853, 4, '2021-11-03 06:43:17', '2021-11-03 06:43:17'), (13854, 4, '2021-11-03 06:43:17', '2021-11-03 06:43:17'), (13855, 4, '2021-11-03 06:43:17', '2021-11-03 06:43:17'), (13856, 4, '2021-11-03 06:43:17', '2021-11-03 06:43:17'), (13857, 4, '2021-11-03 06:43:17', '2021-11-03 06:43:17'), (13858, 4, '2021-11-03 06:43:18', '2021-11-03 06:43:18'), (13859, 4, '2021-11-03 06:43:18', '2021-11-03 06:43:18'), (13860, 4, '2021-11-03 06:43:18', '2021-11-03 06:43:18'), (13861, 4, '2021-11-03 06:43:19', '2021-11-03 06:43:19'), (13862, 4, '2021-11-03 06:43:19', '2021-11-03 06:43:19'), (13863, 4, '2021-11-03 06:43:19', '2021-11-03 06:43:19'), (13864, 4, '2021-11-03 06:43:19', '2021-11-03 06:43:19'), (13865, 4, '2021-11-03 06:43:20', '2021-11-03 06:43:20'), (13866, 4, '2021-11-03 06:43:20', '2021-11-03 06:43:20'), (13867, 4, '2021-11-03 06:43:20', '2021-11-03 06:43:20'), (13868, 4, '2021-11-03 06:43:20', '2021-11-03 06:43:20'), (13869, 4, '2021-11-03 06:43:20', '2021-11-03 06:43:20'), (13870, 4, '2021-11-03 06:43:21', '2021-11-03 06:43:21'), (13871, 4, '2021-11-03 06:43:33', '2021-11-03 06:43:33'), (13872, 4, '2021-11-03 06:43:33', '2021-11-03 06:43:33'), (13873, 4, '2021-11-03 06:43:33', '2021-11-03 06:43:33'), (13874, 4, '2021-11-03 06:43:34', '2021-11-03 06:43:34'), (13875, 4, '2021-11-03 06:43:34', '2021-11-03 06:43:34'), (13876, 4, '2021-11-03 06:43:34', '2021-11-03 06:43:34'), (13877, 4, '2021-11-03 06:43:34', '2021-11-03 06:43:34'), (13878, 4, '2021-11-03 06:43:34', '2021-11-03 06:43:34'), (13879, 4, '2021-11-03 06:43:35', '2021-11-03 06:43:35'), (13880, 4, '2021-11-03 06:43:35', '2021-11-03 06:43:35'), (13881, 4, '2021-11-03 06:43:35', '2021-11-03 06:43:35'), (13882, 4, '2021-11-03 06:43:35', '2021-11-03 06:43:35'), (13883, 4, '2021-11-03 06:43:36', '2021-11-03 06:43:36'), (13884, 4, '2021-11-03 06:43:36', '2021-11-03 06:43:36'), (13885, 4, '2021-11-03 06:43:36', '2021-11-03 06:43:36'), (13886, 4, '2021-11-03 06:43:36', '2021-11-03 06:43:36'), (13887, 4, '2021-11-03 06:43:36', '2021-11-03 06:43:36'), (13888, 4, '2021-11-03 06:44:43', '2021-11-03 06:44:43'), (13889, 4, '2021-11-03 06:44:44', '2021-11-03 06:44:44'), (13890, 4, '2021-11-03 06:44:45', '2021-11-03 06:44:45'), (13891, 4, '2021-11-03 06:44:46', '2021-11-03 06:44:46'), (13892, 4, '2021-11-03 06:44:46', '2021-11-03 06:44:46'), (13893, 4, '2021-11-03 06:44:47', '2021-11-03 06:44:47'), (13894, 4, '2021-11-03 06:44:47', '2021-11-03 06:44:47'), (13895, 4, '2021-11-03 06:44:47', '2021-11-03 06:44:47'), (13896, 4, '2021-11-03 06:44:50', '2021-11-03 06:44:50'), (13897, 4, '2021-11-03 06:44:50', '2021-11-03 06:44:50'), (13898, 4, '2021-11-03 06:44:50', '2021-11-03 06:44:50'), (13899, 4, '2021-11-03 06:44:51', '2021-11-03 06:44:51'), (13900, 4, '2021-11-03 06:44:51', '2021-11-03 06:44:51'), (13901, 4, '2021-11-03 06:44:51', '2021-11-03 06:44:51'), (13902, 4, '2021-11-03 06:44:51', '2021-11-03 06:44:51'), (13903, 4, '2021-11-03 06:44:52', '2021-11-03 06:44:52'), (13904, 4, '2021-11-03 06:44:52', '2021-11-03 06:44:52'), (13905, 4, '2021-11-03 06:44:53', '2021-11-03 06:44:53'), (13906, 4, '2021-11-03 06:44:53', '2021-11-03 06:44:53'), (13907, 4, '2021-11-03 06:44:54', '2021-11-03 06:44:54'), (13908, 4, '2021-11-03 06:44:54', '2021-11-03 06:44:54'), (13909, 4, '2021-11-03 06:44:54', '2021-11-03 06:44:54'), (13910, 4, '2021-11-03 06:44:55', '2021-11-03 06:44:55'), (13911, 4, '2021-11-03 06:44:56', '2021-11-03 06:44:56'), (13912, 4, '2021-11-03 06:44:56', '2021-11-03 06:44:56'), (13913, 4, '2021-11-03 06:44:57', '2021-11-03 06:44:57'), (13914, 4, '2021-11-03 06:44:57', '2021-11-03 06:44:57'), (13915, 4, '2021-11-03 06:44:57', '2021-11-03 06:44:57'), (13916, 4, '2021-11-03 06:44:57', '2021-11-03 06:44:57'), (13917, 4, '2021-11-03 06:44:57', '2021-11-03 06:44:57'), (13918, 4, '2021-11-03 06:44:57', '2021-11-03 06:44:57'), (13919, 4, '2021-11-03 06:44:58', '2021-11-03 06:44:58'), (13920, 4, '2021-11-03 06:44:58', '2021-11-03 06:44:58'), (13921, 4, '2021-11-03 06:44:58', '2021-11-03 06:44:58'), (13922, 4, '2021-11-03 06:44:59', '2021-11-03 06:44:59'), (13923, 4, '2021-11-03 06:44:59', '2021-11-03 06:44:59'), (13924, 4, '2021-11-03 06:44:59', '2021-11-03 06:44:59'), (13925, 4, '2021-11-03 06:44:59', '2021-11-03 06:44:59'), (13926, 4, '2021-11-03 06:45:00', '2021-11-03 06:45:00'), (13927, 4, '2021-11-03 06:45:00', '2021-11-03 06:45:00'), (13928, 4, '2021-11-03 06:45:00', '2021-11-03 06:45:00'), (13929, 4, '2021-11-03 06:45:00', '2021-11-03 06:45:00'), (13930, 4, '2021-11-03 06:45:00', '2021-11-03 06:45:00'), (13931, 4, '2021-11-03 06:45:01', '2021-11-03 06:45:01'), (13932, 4, '2021-11-03 06:45:01', '2021-11-03 06:45:01'), (13933, 4, '2021-11-03 06:45:01', '2021-11-03 06:45:01'), (13934, 4, '2021-11-03 06:45:01', '2021-11-03 06:45:01'), (13935, 4, '2021-11-03 06:45:01', '2021-11-03 06:45:01'), (13936, 4, '2021-11-03 06:45:02', '2021-11-03 06:45:02'), (13937, 4, '2021-11-03 06:45:02', '2021-11-03 06:45:02'), (13938, 4, '2021-11-03 06:45:02', '2021-11-03 06:45:02'), (13939, 4, '2021-11-03 06:45:02', '2021-11-03 06:45:02'), (13940, 4, '2021-11-03 06:45:02', '2021-11-03 06:45:02'), (13941, 4, '2021-11-03 06:45:03', '2021-11-03 06:45:03'), (13942, 4, '2021-11-03 06:45:03', '2021-11-03 06:45:03'), (13943, 4, '2021-11-03 06:45:03', '2021-11-03 06:45:03'), (13944, 4, '2021-11-03 06:45:03', '2021-11-03 06:45:03'), (13945, 4, '2021-11-03 06:45:04', '2021-11-03 06:45:04'), (13946, 4, '2021-11-03 06:45:04', '2021-11-03 06:45:04'), (13947, 4, '2021-11-03 06:45:04', '2021-11-03 06:45:04'), (13948, 4, '2021-11-03 06:45:05', '2021-11-03 06:45:05'), (13949, 4, '2021-11-03 06:45:05', '2021-11-03 06:45:05'), (13950, 4, '2021-11-03 06:45:05', '2021-11-03 06:45:05'), (13951, 4, '2021-11-03 06:45:05', '2021-11-03 06:45:05'), (13952, 4, '2021-11-03 06:45:05', '2021-11-03 06:45:05'), (13953, 4, '2021-11-03 06:45:05', '2021-11-03 06:45:05'), (13954, 4, '2021-11-03 06:45:06', '2021-11-03 06:45:06'), (13955, 4, '2021-11-03 06:45:06', '2021-11-03 06:45:06'), (13956, 4, '2021-11-03 06:45:06', '2021-11-03 06:45:06'), (13957, 4, '2021-11-03 06:45:06', '2021-11-03 06:45:06'), (13958, 4, '2021-11-03 06:45:06', '2021-11-03 06:45:06'), (13959, 4, '2021-11-03 06:45:07', '2021-11-03 06:45:07'), (13960, 4, '2021-11-03 06:45:07', '2021-11-03 06:45:07'), (13961, 4, '2021-11-03 06:45:07', '2021-11-03 06:45:07'), (13962, 4, '2021-11-03 06:45:07', '2021-11-03 06:45:07'), (13963, 4, '2021-11-03 06:45:08', '2021-11-03 06:45:08'), (13964, 4, '2021-11-03 06:45:08', '2021-11-03 06:45:08'), (13965, 4, '2021-11-03 06:45:09', '2021-11-03 06:45:09'), (13966, 4, '2021-11-03 06:45:09', '2021-11-03 06:45:09'), (13967, 4, '2021-11-03 06:45:10', '2021-11-03 06:45:10'), (13968, 4, '2021-11-03 06:45:10', '2021-11-03 06:45:10'), (13969, 4, '2021-11-03 06:45:10', '2021-11-03 06:45:10'), (13970, 4, '2021-11-03 06:45:10', '2021-11-03 06:45:10'), (13971, 4, '2021-11-03 06:45:11', '2021-11-03 06:45:11'), (13972, 4, '2021-11-03 06:45:11', '2021-11-03 06:45:11'), (13973, 4, '2021-11-03 06:45:11', '2021-11-03 06:45:11'), (13974, 4, '2021-11-03 06:45:11', '2021-11-03 06:45:11'), (13975, 4, '2021-11-03 06:45:12', '2021-11-03 06:45:12'), (13976, 4, '2021-11-03 06:45:12', '2021-11-03 06:45:12'), (13977, 4, '2021-11-03 06:45:12', '2021-11-03 06:45:12'), (13978, 4, '2021-11-03 06:45:12', '2021-11-03 06:45:12'), (13979, 4, '2021-11-03 06:45:12', '2021-11-03 06:45:12'), (13980, 4, '2021-11-03 06:45:13', '2021-11-03 06:45:13'), (13981, 4, '2021-11-03 06:45:13', '2021-11-03 06:45:13'), (13982, 4, '2021-11-03 06:45:13', '2021-11-03 06:45:13'), (13983, 4, '2021-11-03 06:45:13', '2021-11-03 06:45:13'), (13984, 4, '2021-11-03 06:45:13', '2021-11-03 06:45:13'), (13985, 4, '2021-11-03 06:45:14', '2021-11-03 06:45:14'), (13986, 4, '2021-11-03 06:45:14', '2021-11-03 06:45:14'), (13987, 4, '2021-11-03 06:45:14', '2021-11-03 06:45:14'), (13988, 4, '2021-11-03 06:45:14', '2021-11-03 06:45:14'), (13989, 4, '2021-11-03 06:45:15', '2021-11-03 06:45:15'), (13990, 4, '2021-11-03 06:45:16', '2021-11-03 06:45:16'), (13991, 4, '2021-11-03 06:45:16', '2021-11-03 06:45:16'), (13992, 4, '2021-11-03 06:45:16', '2021-11-03 06:45:16'), (13993, 4, '2021-11-03 06:45:16', '2021-11-03 06:45:16'), (13994, 4, '2021-11-03 06:45:17', '2021-11-03 06:45:17'), (13995, 4, '2021-11-03 06:45:17', '2021-11-03 06:45:17'), (13996, 4, '2021-11-03 06:45:17', '2021-11-03 06:45:17'), (13997, 4, '2021-11-03 06:45:18', '2021-11-03 06:45:18'), (13998, 4, '2021-11-03 06:45:18', '2021-11-03 06:45:18'), (13999, 4, '2021-11-03 06:45:19', '2021-11-03 06:45:19'), (14000, 4, '2021-11-03 06:45:20', '2021-11-03 06:45:20'), (14001, 4, '2021-11-03 06:45:20', '2021-11-03 06:45:20'), (14002, 4, '2021-11-03 06:45:20', '2021-11-03 06:45:20'), (14003, 4, '2021-11-03 06:45:20', '2021-11-03 06:45:20'), (14004, 4, '2021-11-03 06:45:20', '2021-11-03 06:45:20'), (14005, 4, '2021-11-03 06:45:21', '2021-11-03 06:45:21'), (14006, 4, '2021-11-03 06:45:21', '2021-11-03 06:45:21'), (14007, 4, '2021-11-03 06:45:22', '2021-11-03 06:45:22'), (14008, 4, '2021-11-03 06:45:22', '2021-11-03 06:45:22'), (14009, 4, '2021-11-03 06:45:22', '2021-11-03 06:45:22'), (14010, 4, '2021-11-03 06:45:22', '2021-11-03 06:45:22'), (14011, 4, '2021-11-03 06:45:22', '2021-11-03 06:45:22'), (14012, 4, '2021-11-03 06:45:22', '2021-11-03 06:45:22'), (14013, 4, '2021-11-03 06:45:23', '2021-11-03 06:45:23'), (14014, 4, '2021-11-03 06:45:23', '2021-11-03 06:45:23'), (14015, 4, '2021-11-03 06:45:23', '2021-11-03 06:45:23'), (14016, 4, '2021-11-03 06:45:23', '2021-11-03 06:45:23'), (14017, 4, '2021-11-03 06:45:23', '2021-11-03 06:45:23'), (14018, 4, '2021-11-03 06:45:23', '2021-11-03 06:45:23'), (14019, 4, '2021-11-04 06:45:29', '2021-11-04 06:45:29'), (14020, 4, '2021-11-04 06:45:31', '2021-11-04 06:45:31'), (14021, 4, '2021-11-04 06:45:31', '2021-11-04 06:45:31'), (14022, 4, '2021-11-04 06:45:31', '2021-11-04 06:45:31'), (14023, 4, '2021-11-04 06:45:31', '2021-11-04 06:45:31'), (14024, 4, '2021-11-04 06:45:31', '2021-11-04 06:45:31'), (14025, 4, '2021-11-04 06:45:32', '2021-11-04 06:45:32'), (14026, 4, '2021-11-04 06:45:32', '2021-11-04 06:45:32'), (14027, 4, '2021-11-04 06:45:32', '2021-11-04 06:45:32'), (14028, 4, '2021-11-04 06:45:33', '2021-11-04 06:45:33'), (14029, 4, '2021-11-04 06:45:33', '2021-11-04 06:45:33'), (14030, 4, '2021-11-04 06:45:33', '2021-11-04 06:45:33'), (14031, 4, '2021-11-04 06:45:34', '2021-11-04 06:45:34'), (14032, 4, '2021-11-04 06:45:34', '2021-11-04 06:45:34'), (14033, 4, '2021-11-04 06:45:34', '2021-11-04 06:45:34'), (14034, 4, '2021-11-04 06:45:34', '2021-11-04 06:45:34'), (14035, 4, '2021-11-04 06:45:35', '2021-11-04 06:45:35'), (14036, 4, '2021-11-04 06:45:35', '2021-11-04 06:45:35'), (14037, 4, '2021-11-04 06:45:35', '2021-11-04 06:45:35'), (14038, 4, '2021-11-04 06:45:35', '2021-11-04 06:45:35'), (14039, 4, '2021-11-04 06:45:35', '2021-11-04 06:45:35'), (14040, 4, '2021-11-04 06:45:36', '2021-11-04 06:45:36'), (14041, 4, '2021-11-04 06:45:36', '2021-11-04 06:45:36'), (14042, 4, '2021-11-04 06:45:36', '2021-11-04 06:45:36'), (14043, 4, '2021-11-04 06:45:36', '2021-11-04 06:45:36'), (14044, 4, '2021-11-04 06:45:36', '2021-11-04 06:45:36'), (14045, 4, '2021-11-04 06:45:37', '2021-11-04 06:45:37'), (14046, 4, '2021-11-04 06:45:37', '2021-11-04 06:45:37'), (14047, 4, '2021-11-04 06:45:37', '2021-11-04 06:45:37'), (14048, 4, '2021-11-04 06:45:37', '2021-11-04 06:45:37'), (14049, 4, '2021-11-04 06:45:38', '2021-11-04 06:45:38'), (14050, 4, '2021-11-04 06:45:38', '2021-11-04 06:45:38'), (14051, 4, '2021-11-04 06:45:38', '2021-11-04 06:45:38'), (14052, 4, '2021-11-04 06:45:38', '2021-11-04 06:45:38'), (14053, 4, '2021-11-04 06:45:38', '2021-11-04 06:45:38'), (14054, 4, '2021-11-04 06:45:39', '2021-11-04 06:45:39'), (14055, 4, '2021-11-04 06:45:39', '2021-11-04 06:45:39'), (14056, 4, '2021-11-04 06:45:39', '2021-11-04 06:45:39'), (14057, 4, '2021-11-04 06:45:39', '2021-11-04 06:45:39'), (14058, 4, '2021-11-04 06:45:40', '2021-11-04 06:45:40'), (14059, 4, '2021-11-04 06:45:40', '2021-11-04 06:45:40'), (14060, 4, '2021-11-04 06:45:40', '2021-11-04 06:45:40'), (14061, 4, '2021-11-04 06:45:40', '2021-11-04 06:45:40'), (14062, 4, '2021-11-04 06:45:41', '2021-11-04 06:45:41'), (14063, 4, '2021-11-04 06:45:41', '2021-11-04 06:45:41'), (14064, 4, '2021-11-04 06:45:41', '2021-11-04 06:45:41'), (14065, 4, '2021-11-04 06:45:41', '2021-11-04 06:45:41'), (14066, 4, '2021-11-04 06:45:41', '2021-11-04 06:45:41'), (14067, 4, '2021-11-04 06:45:42', '2021-11-04 06:45:42'), (14068, 4, '2021-11-04 06:45:42', '2021-11-04 06:45:42'), (14069, 4, '2021-11-04 06:45:42', '2021-11-04 06:45:42'), (14070, 4, '2021-11-04 06:45:43', '2021-11-04 06:45:43'), (14071, 4, '2021-11-04 06:45:43', '2021-11-04 06:45:43'), (14072, 4, '2021-11-04 06:45:43', '2021-11-04 06:45:43'), (14073, 4, '2021-11-04 06:45:43', '2021-11-04 06:45:43'), (14074, 4, '2021-11-04 06:45:44', '2021-11-04 06:45:44'), (14075, 4, '2021-11-04 06:45:44', '2021-11-04 06:45:44'), (14076, 4, '2021-11-04 06:45:44', '2021-11-04 06:45:44'), (14077, 4, '2021-11-04 06:45:44', '2021-11-04 06:45:44'), (14078, 4, '2021-11-04 06:45:45', '2021-11-04 06:45:45'), (14079, 4, '2021-11-04 06:45:45', '2021-11-04 06:45:45'), (14080, 4, '2021-11-04 06:45:45', '2021-11-04 06:45:45'), (14081, 4, '2021-11-04 06:45:45', '2021-11-04 06:45:45'), (14082, 4, '2021-11-04 06:45:46', '2021-11-04 06:45:46'), (14083, 4, '2021-11-04 06:45:46', '2021-11-04 06:45:46'), (14084, 4, '2021-11-04 06:45:47', '2021-11-04 06:45:47'), (14085, 4, '2021-11-04 06:45:47', '2021-11-04 06:45:47'), (14086, 4, '2021-11-04 06:45:47', '2021-11-04 06:45:47'), (14087, 4, '2021-11-04 06:45:47', '2021-11-04 06:45:47'), (14088, 4, '2021-11-04 06:45:47', '2021-11-04 06:45:47'), (14089, 4, '2021-11-04 06:45:48', '2021-11-04 06:45:48'), (14090, 4, '2021-11-04 06:45:48', '2021-11-04 06:45:48'), (14091, 4, '2021-11-04 06:45:48', '2021-11-04 06:45:48'), (14092, 4, '2021-11-04 06:45:48', '2021-11-04 06:45:48'), (14093, 4, '2021-11-04 06:45:48', '2021-11-04 06:45:48'), (14094, 4, '2021-11-04 06:45:49', '2021-11-04 06:45:49'), (14095, 4, '2021-11-04 06:45:49', '2021-11-04 06:45:49'), (14096, 4, '2021-11-04 06:45:49', '2021-11-04 06:45:49'), (14097, 4, '2021-11-04 06:45:49', '2021-11-04 06:45:49'), (14098, 4, '2021-11-04 06:45:50', '2021-11-04 06:45:50'), (14099, 4, '2021-11-04 06:45:50', '2021-11-04 06:45:50'), (14100, 4, '2021-11-04 06:45:50', '2021-11-04 06:45:50'), (14101, 4, '2021-11-04 06:45:50', '2021-11-04 06:45:50'), (14102, 4, '2021-11-04 06:45:50', '2021-11-04 06:45:50'), (14103, 4, '2021-11-04 06:45:51', '2021-11-04 06:45:51'), (14104, 4, '2021-11-04 06:45:51', '2021-11-04 06:45:51'), (14105, 4, '2021-11-04 06:45:51', '2021-11-04 06:45:51'), (14106, 4, '2021-11-04 06:45:51', '2021-11-04 06:45:51'), (14107, 4, '2021-11-04 06:45:52', '2021-11-04 06:45:52'), (14108, 4, '2021-11-04 06:45:53', '2021-11-04 06:45:53'), (14109, 4, '2021-11-04 06:45:53', '2021-11-04 06:45:53'), (14110, 4, '2021-11-04 06:45:53', '2021-11-04 06:45:53'), (14111, 4, '2021-11-04 06:45:54', '2021-11-04 06:45:54'), (14112, 4, '2021-11-04 06:45:54', '2021-11-04 06:45:54'), (14113, 4, '2021-11-04 06:45:54', '2021-11-04 06:45:54'), (14114, 4, '2021-11-04 06:45:54', '2021-11-04 06:45:54'), (14115, 4, '2021-11-04 06:45:55', '2021-11-04 06:45:55'), (14116, 4, '2021-11-04 06:45:55', '2021-11-04 06:45:55'), (14117, 4, '2021-11-04 06:45:55', '2021-11-04 06:45:55'), (14118, 4, '2021-11-04 06:45:57', '2021-11-04 06:45:57'), (14119, 4, '2021-11-04 06:45:58', '2021-11-04 06:45:58'), (14120, 4, '2021-11-04 06:45:59', '2021-11-04 06:45:59'), (14121, 4, '2021-11-04 06:45:59', '2021-11-04 06:45:59'), (14122, 4, '2021-11-04 06:45:59', '2021-11-04 06:45:59'), (14123, 4, '2021-11-04 06:45:59', '2021-11-04 06:45:59'), (14124, 4, '2021-11-04 06:45:59', '2021-11-04 06:45:59'), (14125, 4, '2021-11-04 06:45:59', '2021-11-04 06:45:59'), (14126, 4, '2021-11-04 06:46:00', '2021-11-04 06:46:00'), (14127, 4, '2021-11-04 06:46:00', '2021-11-04 06:46:00'), (14128, 4, '2021-11-04 06:46:00', '2021-11-04 06:46:00'), (14129, 4, '2021-11-04 06:46:00', '2021-11-04 06:46:00'), (14130, 4, '2021-11-04 06:46:00', '2021-11-04 06:46:00'), (14131, 4, '2021-11-04 06:46:01', '2021-11-04 06:46:01'), (14132, 4, '2021-11-04 06:46:01', '2021-11-04 06:46:01'), (14133, 4, '2021-11-04 06:46:01', '2021-11-04 06:46:01'), (14134, 4, '2021-11-04 06:46:01', '2021-11-04 06:46:01'), (14135, 4, '2021-11-04 06:46:02', '2021-11-04 06:46:02'), (14136, 4, '2021-11-04 06:46:02', '2021-11-04 06:46:02'), (14137, 4, '2021-11-04 06:46:02', '2021-11-04 06:46:02'), (14138, 4, '2021-11-04 06:46:03', '2021-11-04 06:46:03'), (14139, 4, '2021-11-04 06:46:03', '2021-11-04 06:46:03'), (14140, 4, '2021-11-04 06:46:03', '2021-11-04 06:46:03'), (14141, 4, '2021-11-04 06:46:04', '2021-11-04 06:46:04'), (14142, 4, '2021-11-04 06:46:04', '2021-11-04 06:46:04'), (14143, 4, '2021-11-04 06:46:04', '2021-11-04 06:46:04'), (14144, 4, '2021-11-04 06:46:04', '2021-11-04 06:46:04'), (14145, 4, '2021-11-04 06:46:05', '2021-11-04 06:46:05'), (14146, 4, '2021-11-04 06:46:05', '2021-11-04 06:46:05'), (14147, 4, '2021-11-04 06:46:05', '2021-11-04 06:46:05'), (14148, 4, '2021-11-04 06:46:05', '2021-11-04 06:46:05'), (14149, 4, '2021-11-04 06:46:05', '2021-11-04 06:46:05'), (14150, 4, '2021-11-04 06:46:06', '2021-11-04 06:46:06'), (14151, 4, '2021-11-04 06:46:06', '2021-11-04 06:46:06'), (14152, 4, '2021-11-04 06:46:06', '2021-11-04 06:46:06'), (14153, 4, '2021-11-04 06:46:06', '2021-11-04 06:46:06'), (14154, 4, '2021-11-04 06:46:07', '2021-11-04 06:46:07'), (14155, 4, '2021-11-04 06:46:07', '2021-11-04 06:46:07'), (14156, 4, '2021-11-04 06:46:07', '2021-11-04 06:46:07'), (14157, 4, '2021-11-04 06:46:07', '2021-11-04 06:46:07'), (14158, 4, '2021-11-04 06:46:07', '2021-11-04 06:46:07'), (14159, 4, '2021-11-04 06:46:08', '2021-11-04 06:46:08'), (14160, 4, '2021-11-04 06:46:08', '2021-11-04 06:46:08'), (14161, 4, '2021-11-04 06:46:08', '2021-11-04 06:46:08'), (14162, 4, '2021-11-04 06:46:08', '2021-11-04 06:46:08'), (14163, 4, '2021-11-04 06:46:08', '2021-11-04 06:46:08'), (14164, 4, '2021-11-04 06:46:09', '2021-11-04 06:46:09'), (14165, 4, '2021-11-04 06:46:09', '2021-11-04 06:46:09'), (14166, 4, '2021-11-04 06:46:09', '2021-11-04 06:46:09'), (14167, 4, '2021-11-04 06:46:09', '2021-11-04 06:46:09'), (14168, 4, '2021-11-04 06:46:10', '2021-11-04 06:46:10'), (14169, 4, '2021-11-04 06:46:10', '2021-11-04 06:46:10'), (14170, 4, '2021-11-04 06:46:10', '2021-11-04 06:46:10'), (14171, 4, '2021-11-04 06:46:11', '2021-11-04 06:46:11'), (14172, 4, '2021-11-04 06:46:11', '2021-11-04 06:46:11'), (14173, 4, '2021-11-04 06:46:11', '2021-11-04 06:46:11'), (14174, 4, '2021-11-04 06:46:11', '2021-11-04 06:46:11'), (14175, 4, '2021-11-04 06:46:12', '2021-11-04 06:46:12'), (14176, 4, '2021-11-04 06:46:12', '2021-11-04 06:46:12'), (14177, 4, '2021-11-04 06:46:12', '2021-11-04 06:46:12'), (14178, 4, '2021-11-04 06:46:12', '2021-11-04 06:46:12'), (14179, 4, '2021-11-04 06:46:13', '2021-11-04 06:46:13'), (14180, 4, '2021-11-04 06:46:13', '2021-11-04 06:46:13'), (14181, 4, '2021-11-04 06:46:13', '2021-11-04 06:46:13'), (14182, 4, '2021-11-04 06:46:13', '2021-11-04 06:46:13'), (14183, 4, '2021-11-04 06:46:14', '2021-11-04 06:46:14'), (14184, 4, '2021-11-04 06:46:14', '2021-11-04 06:46:14'), (14185, 4, '2021-11-04 06:46:15', '2021-11-04 06:46:15'), (14186, 4, '2021-11-04 06:46:15', '2021-11-04 06:46:15'), (14187, 4, '2021-11-04 06:46:15', '2021-11-04 06:46:15'), (14188, 4, '2021-11-04 06:46:15', '2021-11-04 06:46:15'), (14189, 4, '2021-11-04 06:46:16', '2021-11-04 06:46:16'), (14190, 4, '2021-11-04 06:46:16', '2021-11-04 06:46:16'), (14191, 4, '2021-11-04 06:46:16', '2021-11-04 06:46:16'), (14192, 4, '2021-11-04 06:46:16', '2021-11-04 06:46:16'), (14193, 4, '2021-11-04 06:46:16', '2021-11-04 06:46:16'), (14194, 4, '2021-11-04 06:46:17', '2021-11-04 06:46:17'), (14195, 4, '2021-11-04 06:46:17', '2021-11-04 06:46:17'), (14196, 4, '2021-11-04 06:46:17', '2021-11-04 06:46:17'), (14197, 4, '2021-11-04 06:46:18', '2021-11-04 06:46:18'), (14198, 4, '2021-11-04 06:46:19', '2021-11-04 06:46:19'), (14199, 4, '2021-11-04 06:46:19', '2021-11-04 06:46:19'), (14200, 4, '2021-11-04 06:46:19', '2021-11-04 06:46:19'), (14201, 4, '2021-11-04 06:46:19', '2021-11-04 06:46:19'), (14202, 4, '2021-11-04 06:46:20', '2021-11-04 06:46:20'), (14203, 4, '2021-11-04 06:46:21', '2021-11-04 06:46:21'), (14204, 4, '2021-11-04 06:46:21', '2021-11-04 06:46:21'), (14205, 4, '2021-11-04 06:46:21', '2021-11-04 06:46:21'), (14206, 4, '2021-11-04 06:46:21', '2021-11-04 06:46:21'), (14207, 4, '2021-11-04 06:46:22', '2021-11-04 06:46:22'), (14208, 4, '2021-11-04 06:46:22', '2021-11-04 06:46:22'), (14209, 4, '2021-11-04 06:46:22', '2021-11-04 06:46:22'), (14210, 4, '2021-11-04 06:46:23', '2021-11-04 06:46:23'), (14211, 4, '2021-11-04 06:46:23', '2021-11-04 06:46:23'), (14212, 4, '2021-11-04 06:46:23', '2021-11-04 06:46:23'), (14213, 4, '2021-11-04 06:46:24', '2021-11-04 06:46:24'), (14214, 4, '2021-11-04 06:46:24', '2021-11-04 06:46:24'), (14215, 4, '2021-11-04 06:46:24', '2021-11-04 06:46:24'), (14216, 4, '2021-11-04 06:46:24', '2021-11-04 06:46:24'), (14217, 4, '2021-11-04 06:46:24', '2021-11-04 06:46:24'), (14218, 4, '2021-11-04 06:46:25', '2021-11-04 06:46:25'), (14219, 4, '2021-11-04 06:46:25', '2021-11-04 06:46:25'), (14220, 4, '2021-11-04 06:46:25', '2021-11-04 06:46:25'), (14221, 4, '2021-11-04 06:46:25', '2021-11-04 06:46:25'), (14222, 4, '2021-11-04 06:46:25', '2021-11-04 06:46:25'), (14223, 4, '2021-11-04 06:46:26', '2021-11-04 06:46:26'), (14224, 4, '2021-11-04 06:46:26', '2021-11-04 06:46:26'), (14225, 4, '2021-11-04 06:46:26', '2021-11-04 06:46:26'), (14226, 4, '2021-11-04 06:46:26', '2021-11-04 06:46:26'), (14227, 4, '2021-11-04 06:46:26', '2021-11-04 06:46:26'), (14228, 4, '2021-11-04 06:46:27', '2021-11-04 06:46:27'), (14229, 4, '2021-11-04 06:46:27', '2021-11-04 06:46:27'), (14230, 4, '2021-11-04 06:46:27', '2021-11-04 06:46:27'), (14231, 4, '2021-11-04 06:46:27', '2021-11-04 06:46:27'), (14232, 4, '2021-11-04 06:46:27', '2021-11-04 06:46:27'), (14233, 4, '2021-11-04 06:46:28', '2021-11-04 06:46:28'), (14234, 4, '2021-11-04 06:46:28', '2021-11-04 06:46:28'), (14235, 4, '2021-11-04 06:46:28', '2021-11-04 06:46:28'), (14236, 4, '2021-11-04 06:46:29', '2021-11-04 06:46:29'), (14237, 4, '2021-11-03 06:46:34', '2021-11-03 06:46:34'), (14238, 4, '2021-11-03 06:46:36', '2021-11-03 06:46:36'), (14239, 4, '2021-11-03 06:46:36', '2021-11-03 06:46:36'), (14240, 4, '2021-11-03 06:46:36', '2021-11-03 06:46:36'), (14241, 4, '2021-11-03 06:46:37', '2021-11-03 06:46:37'), (14242, 4, '2021-11-03 06:46:37', '2021-11-03 06:46:37'), (14243, 4, '2021-11-03 06:46:37', '2021-11-03 06:46:37'), (14244, 4, '2021-11-03 06:46:37', '2021-11-03 06:46:37'), (14245, 4, '2021-11-03 06:46:37', '2021-11-03 06:46:37'), (14246, 4, '2021-11-03 06:46:37', '2021-11-03 06:46:37'), (14247, 4, '2021-11-03 06:46:38', '2021-11-03 06:46:38'), (14248, 4, '2021-11-03 06:46:38', '2021-11-03 06:46:38'), (14249, 4, '2021-11-03 06:46:38', '2021-11-03 06:46:38'), (14250, 4, '2021-11-03 06:46:38', '2021-11-03 06:46:38'), (14251, 4, '2021-11-03 06:46:38', '2021-11-03 06:46:38'), (14252, 4, '2021-11-03 06:46:38', '2021-11-03 06:46:38'), (14253, 4, '2021-11-03 06:46:39', '2021-11-03 06:46:39'), (14254, 4, '2021-11-03 06:46:39', '2021-11-03 06:46:39'), (14255, 4, '2021-11-03 06:46:39', '2021-11-03 06:46:39'), (14256, 4, '2021-11-03 06:46:39', '2021-11-03 06:46:39'), (14257, 4, '2021-11-03 06:46:39', '2021-11-03 06:46:39'), (14258, 4, '2021-11-03 06:46:40', '2021-11-03 06:46:40'), (14259, 4, '2021-11-03 06:46:40', '2021-11-03 06:46:40'), (14260, 4, '2021-11-03 06:46:40', '2021-11-03 06:46:40'), (14261, 4, '2021-11-03 06:46:40', '2021-11-03 06:46:40'), (14262, 4, '2021-11-03 06:46:40', '2021-11-03 06:46:40'), (14263, 4, '2021-11-03 06:46:41', '2021-11-03 06:46:41'), (14264, 4, '2021-11-03 06:46:41', '2021-11-03 06:46:41'), (14265, 4, '2021-11-03 06:46:41', '2021-11-03 06:46:41'), (14266, 4, '2021-11-03 06:46:41', '2021-11-03 06:46:41'), (14267, 4, '2021-11-03 06:46:42', '2021-11-03 06:46:42'), (14268, 4, '2021-11-03 06:46:42', '2021-11-03 06:46:42'), (14269, 4, '2021-11-02 06:46:46', '2021-11-02 06:46:46'), (14270, 4, '2021-11-02 06:46:47', '2021-11-02 06:46:47'), (14271, 4, '2021-11-02 06:46:48', '2021-11-02 06:46:48'), (14272, 4, '2021-11-02 06:46:48', '2021-11-02 06:46:48'), (14273, 4, '2021-11-02 06:46:48', '2021-11-02 06:46:48'), (14274, 4, '2021-11-02 06:46:49', '2021-11-02 06:46:49'), (14275, 4, '2021-11-02 06:46:49', '2021-11-02 06:46:49'), (14276, 4, '2021-11-02 06:46:49', '2021-11-02 06:46:49'), (14277, 4, '2021-11-02 06:46:49', '2021-11-02 06:46:49'), (14278, 4, '2021-11-02 06:46:50', '2021-11-02 06:46:50'), (14279, 4, '2021-11-02 06:46:50', '2021-11-02 06:46:50'), (14280, 4, '2021-11-02 06:46:51', '2021-11-02 06:46:51'), (14281, 4, '2021-11-02 06:46:51', '2021-11-02 06:46:51'), (14282, 4, '2021-11-02 06:46:51', '2021-11-02 06:46:51'), (14283, 4, '2021-11-02 06:46:51', '2021-11-02 06:46:51'), (14284, 4, '2021-11-02 06:46:51', '2021-11-02 06:46:51'), (14285, 4, '2021-11-02 06:46:52', '2021-11-02 06:46:52'), (14286, 4, '2021-11-02 06:46:52', '2021-11-02 06:46:52'), (14287, 4, '2021-11-02 06:46:52', '2021-11-02 06:46:52'), (14288, 4, '2021-11-02 06:46:52', '2021-11-02 06:46:52'), (14289, 4, '2021-11-02 06:46:53', '2021-11-02 06:46:53'), (14290, 4, '2021-11-02 06:46:53', '2021-11-02 06:46:53'), (14291, 4, '2021-11-02 06:46:53', '2021-11-02 06:46:53'), (14292, 4, '2021-11-02 06:46:53', '2021-11-02 06:46:53'), (14293, 4, '2021-11-02 06:46:54', '2021-11-02 06:46:54'), (14294, 4, '2021-11-02 06:46:54', '2021-11-02 06:46:54'), (14295, 4, '2021-11-02 06:46:54', '2021-11-02 06:46:54'), (14296, 4, '2021-11-02 06:46:54', '2021-11-02 06:46:54'), (14297, 4, '2021-11-02 06:46:54', '2021-11-02 06:46:54'), (14298, 4, '2021-11-02 06:46:54', '2021-11-02 06:46:54'), (14299, 4, '2021-11-02 06:46:55', '2021-11-02 06:46:55'), (14300, 4, '2021-11-02 06:46:55', '2021-11-02 06:46:55'), (14301, 4, '2021-11-02 06:46:55', '2021-11-02 06:46:55'), (14302, 4, '2021-11-02 06:46:55', '2021-11-02 06:46:55'), (14303, 4, '2021-11-02 06:46:55', '2021-11-02 06:46:55'), (14304, 4, '2021-11-02 06:46:55', '2021-11-02 06:46:55'), (14305, 4, '2021-11-02 06:46:56', '2021-11-02 06:46:56'), (14306, 4, '2021-11-02 06:46:56', '2021-11-02 06:46:56'), (14307, 4, '2021-11-02 06:46:56', '2021-11-02 06:46:56'), (14308, 4, '2021-11-02 06:46:57', '2021-11-02 06:46:57'), (14309, 4, '2021-11-02 06:46:57', '2021-11-02 06:46:57'), (14310, 4, '2021-11-02 06:46:57', '2021-11-02 06:46:57'), (14311, 4, '2021-11-02 06:47:47', '2021-11-02 06:47:47'), (14312, 4, '2021-11-02 06:47:47', '2021-11-02 06:47:47'), (14313, 4, '2021-11-02 06:47:47', '2021-11-02 06:47:47'), (14314, 4, '2021-11-02 06:47:48', '2021-11-02 06:47:48'), (14315, 4, '2021-11-02 06:47:48', '2021-11-02 06:47:48'), (14316, 4, '2021-11-02 06:47:49', '2021-11-02 06:47:49'), (14317, 4, '2021-11-02 06:47:49', '2021-11-02 06:47:49'), (14318, 4, '2021-11-02 06:47:49', '2021-11-02 06:47:49'), (14319, 4, '2021-11-02 06:47:50', '2021-11-02 06:47:50'), (14320, 4, '2021-11-02 06:47:50', '2021-11-02 06:47:50'), (14321, 4, '2021-11-02 06:47:51', '2021-11-02 06:47:51'), (14322, 4, '2021-11-02 06:47:51', '2021-11-02 06:47:51'), (14323, 4, '2021-11-02 06:47:51', '2021-11-02 06:47:51'), (14324, 4, '2021-11-01 06:47:55', '2021-11-01 06:47:55'), (14325, 4, '2021-11-01 06:47:57', '2021-11-01 06:47:57'), (14326, 4, '2021-11-01 06:47:57', '2021-11-01 06:47:57'), (14327, 4, '2021-11-01 06:47:58', '2021-11-01 06:47:58'), (14328, 4, '2021-11-01 06:47:58', '2021-11-01 06:47:58'), (14329, 4, '2021-11-01 06:47:58', '2021-11-01 06:47:58'), (14330, 4, '2021-11-01 06:47:59', '2021-11-01 06:47:59'), (14331, 4, '2021-11-01 06:48:00', '2021-11-01 06:48:00'), (14332, 4, '2021-11-01 06:48:01', '2021-11-01 06:48:01'), (14333, 4, '2021-11-01 06:48:01', '2021-11-01 06:48:01'), (14334, 4, '2021-11-01 06:48:02', '2021-11-01 06:48:02'), (14335, 4, '2021-11-01 06:48:03', '2021-11-01 06:48:03'), (14336, 4, '2021-11-01 06:48:03', '2021-11-01 06:48:03'), (14337, 4, '2021-11-01 06:48:03', '2021-11-01 06:48:03'), (14338, 4, '2021-11-01 06:48:03', '2021-11-01 06:48:03'), (14339, 4, '2021-11-01 06:48:04', '2021-11-01 06:48:04'), (14340, 4, '2021-11-01 06:48:05', '2021-11-01 06:48:05'), (14341, 4, '2021-11-01 06:48:06', '2021-11-01 06:48:06'), (14342, 4, '2021-11-01 06:48:07', '2021-11-01 06:48:07'), (14343, 4, '2021-11-01 06:48:07', '2021-11-01 06:48:07'), (14344, 4, '2021-11-01 06:48:08', '2021-11-01 06:48:08'), (14345, 4, '2021-11-01 06:48:08', '2021-11-01 06:48:08'), (14346, 4, '2021-11-01 06:48:09', '2021-11-01 06:48:09'), (14347, 4, '2021-11-01 06:48:09', '2021-11-01 06:48:09'), (14348, 4, '2021-11-01 06:48:11', '2021-11-01 06:48:11'), (14349, 4, '2021-11-01 06:48:12', '2021-11-01 06:48:12'), (14350, 4, '2021-11-01 06:48:13', '2021-11-01 06:48:13'), (14351, 4, '2021-11-01 06:48:13', '2021-11-01 06:48:13'), (14352, 4, '2021-11-01 06:48:15', '2021-11-01 06:48:15'), (14353, 4, '2021-11-01 06:48:15', '2021-11-01 06:48:15'), (14354, 4, '2021-11-01 06:48:16', '2021-11-01 06:48:16'), (14355, 4, '2021-11-01 06:48:16', '2021-11-01 06:48:16'), (14356, 4, '2021-11-08 06:12:28', '2021-11-08 06:12:28'), (14357, 4, '2021-11-08 06:14:53', '2021-11-08 06:14:53'), (14358, 4, '2021-11-08 06:15:21', '2021-11-08 06:15:21'), (14359, 4, '2021-11-08 06:16:18', '2021-11-08 06:16:18'), (14360, 4, '2021-11-08 06:21:37', '2021-11-08 06:21:37'), (14361, 4, '2021-11-08 06:21:47', '2021-11-08 06:21:47'), (14362, 4, '2021-11-08 06:25:33', '2021-11-08 06:25:33'), (14363, 4, '2021-11-08 06:25:43', '2021-11-08 06:25:43'), (14364, 4, '2021-11-08 06:32:26', '2021-11-08 06:32:26'); -- -------------------------------------------------------- -- -- Struktur dari tabel `migrations` -- CREATE TABLE `migrations` ( `id` int UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2016_06_01_000001_create_oauth_auth_codes_table', 1), (4, '2016_06_01_000002_create_oauth_access_tokens_table', 1), (5, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1), (6, '2016_06_01_000004_create_oauth_clients_table', 1), (7, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1), (8, '2019_08_19_000000_create_failed_jobs_table', 1), (9, '2021_01_05_095838_create_permission_tables', 1), (10, '2021_01_05_100553_add_phone_into_users_table', 1), (11, '2021_02_25_180616_add_avatar_into_users_table', 1), (12, '2021_10_12_101515_add_rfid_uid_into_users_table', 2), (13, '2021_10_24_124955_create_logs_table', 3); -- -------------------------------------------------------- -- -- Struktur dari tabel `model_has_permissions` -- CREATE TABLE `model_has_permissions` ( `permission_id` bigint UNSIGNED NOT NULL, `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `model_has_roles` -- CREATE TABLE `model_has_roles` ( `role_id` bigint UNSIGNED NOT NULL, `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `model_has_roles` -- INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES (1, 'App\\User', 1), (2, 'App\\User', 1), (3, 'App\\User', 1), (2, 'App\\User', 2), (3, 'App\\User', 3), (4, 'App\\User', 4); -- -------------------------------------------------------- -- -- Struktur dari tabel `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint UNSIGNED DEFAULT NULL, `client_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `client_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint UNSIGNED DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `provider` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `redirect` text COLLATE utf8mb4_unicode_ci 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` bigint UNSIGNED NOT NULL, `client_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `permissions` -- CREATE TABLE `permissions` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `roles` -- CREATE TABLE `roles` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `roles` -- INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'developer', 'web', '2021-10-11 14:37:21', '2021-10-11 14:37:21'), (2, 'superadmin', 'web', '2021-10-11 14:37:21', '2021-10-11 14:37:21'), (3, 'admin', 'web', '2021-10-11 14:37:21', '2021-10-11 14:37:21'), (4, 'user', 'web', '2021-10-11 14:37:21', '2021-10-11 14:37:21'); -- -------------------------------------------------------- -- -- Struktur dari tabel `role_has_permissions` -- CREATE TABLE `role_has_permissions` ( `permission_id` bigint UNSIGNED NOT NULL, `role_id` bigint UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id` bigint UNSIGNED NOT NULL, `rfid_uid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `rfid_uid`, `name`, `email`, `phone`, `avatar`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, NULL, 'developer', '<EMAIL>', '08222221112', NULL, NULL, '$2y$10$di9qoVbKE6GM1MTkk7yFFuxj5PyO7nFDJG/RtAs016/fiWFszJ2DW', NULL, '2021-10-11 14:37:21', '2021-10-11 14:37:21'), (2, NULL, 'superadmin', '<EMAIL>', '08222211111', NULL, NULL, '$2y$10$dvqtYlymfL63KO497QRQYumMN6WCKh5WeCdozlXJb5VMO/hoEd7OK', NULL, '2021-10-11 14:37:21', '2021-10-11 14:37:21'), (3, NULL, 'admin', '<EMAIL>', '08222211111', NULL, NULL, '$2y$10$l.0XKrnekua/BumFDicqAuWLwPa63elIKVXxyQLV2P/NsEgAM/3HG', NULL, '2021-10-11 14:37:21', '2021-10-11 14:37:21'), (4, '58-235-113-173-13', 'pegawai 1', '<EMAIL>', NULL, NULL, NULL, '$2y$10$Kh1ab002rhzvraHZtqflR.cgfcVs/rWzw8n4/aqZK9pP59Diza956', NULL, '2021-10-12 05:32:06', '2021-11-08 06:12:12'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `logs` -- ALTER TABLE `logs` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `model_has_permissions` -- ALTER TABLE `model_has_permissions` ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`), ADD KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`); -- -- Indeks untuk tabel `model_has_roles` -- ALTER TABLE `model_has_roles` ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`), ADD KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`); -- -- Indeks untuk tabel `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indeks untuk tabel `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`), ADD KEY `oauth_auth_codes_user_id_index` (`user_id`); -- -- Indeks untuk tabel `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indeks untuk tabel `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indeks untuk tabel `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indeks untuk tabel `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `role_has_permissions` -- ALTER TABLE `role_has_permissions` ADD PRIMARY KEY (`permission_id`,`role_id`), ADD KEY `role_has_permissions_role_id_foreign` (`role_id`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `logs` -- ALTER TABLE `logs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14365; -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT untuk tabel `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `permissions` -- ALTER TABLE `permissions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `roles` -- ALTER TABLE `roles` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `model_has_permissions` -- ALTER TABLE `model_has_permissions` ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `model_has_roles` -- ALTER TABLE `model_has_roles` ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `role_has_permissions` -- ALTER TABLE `role_has_permissions` ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; COMMIT; /*!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 */;
DROP TABLE `poll`;
UPDATE `sys_cron_jobs` SET `time` = '1 */12 * * *' WHERE `name` = 'bx_spy' AND `time` = '0 0 * * *'; UPDATE `sys_options` SET `VALUE` = '10000' WHERE `Name` = 'bx_spy_update_time' AND `VALUE` = '5000'; UPDATE `sys_options` SET `VALUE` = '' WHERE `Name` = 'bx_spy_guest_allow' AND `VALUE` = 'on'; UPDATE `sys_page_compose` SET `Content` = 'return BxDolService::call(''spy'', ''get_spy_block'', array(''member.php'', $this->iMember));', `DesignBox` = 1 WHERE `Page` = 'member' AND `Content` = 'BxDolService::call(''spy'', ''get_member_spy_block'');'; INSERT INTO `sys_page_compose` (`Page`, `PageWidth`, `Desc`, `Caption`, `Column`, `Order`, `Func`, `Content`, `DesignBox`, `ColWidth`, `Visible`, `MinWidth`) VALUES ('index', '998px', 'Spy data here', '_bx_spy', 2, 0, 'PHP', 'return BxDolService::call(''spy'', ''get_spy_block'');', 1, 34, 'non,memb', 0); UPDATE `sys_menu_member` SET `Description` = '_bx_spy_notifications' WHERE `Name` = 'Spy' AND `Link` = 'member.php#spy_block' AND `PopupMenu` = 'BxDolService::call(''spy'', ''get_member_menu_spy_data''); '; DELETE FROM `sys_injections` WHERE `name` = 'spy_css_styles'; UPDATE `sys_modules` SET `version` = '1.0.3' WHERE `uri` = 'spy' AND `version` = '1.0.2';
-- MySQL dump 10.14 Distrib 5.5.41-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: master -- ------------------------------------------------------ -- Server version 5.5.41-MariaDB /*!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 utf8 */; /*!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 */; -- -- Table structure for table `favorite` -- DROP TABLE IF EXISTS `favorite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `favorite` ( `id` int(11) NOT NULL AUTO_INCREMENT, `owner_user_id` int(11) DEFAULT NULL, `involved_type` int(11) DEFAULT NULL, `involved_topic_id` int(11) DEFAULT NULL, `involved_reply_id` int(11) DEFAULT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `favorite` -- LOCK TABLES `favorite` WRITE; /*!40000 ALTER TABLE `favorite` DISABLE KEYS */; /*!40000 ALTER TABLE `favorite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `inventory` -- DROP TABLE IF EXISTS `inventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inventory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL, `inv1` varchar(4) DEFAULT NULL, `inv2` varchar(4) DEFAULT NULL, `inv3` varchar(4) DEFAULT NULL, `inv4` varchar(4) DEFAULT NULL, `inv5` varchar(4) DEFAULT NULL, `inv6` varchar(4) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `inventory` -- -- -- Table structure for table `item` -- DROP TABLE IF EXISTS `item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `item` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` varchar(3) NOT NULL, `name` varchar(40) NOT NULL, `zh_cn_name` varchar(20) NOT NULL, `cost` varchar(10) NOT NULL, `updated` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `item` -- LOCK TABLES `item` WRITE; /*!40000 ALTER TABLE `item` DISABLE KEYS */; INSERT INTO `item` VALUES (1,'28','Clarity','','50','2015-08-01 23:30:51'),(2,'75','Iron Branch','','50','2015-08-01 23:30:51'),(3,'95','Observer Ward','','75','2015-08-01 23:30:51'),(4,'132','Smoke of Deceit','','100','2015-08-01 23:30:51'),(5,'141','Town Portal Scroll','','100','2015-08-01 23:30:51'),(6,'68','Healing Salve','','110','2015-08-01 23:30:51'),(7,'4','Animal Courier','','120','2015-08-01 23:30:52'),(8,'140','Tango','','125','2015-08-01 23:30:52'),(9,'55','Gauntlets of Strength','','150','2015-08-01 23:30:52'),(10,'83','Mantle of Intelligence','','150','2015-08-01 23:30:52'),(11,'130','Slippers of Agility','','150','2015-08-01 23:30:52'),(12,'175','Enchanted Mango','','150','2015-08-01 23:30:52'),(13,'27','Circlet','','165','2015-08-01 23:30:52'),(14,'43','Dust of Appearance','','180','2015-08-01 23:30:52'),(15,'80','Magic Stick','','200','2015-08-01 23:30:52'),(16,'114','Ring of Protection','','200','2015-08-01 23:30:52'),(17,'125','Sentry Ward','','200','2015-08-01 23:30:52'),(18,'138','Stout Shield','','200','2015-08-01 23:30:52'),(19,'51','Flying Courier','','220','2015-08-01 23:30:52'),(20,'107','Quelling Blade','','225','2015-08-01 23:30:52'),(21,'97','Orb of Venom','','275','2015-08-01 23:30:52'),(22,'119','Sage&#039;s Mask','','325','2015-08-01 23:30:52'),(23,'115','Ring of Regen','','350','2015-08-01 23:30:52'),(24,'15','Blades of Attack','','420','2015-08-01 23:30:52'),(25,'9','Band of Elvenskin','','450','2015-08-01 23:30:52'),(26,'11','Belt of Strength','','450','2015-08-01 23:30:52'),(27,'18','Boots of Speed','','450','2015-08-01 23:30:52'),(28,'116','Robe of the Magi','','450','2015-08-01 23:30:52'),(29,'81','Magic Wand','','465','2015-08-01 23:30:52'),(30,'93','Null Talisman','','470','2015-08-01 23:30:52'),(31,'152','Wraith Band','','485','2015-08-01 23:30:52'),(32,'58','Gloves of Haste','','500','2015-08-01 23:30:52'),(33,'21','Bracer','','525','2015-08-01 23:30:52'),(34,'112','Ring of Basilius','','525','2015-08-01 23:30:52'),(35,'25','Chainmail','','550','2015-08-01 23:30:52'),(36,'30','Cloak','','550','2015-08-01 23:30:52'),(37,'104','Poor Man&#039;s Shield','','550','2015-08-01 23:30:52'),(38,'67','Headdress','','600','2015-08-01 23:30:52'),(39,'20','Bottle','','700','2015-08-01 23:30:52'),(40,'23','Buckler','','800','2015-08-01 23:30:53'),(41,'135','Soul Ring','','800','2015-08-01 23:30:53'),(42,'106','Quarterstaff','','875','2015-08-01 23:30:53'),(43,'113','Ring of Health','','875','2015-08-01 23:30:53'),(44,'144','Urn of Shadows','','875','2015-08-01 23:30:53'),(45,'150','Void Stone','','875','2015-08-01 23:30:53'),(46,'45','Energy Booster','','900','2015-08-01 23:30:53'),(47,'56','Gem of True Sight','','900','2015-08-01 23:30:53'),(48,'90','Morbid Mask','','900','2015-08-01 23:30:53'),(49,'71','Helm of Iron Will','','950','2015-08-01 23:30:53'),(50,'14','Blade of Alacrity','','1000','2015-08-01 23:30:53'),(51,'26','Cheese','','1000','2015-08-01 23:30:53'),(52,'96','Ogre Club','','1000','2015-08-01 23:30:53'),(53,'137','Staff of Wizardry','','1000','2015-08-01 23:30:53'),(54,'142','Tranquil Boots','','1000','2015-08-01 23:30:53'),(55,'111','Ring of Aquila','','1010','2015-08-01 23:30:53'),(56,'148','Vitality Booster','','1100','2015-08-01 23:30:53'),(57,'22','Broadsword','','1200','2015-08-01 23:30:53'),(58,'85','Medallion of Courage','','1200','2015-08-01 23:30:53'),(59,'103','Point Booster','','1200','2015-08-01 23:30:53'),(60,'100','Phase Boots','','1290','2015-08-01 23:30:53'),(61,'5','Arcane Boots','','1350','2015-08-01 23:30:53'),(62,'29','Claymore','','1400','2015-08-01 23:30:53'),(63,'102','Platemail','','1400','2015-08-01 23:30:53'),(64,'105','Power Treads','','1400','2015-08-01 23:30:54'),(65,'126','Shadow Amulet','','1400','2015-08-01 23:30:54'),(66,'164','Power Treads (Str)','','1400','2015-08-01 23:30:54'),(67,'163','Power Treads (Int)','','1400','2015-08-01 23:30:54'),(68,'162','Power Treads (Agi)','','1400','2015-08-01 23:30:54'),(69,'57','Ghost Scepter','','1500','2015-08-01 23:30:54'),(70,'76','Javelin','','1500','2015-08-01 23:30:54'),(71,'2','Aegis of the Immortal','','1600','2015-08-01 23:30:54'),(72,'87','Mithril Hammer','','1600','2015-08-01 23:30:54'),(73,'94','Oblivion Staff','','1650','2015-08-01 23:30:54'),(74,'99','Perseverance','','1750','2015-08-01 23:30:54'),(75,'84','Mask of Madness','','1800','2015-08-01 23:30:54'),(76,'139','Talisman of Evasion','','1800','2015-08-01 23:30:54'),(77,'42','Drum of Endurance','','1850','2015-08-01 23:30:54'),(78,'72','Helm of the Dominator','','1850','2015-08-01 23:30:54'),(79,'176','Glimmer Cape','','1950','2015-08-01 23:30:54'),(80,'74','Hyperstone','','2000','2015-08-01 23:30:54'),(81,'66','Hand of Midas','','2050','2015-08-01 23:30:54'),(82,'121','Sange','','2050','2015-08-01 23:30:54'),(83,'154','Yasha','','2050','2015-08-01 23:30:54'),(84,'143','Ultimate Orb','','2100','2015-08-01 23:30:54'),(85,'34','Crystalys','','2120','2015-08-01 23:30:54'),(86,'73','Hood of Defiance','','2125','2015-08-01 23:30:54'),(87,'145','Vanguard','','2175','2015-08-01 23:30:54'),(88,'13','Blade Mail','','2200','2015-08-01 23:30:54'),(89,'16','Blink Dagger','','2250','2015-08-01 23:30:54'),(90,'53','Force Staff','','2250','2015-08-01 23:30:54'),(91,'86','Mekansm','','2300','2015-08-01 23:30:54'),(92,'149','Vladmir&#039;s Offering','','2325','2015-08-01 23:30:54'),(93,'7','Armlet of Mordiggian','','2370','2015-08-01 23:30:54'),(94,'37','Demon Edge','','2400','2015-08-01 23:30:54'),(95,'19','Boots of Travel','','2450','2015-08-01 23:30:54'),(96,'146','Veil of Discord','','2520','2015-08-01 23:30:54'),(97,'91','Mystic Staff','','2700','2015-08-01 23:30:55'),(98,'160','Necronomicon 1','','2700','2015-08-01 23:30:55'),(99,'155','Dagon 1','','2720','2015-08-01 23:30:55'),(100,'79','Maelstrom','','2800','2015-08-01 23:30:55'),(101,'127','Shadow Blade','','2800','2015-08-01 23:30:55'),(102,'47','Eul&#039;s Scepter of Divinity','','2850','2015-08-01 23:30:55'),(103,'129','Skull Basher','','2950','2015-08-01 23:30:55'),(104,'109','Reaver','','3000','2015-08-01 23:30:55'),(105,'183','Solar Crest','','3000','2015-08-01 23:30:55'),(106,'117','Rod of Atos','','3100','2015-08-01 23:30:55'),(107,'40','Diffusal Blade','','3150','2015-08-01 23:30:55'),(108,'44','Eaglesong','','3200','2015-08-01 23:30:55'),(109,'134','Soul Booster','','3200','2015-08-01 23:30:55'),(110,'39','Desolator','','3500','2015-08-01 23:30:55'),(111,'101','Pipe of Insight','','3525','2015-08-01 23:30:55'),(112,'33','Crimson Guard','','3800','2015-08-01 23:30:55'),(113,'118','Sacred Relic','','3800','2015-08-01 23:30:55'),(114,'70','Heaven&#039;s Halberd','','3850','2015-08-01 23:30:55'),(115,'159','Diffusal Blade 2','','3850','2015-08-01 23:30:55'),(116,'161','Necronomicon 2','','3950','2015-08-01 23:30:55'),(117,'156','Dagon 2','','3970','2015-08-01 23:30:55'),(118,'12','Black King Bar','','3975','2015-08-01 23:30:55'),(119,'178','Lotus Orb','','4050','2015-08-01 23:30:55'),(120,'98','Orchid Malevolence','','4075','2015-08-01 23:30:55'),(121,'120','Sange and Yasha','','4100','2015-08-01 23:30:55'),(122,'3','Aghanim&#039;s Scepter','','4200','2015-08-01 23:30:55'),(123,'179','Moon Shard','','4300','2015-08-01 23:30:55'),(124,'182','Teleport Level 2','','4450','2015-08-01 23:30:56'),(125,'10','Battle Fury','','4575','2015-08-01 23:30:56'),(126,'46','Ethereal Blade','','4700','2015-08-01 23:30:56'),(127,'128','Shiva&#039;s Guard','','4700','2015-08-01 23:30:56'),(128,'17','Bloodstone','','4900','2015-08-01 23:30:56'),(129,'82','Manta Style','','4950','2015-08-01 23:30:56'),(130,'78','Linken&#039;s Sphere','','5175','2015-08-01 23:30:56'),(131,'92','Necronomicon','','5200','2015-08-01 23:30:56'),(132,'181','Silver Edge','','5200','2015-08-01 23:30:56'),(133,'157','Dagon 3','','5220','2015-08-01 23:30:56'),(134,'108','Radiance','','5225','2015-08-01 23:30:56'),(135,'8','Assault Cuirass','','5250','2015-08-01 23:30:56'),(136,'110','Refresher Orb','','5300','2015-08-01 23:30:56'),(137,'177','Guardian Greaves','','5300','2015-08-01 23:30:56'),(138,'89','Monkey King Bar','','5400','2015-08-01 23:30:56'),(139,'69','Heart of Tarrasque','','5500','2015-08-01 23:30:56'),(140,'35','Daedalus','','5520','2015-08-01 23:30:56'),(141,'48','Eye of Skadi','','5675','2015-08-01 23:30:56'),(142,'124','Scythe of Vyse','','5675','2015-08-01 23:30:56'),(143,'88','Mjollnir','','5700','2015-08-01 23:30:56'),(144,'24','Butterfly','','5875','2015-08-01 23:30:56'),(145,'180','Octarine Core','','5900','2015-08-01 23:30:56'),(146,'122','Satanic','','5950','2015-08-01 23:30:56'),(147,'41','Divine Rapier','','6200','2015-08-01 23:30:56'),(148,'158','Dagon 4','','6470','2015-08-01 23:30:56'),(149,'1','Abyssal Blade','','6750','2015-08-01 23:30:56'),(150,'36','Dagon 5','','7720','2015-08-01 23:30:56'); /*!40000 ALTER TABLE `item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `node` -- DROP TABLE IF EXISTS `node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) DEFAULT NULL, `slug` varchar(40) DEFAULT NULL, `thumb` varchar(40) DEFAULT NULL, `introduction` varchar(80) DEFAULT NULL, `created` varchar(20) DEFAULT NULL, `updated` varchar(20) DEFAULT NULL, `plane_id` int(11) DEFAULT NULL, `topic_count` int(11) DEFAULT NULL, `custom_style` text, `limit_reputation` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `node` -- LOCK TABLES `node` WRITE; /*!40000 ALTER TABLE `node` DISABLE KEYS */; INSERT INTO `node` VALUES (1,'新闻','news','news','新闻','admin','admin',1,NULL,NULL,NULL),(2,'社区','item','item','物品','admin','admin',2,NULL,NULL,NULL),(3,'赛事','player','player','玩家','admin','admin',7,NULL,NULL,NULL),(4,'攻略','match','match','比赛','admin','admin',6,NULL,NULL,NULL),(5,'集锦','strategy','strategy','攻略','admin','admin',4,NULL,NULL,NULL),(6,'资料','video','video','视频','admin','admin',5,NULL,NULL,NULL),(7,'更新','news','news','新闻','admin','admin',3,NULL,NULL,NULL); /*!40000 ALTER TABLE `node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification` -- DROP TABLE IF EXISTS `notification`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `notification` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(255) DEFAULT NULL, `status` int(11) DEFAULT NULL, `involved_type` int(11) DEFAULT NULL, `involved_user_id` int(11) DEFAULT NULL, `involved_topic_id` int(11) DEFAULT NULL, `involved_reply_id` int(11) DEFAULT NULL, `trigger_user_id` int(11) DEFAULT NULL, `occurrence_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification` -- -- -- Table structure for table `panel` -- DROP TABLE IF EXISTS `panel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `panel` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) DEFAULT NULL, `describe` varchar(40) DEFAULT NULL, `created` varchar(20) DEFAULT NULL, `updated` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `panel` -- LOCK TABLES `panel` WRITE; /*!40000 ALTER TABLE `panel` DISABLE KEYS */; INSERT INTO `panel` VALUES (1,'news','新闻',NULL,NULL); /*!40000 ALTER TABLE `panel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plane` -- DROP TABLE IF EXISTS `plane`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plane` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) DEFAULT NULL, `describe` varchar(40) DEFAULT NULL, `created` varchar(20) DEFAULT NULL, `updated` varchar(20) DEFAULT NULL, `owner` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plane` -- LOCK TABLES `plane` WRITE; /*!40000 ALTER TABLE `plane` DISABLE KEYS */; INSERT INTO `plane` VALUES (1,'news','新闻','admin','admin',NULL),(2,'events','赛事','admin','admin',NULL),(3,'forum','社区','admin','admin',NULL),(4,'strategy','攻略','admin','admin',NULL),(5,'data','资料','admin','admin',NULL),(6,'update','更新','admin','admin',NULL),(7,'player','玩家','admin','admin',NULL); /*!40000 ALTER TABLE `plane` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reply` -- DROP TABLE IF EXISTS `reply`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `reply` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) DEFAULT NULL, `author_id` int(11) DEFAULT NULL, `content` text, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `up_vote` int(11) DEFAULT NULL, `down_vote` int(11) DEFAULT NULL, `last_touched` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reply` -- -- -- Table structure for table `topic` -- DROP TABLE IF EXISTS `topic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `topic` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text, `content` text, `status` int(11) DEFAULT NULL, `hits` int(11) DEFAULT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `node_id` int(11) DEFAULT NULL, `author_id` int(11) DEFAULT NULL, `reply_count` int(11) DEFAULT NULL, `last_replied_by` varchar(20) DEFAULT NULL, `last_replied_time` datetime DEFAULT NULL, `up_vote` int(11) DEFAULT NULL, `down_vote` int(11) DEFAULT NULL, `last_touched` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `topic` -- /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8 */ ; /*!50003 SET character_set_results = utf8 */ ; /*!50003 SET collation_connection = utf8_general_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `topic_delete_trigger` BEFORE DELETE ON `topic` FOR EACH ROW BEGIN DELETE FROM reply WHERE reply.topic_id = OLD.id; DELETE FROM notification WHERE notification.involved_topic_id = OLD.id; END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `transaction` -- DROP TABLE IF EXISTS `transaction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `transaction` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` int(11) DEFAULT NULL, `reward` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `current_balance` int(11) DEFAULT NULL, `involved_user_id` int(11) DEFAULT NULL, `involved_topic_id` int(11) DEFAULT NULL, `involved_reply_id` int(11) DEFAULT NULL, `occurrence_time` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transaction` -- LOCK TABLES `transaction` WRITE; /*!40000 ALTER TABLE `transaction` DISABLE KEYS */; /*!40000 ALTER TABLE `transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(40) DEFAULT NULL, `password` varchar(128) DEFAULT NULL, `username` varchar(20) DEFAULT NULL, `nickname` varchar(20) DEFAULT NULL, `avatar` varchar(20) DEFAULT 'nevermore', `signature` varchar(120) DEFAULT NULL, `location` varchar(40) DEFAULT NULL, `website` varchar(120) DEFAULT NULL, `inventory` int(11) DEFAULT NULL, `role` int(11) DEFAULT NULL, `gold` int(11) DEFAULT '625', `reputation` int(11) DEFAULT NULL, `self_intro` text, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `weibo` varchar(20) DEFAULT NULL, `fvteam` varchar(20) DEFAULT NULL, `steamid` varchar(20) DEFAULT NULL, `last_login` datetime DEFAULT NULL, PRIMARY KEY (`uid`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8 */ ; /*!50003 SET character_set_results = utf8 */ ; /*!50003 SET collation_connection = utf8_general_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `user_delete_trigger` BEFORE DELETE ON `user` FOR EACH ROW BEGIN DELETE FROM topic WHERE topic.author_id = OLD.uid; DELETE FROM reply WHERE reply.author_id = OLD.uid; DELETE FROM notification WHERE notification.trigger_user_id = OLD.uid; DELETE FROM notification WHERE notification.involved_user_id = OLD.uid; END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `vote` -- DROP TABLE IF EXISTS `vote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `vote` ( `id` int(11) NOT NULL, `status` int(11) DEFAULT NULL, `involved_type` int(11) DEFAULT NULL, `involved_user_id` int(11) DEFAULT NULL, `involved_topic_id` int(11) DEFAULT NULL, `involved_reply_id` int(11) DEFAULT NULL, `trigger_user_id` int(11) DEFAULT NULL, `occurrence_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `vote` -- LOCK TABLES `vote` WRITE; /*!40000 ALTER TABLE `vote` DISABLE KEYS */; /*!40000 ALTER TABLE `vote` ENABLE KEYS */; UNLOCK TABLES; /*!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 2015-08-03 12:02:22