sql
stringlengths 6
1.05M
|
---|
CREATE TABLE [Stage].[Programs] (
[Id] [bigint] NOT NULL,
[GID] [uniqueidentifier] NOT NULL,
[ProductGID] [uniqueidentifier] NOT NULL,
[ProgramTypeGID] [uniqueidentifier] NOT NULL,
[CostValue] [decimal](18, 2) NOT NULL,
[InsuranceRate] [decimal](18, 10) NULL,
[Deleted] [bit] NOT NULL,
[CalculatedPayment] [decimal](18, 2) NULL,
[AuthorGID] [uniqueidentifier] NULL,
[CalculatedInsuranceRate] [decimal](18, 10) NULL,
[CurrencyGID] [uniqueidentifier] NULL,
[CurrencyExchangeCost] [decimal](10, 7) NULL,
[_CreateDateTime] [datetime2] NOT NULL,
[_ActionDateTime] [datetime2] NOT NULL,
[SourceRecordId] [int] NOT NULL,
[LoadDateTime] [datetime2] NOT NULL,
CONSTRAINT [PK_Programs_Id] PRIMARY KEY CLUSTERED ([Id])
)
ON [PRIMARY]
GO |
<filename>Query/8-Stored Procedures/8.10 Functions.sql
-- 9.10 Functions
USE `sql_invoicing`;
DROP function IF EXISTS `get_risk_factor_for_clent`;
DELIMITER $$
USE `sql_invoicing`$$
CREATE FUNCTION get_risk_factor_for_clent ( client_id int)
RETURNS INTEGER
-- attributes
reads sql data
BEGIN
declare risk_factor decimal(9,2) default 0;
declare invoices_total decimal(9,2);
declare invoices_count int;
select count(*), sum(invoice_total)
into invoices_count, invoices_total
from invoices i
where i.client_id = client_id;
set risk_factor = invoices_total / invoices_count * 5;
RETURN ifnull(risk_factor, 0);
END$$
DELIMITER ;
select
client_id,
name,
get_risk_factor_for_clent(client_id) as risk_factor
from clients; |
--Create the Select Proc
CREATE PROCEDURE [dbo].[app_CustomRegistrationFields_GetByID] @TenID INT
AS
SELECT *
FROM [CustomRegistrationFields]
WHERE TenID = @TenID
|
<reponame>ellmkay/apgdiff
DROP EXTENSION plpgsql CASCADE; |
<gh_stars>1-10
CREATE PROCEDURE `get_variations_for_type_id` (IN typeID INTEGER)
DETERMINISTIC
BEGIN
SELECT invTypes.typeID, invTypes.typeName
FROM invTypes
LEFT JOIN invMetaTypes ON invTypes.typeID = invMetaTypes.typeID
WHERE invMetaTypes.parentTypeID = typeID
OR invTypes.typeID = typeID;
END |
<filename>delete-platform-trigger.sql
IF OBJECT_ID('delete_platform', 'TR') IS NOT NULL DROP TRIGGER delete_platform
GO
CREATE TRIGGER delete_platform
ON platform
FOR DELETE
AS
DELETE
FROM track
WHERE platform_id IN (SELECT d.id FROM deleted AS d)
|
<reponame>reshmi-nair/sunbird-utils<filename>sunbird-cassandra-migration/cassandra-migration/src/main/resources/db/migration/cassandra/V1.100_cassandra.cql
ALTER TABLE sunbird.user ADD (managedBy text, accessCode text);
CREATE INDEX inx_u_managedBy ON sunbird.user(managedBy); |
<reponame>bjeanes/que-scheduler<gh_stars>10-100
ALTER TABLE que_scheduler_audit ALTER COLUMN scheduler_job_id TYPE bigint;
ALTER TABLE que_scheduler_audit_enqueued ALTER COLUMN scheduler_job_id TYPE bigint;
ALTER TABLE que_scheduler_audit_enqueued ADD COLUMN job_id bigint;
ALTER TABLE que_scheduler_audit_enqueued ADD COLUMN run_at timestamptz;
CREATE INDEX que_scheduler_audit_enqueued_job_id ON que_scheduler_audit_enqueued USING btree (job_id);
|
<filename>src/test/resources/sql/fetch/953b080f.sql
-- file:plpgsql.sql ln:2077 expect:false
fetch c1 into n
|
<filename>admin/admin/1/employee.sql
CREATE TABLE IF NOT EXISTS `employee` (
`employee_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key',
`employee_name` varchar(255) NOT NULL COMMENT 'name of the employee',
`employee_salary` double NOT NULL COMMENT 'salary of the employee',
`employee_position` varchar(255) NOT NULL COMMENT 'position of the employee',
`employee_city` varchar(255) NOT NULL COMMENT 'city of the employee',
`employee_extension` int(11) NOT NULL COMMENT 'extension of the employee',
`employee_joining_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'joining date of the employee',
`employee_age` int(11) NOT NULL COMMENT 'age of the employee',
PRIMARY KEY (`employee_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='datatable demo' AUTO_INCREMENT=58 ;
--
-- Dumping data for table `employee`
--
INSERT INTO `employee` (`employee_id`, `employee_name`, `employee_salary`, `employee_position`, `employee_city`, `employee_extension`, `employee_joining_date`, `employee_age`) VALUES
(1, '<NAME>', 320800, 'System Architect', 'Edinburgh', 5421, '2011-04-24 18:30:00', 61),
(2, '<NAME>', 170750, 'Accountant', 'Tokyo', 8422, '2011-07-24 18:30:00', 63),
(3, '<NAME>', 86000, 'Junior Technical Author', 'San Francisco', 1562, '2009-01-11 18:30:00', 66),
(4, '<NAME>', 433060, 'Senior Javascript Developer', 'Edinburgh', 6224, '2012-03-28 18:30:00', 22),
(5, '<NAME>', 162700, 'Accountant', 'Tokyo', 5407, '2008-11-27 18:30:00', 33),
(6, '<NAME>', 372000, 'Integration Specialist', 'New York', 4804, '2012-12-01 18:30:00', 61),
(7, '<NAME>', 137500, 'Sales Assistant', 'San Francisco', 9608, '2012-08-05 18:30:00', 59),
(8, '<NAME>', 327900, 'Integration Specialist', 'Tokyo', 6200, '2010-10-13 18:30:00', 55),
(9, '<NAME>', 205500, 'Javascript Developer', 'San Francisco', 2360, '2009-09-14 18:30:00', 39),
(10, '<NAME>', 103600, 'Software Engineer', 'Edinburgh', 1667, '2008-12-12 18:30:00', 23),
(11, '<NAME>', 90560, 'Office Manager', 'London', 3814, '2008-12-18 18:30:00', 30),
(12, '<NAME>', 342000, 'Support Lead', 'Edinburgh', 9497, '2013-03-02 18:30:00', 22),
(13, '<NAME>', 470600, 'Regional Director', 'San Francisco', 6741, '2008-10-15 18:30:00', 36),
(14, '<NAME>', 313500, 'Senior Marketing Designer', 'London', 3597, '2012-12-17 18:30:00', 43),
(15, '<NAME>', 385750, 'Regional Director', 'London', 1965, '2010-03-16 18:30:00', 19),
(16, '<NAME>', 198500, 'Marketing Designer', 'London', 1581, '2012-11-26 18:30:00', 66),
(17, '<NAME>', 725000, 'Chief Financial Officer (CFO)', 'New York', 3059, '2010-06-08 18:30:00', 64),
(18, '<NAME>', 237500, 'Systems Administrator', 'New York', 1721, '2009-04-09 18:30:00', 59),
(19, '<NAME>', 132000, 'Software Engineer', 'London', 2558, '2012-10-12 18:30:00', 41),
(20, '<NAME>', 217500, 'Personnel Lead', 'Edinburgh', 2290, '2012-09-25 18:30:00', 35),
(21, '<NAME>', 345000, 'Development Lead', 'New York', 1937, '2011-09-02 18:30:00', 30),
(22, '<NAME>', 675000, 'Chief Marketing Officer (CMO)', 'New York', 6154, '2009-06-24 18:30:00', 40),
(23, '<NAME>', 106450, 'Pre-Sales Support', 'New York', 8330, '2011-12-11 18:30:00', 21),
(24, '<NAME>', 85600, 'Sales Assistant', 'Sidney', 3023, '2010-09-19 18:30:00', 23),
(25, '<NAME>', 1200000, 'Chief Executive Officer (CEO)', 'London', 5797, '2009-10-08 18:30:00', 47),
(26, '<NAME>', 92575, 'Developer', 'Edinburgh', 8822, '2010-12-21 18:30:00', 42),
(27, '<NAME>', 357650, 'Regional Director', 'Singapore', 9239, '2010-11-13 18:30:00', 28),
(28, '<NAME>', 206850, 'Software Engineer', 'San Francisco', 1314, '2011-06-06 18:30:00', 28),
(29, '<NAME>', 850000, 'Chief Operating Officer (COO)', 'San Francisco', 2947, '2010-03-10 18:30:00', 48),
(30, '<NAME>', 163000, 'Regional Marketing', 'Tokyo', 8899, '2011-08-13 18:30:00', 20),
(31, '<NAME>', 95400, 'Integration Specialist', 'Sidney', 2769, '2011-06-01 18:30:00', 37),
(32, '<NAME>', 114500, 'Developer', 'London', 6832, '2009-10-21 18:30:00', 53),
(33, '<NAME>', 145000, 'Technical Author', 'London', 3606, '2011-05-06 18:30:00', 27),
(34, '<NAME>', 235500, 'Team Leader', 'San Francisco', 2860, '2008-10-25 18:30:00', 22),
(35, '<NAME>', 324050, 'Post-Sales support', 'Edinburgh', 8240, '2011-03-08 18:30:00', 46),
(36, '<NAME>', 85675, 'Marketing Designer', 'San Francisco', 5384, '2009-12-08 18:30:00', 47),
(37, '<NAME>', 164500, 'Office Manager', 'San Francisco', 7031, '2008-12-15 18:30:00', 51),
(38, '<NAME>', 109850, 'Secretary', 'San Francisco', 6318, '2010-02-11 18:30:00', 41),
(39, '<NAME>', 452500, 'Financial Controller', 'San Francisco', 9422, '2009-02-13 18:30:00', 62),
(40, '<NAME>', 136200, 'Office Manager', 'London', 7580, '2008-12-10 18:30:00', 37),
(41, '<NAME>', 645750, 'Director', 'New York', 1042, '2008-09-25 18:30:00', 65),
(42, '<NAME>', 234500, 'Support Engineer', 'Singapore', 2120, '2011-02-02 18:30:00', 64),
(43, '<NAME>', 163500, 'Software Engineer', 'London', 6222, '2011-05-02 18:30:00', 38),
(44, '<NAME>', 139575, 'Support Engineer', 'Tokyo', 9383, '2009-08-18 18:30:00', 37),
(45, '<NAME>', 98540, 'Developer', 'New York', 8327, '2013-08-10 18:30:00', 61),
(46, '<NAME>', 87500, 'Support Engineer', 'San Francisco', 2927, '2009-07-06 18:30:00', 47),
(47, '<NAME>', 138575, 'Data Coordinator', 'Singapore', 8352, '2012-04-08 18:30:00', 64),
(48, '<NAME>', 125250, 'Software Engineer', 'New York', 7439, '2010-01-03 18:30:00', 63),
(49, '<NAME>', 115000, 'Software Engineer', 'San Francisco', 4389, '2012-05-31 18:30:00', 56),
(50, '<NAME>', 75650, 'Junior Javascript Developer', 'Edinburgh', 3431, '2013-01-31 18:30:00', 43),
(51, '<NAME>', 145600, 'Sales Assistant', 'New York', 3990, '2011-12-05 18:30:00', 46),
(52, '<NAME>', 356250, 'Regional Director', 'London', 1016, '2011-03-20 18:30:00', 47),
(53, '<NAME>', 103500, 'Systems Administrator', 'London', 6733, '2009-02-26 18:30:00', 21),
(54, '<NAME>', 86500, 'Developer', 'San Francisco', 8196, '2010-07-13 18:30:00', 30),
(55, '<NAME>', 183000, 'Regional Director', 'Edinburgh', 6373, '2008-11-12 18:30:00', 51),
(56, '<NAME>', 183000, 'Javascript Developer', 'Singapore', 5384, '2011-06-26 18:30:00', 29),
(57, '<NAME>', 112000, 'Customer Support', 'New York', 4226, '2011-01-24 18:30:00', 27); |
<gh_stars>0
if not exists (select * from syscolumns where name='IsDeptPrice' and id=OBJECT_ID(N'[dbo].[tbGoods]'))
begin
alter table dbo.tbGoods add IsDeptPrice bit not null default(0)
end |
<filename>sql/dml-example.sql
-- first attempt at inserting data into tables
/**
INSERT INTO seller(
sellerEmail,
sellerHash,
sellerSalt
)
VALUES (
'<EMAIL>',
'aabbccddeeffgghhiijjkkllmmnnoopp',
'kjfklsjdfkjsadflkj'
);
INSERT INTO seller(
sellerEmail,
sellerHash,
sellerSalt
)
VALUES (
'<EMAIL>',
'bbccddeeffgghhiijjkkllmmnnooppqq',
'fjdsajfoijjsfdoiaj'
);
INSERT INTO seller(
sellerEmail,
sellerHash,
sellerSalt
)
VALUES (
'<EMAIL>',
'<PASSWORD>',
'eutrjkdfhrpgkda56'
);
INSERT INTO item(
itemSellerId,
itemName,
itemDescription
)
VALUES(
'1',
'Velvet Elvis',
'A throwback to paintings once found all over America, acrylic on velvet'
);
INSERT INTO item(
itemSellerId,
itemName,
itemDescription
)
VALUES(
'1',
'The Virgin',
'Tons of love and detail went into making this Virgin of Guadalupe illustration, pencil on cardstock.'
);
INSERT INTO item(
itemSellerId,
itemName,
itemDescription
)
VALUES(
'2',
'The Ram',
'This photograph was taken on Engineering Pass at 13560 feet of elevation'
);
INSERT INTO item(
itemSellerId,
itemName,
itemDescription
)
VALUES(
'3',
'Dreamcatcher',
'All dreamcatchers are handmade by me'
);
**/
/**
INSERT INTO image(
imageItemId,
imageName,
imageType
)
VALUES(
'1',
'elvis-1',
'.jpg'
);
INSERT INTO image(
imageItemId,
imageName,
imageType
)
VALUES(
'1',
'elvis-2',
'.jpg'
);
INSERT INTO image(
imageItemId,
imageName,
imageType
)
VALUES(
'1',
'elvis-3',
'.jpg'
);
INSERT INTO image(
imageItemId,
imageName,
imageType
)
VALUES(
'2',
'guad1',
'.png'
);
INSERT INTO image(
imageItemId,
imageName,
imageType
)
VALUES(
'3',
'the-ram',
'.png'
);
INSERT INTO image(
imageItemId,
imageName,
imageType
)
VALUES(
'4',
'catcher-45',
'.jpg'
);
**/
|
drop table FtrNodes;
create table FtrNodes (
name varchar(40),
pNodeId int primary key
);
bulk insert FtrNodes
from 'C:\Users\ypershin\Downloads\ftr-source-sink-prompt-Feb16.csv'
with (
firstrow=3,
fieldterminator = ',',
rowterminator = '\n',
errorfile = 'C:\Users\ypershin\Downloads\errorFtrNodes.csv',
tablock
);
select top 10 * from FtrNodes
order by pNodeId;
-- drop index iFtrNodes on FtrNodes;
-- create nonclustered index iFtrNodes on FtrNodes(pNodeId);
drop table NodeZone;
create table NodeZone (
pNodeId int primary key,
nodeName varchar(50),
zoneName varchar(20),
zoneType varchar(20)
);
bulk insert NodeZone
from 'C:\Users\ypershin\Documents\ML\node-zone.csv'
with (
firstrow=2,
fieldterminator = ',',
rowterminator = '\n',
errorfile = 'C:\Users\ypershin\Documents\errorRows.csv',
tablock
);
select top 10 * from NodeZone;
drop table FtrMcp;
select * into FtrMcp from (
select nodeId, month_,
sum(case when shapeId=1 then price else 0 end) prcPk,
sum(case when shapeId=2 then price else 0 end) prcOpk
from (
select nodeId, effectiveDate month_, shapeId, period, price
from FtrClearingPrice with (nolock)
where effectiveDate>='01/01/2011'
and choose(month(effectiveDate),'JAN','FEB','MAR','APR','MAY','JUN','JUL',
'AUG','SEP','OCT','NOV','DEC')=period) a
group by nodeId, month_
) z;
-- select top 10 * from FtrMcp;
create nonclustered index iFtrMcp on FtrMcp(month_) include(nodeId,prcPk,prcOpk);
drop table PriceMonthly2011;
drop table PriceMonthly2012;
drop table PriceMonthly2013;
drop table PriceMonthly2014;
drop table PriceMonthly2015;
drop table PriceMonthly2016;
create table PriceMonthly2011 (
nodeId int,
period date,
revDaPk decimal(9,2),
revDaOpk decimal(9,2),
revRtPk decimal(9,2),
revRtOpk decimal(9,2),
);
select * into PriceMonthly2012 from (select * from PriceMonthly2011 where 1=0) z;
select * into PriceMonthly2013 from (select * from PriceMonthly2011 where 1=0) z;
select * into PriceMonthly2014 from (select * from PriceMonthly2011 where 1=0) z;
select * into PriceMonthly2015 from (select * from PriceMonthly2011 where 1=0) z;
select * into PriceMonthly2016 from (select * from PriceMonthly2011 where 1=0) z;
bulk insert PriceMonthly2015
from 'C:\Users\ypershin\Documents\ML\FTR\prc2015.csv'
with (
firstrow=2,
fieldterminator = ',',
rowterminator = '\n',
errorfile = 'C:\Users\ypershin\Documents\ML\FTR\errorRows.csv',
tablock
);
drop table PriceMonthly;
drop index iPrcMonthlyNode on PriceMonthly;
select * into PriceMonthly from (
select pNodeId,period,revDaPk,revDaOpk,revRtPk,revRtOpk from (
select * from PriceMonthly2011
union all
select * from PriceMonthly2012
union all
select * from PriceMonthly2013
union all
select * from PriceMonthly2014
union all
select * from PriceMonthly2015
) x, Node n, FtrNodes fn
where x.nodeId=n.nodeId
and n.marketId=1
and cast(n.ExternalNodeId as int)=fn.pNodeId
) z;
create nonclustered index iPrcMonthlyNode on PriceMonthly(pNodeId);
select count(distinct pNodeId) from PriceMonthly;
select top 10 * from PriceMonthly;
-- drop index iNode on Node;
-- create nonclustered index iNode on Node(nodeId);
-- select top 10 nodeId,cast(ExternalNodeId as int) pNodeId from Node where nodeId=1 and marketId=1;
-- 112 WILTON - 167 PLANO
select p1.period, (p2.revDaPk-p1.revDaPk) rev
from PriceMonthly p1, PriceMonthly p2, NodeZone n1, NodeZone n2
where p1.pNodeId=n1.pNodeId and p2.pNodeId=n2.pNodeId
and n1.nodeName='112 WILTON' and n2.nodeName='167 PLANO'
and p1.period=p2.period
order by p1.period;
drop table SummaryData;
select * into SummaryData from (
select a.pNodeId srcId, b.pNodeId sinkId,
count(a.period) cnt,
round(avg(b.revDaPk-a.revDaPk),2) avgPk,
min(b.revDaPk-a.revDaPk) minPk,
max(b.revDaPk-a.revDaPk) maxPk,
round(stdev(b.revDaOpk-a.revDaOpk),2) sdPk,
round(avg(b.revDaOpk-a.revDaOpk),2) avgOpk,
min(b.revDaOpk-a.revDaOpk) minOpk,
max(b.revDaOpk-a.revDaOpk) maxOpk,
round(stdev(b.revDaOpk-a.revDaOpk),2) sdOpk
from PriceMonthly a, PriceMonthly b
where a.period=b.period
and a.pNodeId<>b.pNodeId
-- and a.pNodeId<48650 and b.pNodeId<48650
group by a.pNodeId,b.pNodeId) z;
create nonclustered index iSummaryDataSrcSink on SummaryData(srcId,sinkId);
drop table CurrMonthMcp;
select * into CurrMonthMcp from (
select cast(n1.externalNodeId as int) srcId, cast(n2.externalNodeId as int) sinkId, f1.month_ period,
(f2.prcPk-f1.prcPk) mcpPk, (f2.prcOpk-f1.prcOpk) mcpOpk
from FtrMcp f1, FtrMcp f2, Node n1, Node n2
where n1.marketId=1 and n2.marketId=1
and n1.nodeId=f1.nodeId and n2.nodeId=f2.nodeId
and f1.month_=f2.month_
and f1.month_='2016-01-01'
-- and cast(n1.externalNodeId as int)<48650 and cast(n2.externalNodeId as int)<48650
) z;
-- select * from CurrMonthMcp;
create nonclustered index iCurrMonthMcp on CurrMonthMcp(srcId,sinkId);
drop table CurrMonthRev;
select * into CurrMonthRev from (
select cast(n1.externalNodeId as int) srcId, cast(n2.externalNodeId as int) sinkId, f1.period,
(f2.revDaPk-f1.revDaPk) revPk, (f2.revDaOpk-f1.revDaOpk) revOpk
from PriceMonthly2016 f1, PriceMonthly2016 f2, Node n1, Node n2
where n1.marketId=1 and n2.marketId=1
and n1.nodeId=f1.nodeId and n2.nodeId=f2.nodeId
and f1.period=f2.period
-- and cast(n1.externalNodeId as int)<48650 and cast(n2.externalNodeId as int)<48650
) z;
create nonclustered index iCurrMonthRev on CurrMonthRev(srcId,sinkId);
-- select * from SummaryData;
select s.srcId,s.sinkId,n1.nodeName,n1.zoneName,n2.nodeName,n2.zoneName,
avgPk,minPk,maxPk,sdPk, round(avgPk/sdPk,2) shPk, mcpPk, revPk
from SummaryData s, NodeZone n1, NodeZone n2, CurrMonthMcp c, CurrMonthRev r
where n1.pNodeId=s.srcId and n2.pNodeId=s.sinkId
and c.srcId=s.srcId and c.sinkId=s.sinkId
and r.srcId=s.srcId and r.sinkId=s.sinkId;
|
<reponame>scott-confluent/kafka-tutorials
SELECT * FROM critical_issues emit changes limit 1;
|
<filename>python/sql/Stored Procedures/dbo.sp_Community_ChangeHistory_l.sql
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
CREATE PROCEDURE [dbo].[sp_Community_ChangeHistory_l]
@NewerThan smalldatetime = NULL
AS BEGIN
SET NOCOUNT ON
SELECT *
FROM Community_ChangeHistory
WHERE @NewerThan IS NULL OR @NewerThan <= MODIFIED_DATE
ORDER BY MODIFIED_DATE DESC
SET NOCOUNT OFF
END
GO
GRANT EXECUTE ON [dbo].[sp_Community_ChangeHistory_l] TO [web_user]
GO
|
<reponame>WizardXiao/tidb<gh_stars>100-1000
/*!40101 SET NAMES binary*/;
CREATE DATABASE `quo``te/database` /*!40100 DEFAULT CHARACTER SET latin1 */ /*!80016 DEFAULT ENCRYPTION='N' */;
|
CREATE TABLE {{name}} (
id SERIAL PRIMARY KEY{{#each fields}},
{{name}} {{sql}}{{#if not_null}} NOT NULL{{/if}}{{/each}}
);
|
<filename>t/pg-test-files/expected/alter_operator.sql<gh_stars>1000+
CREATE FUNCTION alter_op_test_fn (boolean, boolean)
RETURNS boolean
AS $$
SELECT
NULL::boolean;
$$
LANGUAGE sql
IMMUTABLE;
CREATE FUNCTION customcontsel (internal, oid, internal, integer)
RETURNS float8
AS 'contsel'
LANGUAGE internal
STABLE STRICT;
CREATE OPERATOR === (
LEFTARG = boolean,
RIGHTARG = boolean,
PROCEDURE = alter_op_test_fn,
COMMUTATOR = ===,
NEGATOR = !==,
RESTRICT = customcontsel,
JOIN = contjoinsel,
HASHES,
MERGES
);
SELECT
pg_describe_object(refclassid, refobjid, refobjsubid) AS ref,
deptype
FROM
pg_depend
WHERE
classid = 'pg_operator'::regclass
AND objid = '===(bool,bool)'::regoperator
ORDER BY
1;
--
-- Reset and set params
--
ALTER OPERATOR === (boolean, boolean) SET (RESTRICT = NONE);
ALTER OPERATOR === (boolean, boolean) SET (JOIN = NONE);
SELECT
oprrest,
oprjoin
FROM
pg_operator
WHERE
oprname = '==='
AND oprleft = 'boolean'::regtype
AND oprright = 'boolean'::regtype;
SELECT
pg_describe_object(refclassid, refobjid, refobjsubid) AS ref,
deptype
FROM
pg_depend
WHERE
classid = 'pg_operator'::regclass
AND objid = '===(bool,bool)'::regoperator
ORDER BY
1;
ALTER OPERATOR === (boolean, boolean) SET (RESTRICT = contsel);
ALTER OPERATOR === (boolean, boolean) SET (JOIN = contjoinsel);
SELECT
oprrest,
oprjoin
FROM
pg_operator
WHERE
oprname = '==='
AND oprleft = 'boolean'::regtype
AND oprright = 'boolean'::regtype;
SELECT
pg_describe_object(refclassid, refobjid, refobjsubid) AS ref,
deptype
FROM
pg_depend
WHERE
classid = 'pg_operator'::regclass
AND objid = '===(bool,bool)'::regoperator
ORDER BY
1;
ALTER OPERATOR === (boolean, boolean) SET (RESTRICT = NONE, JOIN = NONE);
SELECT
oprrest,
oprjoin
FROM
pg_operator
WHERE
oprname = '==='
AND oprleft = 'boolean'::regtype
AND oprright = 'boolean'::regtype;
SELECT
pg_describe_object(refclassid, refobjid, refobjsubid) AS ref,
deptype
FROM
pg_depend
WHERE
classid = 'pg_operator'::regclass
AND objid = '===(bool,bool)'::regoperator
ORDER BY
1;
ALTER OPERATOR === (boolean, boolean) SET (RESTRICT = customcontsel, JOIN = contjoinsel);
SELECT
oprrest,
oprjoin
FROM
pg_operator
WHERE
oprname = '==='
AND oprleft = 'boolean'::regtype
AND oprright = 'boolean'::regtype;
SELECT
pg_describe_object(refclassid, refobjid, refobjsubid) AS ref,
deptype
FROM
pg_depend
WHERE
classid = 'pg_operator'::regclass
AND objid = '===(bool,bool)'::regoperator
ORDER BY
1;
--
-- Test invalid options.
--
ALTER OPERATOR === (boolean, boolean) SET (COMMUTATOR = ====);
ALTER OPERATOR === (boolean, boolean) SET (NEGATOR = ====);
ALTER OPERATOR === (boolean, boolean) SET (RESTRICT = non_existent_func);
ALTER OPERATOR === (boolean, boolean) SET (JOIN = non_existent_func);
ALTER OPERATOR === (boolean, boolean) SET (COMMUTATOR = !==);
ALTER OPERATOR === (boolean, boolean) SET (NEGATOR = !==);
-- invalid: non-lowercase quoted identifiers
ALTER OPERATOR & (bit, bit) SET ("Restrict" = _int_contsel, "Join" = _int_contjoinsel);
--
-- Test permission check. Must be owner to ALTER OPERATOR.
--
CREATE USER regress_alter_op_user;
SET SESSION AUTHORIZATION regress_alter_op_user;
ALTER OPERATOR === (boolean, boolean) SET (RESTRICT = NONE);
-- Clean up
RESET SESSION AUTHORIZATION;
DROP USER regress_alter_op_user;
DROP OPERATOR === (boolean, boolean);
DROP FUNCTION customcontsel (internal, oid, internal, integer);
DROP FUNCTION alter_op_test_fn (boolean, boolean);
|
<filename>fixtures/doctests/queries/075/input.sql
WITH RECURSIVE included_parts(sub_part, part) AS (
SELECT sub_part, part FROM parts WHERE part = 'our_product'
UNION ALL
SELECT p.sub_part, p.part
FROM included_parts pr, parts p
WHERE p.part = pr.sub_part
)
DELETE FROM parts
WHERE part IN (SELECT part FROM included_parts);
|
<gh_stars>1-10
-- This SQL code was generated by sklearn2sql (development version).
-- Copyright 2018
-- Model : CaretClassifier_svmRadial
-- Dataset : BinaryClass_10
-- Database : monetdb
-- This SQL code can contain one or more statements, to be executed in the order they appear in this file.
-- Model deployment code
WITH kernel_input_with_scaling AS
(SELECT "ADS"."KEY" AS "KEY", (CAST("ADS"."Feature_0" AS DOUBLE) - 0.06182920523813451) / 1.236134089597546 AS "Feature_0", (CAST("ADS"."Feature_1" AS DOUBLE) - 0.17702463767183327) / 0.9467574985190108 AS "Feature_1", (CAST("ADS"."Feature_2" AS DOUBLE) - 0.041383850049034464) / 1.0809597326983538 AS "Feature_2", (CAST("ADS"."Feature_3" AS DOUBLE) - 0.13060646805847148) / 1.0860335106241017 AS "Feature_3", (CAST("ADS"."Feature_4" AS DOUBLE) - -0.05955810471983085) / 1.1165897507633815 AS "Feature_4", (CAST("ADS"."Feature_5" AS DOUBLE) - -0.048929089870105816) / 1.3868824547243672 AS "Feature_5", (CAST("ADS"."Feature_6" AS DOUBLE) - 0.19101797861713127) / 0.979670721363872 AS "Feature_6", (CAST("ADS"."Feature_7" AS DOUBLE) - 0.02204959673267471) / 0.4775973825125086 AS "Feature_7", (CAST("ADS"."Feature_8" AS DOUBLE) - -0.05772981403414008) / 1.0713243581907332 AS "Feature_8", (CAST("ADS"."Feature_9" AS DOUBLE) - -0.052549592052032364) / 1.2322587258530384 AS "Feature_9"
FROM "BinaryClass_10" AS "ADS"),
"SV_data" AS
(SELECT "Values".sv_idx AS sv_idx, "Values".dual_coeff AS dual_coeff, "Values".sv_0 AS sv_0, "Values".sv_1 AS sv_1, "Values".sv_2 AS sv_2, "Values".sv_3 AS sv_3, "Values".sv_4 AS sv_4, "Values".sv_5 AS sv_5, "Values".sv_6 AS sv_6, "Values".sv_7 AS sv_7, "Values".sv_8 AS sv_8, "Values".sv_9 AS sv_9
FROM (SELECT 0 AS sv_idx, 0.5508117978112931 AS dual_coeff, -0.9789086075076514 AS sv_0, 0.15252599961299965 AS sv_1, -0.10412504739495128 AS sv_2, -0.8298797163201294 AS sv_3, -0.13896364449966714 AS sv_4, 0.7110427215194252 AS sv_5, -0.18661640977183006 AS sv_6, -0.9004999493496066 AS sv_7, 0.20186701179603014 AS sv_8, 0.829301824499033 AS sv_9 UNION ALL SELECT 1 AS sv_idx, -0.7161446713677124 AS dual_coeff, 1.0719731412530988 AS sv_0, 1.1886114992540306 AS sv_1, -0.15739168609465715 AS sv_2, -0.29955951481423027 AS sv_3, -0.08244264610371395 AS sv_4, -1.1632416612153944 AS sv_5, 0.06927040056587755 AS sv_6, 0.9290819511507716 AS sv_7, 0.6919797344959592 AS sv_8, -0.8090080695413454 AS sv_9 UNION ALL SELECT 2 AS sv_idx, 0.969321107615214 AS dual_coeff, -1.8520281749542775 AS sv_0, 0.8910569422044758 AS sv_1, -0.8164844838131115 AS sv_2, 0.9343783023222736 AS sv_3, 0.900987076498768 AS sv_4, -0.13511551324742735 AS sv_5, 0.26642870153268783 AS sv_6, -1.923190972686 AS sv_7, -0.4592677687064413 AS sv_8, 1.95056234764916 AS sv_9 UNION ALL SELECT 3 AS sv_idx, 1.0 AS dual_coeff, 0.4767818683255514 AS sv_0, -0.28136563198507386 AS sv_1, 1.8087790521738945 AS sv_2, 0.4449539533195914 AS sv_3, -0.16902725173840266 AS sv_4, -1.4791780781476596 AS sv_5, -0.7302410329129739 AS sv_6, 0.2706127321879131 AS sv_7, -0.5143238548060276 AS sv_8, -0.11190694923804112 AS sv_9 UNION ALL SELECT 4 AS sv_idx, 1.0 AS dual_coeff, 0.08731081953801947 AS sv_0, 0.4199233175588533 AS sv_1, 0.08679506491664504 AS sv_2, 1.0174400930801393 AS sv_3, -0.6549833482800742 AS sv_4, -0.685165635637578 AS sv_5, 0.11599876482082065 AS sv_6, -0.011874677152135459 AS sv_7, -1.848525091555032 AS sv_8, 0.08629526864015696 AS sv_9 UNION ALL SELECT 5 AS sv_idx, 0.993912049940292 AS dual_coeff, 0.6499395316012174 AS sv_0, -1.506720424067879 AS sv_1, 1.7845923767119436 AS sv_2, -0.09886845177631504 AS sv_3, -0.6213985646247768 AS sv_4, -0.8340575865045254 AS sv_5, 2.008045248044393 AS sv_6, 0.5442086455727778 AS sv_7, 0.942421558835432 AS sv_8, -0.457308264456212 AS sv_9 UNION ALL SELECT 6 AS sv_idx, 0.993128559873939 AS dual_coeff, 0.03247492302713887 AS sv_0, 1.047286707612166 AS sv_1, 1.0391283253022847 AS sv_2, -1.3383605111337342 AS sv_3, -0.6795344453699088 AS sv_4, -1.1278249500885464 AS sv_5, -0.8399858584070454 AS sv_6, -0.13386158693372827 AS sv_7, -1.5700426095706588 AS sv_8, 0.25711802388268823 AS sv_9 UNION ALL SELECT 7 AS sv_idx, 0.988716998779224 AS dual_coeff, -1.7358997467122637 AS sv_0, -0.8252586264151421 AS sv_1, 1.0804635472270645 AS sv_2, -1.734500890885477 AS sv_3, -0.6221841674685673 AS sv_4, -0.14066469376680832 AS sv_5, 0.331328285018261 AS sv_6, -1.8046794760208436 AS sv_7, 0.4586112234969305 AS sv_8, 1.831869667788819 AS sv_9 UNION ALL SELECT 8 AS sv_idx, -0.9428999834046626 AS dual_coeff, 1.1133869723141923 AS sv_0, 0.5138746169600092 AS sv_1, 1.5342898307024992 AS sv_2, 0.7606893168796812 AS sv_3, -1.51538847416013 AS sv_4, -0.5725812599340797 AS sv_5, 0.3168592107899858 AS sv_6, 1.0592217484485507 AS sv_7, -1.0522638102484991 AS sv_8, -1.004096068856431 AS sv_9 UNION ALL SELECT 9 AS sv_idx, 0.9955175225012288 AS dual_coeff, 0.14083620190832646 AS sv_0, -0.17050728659476827 AS sv_1, -0.17476119918004282 AS sv_2, -1.3116930533698625 AS sv_3, -1.8522798067714217 AS sv_4, 2.1631555501499937 AS sv_5, -2.301092696036681 AS sv_6, 0.4654752574193307 AS sv_7, -1.48934370977668 AS sv_8, -0.7032592838031525 AS sv_9 UNION ALL SELECT 10 AS sv_idx, -0.735604286909139 AS dual_coeff, 1.2402824202062483 AS sv_0, 0.5853286612238678 AS sv_1, 0.07673943594265224 AS sv_2, 0.2508037389185669 AS sv_3, 0.2687972267516133 AS sv_4, -0.7786508204484434 AS sv_5, 0.519592345736705 AS sv_6, 1.1590644943838202 AS sv_7, 0.4514501315819648 AS sv_8, -1.08223966980515 AS sv_9 UNION ALL SELECT 11 AS sv_idx, -0.9953466435839966 AS dual_coeff, 1.6650626530715869 AS sv_0, -1.5766827074506495 AS sv_1, 0.5565243718857906 AS sv_2, 0.4884517606942003 AS sv_3, 0.3810898411966673 AS sv_4, -1.802779371470432 AS sv_5, -0.13241280888701454 AS sv_6, 1.443714407925888 AS sv_7, 1.7622796749286411 AS sv_8, -1.2576505372849975 AS sv_9 UNION ALL SELECT 12 AS sv_idx, -1.0 AS dual_coeff, 0.3390716331602923 AS sv_0, 1.8495748250780832 AS sv_1, 0.4600537982105392 AS sv_2, 0.7202543181900448 AS sv_3, 1.9303542345114997 AS sv_4, -0.16002169001695207 AS sv_5, -0.99700583736059 AS sv_6, 0.3247043113431265 AS sv_7, 1.3653876633263504 AS sv_8, -0.30948765635421005 AS sv_9 UNION ALL SELECT 13 AS sv_idx, 0.98487446614143 AS dual_coeff, 0.4316632164451289 AS sv_0, 0.9432865010471296 AS sv_1, 1.4751609859952413 AS sv_2, 1.556256383029816 AS sv_3, 1.0010203990914768 AS sv_4, -1.0441170028461593 AS sv_5, -0.3593685870288738 AS sv_6, 0.2887590395694796 AS sv_7, -0.84927467797952 AS sv_8, -0.17737835735188892 AS sv_9 UNION ALL SELECT 14 AS sv_idx, 0.9908831053219692 AS dual_coeff, -2.2691497528005993 AS sv_0, -1.0457196379235802 AS sv_1, -0.8442698672983282 AS sv_2, -1.04045767662178 AS sv_3, 0.6349261856337909 AS sv_4, -0.07043917866057522 AS sv_5, -0.5255415135068954 AS sv_6, -2.3422376496475774 AS sv_7, -0.3488935952609054 AS sv_8, 2.3653611089618134 AS sv_9 UNION ALL SELECT 15 AS sv_idx, 0.9551746031140834 AS dual_coeff, 0.6221885599110655 AS sv_0, 0.18208594849454285 AS sv_1, -0.4810904853567675 AS sv_2, 0.8906503536555366 AS sv_3, 0.405159495681492 AS sv_4, -1.4484025904128284 AS sv_5, 0.3789677119541289 AS sv_6, 0.4245969561363369 AS sv_7, 1.1135607471616895 AS sv_8, -0.270248120878393 AS sv_9 UNION ALL SELECT 16 AS sv_idx, -0.9731014230234948 AS dual_coeff, -0.22486873581581127 AS sv_0, -0.747124622008959 AS sv_1, -0.5343402174111191 AS sv_2, -0.8661290484799834 AS sv_3, -0.8078241668385704 AS sv_4, 1.1550372867564416 AS sv_5, -0.6640411432231608 AS sv_6, -0.05980851644639337 AS sv_7, -1.6384879600188207 AS sv_8, -0.06512049285154635 AS sv_9 UNION ALL SELECT 17 AS sv_idx, -0.950983960634162 AS dual_coeff, 1.6604381804917951 AS sv_0, -0.6821963137259358 AS sv_1, 0.16169520485134758 AS sv_2, -0.17582710111469463 AS sv_3, 0.7085719937099278 AS sv_4, -1.7360860790027677 AS sv_5, 0.9678721066213984 AS sv_6, 1.4488515007742588 AS sv_7, 0.2531905223118302 AS sv_8, -1.2700579644213548 AS sv_9 UNION ALL SELECT 18 AS sv_idx, -0.8131703546396593 AS dual_coeff, 0.5437636969550028 AS sv_0, 1.1725515049139292 AS sv_1, 0.13525603577238227 AS sv_2, 0.15287416932472261 AS sv_3, -0.5333342594554455 AS sv_4, -0.3733667497505653 AS sv_5, 0.7589891487410354 AS sv_6, 0.5034125581080473 AS sv_7, 0.22128542987670494 AS sv_8, -0.4662285978408736 AS sv_9 UNION ALL SELECT 19 AS sv_idx, -0.9961292272588522 AS dual_coeff, -0.09219307051230703 AS sv_0, -0.03383840306373853 AS sv_1, 0.4557758820420369 AS sv_2, 1.1984793822247075 AS sv_3, 0.7145275034771345 AS sv_4, 1.069357624606272 AS sv_5, -0.16068247962651222 AS sv_6, 0.06382534115002213 AS sv_7, -0.7681712621935882 AS sv_8, -0.18027504043848688 AS sv_9 UNION ALL SELECT 20 AS sv_idx, 1.0 AS dual_coeff, -0.5804832306627995 AS sv_0, -0.39562408389751746 AS sv_1, -0.3963090122082156 AS sv_2, -0.007554630167357402 AS sv_3, 0.8224036722817619 AS sv_4, 1.2488290063983079 AS sv_5, -0.3667354334678337 AS sv_6, -0.4113329093675934 AS sv_7, -1.3370459277006963 AS sv_8, 0.2785506180157216 AS sv_9 UNION ALL SELECT 21 AS sv_idx, 0.8247543765012444 AS dual_coeff, -1.3441361139156147 AS sv_0, 0.5861829227208665 AS sv_1, 0.706763647208877 AS sv_2, -0.24168747697701246 AS sv_3, -0.8225046970054326 AS sv_4, 0.09962417376079823 AS sv_5, -0.6910551228601497 AS sv_6, -1.3664707787618104 AS sv_7, 0.26987215158040967 AS sv_8, 1.3646927851835764 AS sv_9 UNION ALL SELECT 22 AS sv_idx, 0.9093183890151806 AS dual_coeff, -0.8073840363957818 AS sv_0, -0.30688652426677715 AS sv_1, 0.94416164172329 AS sv_2, 0.08616722240970885 AS sv_3, 0.4756249870095519 AS sv_4, 0.6385821218711153 AS sv_5, -0.7827600058286099 AS sv_6, -0.7349845919862718 AS sv_7, 0.08979218933977293 AS sv_8, 0.6705546683085666 AS sv_9 UNION ALL SELECT 23 AS sv_idx, 0.9758597611061984 AS dual_coeff, -0.10759627726857526 AS sv_0, -1.2035048608261008 AS sv_1, 0.9972537700980548 AS sv_2, 0.5134827890691511 AS sv_3, 1.164611073552145 AS sv_4, -1.034192901207155 AS sv_5, -1.5078593462982837 AS sv_6, -0.2639159703111233 AS sv_7, -0.05821681009343978 AS sv_8, 0.3778726797236848 AS sv_9 UNION ALL SELECT 24 AS sv_idx, 0.980222778722174 AS dual_coeff, -0.09891964243446902 AS sv_0, -0.30449347031299984 AS sv_1, -0.01883596854382725 AS sv_2, 0.505907480233906 AS sv_3, 1.8210050106690003 AS sv_4, -1.0542400095056774 AS sv_5, 0.14787735242067032 AS sv_6, -0.25797237417608665 AS sv_7, 0.19396934304780647 AS sv_8, 0.37406495947864465 AS sv_9 UNION ALL SELECT 25 AS sv_idx, 0.9932525914294148 AS dual_coeff, -1.640728373807161 AS sv_0, -1.0567317589861207 AS sv_1, 0.13643895138804696 AS sv_2, 1.1499014284537104 AS sv_3, -2.2704324061441 AS sv_4, 0.35312889673237596 AS sv_5, 1.0844154895343023 AS sv_6, -1.6336614178045423 AS sv_7, -0.9891542140995307 AS sv_8, 1.6061435096142618 AS sv_9 UNION ALL SELECT 26 AS sv_idx, 0.9911006284220444 AS dual_coeff, -0.6741740084493218 AS sv_0, 1.3646656522236915 AS sv_1, -1.906140160140472 AS sv_2, -0.5931437739198017 AS sv_3, 1.0353787114989919 AS sv_4, 1.191745649244083 AS sv_5, -0.8156318134701581 AS sv_6, -0.5160744362918246 AS sv_7, -0.24535321458751425 AS sv_8, 0.39017809766384187 AS sv_9 UNION ALL SELECT 27 AS sv_idx, 0.9734173738973536 AS dual_coeff, -0.6587850557714721 AS sv_0, 1.2733227255492003 AS sv_1, -0.8227481344684896 AS sv_2, -0.305210206650154 AS sv_3, -0.6634569232975569 AS sv_4, 1.0804098987454418 AS sv_5, -0.5310991352079625 AS sv_6, -0.5167694294933857 AS sv_7, 0.8631286880823567 AS sv_8, 0.4029578791240681 AS sv_9 UNION ALL SELECT 28 AS sv_idx, 0.9818905072148651 AS dual_coeff, -0.9730298579824046 AS sv_0, -0.5528118537256436 AS sv_1, 0.6444302265607575 AS sv_2, -0.38729055443904026 AS sv_3, -1.548445133971511 AS sv_4, 1.3091520605668152 AS sv_5, -0.44888306295951064 AS sv_6, -0.8057717091317707 AS sv_7, 1.3065328895941806 AS sv_8, 0.6690512016756802 AS sv_9 UNION ALL SELECT 29 AS sv_idx, -0.94868065075743 AS dual_coeff, 0.08020016657299005 AS sv_0, 0.1505015978993766 AS sv_1, 1.277098083690131 AS sv_2, 0.8835114967570349 AS sv_3, 0.2441777680306949 AS sv_4, 1.2161656377224639 AS sv_5, -1.1337905809449507 AS sv_6, 0.2627463288807569 AS sv_7, 0.5846592700183276 AS sv_8, -0.3964397842248741 AS sv_9 UNION ALL SELECT 30 AS sv_idx, -0.9705167344066588 AS dual_coeff, 1.0925822804072598 AS sv_0, 0.19552766924013928 AS sv_1, 0.4678215084766359 AS sv_2, 0.3422724595730984 AS sv_3, 0.9672812210493053 AS sv_4, 1.052821010512257 AS sv_5, -1.4952841354203252 AS sv_6, 1.2788561281158193 AS sv_7, -0.33751769202131765 AS sv_8, -1.4015421143874784 AS sv_9 UNION ALL SELECT 31 AS sv_idx, 0.747650816065744 AS dual_coeff, -0.8960449006810026 AS sv_0, -0.06767861728773622 AS sv_1, 0.3955153071673583 AS sv_2, -0.8205013141283433 AS sv_3, 0.17494187825177776 AS sv_4, 1.0993645721313074 AS sv_5, 0.3379235938543237 AS sv_6, -0.7577685980946971 AS sv_7, -0.394323434099768 AS sv_8, 0.643493265350324 AS sv_9 UNION ALL SELECT 32 AS sv_idx, -0.9999481350790396 AS dual_coeff, -0.6647834094376374 AS sv_0, 0.3969131818824111 AS sv_1, -0.2555668615993008 AS sv_2, -1.2897839952702206 AS sv_3, 1.3576478261985563 AS sv_4, 1.148216139427111 AS sv_5, 2.6741150801024878 AS sv_6, -0.5128791186300218 AS sv_7, 0.630037118647296 AS sv_8, 0.3916847168371329 AS sv_9 UNION ALL SELECT 33 AS sv_idx, 0.979186496580879 AS dual_coeff, -0.9345293723890356 AS sv_0, 0.8139078655891595 AS sv_1, -0.872472581952349 AS sv_2, 0.9520965407256556 AS sv_3, -0.3402356104018998 AS sv_4, 0.7158995537911227 AS sv_5, 0.4480011926160543 AS sv_6, -0.8541753925232733 AS sv_7, -1.218484711415826 AS sv_8, 0.7821441151205006 AS sv_9 UNION ALL SELECT 34 AS sv_idx, -0.8574140681020734 AS dual_coeff, 1.2278340552679778 AS sv_0, 1.4854892001527353 AS sv_1, -0.26787616090286 AS sv_2, 0.6270988042259832 AS sv_3, 0.18063306811982147 AS sv_4, -0.1220476246734819 AS sv_5, 1.0178194183248555 AS sv_6, 1.2436330977956065 AS sv_7, -0.18926924549325486 AS sv_8, -1.23861023049531 AS sv_9 UNION ALL SELECT 35 AS sv_idx, 0.9881678322913062 AS dual_coeff, 0.8166965027571061 AS sv_0, -0.856837819570681 AS sv_1, -0.8346208486211699 AS sv_2, 1.508846145001042 AS sv_3, -0.08284783125819263 AS sv_4, -1.2743169957083567 AS sv_5, 1.8625996360263628 AS sv_6, 0.6502878578362915 AS sv_7, -0.0979226946412716 AS sv_8, -0.5163193927874381 AS sv_9 UNION ALL SELECT 36 AS sv_idx, 0.994836786537008 AS dual_coeff, -0.0402579003378627 AS sv_0, 0.28240036238327587 AS sv_1, -1.3979939985038197 AS sv_2, 0.29567763320855905 AS sv_3, -1.5021951825115891 AS sv_4, -1.0180651995815984 AS sv_5, -0.5395902153033929 AS sv_6, -0.19232721470954892 AS sv_7, 1.426455850368092 AS sv_8, 0.3040608757006605 AS sv_9 UNION ALL SELECT 37 AS sv_idx, -0.8568667785527216 AS dual_coeff, 0.5854796706416528 AS sv_0, 0.9467243711695577 AS sv_1, 0.08062093545781357 AS sv_2, -0.6416465388511702 AS sv_3, -1.273839257565051 AS sv_4, -0.5694030134631977 AS sv_5, 0.07658207122439202 AS sv_6, 0.5172120543419477 AS sv_7, 1.2408273951392916 AS sv_8, -0.4588488968355255 AS sv_9 UNION ALL SELECT 38 AS sv_idx, -0.9762693918925588 AS dual_coeff, 0.7784951411325082 AS sv_0, -1.2955240145471107 AS sv_1, -0.28669367363515763 AS sv_2, 1.465882579742903 AS sv_3, 0.8934094142753678 AS sv_4, 0.12914852341724695 AS sv_5, -0.27697430459404665 AS sv_6, 0.8191366938869794 AS sv_7, -1.8504050374483836 AS sv_8, -0.8385635683477661 AS sv_9 UNION ALL SELECT 39 AS sv_idx, -1.0 AS dual_coeff, 0.6344607400588634 AS sv_0, 0.5219605676861228 AS sv_1, 0.5568897193137823 AS sv_2, 0.2579143348274752 AS sv_3, -0.09328581761317237 AS sv_4, 0.3778743026837201 AS sv_5, 0.5562292068303814 AS sv_6, 0.7080068804275642 AS sv_7, -2.1534352041325775 AS sv_8, -0.7536866014343861 AS sv_9 UNION ALL SELECT 40 AS sv_idx, -0.9903527876687556 AS dual_coeff, 0.8724200570194672 AS sv_0, 0.5272266339939217 AS sv_1, -1.401079622483255 AS sv_2, 0.5541152573071053 AS sv_3, 1.3935420392658495 AS sv_4, -1.0234665862047136 AS sv_5, 0.9523691295891799 AS sv_6, 0.744745651531851 AS sv_7, -0.18356194808830936 AS sv_8, -0.6386193584599393 AS sv_9 UNION ALL SELECT 41 AS sv_idx, -0.95658749819873 AS dual_coeff, 0.5510564765507573 AS sv_0, -0.4397336283863665 AS sv_1, -0.9209732070268521 AS sv_2, 1.1053807270278273 AS sv_3, 0.6421893033944561 AS sv_4, 0.1862566062713102 AS sv_5, -0.544274868062212 AS sv_6, 0.593887192412277 AS sv_7, -0.41395632599615995 AS sv_8, -0.6180216801636585 AS sv_9 UNION ALL SELECT 42 AS sv_idx, -1.0 AS dual_coeff, 0.3846891437751013 AS sv_0, -0.2365274338597743 AS sv_1, 0.2351377768853404 AS sv_2, -2.786052368959439 AS sv_3, 1.1836730271232743 AS sv_4, -0.5213144343955008 AS sv_5, -1.209342049277925 AS sv_6, 0.3180089465843848 AS sv_7, -0.2348436242987612 AS sv_8, -0.2635469140867004 AS sv_9 UNION ALL SELECT 43 AS sv_idx, -0.9937583946693844 AS dual_coeff, 1.0112936591576875 AS sv_0, -1.3549564944666233 AS sv_1, -0.5914718313741482 AS sv_2, -0.5831072000130609 AS sv_3, -0.25128229927553514 AS sv_4, 0.26471527301928316 AS sv_5, -0.5841969804613494 AS sv_6, 1.0784636934865377 AS sv_7, 0.7455198586342726 AS sv_8, -1.1143138638133698 AS sv_9 UNION ALL SELECT 44 AS sv_idx, -1.0 AS dual_coeff, 0.756869285918571 AS sv_0, 1.258789574806844 AS sv_1, 1.350773227203448 AS sv_2, -1.9694866659979935 AS sv_3, -0.20286962878653206 AS sv_4, 0.7222829574316827 AS sv_5, 0.8046058646300936 AS sv_6, 0.884863349002005 AS sv_7, 0.7880361351637792 AS sv_8, -0.9690811357141482 AS sv_9 UNION ALL SELECT 45 AS sv_idx, 0.8918152471719825 AS dual_coeff, -0.8884316786590069 AS sv_0, 0.6088454147923283 AS sv_1, 0.13766534702631306 AS sv_2, -0.8018881668724402 AS sv_3, 0.6605380682131401 AS sv_4, -0.8163822540549722 AS sv_5, 0.4376131802918367 AS sv_6, -1.034010688148867 AS sv_7, 0.2677902182894805 AS sv_8, 1.129424238436701 AS sv_9 UNION ALL SELECT 46 AS sv_idx, -1.0 AS dual_coeff, 1.1397479765968883 AS sv_0, 0.4796148030964088 AS sv_1, -2.6297692669350003 AS sv_2, 0.967494758252302 AS sv_3, 0.4003646020672368 AS sv_4, 0.0028303241470059607 AS sv_5, -0.44043435773706735 AS sv_6, 1.1716320804139333 AS sv_7, -1.6558567360796592 AS sv_8, -1.179682889728438 AS sv_9 UNION ALL SELECT 47 AS sv_idx, 0.9891861591374042 AS dual_coeff, -0.820626840393269 AS sv_0, -0.5139375199917596 AS sv_1, -0.7347150193820885 AS sv_2, 0.9176334626914524 AS sv_3, 0.9404589891941124 AS sv_4, -0.4702336680600465 AS sv_5, -2.1425521212594 AS sv_6, -0.913007347442184 AS sv_7, 0.0069194547004425315 AS sv_8, 0.970063197527468 AS sv_9 UNION ALL SELECT 48 AS sv_idx, -0.9508354159713452 AS dual_coeff, 0.27960861386112984 AS sv_0, 1.264238596760879 AS sv_1, -0.34087310709709 AS sv_2, -0.5767049209229327 AS sv_3, 0.521316595461216 AS sv_4, 1.3559438178247885 AS sv_5, -0.8534621035323254 AS sv_6, 0.4883859432672015 AS sv_7, 0.3141378889994094 AS sv_8, -0.6387369934302088 AS sv_9 UNION ALL SELECT 49 AS sv_idx, -1.0 AS dual_coeff, 1.1889154088716587 AS sv_0, -1.3722304255158289 AS sv_1, -1.0324508753759585 AS sv_2, -1.7211923206928126 AS sv_3, 2.730774171694979 AS sv_4, -0.7061799882522317 AS sv_5, -0.6338707837654344 AS sv_6, 1.117025340897981 AS sv_7, -0.43526263546840094 AS sv_8, -1.047785923709626 AS sv_9 UNION ALL SELECT 50 AS sv_idx, 0.9847705151991938 AS dual_coeff, -0.43824883917905855 AS sv_0, -1.0915512782355736 AS sv_1, 0.5195844874702117 AS sv_2, 0.7370875011952652 AS sv_3, -0.8345353363906336 AS sv_4, -0.7072109789390935 AS sv_5, 0.0467039072122988 AS sv_6, -0.5552120529132509 AS sv_7, 1.6135700550167213 AS sv_8, 0.6356157171399341 AS sv_9 UNION ALL SELECT 51 AS sv_idx, 0.993810679291665 AS dual_coeff, -0.14055392156453275 AS sv_0, -3.307009155707085 AS sv_1, -0.5053088265507224 AS sv_2, -0.23723664654797286 AS sv_3, 1.529687672782185 AS sv_4, -1.4022076887762727 AS sv_5, -0.7271252300575837 AS sv_6, -0.3523524125978137 AS sv_7, -1.7653312868419129 AS sv_8, 0.5068241116651305 AS sv_9 UNION ALL SELECT 52 AS sv_idx, 1.0 AS dual_coeff, 0.6894274057055135 AS sv_0, 0.4514552890095735 AS sv_1, 0.2093204069248752 AS sv_2, 1.0368484617551743 AS sv_3, 0.03717007641055501 AS sv_4, -1.030430272112848 AS sv_5, 0.42755899213875986 AS sv_6, 0.5556686478624994 AS sv_7, -0.10328987231898806 AS sv_8, -0.4475371044214476 AS sv_9 UNION ALL SELECT 53 AS sv_idx, 0.9989980204912786 AS dual_coeff, -0.6440716426524146 AS sv_0, -1.6937945609945309 AS sv_1, -0.7604782422693294 AS sv_2, 1.2277185724937787 AS sv_3, 0.15273447561018624 AS sv_4, 1.0754549630378707 AS sv_5, 0.8801545491936706 AS sv_6, -0.5023845449922668 AS sv_7, 1.0057121033769099 AS sv_8, 0.3890155424170703 AS sv_9 UNION ALL SELECT 54 AS sv_idx, 0.8650988701613814 AS dual_coeff, -1.5273908614815168 AS sv_0, 0.5920548170418891 AS sv_1, -0.5545773121252258 AS sv_2, -0.7715713310159885 AS sv_3, -0.4189052719263103 AS sv_4, 0.3648445675336658 AS sv_5, -0.4129469687251176 AS sv_6, -1.5154578653512556 AS sv_7, -1.0056838167040976 AS sv_8, 1.4858875316741011 AS sv_9 UNION ALL SELECT 55 AS sv_idx, -0.9488560702160926 AS dual_coeff, 0.609007821301338 AS sv_0, 0.4921879175895734 AS sv_1, 0.6711257633210173 AS sv_2, -1.4197715909345507 AS sv_3, -1.084955026111522 AS sv_4, 0.2424604585100448 AS sv_5, -0.870129119218945 AS sv_6, 0.6617722341678564 AS sv_7, 0.9869044066354536 AS sv_8, -0.6924536492928886 AS sv_9 UNION ALL SELECT 56 AS sv_idx, -1.0 AS dual_coeff, 0.4191755661898865 AS sv_0, -0.4362848376718623 AS sv_1, 0.36418742871327614 AS sv_2, 1.1130259015135746 AS sv_3, -1.6358625035920635 AS sv_4, 0.0499132664130655 AS sv_5, -0.8372968035882955 AS sv_6, 0.43814862780670494 AS sv_7, -1.3003945708887839 AS sv_8, -0.44646020877036335 AS sv_9 UNION ALL SELECT 57 AS sv_idx, 0.993820728280946 AS dual_coeff, 0.2794373691093419 AS sv_0, 1.9748184218306333 AS sv_1, -3.730640694613173 AS sv_2, 0.651614605956266 AS sv_3, 0.5376239706138513 AS sv_4, 1.887838518503456 AS sv_5, 2.2897668532896183 AS sv_6, 0.567078913830321 AS sv_7, 0.3516434659057892 AS sv_8, -0.7756619176900128 AS sv_9 UNION ALL SELECT 58 AS sv_idx, -1.0 AS dual_coeff, -0.05965227040296731 AS sv_0, -1.1278824561246392 AS sv_1, -0.5067205861155859 AS sv_2, -0.3438480794724477 AS sv_3, 0.1819222668680084 AS sv_4, 1.0766603006052455 AS sv_5, 0.4653057588055848 AS sv_6, 0.09834731334434337 AS sv_7, -1.2093505684195625 AS sv_8, -0.21581753779977167 AS sv_9 UNION ALL SELECT 59 AS sv_idx, 0.9928612878427122 AS dual_coeff, -0.8462488544969619 AS sv_0, 1.8598059021857047 AS sv_1, 1.7203052900293963 AS sv_2, 0.8213283141724823 AS sv_3, 0.9648042183018316 AS sv_4, 0.34382672764636 AS sv_5, -1.5870192743139786 AS sv_6, -0.818628437053331 AS sv_7, -0.6530030490785796 AS sv_8, 0.7867330080045859 AS sv_9 UNION ALL SELECT 60 AS sv_idx, -0.9411256231870224 AS dual_coeff, 0.3240403716133946 AS sv_0, 0.6764010854445784 AS sv_1, -0.43734388073111014 AS sv_2, -0.2926512670636697 AS sv_3, 0.940718127743086 AS sv_4, 0.2095176702360163 AS sv_5, 1.0626785634937808 AS sv_6, 0.3640531056765275 AS sv_7, -0.1402260432400554 AS sv_8, -0.3891924232644148 AS sv_9 UNION ALL SELECT 61 AS sv_idx, 0.6757296212478805 AS dual_coeff, -1.493688533883966 AS sv_0, 0.7818994295348014 AS sv_1, -0.052143335997599766 AS sv_2, -0.4323306835939843 AS sv_3, 0.452748280711666 AS sv_4, -0.09760633317154324 AS sv_5, -0.27248753269684045 AS sv_6, -1.549397004037312 AS sv_7, -0.08669421420781234 AS sv_8, 1.5702280127187471 AS sv_9 UNION ALL SELECT 62 AS sv_idx, -0.95441495455755 AS dual_coeff, 0.8567407564610297 AS sv_0, -0.3400373127239785 AS sv_1, -1.7961459525068124 AS sv_2, -2.483452589097957 AS sv_3, -0.4291684473729733 AS sv_4, -0.514974581583108 AS sv_5, 0.441189674132107 AS sv_6, 0.8040323094927 AS sv_7, -0.17848757638385487 AS sv_8, -0.7534704588279592 AS sv_9 UNION ALL SELECT 63 AS sv_idx, -1.0 AS dual_coeff, -0.7645658302552634 AS sv_0, 0.3422472361142004 AS sv_1, 0.1911042670120429 AS sv_2, 0.6801860167145513 AS sv_3, 1.8410573400703392 AS sv_4, 1.7516302168692475 AS sv_5, 2.474097517744636 AS sv_6, -0.5259423987639593 AS sv_7, -0.006825346235036049 AS sv_8, 0.33936246816863225 AS sv_9 UNION ALL SELECT 64 AS sv_idx, 0.9800989086648524 AS dual_coeff, -1.598811850472008 AS sv_0, 0.5389140198030888 AS sv_1, 0.7620078333102643 AS sv_2, 0.951462577653892 AS sv_3, -1.0637562750345815 AS sv_4, -0.13356966635583178 AS sv_5, -1.851278574895738 AS sv_6, -1.6627550207395836 AS sv_7, -0.8182343187617075 AS sv_8, 1.688237358399718 AS sv_9 UNION ALL SELECT 65 AS sv_idx, -1.0 AS dual_coeff, 0.5375286223309171 AS sv_0, -0.3316233054726869 AS sv_1, 1.696629945926522 AS sv_2, 1.2825840459604203 AS sv_3, -0.35942908021069986 AS sv_4, -0.6647233962692908 AS sv_5, -0.20701215675681173 AS sv_6, 0.4538032124898558 AS sv_7, -0.1379393345057123 AS sv_8, -0.38467847534567856 AS sv_9 UNION ALL SELECT 66 AS sv_idx, 0.9940002192952588 AS dual_coeff, -0.981511322713352 AS sv_0, 0.16368239748214616 AS sv_1, -0.40707232091879497 AS sv_2, -1.9672795492365152 AS sv_3, -1.0067655708198464 AS sv_4, -0.9310982149083262 AS sv_5, -1.0996391748313303 AS sv_6, -1.1466699288547044 AS sv_7, 2.920077641049384 AS sv_8, 1.2552750378483835 AS sv_9 UNION ALL SELECT 67 AS sv_idx, -0.9956027141148568 AS dual_coeff, 0.10090115670650003 AS sv_0, 0.554346723698571 AS sv_1, -0.197751203387923 AS sv_2, -1.065209679886695 AS sv_3, -1.2140227330434523 AS sv_4, 0.09673389409372697 AS sv_5, 2.1174637540416263 AS sv_6, 0.11803031054174727 AS sv_7, 0.03452695980479888 AS sv_8, -0.12930627127635813 AS sv_9 UNION ALL SELECT 68 AS sv_idx, -0.8563594023510185 AS dual_coeff, 0.5027354599595949 AS sv_0, 0.0892484298626883 AS sv_1, 0.3894657113560689 AS sv_2, -0.02159045357372714 AS sv_3, 0.25829801913814826 AS sv_4, 1.6014483663597658 AS sv_5, -0.3832162801447876 AS sv_6, 0.7540757635971618 AS sv_7, 0.3646331522181552 AS sv_8, -0.9328206773891496 AS sv_9 UNION ALL SELECT 69 AS sv_idx, 0.9820600394260788 AS dual_coeff, -0.882972487531501 AS sv_0, -1.219336807983632 AS sv_1, 1.5853496426285412 AS sv_2, 0.7197215150212883 AS sv_3, -0.02006938150829118 AS sv_4, 0.917317513202626 AS sv_5, 0.4545273917601003 AS sv_6, -0.771329101498273 AS sv_7, 1.7437596770039452 AS sv_8, 0.6768959353502201 AS sv_9 UNION ALL SELECT 70 AS sv_idx, -1.0 AS dual_coeff, -0.29854940524111245 AS sv_0, -0.27591262235697506 AS sv_1, -0.1591283541815007 AS sv_2, 0.3957093617338647 AS sv_3, -1.038885445178377 AS sv_4, 0.9853371169504632 AS sv_5, 1.2610319116699569 AS sv_6, -0.16068626198837024 AS sv_7, 1.1625050210441923 AS sv_8, 0.05483686149403229 AS sv_9 UNION ALL SELECT 71 AS sv_idx, -0.9495816501867642 AS dual_coeff, 1.1828246679827443 AS sv_0, 0.6981378314299006 AS sv_1, 1.4020279391874684 AS sv_2, 0.22150989384659106 AS sv_3, -1.6729442565022723 AS sv_4, 0.7787205376258522 AS sv_5, 0.17008146953755168 AS sv_6, 1.3309463798080479 AS sv_7, -0.3272397570667602 AS sv_8, -1.4242360922609711 AS sv_9 UNION ALL SELECT 72 AS sv_idx, -0.9573877775929608 AS dual_coeff, 1.163509113205292 AS sv_0, 0.5806697851803536 AS sv_1, 0.9226972940543215 AS sv_2, -0.8705187503570428 AS sv_3, 0.7731810615291885 AS sv_4, -1.3177554079530895 AS sv_5, 0.9106018845485772 AS sv_6, 1.0002337275739708 AS sv_7, -0.4527686485604048 AS sv_8, -0.8638650015809851 AS sv_9 UNION ALL SELECT 73 AS sv_idx, -0.9673757261867628 AS dual_coeff, 1.3330104867062402 AS sv_0, -2.004419008069948 AS sv_1, 0.4179504207851609 AS sv_2, 0.4329564613298016 AS sv_3, -0.024340118612492058 AS sv_4, -1.542589836095544 AS sv_5, 0.18127516015523207 AS sv_6, 1.1410761582546198 AS sv_7, -0.9682759523566362 AS sv_8, -0.9812432350972058 AS sv_9 UNION ALL SELECT 74 AS sv_idx, 0.9981903404108934 AS dual_coeff, 0.2223351200571684 AS sv_0, -0.7767745396114429 AS sv_1, -1.5514094382140453 AS sv_2, -0.5859919130917198 AS sv_3, -0.14614709090844266 AS sv_4, 2.1293025969237926 AS sv_5, 0.3065489513353151 AS sv_6, 0.544204383292988 AS sv_7, 0.9354410688231648 AS sv_8, -0.7788356308066725 AS sv_9 UNION ALL SELECT 75 AS sv_idx, -0.9633681965358084 AS dual_coeff, 1.3581161239351511 AS sv_0, -2.0570420906155285 AS sv_1, -0.10733298286267932 AS sv_2, -0.12375430086279528 AS sv_3, -1.0530576599783898 AS sv_4, -1.5381786064428615 AS sv_5, 0.0468218077114789 AS sv_6, 1.167528967449606 AS sv_7, 0.3429170609750644 AS sv_8, -1.008349508800099 AS sv_9 UNION ALL SELECT 76 AS sv_idx, 0.9610355595278696 AS dual_coeff, -1.805852346297556 AS sv_0, -0.20478304710013576 AS sv_1, 0.05300098505022429 AS sv_2, 0.06364414093636919 AS sv_3, -1.7589031390708998 AS sv_4, -0.4622958126416504 AS sv_5, -0.5347743498729075 AS sv_6, -1.9242544387407587 AS sv_7, 0.5727667130055276 AS sv_8, 1.9871326863449248 AS sv_9 UNION ALL SELECT 77 AS sv_idx, 0.9936542357488009 AS dual_coeff, -3.0584276692461434 AS sv_0, 0.460992574133467 AS sv_1, 0.4725620009000146 AS sv_2, 1.0312257112147751 AS sv_3, -0.14847399618587726 AS sv_4, -1.0042629011088753 AS sv_5, -0.4926058889541967 AS sv_6, -3.2917714214518026 AS sv_7, 1.6713222082370487 AS sv_8, 3.4224927743504074 AS sv_9 UNION ALL SELECT 78 AS sv_idx, -0.9492133953537344 AS dual_coeff, 0.7403868926294338 AS sv_0, 0.9449554112828747 AS sv_1, -0.1797975601199856 AS sv_2, 1.0101114939183733 AS sv_3, -1.2294433258505943 AS sv_4, 0.7467296913109664 AS sv_5, 0.4813616847363005 AS sv_6, 0.8715508780702134 AS sv_7, 0.5963010033679291 AS sv_8, -0.9583332071708348 AS sv_9 UNION ALL SELECT 79 AS sv_idx, -0.9492330643773368 AS dual_coeff, 1.0288046916148474 AS sv_0, -0.6108917539862642 AS sv_1, -1.1942394632100557 AS sv_2, -1.8896165334496131 AS sv_3, -0.3569306722436835 AS sv_4, -0.04088088193652705 AS sv_5, 1.0196431704922162 AS sv_6, 1.0511445777813448 AS sv_7, 0.995155465470413 AS sv_8, -1.0536562742226288 AS sv_9) AS "Values"),
kernel_dp AS
(SELECT t."KEY" AS "KEY", t.dot_product AS dot_product
FROM (SELECT full_join_data_sv."KEY" AS "KEY", sum(CAST(full_join_data_sv.dot_prod1 AS DOUBLE)) + 0.00622633596816927 AS dot_product
FROM (SELECT kernel_input_with_scaling."KEY" AS "KEY", "SV_data".dual_coeff * exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -1.0 * (power(kernel_input_with_scaling."Feature_0" - "SV_data".sv_0, 2) + power(kernel_input_with_scaling."Feature_1" - "SV_data".sv_1, 2) + power(kernel_input_with_scaling."Feature_2" - "SV_data".sv_2, 2) + power(kernel_input_with_scaling."Feature_3" - "SV_data".sv_3, 2) + power(kernel_input_with_scaling."Feature_4" - "SV_data".sv_4, 2) + power(kernel_input_with_scaling."Feature_5" - "SV_data".sv_5, 2) + power(kernel_input_with_scaling."Feature_6" - "SV_data".sv_6, 2) + power(kernel_input_with_scaling."Feature_7" - "SV_data".sv_7, 2) + power(kernel_input_with_scaling."Feature_8" - "SV_data".sv_8, 2) + power(kernel_input_with_scaling."Feature_9" - "SV_data".sv_9, 2))) THEN -1.0 * (power(kernel_input_with_scaling."Feature_0" - "SV_data".sv_0, 2) + power(kernel_input_with_scaling."Feature_1" - "SV_data".sv_1, 2) + power(kernel_input_with_scaling."Feature_2" - "SV_data".sv_2, 2) + power(kernel_input_with_scaling."Feature_3" - "SV_data".sv_3, 2) + power(kernel_input_with_scaling."Feature_4" - "SV_data".sv_4, 2) + power(kernel_input_with_scaling."Feature_5" - "SV_data".sv_5, 2) + power(kernel_input_with_scaling."Feature_6" - "SV_data".sv_6, 2) + power(kernel_input_with_scaling."Feature_7" - "SV_data".sv_7, 2) + power(kernel_input_with_scaling."Feature_8" - "SV_data".sv_8, 2) + power(kernel_input_with_scaling."Feature_9" - "SV_data".sv_9, 2)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -1.0 * (power(kernel_input_with_scaling."Feature_0" - "SV_data".sv_0, 2) + power(kernel_input_with_scaling."Feature_1" - "SV_data".sv_1, 2) + power(kernel_input_with_scaling."Feature_2" - "SV_data".sv_2, 2) + power(kernel_input_with_scaling."Feature_3" - "SV_data".sv_3, 2) + power(kernel_input_with_scaling."Feature_4" - "SV_data".sv_4, 2) + power(kernel_input_with_scaling."Feature_5" - "SV_data".sv_5, 2) + power(kernel_input_with_scaling."Feature_6" - "SV_data".sv_6, 2) + power(kernel_input_with_scaling."Feature_7" - "SV_data".sv_7, 2) + power(kernel_input_with_scaling."Feature_8" - "SV_data".sv_8, 2) + power(kernel_input_with_scaling."Feature_9" - "SV_data".sv_9, 2))) THEN -1.0 * (power(kernel_input_with_scaling."Feature_0" - "SV_data".sv_0, 2) + power(kernel_input_with_scaling."Feature_1" - "SV_data".sv_1, 2) + power(kernel_input_with_scaling."Feature_2" - "SV_data".sv_2, 2) + power(kernel_input_with_scaling."Feature_3" - "SV_data".sv_3, 2) + power(kernel_input_with_scaling."Feature_4" - "SV_data".sv_4, 2) + power(kernel_input_with_scaling."Feature_5" - "SV_data".sv_5, 2) + power(kernel_input_with_scaling."Feature_6" - "SV_data".sv_6, 2) + power(kernel_input_with_scaling."Feature_7" - "SV_data".sv_7, 2) + power(kernel_input_with_scaling."Feature_8" - "SV_data".sv_8, 2) + power(kernel_input_with_scaling."Feature_9" - "SV_data".sv_9, 2)) ELSE -100.0 END END) AS dot_prod1
FROM kernel_input_with_scaling, "SV_data") AS full_join_data_sv GROUP BY full_join_data_sv."KEY") AS t)
SELECT kernel_dp."KEY" AS "KEY", CAST(NULL AS DOUBLE) AS "Score_0", CAST(NULL AS DOUBLE) AS "Score_1", 1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) AS "Proba_0", 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) AS "Proba_1", log(CASE WHEN (1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) IS NULL OR 1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) > 1e-100) THEN 1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) ELSE 1e-100 END) AS "LogProba_0", log(CASE WHEN (1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) IS NULL OR 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) > 1e-100) THEN 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) ELSE 1e-100 END) AS "LogProba_1", CASE WHEN (1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) > 1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END))) THEN 1 ELSE 0 END AS "Decision", CASE WHEN (1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) <= 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END))) THEN 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) ELSE 1.0 - 1.0 / (1.0 + exp(CASE WHEN (100.0 <= CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END) THEN 100.0 ELSE CASE WHEN (-100.0 <= -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424))) THEN -(-(kernel_dp.dot_product * -24.21618633361199 + -0.1463207099630424)) ELSE -100.0 END END)) END AS "DecisionProba"
FROM kernel_dp |
--+ holdcas on;
set system parameters 'dont_reuse_heap_file=yes';
create table t1( a char(1200), b varchar(1200), c nchar(1200), d NCHAR VARYING(1200), e BIT(1200), f BIT VARYING(1200), g int, h SMALLINT, i BIGINT, j NUMERIC, k FLOAT, l DOUBLE, m MONETARY, n DATE, o TIME, p TIMESTAMP, q DATETIME);
insert into t1 values (
'1234567890',
'1234567890',
N'abc',
N'ABC',
B'1111111111',
B'1111111111',
10,
255,
9223372036854775807,
0,
0,
0,
-100,
DATE '2008-10-31',
TIME '00:00:00',
TIMESTAMP '2010-10-31 01:15:45',
DATETIME '2008-10-31 13:15:45');
insert into t1 values (null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
--TEST Create successfully
create index i_t1_a2q on t1(REPLACE(a,b,null));
--TEST: should use index i_t1_a2q
select /*+ RECOMPILE */* from t1 where REPLACE(a,b,null) is null ;
--TEST Create successfully
create index i_t1_a2p on t1(REPLACE(b,a,'Same'));
--TEST: should use index i_t1_a2p
select /*+ RECOMPILE */* from t1 where REPLACE(b,a,'Same')<'Sam' ;
--TEST Create successfully
create index i_t1_a2o on t1(REPLACE(c,N'abc',null));
--TEST: should use index i_t1_a2o
select /*+ RECOMPILE */* from t1 where REPLACE(c,N'abc',null) = N'' ;
--TEST Create successfully
create index i_t1_a2n on t1(REPLACE(d,c,N'ABC'));
--TEST: should use index i_t1_a2n
select /*+ RECOMPILE */* from t1 where REPLACE(d,c,N'ABC')=N'ABC' ;
--TEST Create failed
create index i_t1_a2m on t1(REPLACE(e,null));
--TEST Create failed
create index i_t1_a2l on t1(REPLACE(f,'1'));
--TEST Create failed
create index i_t1_a2k on t1(REPLACE(g,'1'));
--TEST Create failed
create index i_t1_a2j on t1(REPLACE(h,'1'));
--TEST Create failed
create index i_t1_a2i on t1(REPLACE(i,'1'));
--TEST Create failed
create index i_t1_a2h on t1(REPLACE(j,'1'));
--TEST Create failed
create index i_t1_a2g on t1(REPLACE(k,'1'));
--TEST Create failed
create index i_t1_a2f on t1(REPLACE(l,'1'));
--TEST Create failed
create index i_t1_a2e on t1(REPLACE(m,'1'));
--TEST Create failed
create index i_t1_a2d on t1(REPLACE(n,'1'));
--TEST Create failed
create index i_t1_a2c on t1(REPLACE(o,'1'));
--TEST Create failed
create index i_t1_a2b on t1(REPLACE(p,'1'));
--TEST Create failed
create index i_t1_a2a on t1(REPLACE(q));
drop table t1;
set system parameters 'dont_reuse_heap_file=no';
commit;
--+ holdcas off;
|
CREATE TABLE `tblVendorRateArchive` (
`VendorRateArchiveID` int(11) NOT NULL AUTO_INCREMENT,
`VendorRateID` int(11) NOT NULL,
`AccountId` int(11) NOT NULL,
`TrunkId` int(11) NOT NULL,
`RateId` int(11) NOT NULL,
`Rate` decimal(18,6) NOT NULL,
`EffectiveDate` datetime NOT NULL,
`CreatedDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`CreatedBy` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`Notes` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`VendorRateArchiveID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci |
CREATE TABLE `db_log` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`biz_tag` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '业务标签',
`action_tag` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '操作标签',
`operator` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '操作人',
`track_key` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '追踪标签',
`log_content` json NOT NULL COMMENT '日志内容',
`created_at` datetime NOT NULL COMMENT '创建时间format:yyyy-mm-dd HH:ii:ss',
`created_date` datetime NOT NULL COMMENT '创建日期format:yyy-mm-dd',
PRIMARY KEY (`id`),
KEY `idx_big` (`biz_tag`),
KEY `idx_action` (`action_tag`),
KEY `idx_operator` (`operator`),
KEY `idx_track` (`track_key`),
KEY `idx_date` (`created_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
-- Deploy fresh database tables
\i '/docker-entrypoint-initdb.d/tables/user_role.sql'
\i '/docker-entrypoint-initdb.d/tables/user_group.sql'
\i '/docker-entrypoint-initdb.d/tables/user_account.sql'
\i '/docker-entrypoint-initdb.d/tables/transaction_type.sql'
\i '/docker-entrypoint-initdb.d/tables/bank_account.sql'
\i '/docker-entrypoint-initdb.d/tables/transaction_log.sql'
\i '/docker-entrypoint-initdb.d/tables/permission.sql'
\i '/docker-entrypoint-initdb.d/tables/role_permission.sql'
\i '/docker-entrypoint-initdb.d/tables/credential.sql'
\i '/docker-entrypoint-initdb.d/seed/seed.sql' |
<reponame>LostKobrakai/ProcessWire
--- WireDatabaseBackup {"time":"2014-08-27 12:18:44","user":"","dbName":"pw2_blank","description":"","tables":[],"excludeTables":["pages_drafts","pages_roles","permissions","roles","roles_permissions","users","users_roles","user","role","permission"],"excludeCreateTables":[],"excludeExportTables":["field_roles","field_permissions","field_email","field_pass","caches","session_login_throttle","page_path_history"]}
DROP TABLE IF EXISTS `caches`;
CREATE TABLE `caches` (
`name` varchar(255) NOT NULL,
`data` mediumtext NOT NULL,
`expires` datetime NOT NULL,
PRIMARY KEY (`name`),
KEY `expires` (`expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `field_body`;
CREATE TABLE `field_body` (
`pages_id` int(10) unsigned NOT NULL,
`data` mediumtext NOT NULL,
PRIMARY KEY (`pages_id`),
FULLTEXT KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_body` (`pages_id`, `data`) VALUES('27', '<h3>The page you were looking for is not found.</h3><p>Please use our search engine or navigation above to find the page.</p>');
INSERT INTO `field_body` (`pages_id`, `data`) VALUES('1', '<h2>What is ProcessWire?</h2>\r\n\r\n<p>ProcessWire gives you full control over your fields, templates and markup. It provides a powerful template system that works the way you do. Not to mention, ProcessWire\'s API makes working with your content easy and enjoyable. <a href=\"http://processwire.com\">Learn more</a></p>\r\n\r\n<h3>About this site profile</h3>\r\n\r\n<p>This is a basic minimal site for you to use in developing your own site or to learn from. There are a few pages here to serve as examples, but this site profile does not make any attempt to demonstrate all that ProcessWire can do. To learn more or ask questions, visit the <a href=\"http://www.processwire.com/talk/\" target=\"_blank\">ProcessWire forums</a> or <a href=\"http://modules.processwire.com/categories/site-profile/\">browse more site profiles</a>. If you are building a new site, this minimal profile is a good place to start. You may use these existing templates and design as they are, or you may replace them entirely.</p>\r\n\r\n<h3>Browse the site</h3>');
INSERT INTO `field_body` (`pages_id`, `data`) VALUES('1002', '<h2>Ut capio feugiat saepius torqueo olim</h2>\r\n\r\n<h3>In utinam facilisi eum vicis feugait nimis</h3>\r\n\r\n<p>Iusto incassum appellatio cui macto genitus vel. Lobortis aliquam luctus, roto enim, imputo wisi tamen. Ratis odio, genitus acsi, neo illum consequat consectetuer ut.</p>\r\n\r\n<blockquote>\r\n<p>Wisi fere virtus cogo, ex ut vel nullus similis vel iusto. Tation incassum adsum in, quibus capto premo diam suscipere facilisi. Uxor laoreet mos capio premo feugait ille et. Pecus abigo immitto epulae duis vel. Neque causa, indoles verto, decet ingenium dignissim.</p>\r\n</blockquote>\r\n\r\n<p>Patria iriure vel vel autem proprius indoles ille sit. Tation blandit refoveo, accumsan ut ulciscor lucidus inhibeo capto aptent opes, foras.</p>\r\n\r\n<h3>Dolore ea valde refero feugait utinam luctus</h3>\r\n\r\n<p><img alt=\"Copyright by <NAME> for DesignIntelligence. This is a placeholder while he makes new ones for us.\" class=\"align_left\" src=\"/site/assets/files/1002/psych_cartoon_4-20.400x0.jpg\" />Usitas, nostrud transverbero, in, amet, nostrud ad. Ex feugiat opto diam os aliquam regula lobortis dolore ut ut quadrum. Esse eu quis nunc jugis iriure volutpat wisi, fere blandit inhibeo melior, hendrerit, saluto velit. Eu bene ideo dignissim delenit accumsan nunc. Usitas ille autem camur consequat typicus feugait elit ex accumsan nutus accumsan nimis pagus, occuro. Immitto populus, qui feugiat opto pneum letalis paratus. Mara conventio torqueo nibh caecus abigo sit eum brevitas. Populus, duis ex quae exerci hendrerit, si antehabeo nobis, consequat ea praemitto zelus.</p>\r\n\r\n<p>Immitto os ratis euismod conventio erat jus caecus sudo. code test Appellatio consequat, et ibidem ludus nulla dolor augue abdo tego euismod plaga lenis. Sit at nimis venio venio tego os et pecus enim pneum magna nobis ad pneum. Saepius turpis probo refero molior nonummy aliquam neque appellatio jus luctus acsi. Ulciscor refero pagus imputo eu refoveo valetudo duis dolore usitas. Consequat suscipere quod torqueo ratis ullamcorper, dolore lenis, letalis quia quadrum plaga minim.</p>');
INSERT INTO `field_body` (`pages_id`, `data`) VALUES('1001', '<h2>Si lobortis singularis genitus ibidem saluto.</h2><p>Dolore ad nunc, mos accumsan paratus duis suscipit luptatum facilisis macto uxor iaceo quadrum. Demoveo, appellatio elit neque ad commodo ea. Wisi, iaceo, tincidunt at commoveo rusticus et, ludus. Feugait at blandit bene blandit suscipere abdo duis ideo bis commoveo pagus ex, velit. Consequat commodo roto accumsan, duis transverbero.</p>');
INSERT INTO `field_body` (`pages_id`, `data`) VALUES('1004', '<h2>Pertineo vel dignissim, natu letalis fere odio</h2><p>Magna in gemino, gilvus iusto capto jugis abdo mos aptent acsi qui. Utrum inhibeo humo humo duis quae. Lucidus paulatim facilisi scisco quibus hendrerit conventio adsum.</p><h3>Si lobortis singularis genitus ibidem saluto</h3><ul><li>Feugiat eligo foras ex elit sed indoles hos elit ex antehabeo defui et nostrud.</li><li>Letatio valetudo multo consequat inhibeo ille dignissim pagus et in quadrum eum eu.</li><li>Aliquam si consequat, ut nulla amet et turpis exerci, adsum luctus ne decet, delenit.</li><li>Commoveo nunc diam valetudo cui, aptent commoveo at obruo uxor nulla aliquip augue.</li></ul><p>Iriure, ex velit, praesent vulpes delenit capio vero gilvus inhibeo letatio aliquip metuo qui eros. Transverbero demoveo euismod letatio torqueo melior. Ut odio in suscipit paulatim amet huic letalis suscipere eros causa, letalis magna.</p><ol><li>Feugiat eligo foras ex elit sed indoles hos elit ex antehabeo defui et nostrud.</li><li>Letatio valetudo multo consequat inhibeo ille dignissim pagus et in quadrum eum eu.</li><li>Aliquam si consequat, ut nulla amet et turpis exerci, adsum luctus ne decet, delenit.</li><li>Commoveo nunc diam valetudo cui, aptent commoveo at obruo uxor nulla aliquip augue.</li></ol>');
DROP TABLE IF EXISTS `field_email`;
CREATE TABLE `field_email` (
`pages_id` int(10) unsigned NOT NULL,
`data` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`pages_id`),
KEY `data_exact` (`data`),
FULLTEXT KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `field_headline`;
CREATE TABLE `field_headline` (
`pages_id` int(10) unsigned NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (`pages_id`),
FULLTEXT KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_headline` (`pages_id`, `data`) VALUES('1', 'Minimal Site Profile');
INSERT INTO `field_headline` (`pages_id`, `data`) VALUES('1001', 'About Us');
INSERT INTO `field_headline` (`pages_id`, `data`) VALUES('27', '404 Page Not Found');
DROP TABLE IF EXISTS `field_images`;
CREATE TABLE `field_images` (
`pages_id` int(10) unsigned NOT NULL,
`data` varchar(255) NOT NULL,
`sort` int(10) unsigned NOT NULL,
`description` text NOT NULL,
`modified` datetime DEFAULT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`pages_id`,`sort`),
KEY `data` (`data`),
KEY `modified` (`modified`),
KEY `created` (`created`),
FULLTEXT KEY `description` (`description`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_images` (`pages_id`, `data`, `sort`, `description`, `modified`, `created`) VALUES('1002', 'psych_cartoon_4-20.jpg', '0', 'Copyright by <NAME> for DesignIntelligence. This is a placeholder while he makes new ones for us.', NOW(), NOW());
INSERT INTO `field_images` (`pages_id`, `data`, `sort`, `description`, `modified`, `created`) VALUES('1', 'rough_cartoon_puppet.jpg', '1', 'Copyright by <NAME> for DesignIntelligence. This is a placeholder while he makes new ones for us.', NOW(), NOW());
INSERT INTO `field_images` (`pages_id`, `data`, `sort`, `description`, `modified`, `created`) VALUES('1', 'airport_cartoon_3.jpg', '0', 'Copyright by <NAME> for DesignIntelligence. This is a placeholder while he makes new ones for us.', NOW(), NOW());
DROP TABLE IF EXISTS `field_pass`;
CREATE TABLE `field_pass` (
`pages_id` int(10) unsigned NOT NULL,
`data` char(40) NOT NULL,
`salt` char(32) NOT NULL,
PRIMARY KEY (`pages_id`),
KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=ascii;
DROP TABLE IF EXISTS `field_permissions`;
CREATE TABLE `field_permissions` (
`pages_id` int(10) unsigned NOT NULL,
`data` int(11) NOT NULL,
`sort` int(10) unsigned NOT NULL,
PRIMARY KEY (`pages_id`,`sort`),
KEY `data` (`data`,`pages_id`,`sort`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `field_process`;
CREATE TABLE `field_process` (
`pages_id` int(11) NOT NULL DEFAULT '0',
`data` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`pages_id`),
KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('6', '17');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('3', '12');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('8', '12');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('9', '14');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('10', '7');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('11', '47');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('16', '48');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('300', '104');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('21', '50');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('29', '66');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('23', '10');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('304', '138');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('31', '136');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('22', '76');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('30', '68');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('303', '129');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('2', '87');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('302', '121');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('301', '109');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('28', '76');
INSERT INTO `field_process` (`pages_id`, `data`) VALUES('1007', '150');
DROP TABLE IF EXISTS `field_roles`;
CREATE TABLE `field_roles` (
`pages_id` int(10) unsigned NOT NULL,
`data` int(11) NOT NULL,
`sort` int(10) unsigned NOT NULL,
PRIMARY KEY (`pages_id`,`sort`),
KEY `data` (`data`,`pages_id`,`sort`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `field_sidebar`;
CREATE TABLE `field_sidebar` (
`pages_id` int(10) unsigned NOT NULL,
`data` mediumtext NOT NULL,
PRIMARY KEY (`pages_id`),
FULLTEXT KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_sidebar` (`pages_id`, `data`) VALUES('1', '<h3>About ProcessWire</h3>\r\n\r\n<p>ProcessWire is an open source CMS and web application framework aimed at the needs of designers, developers and their clients.</p>\r\n\r\n<ul>\r\n <li><a href=\"http://processwire.com/talk/\">Support</a> </li>\r\n <li><a href=\"http://processwire.com/docs/\">Documentation</a></li>\r\n <li><a href=\"http://processwire.com/docs/tutorials/\">Tutorials</a></li>\r\n <li><a href=\"http://cheatsheet.processwire.com\">API Cheatsheet</a></li>\r\n <li><a href=\"http://modules.processwire.com\">Modules/Plugins</a></li>\r\n</ul>');
INSERT INTO `field_sidebar` (`pages_id`, `data`) VALUES('1002', '<h3>Sudo nullus</h3>\r\n\r\n<p>Et torqueo vulpes vereor luctus augue quod consectetuer antehabeo causa patria tation ex plaga ut. Abluo delenit wisi iriure eros feugiat probo nisl aliquip nisl, patria. Antehabeo esse camur nisl modo utinam. Sudo nullus ventosus ibidem facilisis saepius eum sino pneum, vicis odio voco opto.</p>');
DROP TABLE IF EXISTS `field_summary`;
CREATE TABLE `field_summary` (
`pages_id` int(10) unsigned NOT NULL,
`data` mediumtext NOT NULL,
PRIMARY KEY (`pages_id`),
FULLTEXT KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_summary` (`pages_id`, `data`) VALUES('1002', 'Dolore ea valde refero feugait utinam luctus. Probo velit commoveo et, delenit praesent, suscipit zelus, hendrerit zelus illum facilisi, regula. ');
INSERT INTO `field_summary` (`pages_id`, `data`) VALUES('1001', 'This is a placeholder page with two child pages to serve as an example. ');
INSERT INTO `field_summary` (`pages_id`, `data`) VALUES('1005', 'View this template\'s source for a demonstration of how to create a basic site map. ');
INSERT INTO `field_summary` (`pages_id`, `data`) VALUES('1004', 'Mos erat reprobo in praesent, mara premo, obruo iustum pecus velit lobortis te sagaciter populus.');
INSERT INTO `field_summary` (`pages_id`, `data`) VALUES('1', 'ProcessWire is an open source CMS and web application framework aimed at the needs of designers, developers and their clients. ');
DROP TABLE IF EXISTS `field_title`;
CREATE TABLE `field_title` (
`pages_id` int(10) unsigned NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (`pages_id`),
KEY `data_exact` (`data`(255)),
FULLTEXT KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('11', 'Templates');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('16', 'Fields');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('22', 'Setup');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('3', 'Pages');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('6', 'Add Page');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('8', 'Tree');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('9', 'Save Sort');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('10', 'Edit Page');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('21', 'Modules');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('29', 'Users');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('30', 'Roles');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('2', 'Admin');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('7', 'Trash');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('27', '404 Page');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('302', 'Insert Link');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('23', 'Login');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('304', 'Profile');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('301', 'Empty Trash');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('300', 'Search');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('303', 'Insert Image');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('28', 'Access');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('31', 'Permissions');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('32', 'Edit pages');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('34', 'Delete pages');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('35', 'Move pages (change parent)');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('36', 'View pages');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('50', 'Sort child pages');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('51', 'Change templates on pages');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('52', 'Administer users');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('53', 'User can update profile/password');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('54', 'Lock or unlock a page');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1', 'Home');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1001', 'About');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1002', 'Child page example 1');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1000', 'Search');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1004', 'Child page example 2');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1005', 'Site Map');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1006', 'Use Page Lister');
INSERT INTO `field_title` (`pages_id`, `data`) VALUES('1007', 'Find');
DROP TABLE IF EXISTS `fieldgroups`;
CREATE TABLE `fieldgroups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET ascii NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=97 DEFAULT CHARSET=utf8;
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('2', 'admin');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('3', 'user');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('4', 'role');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('5', 'permission');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('1', 'home');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('88', 'sitemap');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('83', 'basic-page');
INSERT INTO `fieldgroups` (`id`, `name`) VALUES('80', 'search');
DROP TABLE IF EXISTS `fieldgroups_fields`;
CREATE TABLE `fieldgroups_fields` (
`fieldgroups_id` int(10) unsigned NOT NULL DEFAULT '0',
`fields_id` int(10) unsigned NOT NULL DEFAULT '0',
`sort` int(11) unsigned NOT NULL DEFAULT '0',
`data` text,
PRIMARY KEY (`fieldgroups_id`,`fields_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('2', '2', '1', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('2', '1', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('3', '3', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('3', '4', '2', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('4', '5', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('5', '1', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('3', '92', '1', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('1', '1', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('1', '44', '5', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('1', '76', '3', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('80', '1', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('83', '44', '5', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('83', '76', '3', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('1', '78', '1', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('83', '1', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('88', '79', '1', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('1', '79', '2', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('1', '82', '4', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('88', '1', '0', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('83', '82', '4', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('83', '78', '1', NULL);
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES('83', '79', '2', NULL);
DROP TABLE IF EXISTS `fields`;
CREATE TABLE `fields` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(128) CHARACTER SET ascii NOT NULL,
`name` varchar(255) CHARACTER SET ascii NOT NULL,
`flags` int(11) NOT NULL DEFAULT '0',
`label` varchar(255) NOT NULL DEFAULT '',
`data` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=97 DEFAULT CHARSET=utf8;
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('1', 'FieldtypePageTitle', 'title', '13', 'Title', '{\"required\":1,\"textformatters\":[\"TextformatterEntities\"],\"size\":0,\"maxlength\":255}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('2', 'FieldtypeModule', 'process', '25', 'Process', '{\"description\":\"The process that is executed on this page. Since this is mostly used by ProcessWire internally, it is recommended that you don\'t change the value of this unless adding your own pages in the admin.\",\"collapsed\":1,\"required\":1,\"moduleTypes\":[\"Process\"],\"permanent\":1}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('3', 'FieldtypePassword', 'pass', '24', 'Set Password', '{\"collapsed\":1,\"size\":50,\"maxlength\":128}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('5', 'FieldtypePage', 'permissions', '24', 'Permissions', '{\"derefAsPage\":0,\"parent_id\":31,\"labelFieldName\":\"title\",\"inputfield\":\"InputfieldCheckboxes\"}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('4', 'FieldtypePage', 'roles', '24', 'Roles', '{\"derefAsPage\":0,\"parent_id\":30,\"labelFieldName\":\"name\",\"inputfield\":\"InputfieldCheckboxes\",\"description\":\"User will inherit the permissions assigned to each role. You may assign multiple roles to a user. When accessing a page, the user will only inherit permissions from the roles that are also assigned to the page\'s template.\"}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('92', 'FieldtypeEmail', 'email', '9', 'E-Mail Address', '{\"size\":70,\"maxlength\":255}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('82', 'FieldtypeTextarea', 'sidebar', '0', 'Sidebar', '{\"inputfieldClass\":\"InputfieldCKEditor\",\"rows\":5,\"contentType\":1,\"toolbar\":\"Format, Bold, Italic, -, RemoveFormat\\r\\nNumberedList, BulletedList, -, Blockquote\\r\\nPWLink, Unlink, Anchor\\r\\nPWImage, Table, HorizontalRule, SpecialChar\\r\\nPasteText, PasteFromWord\\r\\nScayt, -, Sourcedialog\",\"inlineMode\":0,\"useACF\":1,\"usePurifier\":1,\"formatTags\":\"p;h2;h3;h4;h5;h6;pre;address\",\"extraPlugins\":[\"pwimage\",\"pwlink\",\"sourcedialog\"],\"removePlugins\":\"image,magicline\",\"toggles\":[2,4,8],\"collapsed\":2}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('44', 'FieldtypeImage', 'images', '0', 'Images', '{\"extensions\":\"gif jpg jpeg png\",\"adminThumbs\":1,\"inputfieldClass\":\"InputfieldImage\",\"maxFiles\":0,\"descriptionRows\":1,\"fileSchema\":2,\"textformatters\":[\"TextformatterEntities\"],\"outputFormat\":1,\"defaultValuePage\":0,\"defaultGrid\":0,\"icon\":\"camera\"}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('79', 'FieldtypeTextarea', 'summary', '1', 'Summary', '{\"textformatters\":[\"TextformatterEntities\"],\"inputfieldClass\":\"InputfieldTextarea\",\"collapsed\":2,\"rows\":3,\"contentType\":0}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('76', 'FieldtypeTextarea', 'body', '0', 'Body', '{\"inputfieldClass\":\"InputfieldCKEditor\",\"rows\":10,\"contentType\":1,\"toolbar\":\"Format, Bold, Italic, -, RemoveFormat\\r\\nNumberedList, BulletedList, -, Blockquote\\r\\nPWLink, Unlink, Anchor\\r\\nPWImage, Table, HorizontalRule, SpecialChar\\r\\nPasteText, PasteFromWord\\r\\nScayt, -, Sourcedialog\",\"inlineMode\":0,\"useACF\":1,\"usePurifier\":1,\"formatTags\":\"p;h2;h3;h4;h5;h6;pre;address\",\"extraPlugins\":[\"pwimage\",\"pwlink\",\"sourcedialog\"],\"removePlugins\":\"image,magicline\",\"toggles\":[2,4,8]}');
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES('78', 'FieldtypeText', 'headline', '0', 'Headline', '{\"description\":\"Use this instead of the Title if a longer headline is needed than what you want to appear in navigation.\",\"textformatters\":[\"TextformatterEntities\"],\"collapsed\":2,\"size\":0,\"maxlength\":1024}');
DROP TABLE IF EXISTS `modules`;
CREATE TABLE `modules` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`class` varchar(128) CHARACTER SET ascii NOT NULL,
`flags` int(11) NOT NULL DEFAULT '0',
`data` text NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `class` (`class`)
) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=utf8;
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('1', 'FieldtypeTextarea', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('2', 'FieldtypeNumber', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('3', 'FieldtypeText', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('4', 'FieldtypePage', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('30', 'InputfieldForm', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('6', 'FieldtypeFile', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('7', 'ProcessPageEdit', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('10', 'ProcessLogin', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('12', 'ProcessPageList', '0', '{\"pageLabelField\":\"title\",\"paginationLimit\":25,\"limit\":50}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('121', 'ProcessPageEditLink', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('14', 'ProcessPageSort', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('15', 'InputfieldPageListSelect', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('117', 'JqueryUI', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('17', 'ProcessPageAdd', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('125', 'SessionLoginThrottle', '3', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('122', 'InputfieldPassword', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('25', 'InputfieldAsmSelect', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('116', 'JqueryCore', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('27', 'FieldtypeModule', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('28', 'FieldtypeDatetime', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('29', 'FieldtypeEmail', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('108', 'InputfieldURL', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('32', 'InputfieldSubmit', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('33', 'InputfieldWrapper', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('34', 'InputfieldText', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('35', 'InputfieldTextarea', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('36', 'InputfieldSelect', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('37', 'InputfieldCheckbox', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('38', 'InputfieldCheckboxes', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('39', 'InputfieldRadios', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('40', 'InputfieldHidden', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('41', 'InputfieldName', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('43', 'InputfieldSelectMultiple', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('45', 'JqueryWireTabs', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('46', 'ProcessPage', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('47', 'ProcessTemplate', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('48', 'ProcessField', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('50', 'ProcessModule', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('114', 'PagePermissions', '3', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('97', 'FieldtypeCheckbox', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('115', 'PageRender', '3', '{\"clearCache\":1}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('55', 'InputfieldFile', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('56', 'InputfieldImage', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('57', 'FieldtypeImage', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('60', 'InputfieldPage', '0', '{\"inputfieldClasses\":[\"InputfieldSelect\",\"InputfieldSelectMultiple\",\"InputfieldCheckboxes\",\"InputfieldRadios\",\"InputfieldAsmSelect\",\"InputfieldPageListSelect\",\"InputfieldPageListSelectMultiple\"]}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('61', 'TextformatterEntities', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('66', 'ProcessUser', '0', '{\"showFields\":[\"name\",\"email\",\"roles\"]}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('67', 'MarkupAdminDataTable', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('68', 'ProcessRole', '0', '{\"showFields\":[\"name\"]}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('76', 'ProcessList', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('78', 'InputfieldFieldset', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('79', 'InputfieldMarkup', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('80', 'InputfieldEmail', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('89', 'FieldtypeFloat', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('83', 'ProcessPageView', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('84', 'FieldtypeInteger', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('85', 'InputfieldInteger', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('86', 'InputfieldPageName', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('87', 'ProcessHome', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('90', 'InputfieldFloat', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('94', 'InputfieldDatetime', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('98', 'MarkupPagerNav', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('129', 'ProcessPageEditImageSelect', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('103', 'JqueryTableSorter', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('104', 'ProcessPageSearch', '1', '{\"searchFields\":\"title\",\"displayField\":\"title path\"}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('105', 'FieldtypeFieldsetOpen', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('106', 'FieldtypeFieldsetClose', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('107', 'FieldtypeFieldsetTabOpen', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('109', 'ProcessPageTrash', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('111', 'FieldtypePageTitle', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('112', 'InputfieldPageTitle', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('113', 'MarkupPageArray', '3', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('131', 'InputfieldButton', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('133', 'FieldtypePassword', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('134', 'ProcessPageType', '1', '{\"showFields\":[]}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('135', 'FieldtypeURL', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('136', 'ProcessPermission', '1', '{\"showFields\":[\"name\",\"title\"]}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('137', 'InputfieldPageListSelectMultiple', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('138', 'ProcessProfile', '1', '{\"profileFields\":[\"pass\",\"email\"]}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('139', 'SystemUpdater', '1', '{\"systemVersion\":7}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('148', 'AdminThemeDefault', '2', '{\"colors\":\"classic\"}', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('149', 'InputfieldSelector', '2', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('150', 'ProcessPageLister', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('151', 'JqueryMagnific', '1', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('152', 'PagePathHistory', '3', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('155', 'InputfieldCKEditor', '0', '', NOW());
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('156', 'MarkupHTMLPurifier', '0', '', NOW());
DROP TABLE IF EXISTS `page_path_history`;
CREATE TABLE `page_path_history` (
`path` varchar(255) NOT NULL,
`pages_id` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`path`),
KEY `pages_id` (`pages_id`),
KEY `created` (`created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `pages`;
CREATE TABLE `pages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
`templates_id` int(11) unsigned NOT NULL DEFAULT '0',
`name` varchar(128) CHARACTER SET ascii NOT NULL,
`status` int(10) unsigned NOT NULL DEFAULT '1',
`modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified_users_id` int(10) unsigned NOT NULL DEFAULT '2',
`created` timestamp NOT NULL DEFAULT '2015-12-18 06:09:00',
`created_users_id` int(10) unsigned NOT NULL DEFAULT '2',
`sort` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name_parent_id` (`name`,`parent_id`),
KEY `parent_id` (`parent_id`),
KEY `templates_id` (`templates_id`),
KEY `modified` (`modified`),
KEY `created` (`created`),
KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1009 DEFAULT CHARSET=utf8;
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1', '0', '1', 'home', '9', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('2', '1', '2', 'processwire', '1035', NOW(), '40', NOW(), '2', '5');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('3', '2', '2', 'page', '21', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('6', '3', '2', 'add', '1045', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('7', '1', '2', 'trash', '1039', NOW(), '41', NOW(), '2', '6');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('8', '3', '2', 'list', '21', NOW(), '41', NOW(), '2', '1');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('9', '3', '2', 'sort', '1047', NOW(), '41', NOW(), '2', '2');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('10', '3', '2', 'edit', '1045', NOW(), '41', NOW(), '2', '3');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('11', '22', '2', 'template', '21', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('16', '22', '2', 'field', '21', NOW(), '41', NOW(), '2', '2');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('21', '2', '2', 'module', '21', NOW(), '41', NOW(), '2', '2');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('22', '2', '2', 'setup', '21', NOW(), '41', NOW(), '2', '1');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('23', '2', '2', 'login', '1035', NOW(), '41', NOW(), '2', '4');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('27', '1', '29', 'http404', '1035', NOW(), '41', NOW(), '3', '4');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('28', '2', '2', 'access', '13', NOW(), '41', NOW(), '2', '3');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('29', '28', '2', 'users', '29', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('30', '28', '2', 'roles', '29', NOW(), '41', NOW(), '2', '1');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('31', '28', '2', 'permissions', '29', NOW(), '41', NOW(), '2', '2');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('32', '31', '5', 'page-edit', '25', NOW(), '41', NOW(), '2', '2');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('34', '31', '5', 'page-delete', '25', NOW(), '41', NOW(), '2', '3');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('35', '31', '5', 'page-move', '25', NOW(), '41', NOW(), '2', '4');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('36', '31', '5', 'page-view', '25', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('37', '30', '4', 'guest', '25', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('38', '30', '4', 'superuser', '25', NOW(), '41', NOW(), '2', '1');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('41', '29', '3', 'admin', '1', NOW(), '40', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('40', '29', '3', 'guest', '25', NOW(), '41', NOW(), '2', '1');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('50', '31', '5', 'page-sort', '25', NOW(), '41', NOW(), '41', '5');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('51', '31', '5', 'page-template', '25', NOW(), '41', NOW(), '41', '6');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('52', '31', '5', 'user-admin', '25', NOW(), '41', NOW(), '41', '10');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('53', '31', '5', 'profile-edit', '1', NOW(), '41', NOW(), '41', '13');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('54', '31', '5', 'page-lock', '1', NOW(), '41', NOW(), '41', '8');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('300', '3', '2', 'search', '1045', NOW(), '41', NOW(), '2', '5');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('301', '3', '2', 'trash', '1047', NOW(), '41', NOW(), '2', '5');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('302', '3', '2', 'link', '1041', NOW(), '41', NOW(), '2', '6');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('303', '3', '2', 'image', '1041', NOW(), '41', NOW(), '2', '7');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('304', '2', '2', 'profile', '1025', NOW(), '41', NOW(), '41', '5');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1000', '1', '26', 'search', '1025', NOW(), '41', NOW(), '2', '3');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1001', '1', '29', 'about', '1', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1002', '1001', '29', 'what', '1', NOW(), '41', NOW(), '2', '0');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1004', '1001', '29', 'background', '1', NOW(), '41', NOW(), '2', '1');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1005', '1', '34', 'site-map', '1', NOW(), '41', NOW(), '2', '2');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1006', '31', '5', 'page-lister', '1', NOW(), '40', NOW(), '40', '9');
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `sort`) VALUES('1007', '3', '2', 'lister', '1', NOW(), '40', NOW(), '40', '8');
DROP TABLE IF EXISTS `pages_access`;
CREATE TABLE `pages_access` (
`pages_id` int(11) NOT NULL,
`templates_id` int(11) NOT NULL,
`ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`pages_id`),
KEY `templates_id` (`templates_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('37', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('38', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('32', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('34', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('35', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('36', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('50', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('51', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('52', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('53', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('54', '2', NOW());
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES('1006', '2', NOW());
DROP TABLE IF EXISTS `pages_parents`;
CREATE TABLE `pages_parents` (
`pages_id` int(10) unsigned NOT NULL,
`parents_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`pages_id`,`parents_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('2', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('3', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('3', '2');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('7', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('22', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('22', '2');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('28', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('28', '2');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('29', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('29', '2');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('29', '28');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('30', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('30', '2');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('30', '28');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('31', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('31', '2');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('31', '28');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('1001', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('1002', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('1002', '1001');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('1004', '1');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('1004', '1001');
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES('1005', '1');
DROP TABLE IF EXISTS `pages_sortfields`;
CREATE TABLE `pages_sortfields` (
`pages_id` int(10) unsigned NOT NULL DEFAULT '0',
`sortfield` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`pages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `session_login_throttle`;
CREATE TABLE `session_login_throttle` (
`name` varchar(128) NOT NULL,
`attempts` int(10) unsigned NOT NULL DEFAULT '0',
`last_attempt` int(10) unsigned NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `templates`;
CREATE TABLE `templates` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET ascii NOT NULL,
`fieldgroups_id` int(10) unsigned NOT NULL DEFAULT '0',
`flags` int(11) NOT NULL DEFAULT '0',
`cache_time` mediumint(9) NOT NULL DEFAULT '0',
`data` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `fieldgroups_id` (`fieldgroups_id`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8;
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('2', 'admin', '2', '8', '0', '{\"useRoles\":1,\"parentTemplates\":[2],\"allowPageNum\":1,\"redirectLogin\":23,\"slashUrls\":1,\"noGlobal\":1,\"modified\":1406317841}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('3', 'user', '3', '8', '0', '{\"useRoles\":1,\"noChildren\":1,\"parentTemplates\":[2],\"slashUrls\":1,\"pageClass\":\"User\",\"noGlobal\":1,\"noMove\":1,\"noTrash\":1,\"noSettings\":1,\"noChangeTemplate\":1,\"nameContentTab\":1}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('4', 'role', '4', '8', '0', '{\"noChildren\":1,\"parentTemplates\":[2],\"slashUrls\":1,\"pageClass\":\"Role\",\"noGlobal\":1,\"noMove\":1,\"noTrash\":1,\"noSettings\":1,\"noChangeTemplate\":1,\"nameContentTab\":1}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('5', 'permission', '5', '8', '0', '{\"noChildren\":1,\"parentTemplates\":[2],\"slashUrls\":1,\"guestSearchable\":1,\"pageClass\":\"Permission\",\"noGlobal\":1,\"noMove\":1,\"noTrash\":1,\"noSettings\":1,\"noChangeTemplate\":1,\"nameContentTab\":1}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('1', 'home', '1', '0', '0', '{\"useRoles\":1,\"noParents\":1,\"slashUrls\":1,\"modified\":1409155727,\"roles\":[37]}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('29', 'basic-page', '83', '0', '0', '{\"slashUrls\":1,\"modified\":1409155715}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('26', 'search', '80', '0', '0', '{\"noChildren\":1,\"noParents\":1,\"allowPageNum\":1,\"slashUrls\":1,\"modified\":1409155785}');
INSERT INTO `templates` (`id`, `name`, `fieldgroups_id`, `flags`, `cache_time`, `data`) VALUES('34', 'sitemap', '88', '0', '0', '{\"noChildren\":1,\"noParents\":1,\"redirectLogin\":23,\"slashUrls\":1,\"modified\":1409155794}');
UPDATE pages SET created_users_id=41, modified_users_id=41, created=NOW(), modified=NOW();
--- /WireDatabaseBackup {"numTables":20,"numCreateTables":27,"numInserts":305,"numSeconds":0} |
--
-- PostgreSQL database dump
--
-- Dumped from database version 12.4
-- Dumped by pg_dump version 13.3
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: as_grid; Type: TABLE; Schema: public; Owner: radon_admin
--
CREATE TABLE public.as_grid (
id integer NOT NULL,
producer_id integer NOT NULL,
analysis_time timestamp with time zone NOT NULL,
geometry_id integer NOT NULL,
schema_name character varying(50) NOT NULL,
table_name character varying(50) NOT NULL,
partition_name character varying(70),
record_count integer DEFAULT 0 NOT NULL,
delete_time timestamp with time zone NOT NULL,
last_updater text,
last_updated timestamp with time zone,
min_analysis_time timestamp with time zone,
max_analysis_time timestamp with time zone
);
ALTER TABLE public.as_grid OWNER TO radon_admin;
--
-- Name: COLUMN as_grid.last_updater; Type: COMMENT; Schema: public; Owner: radon_admin
--
COMMENT ON COLUMN public.as_grid.last_updater IS 'Fixed column for last updater';
--
-- Name: COLUMN as_grid.last_updated; Type: COMMENT; Schema: public; Owner: radon_admin
--
COMMENT ON COLUMN public.as_grid.last_updated IS 'Fixed column for last updating time';
--
-- Name: as_grid_id_seq; Type: SEQUENCE; Schema: public; Owner: radon_admin
--
CREATE SEQUENCE public.as_grid_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.as_grid_id_seq OWNER TO radon_admin;
--
-- Name: as_grid_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: radon_admin
--
ALTER SEQUENCE public.as_grid_id_seq OWNED BY public.as_grid.id;
--
-- Name: as_grid id; Type: DEFAULT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.as_grid ALTER COLUMN id SET DEFAULT nextval('public.as_grid_id_seq'::regclass);
--
-- Name: as_grid as_grid_pkey; Type: CONSTRAINT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.as_grid
ADD CONSTRAINT as_grid_pkey PRIMARY KEY (id);
--
-- Name: as_grid_producer_id_analysis_time_geometry_id_uniq_idx; Type: INDEX; Schema: public; Owner: radon_admin
--
CREATE UNIQUE INDEX as_grid_producer_id_analysis_time_geometry_id_uniq_idx ON public.as_grid USING btree (producer_id, analysis_time, geometry_id);
--
-- Name: as_grid as_grid_store_last_updated_trg; Type: TRIGGER; Schema: public; Owner: radon_admin
--
CREATE TRIGGER as_grid_store_last_updated_trg BEFORE UPDATE ON public.as_grid FOR EACH ROW EXECUTE FUNCTION public.store_last_updated_f();
--
-- Name: as_grid as_grid_fmi_producer_fkey_02; Type: FK CONSTRAINT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.as_grid
ADD CONSTRAINT as_grid_fmi_producer_fkey_02 FOREIGN KEY (producer_id) REFERENCES public.fmi_producer(id);
--
-- Name: TABLE as_grid; Type: ACL; Schema: public; Owner: radon_admin
--
GRANT SELECT ON TABLE public.as_grid TO radon_ro;
GRANT INSERT,DELETE,UPDATE ON TABLE public.as_grid TO radon_rw;
--
-- Name: SEQUENCE as_grid_id_seq; Type: ACL; Schema: public; Owner: radon_admin
--
GRANT SELECT,UPDATE ON SEQUENCE public.as_grid_id_seq TO radon_rw;
--
-- PostgreSQL database dump complete
--
|
UPDATE [Customers$] SET
LastContact = '{LastContact}'
WHERE
CustID = '{CustID}' |
/* Add Virgin Column to Mem Accounts
*
*/
BEGIN;
ALTER TABLE "mem_accounts"
ADD COLUMN "virgin" SMALLINT DEFAULT 1;
-- Delete accounts which have never received or sent funds
-- e.g. Created using /api/accounts/open
DELETE FROM "mem_accounts"
WHERE "publicKey" IS NULL
AND "balance" = 0 AND "u_balance" = 0;
-- Reflect on virginity of existing accounts
UPDATE "mem_accounts" AS m
SET "virgin" = 0
FROM (SELECT "senderId"
FROM "trs"
GROUP BY "senderId") AS t
WHERE m."publicKey" IS NOT NULL
AND t."senderId" = m."address";
COMMIT;
|
DROP TABLE IF EXISTS outfits;
CREATE TABLE `outfits` (
`identifier` varchar(30) NOT NULL,
`skin` varchar(30) CHARACTER SET utf8 NOT NULL DEFAULT 'mp_m_freemode_01',
`face` int(11) NOT NULL DEFAULT '0',
`face_text` int(11) NOT NULL DEFAULT '0',
`hair` int(11) NOT NULL DEFAULT '0',
`hair_text` int(11) NOT NULL DEFAULT '0',
`pants` int(11) NOT NULL DEFAULT '0',
`pants_text` int(11) NOT NULL DEFAULT '0',
`shoes` int(11) NOT NULL DEFAULT '0',
`shoes_text` int(11) NOT NULL DEFAULT '0',
`torso` int(11) NOT NULL DEFAULT '0',
`torso_text` int(11) NOT NULL DEFAULT '0',
`shirt` int(11) NOT NULL DEFAULT '0',
`shirt_text` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
ALTER TABLE users ADD COLUMN isFirstConnection int DEFAULT 1; |
DELETE
FROM blocks
WHERE id IN (${ids:list})
|
<gh_stars>1-10
CREATE OR REPLACE VIEW VIEW_JC_PCFILIAL AS
SELECT CODIGO AS CODFILIAL,
(CASE
WHEN FANTASIA IS NULL THEN
'FILIAL 99'
ELSE
FANTASIA
END) AS FILIAIS,
(CASE
WHEN NOMEREMETENTE IS NULL THEN
'FILIAL 99'
ELSE
NOMEREMETENTE
END) AS EMPRESAS
FROM PCFILIAL
ORDER BY CODIGO;
|
CREATE SCHEMA [sqlparse]
AUTHORIZATION [dbo];
GO
EXECUTE sp_addextendedproperty @name = N'RepoSchema_guid', @value = '2199d297-86a3-eb11-84fa-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'sqlparse';
GO
EXECUTE sp_addextendedproperty @name = N'MS_Description', @value = N'contains objects around xref:user-guide:sqlparser.adoc[]
include::user-guide:page$sqlparser.adoc[tag=shortdescription]
see also: xref:user-guide:sqlparse-to-get-col-references.adoc[]
', @level0type = N'SCHEMA', @level0name = N'sqlparse';
|
insert into user (name, email) values ('rain', '<EMAIL>'), ('snow', '<EMAIL>'), ('wind', '<EMAIL>'); |
CREATE TABLE IF NOT EXISTS alert_timeline (
id INT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
event_type VARCHAR NOT NULL,
reported_at TIMESTAMPTZ,
event_info TEXT
) |
<reponame>kophjager007/PowerUpSQL
-- author: <NAME>, 2017
-- Description: Copy file contents to another file via local, unc, or webdav path
-- summary = file contains varchar data, field is an int, throws casting error on read, set error output to file, tada!
-- requires sysadmin or bulk insert privs
create table #errortable (ignore int)
bulk insert #errortable
from '\\localhost\c$\windows\win.ini' -- or 'c:\windows\system32\win.ni' -- or \\hostanme@SSL\folder\file.ini'
with
(
fieldterminator=',',
rowterminator='\n',
errorfile='c:\windows\temp\thatjusthappend.txt'
)
drop table #errortable
|
<filename>example/sqlite3/migrations/i9ypiko0.create-countries-table.sql<gh_stars>10-100
-- up
CREATE TABLE countries (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL
);
---
DROP TABLE countries;
-- down
|
CREATE TABLE [dbo].[AsignacionPerfilLista]
(
[IdAsignacion] [int] NOT NULL IDENTITY(1, 1),
[IdLista] [int] NOT NULL,
[IdPerfil] [int] NOT NULL,
[IsActivo] [bit] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AsignacionPerfilLista] ADD CONSTRAINT [PK_AsignacionPerfilLista] PRIMARY KEY CLUSTERED ([IdAsignacion]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AsignacionPerfilLista] ADD CONSTRAINT [FK_AsignacionPerfilLista_Listas] FOREIGN KEY ([IdLista]) REFERENCES [CAT].[Listas] ([IdLista])
GO
ALTER TABLE [dbo].[AsignacionPerfilLista] ADD CONSTRAINT [FK_AsignacionPerfilLista_Perfiles] FOREIGN KEY ([IdPerfil]) REFERENCES [CNF].[Perfiles] ([IdPerfil])
GO
|
-- Drop table if exists
DROP TABLE IF EXISTS titles CASCADE;
-- Create the titles table, with a primary id and a title
CREATE TABLE titles (
title_id VARCHAR,
title VARCHAR,
CONSTRAINT pk_titles PRIMARY KEY (title_id)
);
-- Drop table if exists
DROP TABLE IF EXISTS employees CASCADE;
-- Create an employees table, with the following:
-- set the foreign key and primary key relationships accordingly
CREATE TABLE employees (
emp_no INT,
emp_title_id VARCHAR,
birth_date DATE,
first_name VARCHAR,
last_name VARCHAR,
sex VARCHAR,
hire_date DATE,
FOREIGN KEY (emp_title_id) REFERENCES titles(title_id),
CONSTRAINT pk_employees PRIMARY KEY (emp_no)
-- md5(emp_no)
);
-- Drop table if exists
DROP TABLE IF EXISTS departments CASCADE;
-- Create an departments table, with the following:
-- set the primary key relationships accordingly
CREATE TABLE departments (
dept_no VARCHAR,
dept_name VARCHAR,
CONSTRAINT pk_departments PRIMARY KEY (dept_no)
);
-- Drop table if exists
DROP TABLE IF EXISTS dept_managers;
-- Create an dept_manager table, with the following:
-- set the foreign key and primary key relationships accordingly
CREATE TABLE dept_managers (
dept_no VARCHAR,
emp_no INT,
FOREIGN KEY (dept_no) REFERENCES departments(dept_no),
FOREIGN KEY (emp_no) REFERENCES employees(emp_no)
);
-- Drop table if exists
DROP TABLE IF EXISTS dept_emp;
-- Create an dept_emp table, with the following:
-- set the foreign key and primary key relationships accordingly
CREATE TABLE dept_emp (
emp_no INT,
dept_no VARCHAR,
FOREIGN KEY (emp_no) REFERENCES employees(emp_no),
FOREIGN KEY (dept_no) REFERENCES departments(dept_no)
);
-- Drop table if exists
DROP TABLE IF EXISTS salaries;
-- Create an salaries table, with the following:
-- set the foreign key and primary key relationships accordingly
CREATE TABLE salaries (
emp_no INT,
salary INT,
FOREIGN KEY (emp_no) REFERENCES employees(emp_no)
);
-- CSV files imported into each table using pgAdmin
--SELECT * FROM titles;
--SELECT * FROM employees;
--SELECT * FROM departments;
--SELECT * FROM dept_managers;
--SELECT * FROM dept_emp;
--SELECT * FROM salaries; |
If Not Exists(Select * from sys.columns where Name = N'FacilityID' AND Object_ID = Object_ID(N'lnk_GroupFeatures'))
BEGIN
ALTER TABLE lnk_GroupFeatures ADD FacilityID INT CONSTRAINT DF_DEFAULT_FacilityID DEFAULT 0 NOT NULL;
END
If Not Exists(Select * from sys.columns where Name = N'ModuleID' AND Object_ID = Object_ID(N'lnk_GroupFeatures'))
BEGIN
ALTER TABLE lnk_GroupFeatures ADD ModuleID INT CONSTRAINT DF_DEFAULT_ModuleID DEFAULT 0 NOT NULL;
END
If Not Exists(Select * from sys.columns where Name = N'TabID' AND Object_ID = Object_ID(N'lnk_GroupFeatures'))
BEGIN
ALTER TABLE lnk_GroupFeatures ADD TabID INT CONSTRAINT DF_DEFAULT_TabID DEFAULT 0 NOT NULL;
END
If Not Exists(Select * from sys.columns where Name = N'FeatureName' AND Object_ID = Object_ID(N'lnk_GroupFeatures'))
BEGIN
ALTER TABLE lnk_GroupFeatures ADD FeatureName varchar(150) CONSTRAINT DF_DEFAULT_FeatureName DEFAULT '' NOT NULL;
END
GO
insert into lnk_GroupFeatures (
FacilityID
, ModuleID
, FeatureID
, GroupID
, FeatureName
, TabID
, FunctionID
, CreateDate)
select
facilityID = (select top 1 FacilityID from mst_Facility where DeleteFlag = 0)
, ModuleId = (select top 1 moduleid from mst_module where ModuleName = 'Pharmacy Module')
, featureid = (select top 1 featureid from mst_Feature where FeatureName = 'Pharmacy Module')
, GroupID
, 'Pharmacy Module'
, 0
, 1
, getdate()
from mst_Groups where DeleteFlag = 0; |
Create Procedure [Hrm].[EncryptEmployeesSsn]
@employeeId Uniqueidentifier
AS
Begin
Open Symmetric Key HRM_KEY_001
Decryption By Certificate HRM001
Update [Hrm].[Employees]
Set [Ssn] = ENCRYPTBYKEY(KEY_GUID('HRM_KEY_001'), [Ssn])
Where [EmployeeId] = @employeeId
End
Return 0
|
<gh_stars>0
create or replace package pkg_WebUtilityBase is
/* package: pkg_WebUtilityBase
Common internal constans and functions of module.
SVN root: Oracle/Module/WebUtility
*/
/* group: Functions */
/* pproc: setNextTestResponse
Sets test response data for next request (works onlys in test database).
Call without parameters (or with null values for statusCode) clears the
previously set response data.
Parameters:
statusCode - Request result code (HTTP Status-Code)
(default is null)
reasonPhrase - Description of the query result
(default is null)
contentType - Type of response (HTTP Content-Type)
(default is null)
entityBody - Response to request (HTTP entity-body)
(default is null)
execSecond - Request execution time
(default is null)
( <body::setNextTestResponse>)
*/
procedure setNextTestResponse(
statusCode integer := null
, reasonPhrase varchar2 := null
, contentType varchar2 := null
, entityBody clob := null
, execSecond number := null
);
/* pfunc: getTestResponse
Returns test response data for request.
Parameters:
statusCode - Request result code (HTTP Status-Code)
(in out)
reasonPhrase - Description of the query result
(in out)
contentType - Type of response (HTTP Content-Type)
(in out)
entityBody - Response to request (HTTP entity-body)
(in out)
execSecond - Request execution time
(in out)
( <body::getTestResponse>)
*/
function getTestResponse(
statusCode in out nocopy integer
, reasonPhrase in out nocopy varchar2
, contentType in out nocopy varchar2
, entityBody in out nocopy clob
, execSecond in out nocopy number
)
return boolean;
end pkg_WebUtilityBase;
/
|
drop table Permissions_Role if exists;
drop table Permissions if exists;
drop table Role if exists;
CREATE TABLE Permissions ( id BIGINT NOT NULL, action VARCHAR (255), userName VARCHAR (255), PRIMARY KEY (id));
CREATE TABLE Permissions_Role ( Permissions_id BIGINT NOT NULL, roles_id BIGINT NOT NULL );
CREATE TABLE Role ( id BIGINT NOT NULL, NAME VARCHAR (255), PRIMARY KEY (id));
ALTER TABLE Permissions_Role ADD CONSTRAINT FK3A8B2F91185AD954 FOREIGN KEY (roles_id) REFERENCES Role;
ALTER TABLE Permissions_Role ADD CONSTRAINT FK3A8B2F9145947519 FOREIGN KEY (Permissions_id) REFERENCES Permissions;
INSERT INTO Role(id,NAME) values (1, 'Batch Process');
INSERT INTO Role(id,NAME) values ( 2, 'Service Credit Reviewer' );
INSERT INTO Role(id,NAME) values (3, 'Receivables Supervisor');
INSERT INTO Role(id,NAME) values ( 4, 'Service Credit Specialist' );
INSERT INTO Role(id,NAME) values (5, 'Receivables Technician');
INSERT INTO Role(id,NAME) values ( 6, 'Service Credit Data Entry Technician' );
INSERT INTO Role(id,NAME) values (7, 'Financial Technician');
INSERT INTO Role(id,NAME) values (8, 'Financial Supervisor');
INSERT INTO Role(id,NAME) values (9, 'Information Technician');
INSERT INTO Role(id,NAME) values (10, 'System Administrator');
INSERT INTO Role(id,NAME) values (11, 'FACES User');
INSERT INTO Role(id,NAME) values (12, 'RIO User');
INSERT INTO Role(id,NAME) values (13, 'View Only User');
INSERT INTO Permissions(id,action,userName) values (1, '/', '<EMAIL>');
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 1);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 2);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 3);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 4);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 5);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 6);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 7);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 8);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 9);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 10);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 11);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 12);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (1, 13);
INSERT INTO Permissions(id,action,userName) values (2, '/index.jsp', '<EMAIL>');
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,1);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,2);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,3);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,4);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,5);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,6);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,7);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,8);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,9);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,10);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,11);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,12);
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (2,13);
INSERT INTO Permissions(id,action,userName) values (3, 'tab1', '<EMAIL>');
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (3,1);
INSERT INTO Permissions(id,action,userName) values (4, 'tab2', '<EMAIL>');
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (4,2);
INSERT INTO Permissions(id,action,userName) values (5, 'tab3', '<EMAIL>');
INSERT INTO Permissions_Role(Permissions_id,roles_id) values (5,3);
|
<gh_stars>1-10
alter table DDCA_ATTACHEMENT add column CATEGORY_ID varchar(36) ;
|
<reponame>a12312347/zhaoping
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50505
Source Host : 127.0.0.1:3306
Source Database : zhaoping
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2019-06-03 15:01:45
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for fa_ad
-- ----------------------------
DROP TABLE IF EXISTS `fa_ad`;
CREATE TABLE `fa_ad` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`weigh` int(11) NOT NULL COMMENT '权重',
`image` text NOT NULL COMMENT '图片',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='首页轮播图表';
-- ----------------------------
-- Records of fa_ad
-- ----------------------------
INSERT INTO `fa_ad` VALUES ('1', '1', '/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg');
-- ----------------------------
-- Table structure for fa_admin
-- ----------------------------
DROP TABLE IF EXISTS `fa_admin`;
CREATE TABLE `fa_admin` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`username` varchar(20) NOT NULL DEFAULT '' COMMENT '用户名',
`nickname` varchar(50) NOT NULL DEFAULT '' COMMENT '昵称',
`password` varchar(32) NOT NULL DEFAULT '' COMMENT '密码',
`salt` varchar(30) NOT NULL DEFAULT '' COMMENT '密码盐',
`avatar` varchar(100) NOT NULL DEFAULT '' COMMENT '头像',
`email` varchar(100) NOT NULL DEFAULT '' COMMENT '电子邮箱',
`loginfailure` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '失败次数',
`logintime` int(10) DEFAULT NULL COMMENT '登录时间',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`token` varchar(59) NOT NULL DEFAULT '' COMMENT 'Session标识',
`status` varchar(30) NOT NULL DEFAULT 'normal' COMMENT '状态',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='管理员表';
-- ----------------------------
-- Records of fa_admin
-- ----------------------------
INSERT INTO `fa_admin` VALUES ('1', 'admin', 'Admin', '6c65d35ad0f7b2d9f75aa175ceea5f82', '58d3d4', '/assets/img/avatar.png', '<EMAIL>', '0', '1559543446', '1492186163', '1559543446', 'ef1e9fb0-0090-4a53-a6d3-86986c7c0f81', 'normal');
INSERT INTO `fa_admin` VALUES ('2', 'admin666', 'admin666', '4efc645074860586abdb386<PASSWORD>65b0b', 'GXNToS', '/assets/img/avatar.png', '<EMAIL>', '0', '1559529465', '1559529454', '1559529465', '7107a2db-aae8-4674-a1fe-6e6f320cd66c', 'normal');
-- ----------------------------
-- Table structure for fa_admin_log
-- ----------------------------
DROP TABLE IF EXISTS `fa_admin_log`;
CREATE TABLE `fa_admin_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员ID',
`username` varchar(30) NOT NULL DEFAULT '' COMMENT '管理员名字',
`url` varchar(1500) NOT NULL DEFAULT '' COMMENT '操作页面',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '日志标题',
`content` text NOT NULL COMMENT '内容',
`ip` varchar(50) NOT NULL DEFAULT '' COMMENT 'IP',
`useragent` varchar(255) NOT NULL DEFAULT '' COMMENT 'User-Agent',
`createtime` int(10) DEFAULT NULL COMMENT '操作时间',
PRIMARY KEY (`id`),
KEY `name` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=1029 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='管理员日志表';
-- ----------------------------
-- Records of fa_admin_log
-- ----------------------------
INSERT INTO `fa_admin_log` VALUES ('1', '1', 'admin', '/admin/index/login.html', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin\",\"captcha\":\"em3u\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319878');
INSERT INTO `fa_admin_log` VALUES ('2', '1', 'admin', '/admin/addon/install', '插件管理 安装', '{\"name\":\"command\",\"force\":\"0\",\"uid\":\"0\",\"token\":\"\",\"version\":\"1.0.5\",\"faversion\":\"1.0.0.20190510_beta\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319898');
INSERT INTO `fa_admin_log` VALUES ('3', '1', 'admin', '/admin/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319898');
INSERT INTO `fa_admin_log` VALUES ('4', '1', 'admin', '/admin/addon/install', '插件管理 安装', '{\"name\":\"summernote\",\"force\":\"0\",\"uid\":\"0\",\"token\":\"\",\"version\":\"1.0.3\",\"faversion\":\"1.0.0.20190510_beta\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319914');
INSERT INTO `fa_admin_log` VALUES ('5', '1', 'admin', '/admin/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319914');
INSERT INTO `fa_admin_log` VALUES ('6', '1', 'admin', '/admin/addon/install', '插件管理 安装', '{\"name\":\"ucenter\",\"force\":\"0\",\"uid\":\"0\",\"token\":\"\",\"version\":\"1.0.1\",\"faversion\":\"1.0.0.20190510_beta\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319917');
INSERT INTO `fa_admin_log` VALUES ('7', '1', 'admin', '/admin/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319917');
INSERT INTO `fa_admin_log` VALUES ('8', '1', 'admin', '/admin/addon/install', '插件管理 安装', '{\"name\":\"address\",\"force\":\"0\",\"uid\":\"0\",\"token\":\"\",\"version\":\"1.0.3\",\"faversion\":\"1.0.0.20190510_beta\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319924');
INSERT INTO `fa_admin_log` VALUES ('9', '1', 'admin', '/admin/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558319924');
INSERT INTO `fa_admin_log` VALUES ('10', '1', 'admin', '/admin/addon/install', '插件管理 安装', '{\"name\":\"epay\",\"force\":\"0\",\"uid\":\"0\",\"token\":\"\",\"version\":\"1.0.4\",\"faversion\":\"1.0.0.20190510_beta\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558320005');
INSERT INTO `fa_admin_log` VALUES ('11', '1', 'admin', '/admin/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558320006');
INSERT INTO `fa_admin_log` VALUES ('12', '1', 'admin', '/admin/index/login', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin\",\"keeplogin\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558320426');
INSERT INTO `fa_admin_log` VALUES ('13', '1', 'admin', '/admin/addon/config?name=address&dialog=1', '插件管理 配置', '{\"name\":\"address\",\"dialog\":\"1\",\"row\":{\"maptype\":\"amap\",\"location\":\"\\u6210\\u90fd\",\"zoom\":\"12\",\"lat\":\"39.919990\",\"lng\":\"116.456270\",\"baidukey\":\"<KEY>\",\"amapkey\":\"<KEY>\":\"608d75903d29ad471362f8c58c550daf\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558320609');
INSERT INTO `fa_admin_log` VALUES ('14', '1', 'admin', '/index/login', '登录', '{\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558321354');
INSERT INTO `fa_admin_log` VALUES ('15', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322021');
INSERT INTO `fa_admin_log` VALUES ('16', '1', 'admin', '/admin123.php/auth/group/del/ids/2,3,5,4', '权限管理 角色组 删除', '{\"action\":\"del\",\"ids\":\"2,3,5,4\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322057');
INSERT INTO `fa_admin_log` VALUES ('17', '1', 'admin', '/admin123.php/auth/group/del/ids/2', '权限管理 角色组 删除', '{\"action\":\"del\",\"ids\":\"2\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322060');
INSERT INTO `fa_admin_log` VALUES ('18', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322130');
INSERT INTO `fa_admin_log` VALUES ('19', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322147');
INSERT INTO `fa_admin_log` VALUES ('20', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322149');
INSERT INTO `fa_admin_log` VALUES ('21', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322173');
INSERT INTO `fa_admin_log` VALUES ('22', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322386');
INSERT INTO `fa_admin_log` VALUES ('23', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322393');
INSERT INTO `fa_admin_log` VALUES ('24', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322458');
INSERT INTO `fa_admin_log` VALUES ('25', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322469');
INSERT INTO `fa_admin_log` VALUES ('26', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322473');
INSERT INTO `fa_admin_log` VALUES ('27', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"1\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/User.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322475');
INSERT INTO `fa_admin_log` VALUES ('28', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"1\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322491');
INSERT INTO `fa_admin_log` VALUES ('29', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"1\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322756');
INSERT INTO `fa_admin_log` VALUES ('30', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"1\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322757');
INSERT INTO `fa_admin_log` VALUES ('31', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322757');
INSERT INTO `fa_admin_log` VALUES ('32', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322764');
INSERT INTO `fa_admin_log` VALUES ('33', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322873');
INSERT INTO `fa_admin_log` VALUES ('34', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322876');
INSERT INTO `fa_admin_log` VALUES ('35', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"1\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558322880');
INSERT INTO `fa_admin_log` VALUES ('36', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324684');
INSERT INTO `fa_admin_log` VALUES ('37', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324690');
INSERT INTO `fa_admin_log` VALUES ('38', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324691');
INSERT INTO `fa_admin_log` VALUES ('39', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324708');
INSERT INTO `fa_admin_log` VALUES ('40', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"1\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/Rule.php\",\"action\":\"command\"}', '12172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324710');
INSERT INTO `fa_admin_log` VALUES ('41', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"1\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/Rule.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324711');
INSERT INTO `fa_admin_log` VALUES ('42', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324712');
INSERT INTO `fa_admin_log` VALUES ('43', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"1\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/Rule.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324716');
INSERT INTO `fa_admin_log` VALUES ('44', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324717');
INSERT INTO `fa_admin_log` VALUES ('45', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"1\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/Rule.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324725');
INSERT INTO `fa_admin_log` VALUES ('46', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324726');
INSERT INTO `fa_admin_log` VALUES ('47', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324832');
INSERT INTO `fa_admin_log` VALUES ('48', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324837');
INSERT INTO `fa_admin_log` VALUES ('49', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324838');
INSERT INTO `fa_admin_log` VALUES ('50', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324841');
INSERT INTO `fa_admin_log` VALUES ('51', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/Group.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324843');
INSERT INTO `fa_admin_log` VALUES ('52', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"1\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"user\\/Group.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558324849');
INSERT INTO `fa_admin_log` VALUES ('53', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558330900');
INSERT INTO `fa_admin_log` VALUES ('54', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558330903');
INSERT INTO `fa_admin_log` VALUES ('55', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"user\",\"model\":\"user\",\"fields\":[\"id\",\"nickname\",\"avatar\",\"openid\",\"createtime\",\"status\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"status\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"status\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331024');
INSERT INTO `fa_admin_log` VALUES ('56', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"user\",\"model\":\"user\",\"fields\":[\"id\",\"nickname\",\"avatar\",\"openid\",\"createtime\",\"status\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"status\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"status\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331024');
INSERT INTO `fa_admin_log` VALUES ('57', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331026');
INSERT INTO `fa_admin_log` VALUES ('58', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"user\",\"model\":\"user\",\"fields\":[\"id\",\"nickname\",\"avatar\",\"openid\",\"createtime\",\"status\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"status\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"status\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331092');
INSERT INTO `fa_admin_log` VALUES ('59', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_user\",\"controller\":\"user\",\"model\":\"user\",\"fields\":[\"id\",\"nickname\",\"avatar\",\"openid\",\"createtime\",\"status\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"status\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"status\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331092');
INSERT INTO `fa_admin_log` VALUES ('60', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331093');
INSERT INTO `fa_admin_log` VALUES ('61', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331106');
INSERT INTO `fa_admin_log` VALUES ('62', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331108');
INSERT INTO `fa_admin_log` VALUES ('63', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331109');
INSERT INTO `fa_admin_log` VALUES ('64', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"User.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331110');
INSERT INTO `fa_admin_log` VALUES ('65', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"User.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331113');
INSERT INTO `fa_admin_log` VALUES ('66', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331114');
INSERT INTO `fa_admin_log` VALUES ('67', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_test\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331280');
INSERT INTO `fa_admin_log` VALUES ('68', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_test\",\"controller\":\"test\",\"model\":\"test\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"status\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"status\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331288');
INSERT INTO `fa_admin_log` VALUES ('69', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_test\",\"controller\":\"test\",\"model\":\"test\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331296');
INSERT INTO `fa_admin_log` VALUES ('70', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"1\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_test\",\"controller\":\"test\",\"model\":\"test\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331300');
INSERT INTO `fa_admin_log` VALUES ('71', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331301');
INSERT INTO `fa_admin_log` VALUES ('72', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331316');
INSERT INTO `fa_admin_log` VALUES ('73', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331318');
INSERT INTO `fa_admin_log` VALUES ('74', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331320');
INSERT INTO `fa_admin_log` VALUES ('75', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331321');
INSERT INTO `fa_admin_log` VALUES ('76', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Test.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331323');
INSERT INTO `fa_admin_log` VALUES ('77', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Test.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331323');
INSERT INTO `fa_admin_log` VALUES ('78', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331323');
INSERT INTO `fa_admin_log` VALUES ('79', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=234634259,4236876085&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331690');
INSERT INTO `fa_admin_log` VALUES ('80', '1', 'admin', '/admin123.php/user/add?dialog=1', '用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u6625\\u6696\\u82b1\\u5f00\\u4e36\",\"image\":\"\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"openid\":\"sadasdasdasdsaasd\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331713');
INSERT INTO `fa_admin_log` VALUES ('81', '1', 'admin', '/admin123.php/user/edit/ids/1?dialog=1', '用户管理 编辑', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u6625\\u6696\\u82b1\\u5f00\\u4e36\",\"avatar\":\"\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"openid\":\"sadasdasdasdsaasd\",\"status\":\"normal\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331835');
INSERT INTO `fa_admin_log` VALUES ('82', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=1055727654,337004439&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331879');
INSERT INTO `fa_admin_log` VALUES ('83', '1', 'admin', '/admin123.php/user/add?dialog=1', '用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u4e00\\u5b63\\u82b1\\u5f00\\u4e36\",\"avatar\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg\",\"openid\":\"tyuaihtaefasdefsgfs\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558331891');
INSERT INTO `fa_admin_log` VALUES ('84', '1', 'admin', '/admin123.php/user/multi/ids/2,1', '用户管理 批量更新', '{\"ids\":\"2,1\",\"params\":\"status=hidden\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558332087');
INSERT INTO `fa_admin_log` VALUES ('85', '1', 'admin', '/admin123.php/user/multi/ids/2,1', '用户管理 批量更新', '{\"ids\":\"2,1\",\"params\":\"status=normal\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558332092');
INSERT INTO `fa_admin_log` VALUES ('86', '1', 'admin', '/admin123.php/user/ban/ids/2', '', '{\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333511');
INSERT INTO `fa_admin_log` VALUES ('87', '1', 'admin', '/admin123.php/user/ban/ids/2', '', '{\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333612');
INSERT INTO `fa_admin_log` VALUES ('88', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333664');
INSERT INTO `fa_admin_log` VALUES ('89', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333780');
INSERT INTO `fa_admin_log` VALUES ('90', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333786');
INSERT INTO `fa_admin_log` VALUES ('91', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333788');
INSERT INTO `fa_admin_log` VALUES ('92', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333788');
INSERT INTO `fa_admin_log` VALUES ('93', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333789');
INSERT INTO `fa_admin_log` VALUES ('94', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558333789');
INSERT INTO `fa_admin_log` VALUES ('95', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334000');
INSERT INTO `fa_admin_log` VALUES ('96', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334002');
INSERT INTO `fa_admin_log` VALUES ('97', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334002');
INSERT INTO `fa_admin_log` VALUES ('98', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334003');
INSERT INTO `fa_admin_log` VALUES ('99', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334005');
INSERT INTO `fa_admin_log` VALUES ('100', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334082');
INSERT INTO `fa_admin_log` VALUES ('101', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334112');
INSERT INTO `fa_admin_log` VALUES ('102', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334117');
INSERT INTO `fa_admin_log` VALUES ('103', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334318');
INSERT INTO `fa_admin_log` VALUES ('104', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334319');
INSERT INTO `fa_admin_log` VALUES ('105', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334320');
INSERT INTO `fa_admin_log` VALUES ('106', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334321');
INSERT INTO `fa_admin_log` VALUES ('107', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334321');
INSERT INTO `fa_admin_log` VALUES ('108', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334324');
INSERT INTO `fa_admin_log` VALUES ('109', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334326');
INSERT INTO `fa_admin_log` VALUES ('110', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334327');
INSERT INTO `fa_admin_log` VALUES ('111', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334330');
INSERT INTO `fa_admin_log` VALUES ('112', '1', 'admin', '/admin123.php/user/ban?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334345');
INSERT INTO `fa_admin_log` VALUES ('113', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334350');
INSERT INTO `fa_admin_log` VALUES ('114', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334352');
INSERT INTO `fa_admin_log` VALUES ('115', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334405');
INSERT INTO `fa_admin_log` VALUES ('116', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334406');
INSERT INTO `fa_admin_log` VALUES ('117', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334408');
INSERT INTO `fa_admin_log` VALUES ('118', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334537');
INSERT INTO `fa_admin_log` VALUES ('119', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334539');
INSERT INTO `fa_admin_log` VALUES ('120', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334539');
INSERT INTO `fa_admin_log` VALUES ('121', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334540');
INSERT INTO `fa_admin_log` VALUES ('122', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334541');
INSERT INTO `fa_admin_log` VALUES ('123', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334541');
INSERT INTO `fa_admin_log` VALUES ('124', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334543');
INSERT INTO `fa_admin_log` VALUES ('125', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334544');
INSERT INTO `fa_admin_log` VALUES ('126', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334546');
INSERT INTO `fa_admin_log` VALUES ('127', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334547');
INSERT INTO `fa_admin_log` VALUES ('128', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334548');
INSERT INTO `fa_admin_log` VALUES ('129', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334549');
INSERT INTO `fa_admin_log` VALUES ('130', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334550');
INSERT INTO `fa_admin_log` VALUES ('131', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334551');
INSERT INTO `fa_admin_log` VALUES ('132', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334551');
INSERT INTO `fa_admin_log` VALUES ('133', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334710');
INSERT INTO `fa_admin_log` VALUES ('134', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334711');
INSERT INTO `fa_admin_log` VALUES ('135', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334712');
INSERT INTO `fa_admin_log` VALUES ('136', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558334713');
INSERT INTO `fa_admin_log` VALUES ('137', '1', 'admin', '/admin123.php/auth/group/roletree', '', '{\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558340240');
INSERT INTO `fa_admin_log` VALUES ('138', '1', 'admin', '/admin123.php/auth/group/roletree', '', '{\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558340242');
INSERT INTO `fa_admin_log` VALUES ('139', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558346600');
INSERT INTO `fa_admin_log` VALUES ('140', '1', 'admin', '/admin123.php/user/multi/ids/2', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"2\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558346958');
INSERT INTO `fa_admin_log` VALUES ('141', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558346960');
INSERT INTO `fa_admin_log` VALUES ('142', '1', 'admin', '/admin123.php/user/multi/ids/1', '用户管理 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558346960');
INSERT INTO `fa_admin_log` VALUES ('143', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php', '登录', '{\"url\":\"\\/admin123.php\",\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1558347317');
INSERT INTO `fa_admin_log` VALUES ('144', '1', 'admin', '/admin123.php/index/login', '登录', '{\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347373');
INSERT INTO `fa_admin_log` VALUES ('145', '1', 'admin', '/admin123.php/index/login', '登录', '{\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '12172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347486');
INSERT INTO `fa_admin_log` VALUES ('146', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"usermanage\",\"title\":\"\\u7528\\u6237\\u7ba1\\u7406\",\"icon\":\"fa fa-user-circle\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347801');
INSERT INTO `fa_admin_log` VALUES ('147', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347801');
INSERT INTO `fa_admin_log` VALUES ('148', '1', 'admin', '/admin123.php/auth/rule/edit/ids/92?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"107\",\"name\":\"user\",\"title\":\"\\u7528\\u6237\\u7ba1\\u7406\",\"icon\":\"fa fa-user\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"92\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347820');
INSERT INTO `fa_admin_log` VALUES ('149', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347820');
INSERT INTO `fa_admin_log` VALUES ('150', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347838');
INSERT INTO `fa_admin_log` VALUES ('151', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_agent\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347842');
INSERT INTO `fa_admin_log` VALUES ('152', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347852');
INSERT INTO `fa_admin_log` VALUES ('153', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347852');
INSERT INTO `fa_admin_log` VALUES ('154', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347852');
INSERT INTO `fa_admin_log` VALUES ('155', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347852');
INSERT INTO `fa_admin_log` VALUES ('156', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347855');
INSERT INTO `fa_admin_log` VALUES ('157', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558347855');
INSERT INTO `fa_admin_log` VALUES ('158', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php', '登录', '{\"url\":\"\\/admin123.php\",\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400164');
INSERT INTO `fa_admin_log` VALUES ('159', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php', '登录', '{\"url\":\"\\/admin123.php\",\"__token__\":\"<KEY>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1558400306');
INSERT INTO `fa_admin_log` VALUES ('160', '1', 'admin', '/admin123.php/user/agent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1558400315');
INSERT INTO `fa_admin_log` VALUES ('161', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php%2Fuser%3Fref%3Daddtabs', '登录', '{\"url\":\"\\/admin123.php\\/user?ref=addtabs\",\"__token__\":\"b351<PASSWORD>b12c6a90a7823f<PASSWORD>f<PASSWORD>af\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400397');
INSERT INTO `fa_admin_log` VALUES ('162', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400908');
INSERT INTO `fa_admin_log` VALUES ('163', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_ad\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400973');
INSERT INTO `fa_admin_log` VALUES ('164', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_ad\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400974');
INSERT INTO `fa_admin_log` VALUES ('165', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400974');
INSERT INTO `fa_admin_log` VALUES ('166', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400977');
INSERT INTO `fa_admin_log` VALUES ('167', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400978');
INSERT INTO `fa_admin_log` VALUES ('168', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Ad.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400979');
INSERT INTO `fa_admin_log` VALUES ('169', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Ad.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400980');
INSERT INTO `fa_admin_log` VALUES ('170', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558400980');
INSERT INTO `fa_admin_log` VALUES ('171', '1', 'admin', '/admin123.php/ad/add?dialog=1', '首页轮播图管理 添加', '{\"dialog\":\"1\",\"row\":{\"weigh\":\"0\",\"image\":\"\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558401086');
INSERT INTO `fa_admin_log` VALUES ('172', '1', 'admin', '/admin123.php/user/agent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558401575');
INSERT INTO `fa_admin_log` VALUES ('173', '1', 'admin', '/admin123.php/user/agent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558401578');
INSERT INTO `fa_admin_log` VALUES ('174', '1', 'admin', '/admin123.php/user/agent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558401579');
INSERT INTO `fa_admin_log` VALUES ('175', '1', 'admin', '/admin123.php/user/delagent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402521');
INSERT INTO `fa_admin_log` VALUES ('176', '1', 'admin', '/admin123.php/user/agent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402523');
INSERT INTO `fa_admin_log` VALUES ('177', '1', 'admin', '/admin123.php/user/agent?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402802');
INSERT INTO `fa_admin_log` VALUES ('178', '1', 'admin', '/admin123.php/user/agent?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402804');
INSERT INTO `fa_admin_log` VALUES ('179', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402881');
INSERT INTO `fa_admin_log` VALUES ('180', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_welfare\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402886');
INSERT INTO `fa_admin_log` VALUES ('181', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_welfare\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402894');
INSERT INTO `fa_admin_log` VALUES ('182', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_welfare\",\"controller\":\"\",\"model\":\"\",\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402895');
INSERT INTO `fa_admin_log` VALUES ('183', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402895');
INSERT INTO `fa_admin_log` VALUES ('184', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402898');
INSERT INTO `fa_admin_log` VALUES ('185', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402900');
INSERT INTO `fa_admin_log` VALUES ('186', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402902');
INSERT INTO `fa_admin_log` VALUES ('187', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Welfare.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402903');
INSERT INTO `fa_admin_log` VALUES ('188', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Welfare.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402903');
INSERT INTO `fa_admin_log` VALUES ('189', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402903');
INSERT INTO `fa_admin_log` VALUES ('190', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '福利管理 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e94\\u9669\\u4e00\\u91d1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402912');
INSERT INTO `fa_admin_log` VALUES ('191', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '福利管理 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u793e\\u4fdd\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402945');
INSERT INTO `fa_admin_log` VALUES ('192', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '福利管理 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558402972');
INSERT INTO `fa_admin_log` VALUES ('193', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '福利管理 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u53cc\\u4f11\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403004');
INSERT INTO `fa_admin_log` VALUES ('194', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '福利管理 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u5e74\\u7ec8\\u5956\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403010');
INSERT INTO `fa_admin_log` VALUES ('195', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"jobmanage\",\"title\":\"\\u804c\\u4f4d\\u7ba1\\u7406\",\"icon\":\"fa fa-list\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403171');
INSERT INTO `fa_admin_log` VALUES ('196', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403172');
INSERT INTO `fa_admin_log` VALUES ('197', '1', 'admin', '/admin123.php/auth/rule/edit/ids/114?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"120\",\"name\":\"welfare\",\"title\":\"\\u798f\\u5229\\u8bbe\\u7f6e\",\"icon\":\"fa fa-star-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"114\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403209');
INSERT INTO `fa_admin_log` VALUES ('198', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403209');
INSERT INTO `fa_admin_log` VALUES ('199', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"settings\",\"title\":\"\\u7cfb\\u7edf\\u8bbe\\u7f6e\",\"icon\":\"fa fa-wrench\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403291');
INSERT INTO `fa_admin_log` VALUES ('200', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403291');
INSERT INTO `fa_admin_log` VALUES ('201', '1', 'admin', '/admin123.php/auth/rule/edit/ids/108?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"121\",\"name\":\"ad\",\"title\":\"\\u9996\\u9875\\u8f6e\\u64ad\\u56fe\",\"icon\":\"fa fa-eye\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"108\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403330');
INSERT INTO `fa_admin_log` VALUES ('202', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403330');
INSERT INTO `fa_admin_log` VALUES ('203', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403377');
INSERT INTO `fa_admin_log` VALUES ('204', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_job\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403382');
INSERT INTO `fa_admin_log` VALUES ('205', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403522');
INSERT INTO `fa_admin_log` VALUES ('206', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_job\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403527');
INSERT INTO `fa_admin_log` VALUES ('207', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403612');
INSERT INTO `fa_admin_log` VALUES ('208', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403613');
INSERT INTO `fa_admin_log` VALUES ('209', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_job\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403616');
INSERT INTO `fa_admin_log` VALUES ('210', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_job\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"company_images\",\"interview_images\",\"dormitory_images\",\"canteen_images\",\"staff_images\",\"entry\",\"recommend\",\"commission\",\"nature\",\"type\",\"state\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"state\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403631');
INSERT INTO `fa_admin_log` VALUES ('211', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_job\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"company_images\",\"interview_images\",\"dormitory_images\",\"canteen_images\",\"staff_images\",\"entry\",\"recommend\",\"commission\",\"nature\",\"type\",\"state\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"state\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403634');
INSERT INTO `fa_admin_log` VALUES ('212', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403634');
INSERT INTO `fa_admin_log` VALUES ('213', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403637');
INSERT INTO `fa_admin_log` VALUES ('214', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403639');
INSERT INTO `fa_admin_log` VALUES ('215', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403640');
INSERT INTO `fa_admin_log` VALUES ('216', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Job.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403641');
INSERT INTO `fa_admin_log` VALUES ('217', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Job.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403642');
INSERT INTO `fa_admin_log` VALUES ('218', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403643');
INSERT INTO `fa_admin_log` VALUES ('219', '1', 'admin', '/admin123.php/auth/rule/edit/ids/122?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"120\",\"name\":\"job\",\"title\":\"\\u804c\\u4f4d\\u7ba1\\u7406\",\"icon\":\"fa fa-dedent\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"122\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403683');
INSERT INTO `fa_admin_log` VALUES ('220', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403683');
INSERT INTO `fa_admin_log` VALUES ('221', '1', 'admin', '/admin123.php/auth/rule/edit/ids/122?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"120\",\"name\":\"job\",\"title\":\"\\u804c\\u4f4d\\u5217\\u8868\",\"icon\":\"fa fa-dedent\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"122\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403700');
INSERT INTO `fa_admin_log` VALUES ('222', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558403700');
INSERT INTO `fa_admin_log` VALUES ('223', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405213');
INSERT INTO `fa_admin_log` VALUES ('224', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405215');
INSERT INTO `fa_admin_log` VALUES ('225', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405216');
INSERT INTO `fa_admin_log` VALUES ('226', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405334');
INSERT INTO `fa_admin_log` VALUES ('227', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405335');
INSERT INTO `fa_admin_log` VALUES ('228', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405336');
INSERT INTO `fa_admin_log` VALUES ('229', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405374');
INSERT INTO `fa_admin_log` VALUES ('230', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405375');
INSERT INTO `fa_admin_log` VALUES ('231', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405375');
INSERT INTO `fa_admin_log` VALUES ('232', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405377');
INSERT INTO `fa_admin_log` VALUES ('233', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405377');
INSERT INTO `fa_admin_log` VALUES ('234', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405378');
INSERT INTO `fa_admin_log` VALUES ('235', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405581');
INSERT INTO `fa_admin_log` VALUES ('236', '1', 'admin', '/admin123.php/job/add?dialog=1', '职位管理 职位列表 添加', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200\",\"recommend\":\"100\",\"commission\":\"500\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e94\\u9669\\u4e00\\u91d1,\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"state\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405603');
INSERT INTO `fa_admin_log` VALUES ('237', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"2019-05-21 10:29:54\",\"welfare\":\"\\u4e94\\u9669\\u4e00\\u91d1,\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558405811');
INSERT INTO `fa_admin_log` VALUES ('238', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e94\\u9669\\u4e00\\u91d1,\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e94\\u9669\\u4e00\\u91d1,\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406098');
INSERT INTO `fa_admin_log` VALUES ('239', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406149');
INSERT INTO `fa_admin_log` VALUES ('240', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406151');
INSERT INTO `fa_admin_log` VALUES ('241', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406531');
INSERT INTO `fa_admin_log` VALUES ('242', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406534');
INSERT INTO `fa_admin_log` VALUES ('243', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=1979198230,3799788659&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406607');
INSERT INTO `fa_admin_log` VALUES ('244', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=1986179278,1118313821&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406610');
INSERT INTO `fa_admin_log` VALUES ('245', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=2153937626,1074119156&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406613');
INSERT INTO `fa_admin_log` VALUES ('246', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=2968231382,1111539856&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406615');
INSERT INTO `fa_admin_log` VALUES ('247', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"u=3300305952,1328708913&fm=26&gp=0.jpg\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406617');
INSERT INTO `fa_admin_log` VALUES ('248', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406713');
INSERT INTO `fa_admin_log` VALUES ('249', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406714');
INSERT INTO `fa_admin_log` VALUES ('250', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406715');
INSERT INTO `fa_admin_log` VALUES ('251', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406715');
INSERT INTO `fa_admin_log` VALUES ('252', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406716');
INSERT INTO `fa_admin_log` VALUES ('253', '1', 'admin', '/admin123.php/job/add?dialog=1', '职位管理 职位列表 添加', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"interview_images\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dormitory_images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"canteen_images\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200\",\"recommend\":\"100\",\"commission\":\"200\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u5de5\\u4f5c\\u7ecf\\u9a8c2\\u5e74\\/\\u5b66\\u5386\\u4e0d\\u9650\\/\\u4e3a\\u4eba\\u4e50\\u89c2\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"introduce\":\"\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"state\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406737');
INSERT INTO `fa_admin_log` VALUES ('254', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406742');
INSERT INTO `fa_admin_log` VALUES ('255', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406773');
INSERT INTO `fa_admin_log` VALUES ('256', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558406936');
INSERT INTO `fa_admin_log` VALUES ('257', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407007');
INSERT INTO `fa_admin_log` VALUES ('258', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407021');
INSERT INTO `fa_admin_log` VALUES ('259', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407118');
INSERT INTO `fa_admin_log` VALUES ('260', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_job_record\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407122');
INSERT INTO `fa_admin_log` VALUES ('261', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407156');
INSERT INTO `fa_admin_log` VALUES ('262', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407156');
INSERT INTO `fa_admin_log` VALUES ('263', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407156');
INSERT INTO `fa_admin_log` VALUES ('264', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407157');
INSERT INTO `fa_admin_log` VALUES ('265', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_job\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407160');
INSERT INTO `fa_admin_log` VALUES ('266', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_job\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407161');
INSERT INTO `fa_admin_log` VALUES ('267', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407161');
INSERT INTO `fa_admin_log` VALUES ('268', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407161');
INSERT INTO `fa_admin_log` VALUES ('269', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407161');
INSERT INTO `fa_admin_log` VALUES ('270', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407162');
INSERT INTO `fa_admin_log` VALUES ('271', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407164');
INSERT INTO `fa_admin_log` VALUES ('272', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407164');
INSERT INTO `fa_admin_log` VALUES ('273', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_job_record\",\"controller\":\"jobrecord\",\"model\":\"jobrecord\",\"fields\":[\"id\",\"job_id\",\"state\"],\"relation\":{\"2\":{\"relation\":\"fa_job\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"job_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"entry\",\"recommend\",\"commission\"]},\"3\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"state\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407294');
INSERT INTO `fa_admin_log` VALUES ('274', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_job_record\",\"controller\":\"jobrecord\",\"model\":\"jobrecord\",\"fields\":[\"id\",\"job_id\",\"state\"],\"relation\":{\"2\":{\"relation\":\"fa_job\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"job_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"entry\",\"recommend\",\"commission\"]},\"3\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"state\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407297');
INSERT INTO `fa_admin_log` VALUES ('275', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407297');
INSERT INTO `fa_admin_log` VALUES ('276', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407300');
INSERT INTO `fa_admin_log` VALUES ('277', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407302');
INSERT INTO `fa_admin_log` VALUES ('278', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407304');
INSERT INTO `fa_admin_log` VALUES ('279', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Jobrecord.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407305');
INSERT INTO `fa_admin_log` VALUES ('280', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Jobrecord.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407305');
INSERT INTO `fa_admin_log` VALUES ('281', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407306');
INSERT INTO `fa_admin_log` VALUES ('282', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407484');
INSERT INTO `fa_admin_log` VALUES ('283', '1', 'admin', '/admin123.php/auth/rule/edit/ids/128?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"120\",\"name\":\"jobrecord\",\"title\":\"\\u5165\\u804c\\u8bb0\\u5f55\",\"icon\":\"fa fa-reorder\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"128\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407541');
INSERT INTO `fa_admin_log` VALUES ('284', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407541');
INSERT INTO `fa_admin_log` VALUES ('285', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407546');
INSERT INTO `fa_admin_log` VALUES ('286', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407548');
INSERT INTO `fa_admin_log` VALUES ('287', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407549');
INSERT INTO `fa_admin_log` VALUES ('288', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407551');
INSERT INTO `fa_admin_log` VALUES ('289', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"id\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"id\",\"keyField\":\"id\",\"searchField\":[\"id\"],\"id\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407570');
INSERT INTO `fa_admin_log` VALUES ('290', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407571');
INSERT INTO `fa_admin_log` VALUES ('291', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407578');
INSERT INTO `fa_admin_log` VALUES ('292', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407613');
INSERT INTO `fa_admin_log` VALUES ('293', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"id\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"id\",\"keyField\":\"id\",\"searchField\":[\"id\"],\"id\":\"\"}', '1172.16.17.32', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407614');
INSERT INTO `fa_admin_log` VALUES ('294', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"id\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"id\",\"keyField\":\"id\",\"searchField\":[\"id\"],\"id\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407615');
INSERT INTO `fa_admin_log` VALUES ('295', '1', 'admin', '/admin123.php/jobrecord/add?dialog=1', '职位管理 入职记录 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"job_id\":\"1\",\"state\":\"wait\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407617');
INSERT INTO `fa_admin_log` VALUES ('296', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407928');
INSERT INTO `fa_admin_log` VALUES ('297', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558407928');
INSERT INTO `fa_admin_log` VALUES ('298', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"dynamicmanage\",\"title\":\"\\u52a8\\u6001\\u7ba1\\u7406\",\"icon\":\"fa fa-comments\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408066');
INSERT INTO `fa_admin_log` VALUES ('299', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408066');
INSERT INTO `fa_admin_log` VALUES ('300', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408074');
INSERT INTO `fa_admin_log` VALUES ('301', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_dynamic_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408080');
INSERT INTO `fa_admin_log` VALUES ('302', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_dynamic_ad\",\"controller\":\"dynamicad\",\"model\":\"dynamicad\",\"fields\":[\"id\",\"image\",\"dynamic_id\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408112');
INSERT INTO `fa_admin_log` VALUES ('303', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_dynamic_ad\",\"controller\":\"dynamicad\",\"model\":\"dynamicad\",\"fields\":[\"id\",\"image\",\"dynamic_id\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408114');
INSERT INTO `fa_admin_log` VALUES ('304', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408114');
INSERT INTO `fa_admin_log` VALUES ('305', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408127');
INSERT INTO `fa_admin_log` VALUES ('306', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408131');
INSERT INTO `fa_admin_log` VALUES ('307', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Dynamicad.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408132');
INSERT INTO `fa_admin_log` VALUES ('308', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Dynamicad.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408133');
INSERT INTO `fa_admin_log` VALUES ('309', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408133');
INSERT INTO `fa_admin_log` VALUES ('310', '1', 'admin', '/admin123.php/auth/rule/edit/ids/135?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"134\",\"name\":\"dynamicad\",\"title\":\"\\u8f6e\\u64ad\\u56fe\",\"icon\":\"fa fa-photo\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"135\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408266');
INSERT INTO `fa_admin_log` VALUES ('311', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408266');
INSERT INTO `fa_admin_log` VALUES ('312', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408291');
INSERT INTO `fa_admin_log` VALUES ('313', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_dynamic\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408314');
INSERT INTO `fa_admin_log` VALUES ('314', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_dynamic\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"title\",\"images\",\"details\",\"type\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"details\",\"headingfilterfield\":\"type\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408360');
INSERT INTO `fa_admin_log` VALUES ('315', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_dynamic\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"title\",\"images\",\"details\",\"type\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408378');
INSERT INTO `fa_admin_log` VALUES ('316', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_dynamic\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"title\",\"images\",\"details\",\"type\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408380');
INSERT INTO `fa_admin_log` VALUES ('317', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408380');
INSERT INTO `fa_admin_log` VALUES ('318', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408384');
INSERT INTO `fa_admin_log` VALUES ('319', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408386');
INSERT INTO `fa_admin_log` VALUES ('320', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408389');
INSERT INTO `fa_admin_log` VALUES ('321', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Dynamic.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408391');
INSERT INTO `fa_admin_log` VALUES ('322', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Dynamic.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408391');
INSERT INTO `fa_admin_log` VALUES ('323', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408392');
INSERT INTO `fa_admin_log` VALUES ('324', '1', 'admin', '/admin123.php/auth/rule/edit/ids/141?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"134\",\"name\":\"dynamic\",\"title\":\"\\u52a8\\u6001\\u5217\\u8868\",\"icon\":\"fa fa-ellipsis-h\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"141\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408453');
INSERT INTO `fa_admin_log` VALUES ('325', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408453');
INSERT INTO `fa_admin_log` VALUES ('326', '1', 'admin', '/admin123.php/dynamic/add?dialog=1', '动态管理 动态列表 添加', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u600111111\",\"images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg,\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg,\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"details\":\"<h2 style=\\\"text-align: center; \\\"><b><i>\\u8fd9\\u662f\\u52a0\\u5927\\u52a0\\u7c97\\u8fd8\\u659c\\u4f53\\u7684\\u6807\\u9898<\\/i><\\/b><\\/h2><blockquote style=\\\"color: rgb(0, 0, 0); text-align: center;\\\"><p><span style=\\\"font-size: 12px;\\\">\\ufeff\\u8fd9\\u662f\\u6b63\\u6587asda<\\/span>asdasdasdasd<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdasasdasdasdasdasdasdsd<\\/p><p><b>\\u8fd9\\u91cc\\u662f\\u7ed3\\u5c3e<\\/b><\\/p><\\/blockquote><h1 style=\\\"color: rgb(0, 0, 0); text-align: center;\\\"><span style=\\\"font-size: 12px;\\\"><\\/span><\\/h1>\",\"type\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408893');
INSERT INTO `fa_admin_log` VALUES ('327', '1', 'admin', '/admin123.php/dynamic/edit/ids/1?dialog=1', '动态管理 动态列表 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u600111111\",\"images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg,\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"details\":\"<h2 style=\\\"text-align: center; \\\"><b><i>\\u8fd9\\u662f\\u52a0\\u5927\\u52a0\\u7c97\\u8fd8\\u659c\\u4f53\\u7684\\u6807\\u9898<\\/i><\\/b><\\/h2><blockquote style=\\\"color: rgb(0, 0, 0); text-align: center;\\\"><p><span style=\\\"font-size: 12px;\\\">\\ufeff\\u8fd9\\u662f\\u6b63\\u6587asda<\\/span>asdasdasdasd<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdas<span style=\\\"font-size: 12px;\\\">\\u6b63\\u6587asda<\\/span>asdasdasasdasdasdasdasdasdsd<\\/p><p><b>\\u8fd9\\u91cc\\u662f\\u7ed3\\u5c3e1<\\/b><\\/p><\\/blockquote><h1 style=\\\"color: rgb(0, 0, 0); text-align: center;\\\"><span style=\\\"font-size: 12px;\\\"><\\/span><\\/h1>\",\"type\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558408961');
INSERT INTO `fa_admin_log` VALUES ('328', '1', 'admin', '/admin123.php/dynamic/multi/ids/1', '动态管理 动态列表 批量更新', '{\"ids\":\"1\",\"params\":\"type=2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558409063');
INSERT INTO `fa_admin_log` VALUES ('329', '1', 'admin', '/admin123.php/dynamic/multi/ids/1', '动态管理 动态列表 批量更新', '{\"ids\":\"1\",\"params\":\"type=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558409068');
INSERT INTO `fa_admin_log` VALUES ('330', '1', 'admin', '/admin123.php/dynamic/multi/ids/1', '动态管理 动态列表 批量更新', '{\"ids\":\"1\",\"params\":\"type=2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558409122');
INSERT INTO `fa_admin_log` VALUES ('331', '1', 'admin', '/admin123.php/dynamic/add?dialog=1', '动态管理 动态列表 添加', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg,\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"details\":\"<ol><li>sad\\u6309\\u65f6\\u7684\\u554a\\u662f\\u7684\\u963f\\u8428\\u5fb7\\u554a\\u5b9e\\u6253\\u5b9e<\\/li><li>\\u6309\\u65f6d\\u6309\\u65f6 asd \\u963f\\u8428\\u5fb7<\\/li><li> \\u963f\\u8428\\u5fb7\\u6492 \\u6309\\u65f6daas <\\/li><li>\\u6309\\u65f6\\u6253\\u7b97d\\u6309\\u65f6<\\/li><li>a\\u662fd\\u6309\\u65f6<\\/li><li>da\\u662f<\\/li><li>\\u6309\\u65f6<\\/li><li>sa da\\u662f<\\/li><li>as <\\/li><li>\\u963f\\u8428\\u5fb7<\\/li><li>as dsa<\\/li><\\/ol>\",\"type\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558409274');
INSERT INTO `fa_admin_log` VALUES ('332', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558409423');
INSERT INTO `fa_admin_log` VALUES ('333', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558409427');
INSERT INTO `fa_admin_log` VALUES ('334', '1', 'admin', '/admin123.php/dynamic/index', '动态管理 动态列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"title\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"title\",\"keyField\":\"id\",\"searchField\":[\"title\"],\"title\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410041');
INSERT INTO `fa_admin_log` VALUES ('335', '1', 'admin', '/admin123.php/dynamic/index', '动态管理 动态列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"title\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"title\",\"keyField\":\"id\",\"searchField\":[\"title\"],\"title\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410066');
INSERT INTO `fa_admin_log` VALUES ('336', '1', 'admin', '/admin123.php/dynamicad/add?dialog=1', '动态管理 轮播图 添加', '{\"dialog\":\"1\",\"row\":{\"image\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"dynamic_id\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410069');
INSERT INTO `fa_admin_log` VALUES ('337', '1', 'admin', '/admin123.php/dynamic/index', '动态管理 动态列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"title\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"title\",\"keyField\":\"id\",\"searchField\":[\"title\"],\"title\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410082');
INSERT INTO `fa_admin_log` VALUES ('338', '1', 'admin', '/admin123.php/dynamicad/add?dialog=1', '动态管理 轮播图 添加', '{\"dialog\":\"1\",\"row\":{\"image\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dynamic_id\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410084');
INSERT INTO `fa_admin_log` VALUES ('339', '1', 'admin', '/admin123.php/dynamic/index', '动态管理 动态列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"title\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"title\",\"keyField\":\"id\",\"searchField\":[\"title\"],\"title\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410629');
INSERT INTO `fa_admin_log` VALUES ('340', '1', 'admin', '/admin123.php/dynamic/index', '动态管理 动态列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"title\",\"ASC\"]],\"showField\":\"title\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"title\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410647');
INSERT INTO `fa_admin_log` VALUES ('341', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410768');
INSERT INTO `fa_admin_log` VALUES ('342', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410953');
INSERT INTO `fa_admin_log` VALUES ('343', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558410959');
INSERT INTO `fa_admin_log` VALUES ('344', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558411018');
INSERT INTO `fa_admin_log` VALUES ('345', '1', 'admin', '/admin123.php/dynamic/multi/ids/2,1', '动态管理 动态列表 批量更新', '{\"ids\":\"2,1\",\"params\":\"type=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558411022');
INSERT INTO `fa_admin_log` VALUES ('346', '1', 'admin', '/admin123.php/dynamic/edit/ids/2?dialog=1', '动态管理 动态列表 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg,\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"details\":\"<ol><li>sad\\u6309\\u65f6\\u7684\\u554a\\u662f\\u7684\\u963f\\u8428\\u5fb7\\u554a\\u5b9e\\u6253\\u5b9e<\\/li><li>\\u6309\\u65f6d\\u6309\\u65f6 asd \\u963f\\u8428\\u5fb7<\\/li><li> \\u963f\\u8428\\u5fb7\\u6492 \\u6309\\u65f6daas <\\/li><li>\\u6309\\u65f6\\u6253\\u7b97d\\u6309\\u65f6<\\/li><li>a\\u662fd\\u6309\\u65f6<\\/li><li>da\\u662f<\\/li><li>\\u6309\\u65f6<\\/li><li>sa da\\u662f<\\/li><li>as <\\/li><li>\\u963f\\u8428\\u5fb7<\\/li><li>as dsa<\\/li><\\/ol>\",\"type\":\"2\"},\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558411029');
INSERT INTO `fa_admin_log` VALUES ('347', '1', 'admin', '/admin123.php/dynamicad/dynamicinfo?id=2&ids=2&dialog=1', '', '{\"id\":\"2\",\"ids\":\"2\",\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg,\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"details\":\"<ol><li>sad\\u6309\\u65f6\\u7684\\u554a\\u662f\\u7684\\u963f\\u8428\\u5fb7\\u554a\\u5b9e\\u6253\\u5b9e<\\/li><li>\\u6309\\u65f6d\\u6309\\u65f6 asd \\u963f\\u8428\\u5fb7<\\/li><li> \\u963f\\u8428\\u5fb7\\u6492 \\u6309\\u65f6daas <\\/li><li>\\u6309\\u65f6\\u6253\\u7b97d\\u6309\\u65f6<\\/li><li>a\\u662fd\\u6309\\u65f6<\\/li><li>da\\u662f<\\/li><li>\\u6309\\u65f6<\\/li><li>sa da\\u662f<\\/li><li>as <\\/li><li>\\u963f\\u8428\\u5fb7<\\/li><li>as dsa<\\/li><\\/ol>\",\"type\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418189');
INSERT INTO `fa_admin_log` VALUES ('348', '1', 'admin', '/admin123.php/dynamicad/dynamicinfo?id=2&ids=2&dialog=1', '', '{\"id\":\"2\",\"ids\":\"2\",\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg,\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"details\":\"<ol><li>sad\\u6309\\u65f6\\u7684\\u554a\\u662f\\u7684\\u963f\\u8428\\u5fb7\\u554a\\u5b9e\\u6253\\u5b9e<\\/li><li>\\u6309\\u65f6d\\u6309\\u65f6 asd \\u963f\\u8428\\u5fb7<\\/li><li> \\u963f\\u8428\\u5fb7\\u6492 \\u6309\\u65f6daas <\\/li><li>\\u6309\\u65f6\\u6253\\u7b97d\\u6309\\u65f6<\\/li><li>a\\u662fd\\u6309\\u65f6<\\/li><li>da\\u662f<\\/li><li>\\u6309\\u65f6<\\/li><li>sa da\\u662f<\\/li><li>as <\\/li><li>\\u963f\\u8428\\u5fb7<\\/li><li>as dsa<\\/li><\\/ol>\",\"type\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418190');
INSERT INTO `fa_admin_log` VALUES ('349', '1', 'admin', '/admin123.php/dynamicad/dynamicinfo?id=2&ids=2&dialog=1', '', '{\"id\":\"2\",\"ids\":\"2\",\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg,\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"details\":\"<ol><li>sad\\u6309\\u65f6\\u7684\\u554a\\u662f\\u7684\\u963f\\u8428\\u5fb7\\u554a\\u5b9e\\u6253\\u5b9e<\\/li><li>\\u6309\\u65f6d\\u6309\\u65f6 asd \\u963f\\u8428\\u5fb7<\\/li><li> \\u963f\\u8428\\u5fb7\\u6492 \\u6309\\u65f6daas <\\/li><li>\\u6309\\u65f6\\u6253\\u7b97d\\u6309\\u65f6<\\/li><li>a\\u662fd\\u6309\\u65f6<\\/li><li>da\\u662f<\\/li><li>\\u6309\\u65f6<\\/li><li>sa da\\u662f<\\/li><li>as <\\/li><li>\\u963f\\u8428\\u5fb7<\\/li><li>as dsa<\\/li><\\/ol>\",\"type\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418191');
INSERT INTO `fa_admin_log` VALUES ('350', '1', 'admin', '/admin123.php/dynamicad/dynamicinfo?id=2&ids=2&dialog=1', '', '{\"id\":\"2\",\"ids\":\"2\",\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg,\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"details\":\"<ol><li>sad\\u6309\\u65f6\\u7684\\u554a\\u662f\\u7684\\u963f\\u8428\\u5fb7\\u554a\\u5b9e\\u6253\\u5b9e<\\/li><li>\\u6309\\u65f6d\\u6309\\u65f6 asd \\u963f\\u8428\\u5fb7<\\/li><li> \\u963f\\u8428\\u5fb7\\u6492 \\u6309\\u65f6daas <\\/li><li>\\u6309\\u65f6\\u6253\\u7b97d\\u6309\\u65f6<\\/li><li>a\\u662fd\\u6309\\u65f6<\\/li><li>da\\u662f<\\/li><li>\\u6309\\u65f6<\\/li><li>sa da\\u662f<\\/li><li>as <\\/li><li>\\u963f\\u8428\\u5fb7<\\/li><li>as dsa<\\/li><\\/ol>\",\"type\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418191');
INSERT INTO `fa_admin_log` VALUES ('351', '1', 'admin', '/admin123.php/dynamic/index', '动态管理 动态列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"title\",\"ASC\"]],\"showField\":\"title\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"title\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418238');
INSERT INTO `fa_admin_log` VALUES ('352', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418524');
INSERT INTO `fa_admin_log` VALUES ('353', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_signup\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418550');
INSERT INTO `fa_admin_log` VALUES ('354', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_signup\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"name\",\"tel\",\"company\",\"job\",\"switch\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"switch\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"switch\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418578');
INSERT INTO `fa_admin_log` VALUES ('355', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"0\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_signup\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"name\",\"tel\",\"company\",\"job\",\"switch\"],\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"switch\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"switch\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418579');
INSERT INTO `fa_admin_log` VALUES ('356', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418579');
INSERT INTO `fa_admin_log` VALUES ('357', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418586');
INSERT INTO `fa_admin_log` VALUES ('358', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418587');
INSERT INTO `fa_admin_log` VALUES ('359', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418590');
INSERT INTO `fa_admin_log` VALUES ('360', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418592');
INSERT INTO `fa_admin_log` VALUES ('361', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Signup.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418593');
INSERT INTO `fa_admin_log` VALUES ('362', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Signup.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418594');
INSERT INTO `fa_admin_log` VALUES ('363', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418594');
INSERT INTO `fa_admin_log` VALUES ('364', '1', 'admin', '/admin123.php/auth/rule/edit/ids/147?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"120\",\"name\":\"signup\",\"title\":\"\\u5e2e\\u52a9\\u62a5\\u540d\",\"icon\":\"fa fa-address-book-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"147\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418631');
INSERT INTO `fa_admin_log` VALUES ('365', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418631');
INSERT INTO `fa_admin_log` VALUES ('366', '1', 'admin', '/admin123.php/signup/add?dialog=1', '职位管理 帮助报名 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u9648\\u6797\",\"tel\":\"14780114469\",\"company\":\"\\u6070\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u516c\\u53f8\",\"job\":\"php\\u5de5\\u7a0b\\u5e08\",\"switch\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418672');
INSERT INTO `fa_admin_log` VALUES ('367', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418674');
INSERT INTO `fa_admin_log` VALUES ('368', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418676');
INSERT INTO `fa_admin_log` VALUES ('369', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418676');
INSERT INTO `fa_admin_log` VALUES ('370', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418678');
INSERT INTO `fa_admin_log` VALUES ('371', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418678');
INSERT INTO `fa_admin_log` VALUES ('372', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418812');
INSERT INTO `fa_admin_log` VALUES ('373', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418816');
INSERT INTO `fa_admin_log` VALUES ('374', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418818');
INSERT INTO `fa_admin_log` VALUES ('375', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418963');
INSERT INTO `fa_admin_log` VALUES ('376', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418963');
INSERT INTO `fa_admin_log` VALUES ('377', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418963');
INSERT INTO `fa_admin_log` VALUES ('378', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418964');
INSERT INTO `fa_admin_log` VALUES ('379', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558418998');
INSERT INTO `fa_admin_log` VALUES ('380', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419010');
INSERT INTO `fa_admin_log` VALUES ('381', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419123');
INSERT INTO `fa_admin_log` VALUES ('382', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419136');
INSERT INTO `fa_admin_log` VALUES ('383', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419201');
INSERT INTO `fa_admin_log` VALUES ('384', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419355');
INSERT INTO `fa_admin_log` VALUES ('385', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419359');
INSERT INTO `fa_admin_log` VALUES ('386', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419359');
INSERT INTO `fa_admin_log` VALUES ('387', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419361');
INSERT INTO `fa_admin_log` VALUES ('388', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419362');
INSERT INTO `fa_admin_log` VALUES ('389', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419366');
INSERT INTO `fa_admin_log` VALUES ('390', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419415');
INSERT INTO `fa_admin_log` VALUES ('391', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419543');
INSERT INTO `fa_admin_log` VALUES ('392', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"action\":\"\",\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419546');
INSERT INTO `fa_admin_log` VALUES ('393', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"ids\":\"1\",\"params\":\"switch=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419745');
INSERT INTO `fa_admin_log` VALUES ('394', '1', 'admin', '/admin123.php/signup/multi/ids/1', '职位管理 帮助报名 批量更新', '{\"ids\":\"1\",\"params\":\"switch=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419748');
INSERT INTO `fa_admin_log` VALUES ('395', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"txmanage\",\"title\":\"\\u63d0\\u73b0\\u7ba1\\u7406\",\"icon\":\"fa fa-money\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419811');
INSERT INTO `fa_admin_log` VALUES ('396', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419811');
INSERT INTO `fa_admin_log` VALUES ('397', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419817');
INSERT INTO `fa_admin_log` VALUES ('398', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_txrecord\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419842');
INSERT INTO `fa_admin_log` VALUES ('399', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419859');
INSERT INTO `fa_admin_log` VALUES ('400', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419859');
INSERT INTO `fa_admin_log` VALUES ('401', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419859');
INSERT INTO `fa_admin_log` VALUES ('402', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419859');
INSERT INTO `fa_admin_log` VALUES ('403', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419862');
INSERT INTO `fa_admin_log` VALUES ('404', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419862');
INSERT INTO `fa_admin_log` VALUES ('405', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_txrecord\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"tx_cost\",\"sj_cost\",\"createtime\",\"state\"],\"relation\":{\"2\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\",\"tel\",\"name\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"state\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419914');
INSERT INTO `fa_admin_log` VALUES ('406', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_txrecord\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"tx_cost\",\"sj_cost\",\"createtime\",\"state\"],\"relation\":{\"2\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\",\"tel\",\"name\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"state\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419915');
INSERT INTO `fa_admin_log` VALUES ('407', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419915');
INSERT INTO `fa_admin_log` VALUES ('408', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419918');
INSERT INTO `fa_admin_log` VALUES ('409', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419920');
INSERT INTO `fa_admin_log` VALUES ('410', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"3\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419921');
INSERT INTO `fa_admin_log` VALUES ('411', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419923');
INSERT INTO `fa_admin_log` VALUES ('412', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419924');
INSERT INTO `fa_admin_log` VALUES ('413', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Txrecord.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419925');
INSERT INTO `fa_admin_log` VALUES ('414', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Txrecord.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419925');
INSERT INTO `fa_admin_log` VALUES ('415', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419925');
INSERT INTO `fa_admin_log` VALUES ('416', '1', 'admin', '/admin123.php/auth/rule/edit/ids/154?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"txrecord\",\"title\":\"\\u63d0\\u73b0\\u7533\\u8bf7\",\"icon\":\"fa fa-align-left\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"154\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419946');
INSERT INTO `fa_admin_log` VALUES ('417', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419946');
INSERT INTO `fa_admin_log` VALUES ('418', '1', 'admin', '/admin123.php/auth/rule/edit/ids/154?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"153\",\"name\":\"txrecord\",\"title\":\"\\u63d0\\u73b0\\u7533\\u8bf7\",\"icon\":\"fa fa-align-left\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"154\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419957');
INSERT INTO `fa_admin_log` VALUES ('419', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558419958');
INSERT INTO `fa_admin_log` VALUES ('420', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420052');
INSERT INTO `fa_admin_log` VALUES ('421', '1', 'admin', '/admin123.php/txrecord/add?dialog=1', '提现管理 提现申请 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"tx_cost\":\"10\",\"sj_cost\":\"9.4\",\"state\":\"wait\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420061');
INSERT INTO `fa_admin_log` VALUES ('422', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420066');
INSERT INTO `fa_admin_log` VALUES ('423', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420114');
INSERT INTO `fa_admin_log` VALUES ('424', '1', 'admin', '/admin123.php/txrecord/add?dialog=1', '提现管理 提现申请 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"tx_cost\":\"10\",\"sj_cost\":\"9.4\",\"state\":\"wait\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420121');
INSERT INTO `fa_admin_log` VALUES ('425', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420124');
INSERT INTO `fa_admin_log` VALUES ('426', '1', 'admin', '/admin123.php/txrecord/add?dialog=1', '提现管理 提现申请 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"3\",\"tx_cost\":\"10\",\"sj_cost\":\"9.4\",\"state\":\"wait\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558420129');
INSERT INTO `fa_admin_log` VALUES ('427', '1', 'admin', '/admin123.php/txrecord/pass/ids/3', '', '{\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421300');
INSERT INTO `fa_admin_log` VALUES ('428', '1', 'admin', '/admin123.php/txrecord/pass?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421321');
INSERT INTO `fa_admin_log` VALUES ('429', '1', 'admin', '/admin123.php/txrecord/pass?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421335');
INSERT INTO `fa_admin_log` VALUES ('430', '1', 'admin', '/admin123.php/txrecord/pass?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421406');
INSERT INTO `fa_admin_log` VALUES ('431', '1', 'admin', '/admin123.php/txrecord/pass?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421452');
INSERT INTO `fa_admin_log` VALUES ('432', '1', 'admin', '/admin123.php/txrecord/pass?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421485');
INSERT INTO `fa_admin_log` VALUES ('433', '1', 'admin', '/admin123.php/txrecord/pass?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421486');
INSERT INTO `fa_admin_log` VALUES ('434', '1', 'admin', '/admin123.php/txrecord/pass?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421486');
INSERT INTO `fa_admin_log` VALUES ('435', '1', 'admin', '/admin123.php/txrecord/pass?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421627');
INSERT INTO `fa_admin_log` VALUES ('436', '1', 'admin', '/admin123.php/txrecord/pass?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421631');
INSERT INTO `fa_admin_log` VALUES ('437', '1', 'admin', '/admin123.php/txrecord/pass?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421677');
INSERT INTO `fa_admin_log` VALUES ('438', '1', 'admin', '/admin123.php/txrecord/pass?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421788');
INSERT INTO `fa_admin_log` VALUES ('439', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421829');
INSERT INTO `fa_admin_log` VALUES ('440', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421830');
INSERT INTO `fa_admin_log` VALUES ('441', '1', 'admin', '/admin123.php/txrecord/pass?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421842');
INSERT INTO `fa_admin_log` VALUES ('442', '1', 'admin', '/admin123.php/txrecord/pass?id=3&user_id=3&ids=3', '', '{\"id\":\"3\",\"user_id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421975');
INSERT INTO `fa_admin_log` VALUES ('443', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421987');
INSERT INTO `fa_admin_log` VALUES ('444', '1', 'admin', '/admin123.php/txrecord/add?dialog=1', '提现管理 提现申请 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"tx_cost\":\"10\",\"sj_cost\":\"9.6\",\"state\":\"wait\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558421997');
INSERT INTO `fa_admin_log` VALUES ('445', '1', 'admin', '/admin123.php/txrecord/pass?id=4&user_id=1&ids=4', '', '{\"id\":\"4\",\"user_id\":\"1\",\"ids\":\"4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558422000');
INSERT INTO `fa_admin_log` VALUES ('446', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558422847');
INSERT INTO `fa_admin_log` VALUES ('447', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558422853');
INSERT INTO `fa_admin_log` VALUES ('448', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558422935');
INSERT INTO `fa_admin_log` VALUES ('449', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&tx_cost=10.00&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558422946');
INSERT INTO `fa_admin_log` VALUES ('450', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&tx_cost=10.00&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423009');
INSERT INTO `fa_admin_log` VALUES ('451', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&tx_cost=10.00&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423039');
INSERT INTO `fa_admin_log` VALUES ('452', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423099');
INSERT INTO `fa_admin_log` VALUES ('453', '1', 'admin', '/admin123.php/txrecord/refuse?id=4&user_id=1&tx_cost=10.00&ids=4', '', '{\"id\":\"4\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423364');
INSERT INTO `fa_admin_log` VALUES ('454', '1', 'admin', '/admin123.php/txrecord/refuse?id=3&user_id=3&tx_cost=10.00&ids=3', '', '{\"id\":\"3\",\"user_id\":\"3\",\"tx_cost\":\"10.00\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423454');
INSERT INTO `fa_admin_log` VALUES ('455', '1', 'admin', '/admin123.php/txrecord/pass?id=2&user_id=1&tx_cost=10.00&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423463');
INSERT INTO `fa_admin_log` VALUES ('456', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423532');
INSERT INTO `fa_admin_log` VALUES ('457', '1', 'admin', '/admin123.php/user/multi/ids/3', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"3\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423533');
INSERT INTO `fa_admin_log` VALUES ('458', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423691');
INSERT INTO `fa_admin_log` VALUES ('459', '1', 'admin', '/admin123.php/txrecord/refuse?id=2&user_id=1&tx_cost=10.00&ids=2', '', '{\"id\":\"2\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423779');
INSERT INTO `fa_admin_log` VALUES ('460', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423836');
INSERT INTO `fa_admin_log` VALUES ('461', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423924');
INSERT INTO `fa_admin_log` VALUES ('462', '1', 'admin', '/admin123.php/txrecord/refuse?id=4&user_id=1&tx_cost=10.00&ids=4', '', '{\"id\":\"4\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558423987');
INSERT INTO `fa_admin_log` VALUES ('463', '1', 'admin', '/admin123.php/txrecord/refuse?id=4&user_id=1&tx_cost=10.00&ids=4', '', '{\"id\":\"4\",\"user_id\":\"1\",\"tx_cost\":\"10.00\",\"ids\":\"4\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424221');
INSERT INTO `fa_admin_log` VALUES ('464', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424304');
INSERT INTO `fa_admin_log` VALUES ('465', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424354');
INSERT INTO `fa_admin_log` VALUES ('466', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424411');
INSERT INTO `fa_admin_log` VALUES ('467', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424609');
INSERT INTO `fa_admin_log` VALUES ('468', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424624');
INSERT INTO `fa_admin_log` VALUES ('469', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424640');
INSERT INTO `fa_admin_log` VALUES ('470', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558424849');
INSERT INTO `fa_admin_log` VALUES ('471', '1', 'admin', '/admin123.php/txrecord/refuse?id=1&user_id=2&tx_cost=10.00&ids=1', '', '{\"id\":\"1\",\"user_id\":\"2\",\"tx_cost\":\"10.00\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425001');
INSERT INTO `fa_admin_log` VALUES ('472', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425148');
INSERT INTO `fa_admin_log` VALUES ('473', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_agent\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425153');
INSERT INTO `fa_admin_log` VALUES ('474', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425170');
INSERT INTO `fa_admin_log` VALUES ('475', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425170');
INSERT INTO `fa_admin_log` VALUES ('476', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425170');
INSERT INTO `fa_admin_log` VALUES ('477', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425170');
INSERT INTO `fa_admin_log` VALUES ('478', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425172');
INSERT INTO `fa_admin_log` VALUES ('479', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425172');
INSERT INTO `fa_admin_log` VALUES ('480', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425541');
INSERT INTO `fa_admin_log` VALUES ('481', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"name\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558425542');
INSERT INTO `fa_admin_log` VALUES ('482', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427105');
INSERT INTO `fa_admin_log` VALUES ('483', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427141');
INSERT INTO `fa_admin_log` VALUES ('484', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\<KEY>,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427157');
INSERT INTO `fa_admin_log` VALUES ('485', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427163');
INSERT INTO `fa_admin_log` VALUES ('486', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427169');
INSERT INTO `fa_admin_log` VALUES ('487', '1', 'admin', '/admin123.php/job/edit/ids/2?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"interview_images\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dormitory_images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"canteen_images\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"200.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u5de5\\u4f5c\\u7ecf\\u9a8c2\\u5e74\\/\\u5b66\\u5386\\u4e0d\\u9650\\/\\u4e3a\\u4eba\\u4e50\\u89c2\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"introduce\":\"\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u6210\\u534e\\u533a\\u53cc\\u6865\\u5b50\\u8857\\u9053\\u65b0\\u534e\\u793e\\u533a\\u65b0\\u534e\\u793e\\u533a\\u5317\\u533a\",\"location\":\"30.657395,104.10762\",\"state\":\"1\"},\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427174');
INSERT INTO `fa_admin_log` VALUES ('488', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\<KEY>,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427176');
INSERT INTO `fa_admin_log` VALUES ('489', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427185');
INSERT INTO `fa_admin_log` VALUES ('490', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u91d1\\u725b\\u533a\\u897f\\u5b89\\u8def\\u8857\\u9053\\u629a\\u7434\\u897f\\u5357\\u8def12-\\u96441\\u53f7\\u629a\\u7434\\u897f\\u5357\\u8def14\\u53f7\\u9662\",\"location\":\"30.676885,104.036896\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558427190');
INSERT INTO `fa_admin_log` VALUES ('491', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"121\",\"name\":\"general\\/config\\/appset\",\"title\":\"\\u5c0f\\u7a0b\\u5e8f\\u914d\\u7f6e\",\"icon\":\"fa fa-wrench\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558428038');
INSERT INTO `fa_admin_log` VALUES ('492', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558428038');
INSERT INTO `fa_admin_log` VALUES ('493', '1', 'admin', '/admin123.php/general/config/appset?addtabs=1', '系统设置 小程序配置', '{\"addtabs\":\"1\",\"row\":{\"appid\":\"asd\",\"appsecret\":\"asda\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558428135');
INSERT INTO `fa_admin_log` VALUES ('494', '1', 'admin', '/admin123.php/general/config/appset?addtabs=1', '系统设置 小程序配置', '{\"addtabs\":\"1\",\"row\":{\"appid\":\"asd\",\"appsecret\":\"asda\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558428138');
INSERT INTO `fa_admin_log` VALUES ('495', '1', 'admin', '/admin123.php/general/config/appset?addtabs=1', '系统设置 小程序配置', '{\"addtabs\":\"1\",\"row\":{\"appid\":\"wxappidasd\",\"appsecret\":\"wxappsecretasd\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558430331');
INSERT INTO `fa_admin_log` VALUES ('496', '1', 'admin', '/admin123.php/general/config/appset?addtabs=1', '系统设置 小程序配置', '{\"addtabs\":\"1\",\"row\":{\"appid\":\"wxappidasdasdsa\",\"appsecret\":\"wxappsecretasdasdas\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558430489');
INSERT INTO `fa_admin_log` VALUES ('497', '1', 'admin', '/admin123.php/general/config/appset?addtabs=1', '系统设置 小程序配置', '{\"addtabs\":\"1\",\"row\":{\"appid\":\"wxappidasdasdasd\",\"appsecret\":\"wxappsecretasdasdasdasdas\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558430504');
INSERT INTO `fa_admin_log` VALUES ('498', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"0\",\"name\":\"general\\/config\\/wxpayset\",\"title\":\"\\u652f\\u4ed8\\u914d\\u7f6e\",\"icon\":\"fa fa-cc-paypal\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431449');
INSERT INTO `fa_admin_log` VALUES ('499', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431449');
INSERT INTO `fa_admin_log` VALUES ('500', '1', 'admin', '/admin123.php/auth/rule/edit/ids/161?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"121\",\"name\":\"general\\/config\\/wxpayset\",\"title\":\"\\u652f\\u4ed8\\u914d\\u7f6e\",\"icon\":\"fa fa-cc-paypal\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"161\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431467');
INSERT INTO `fa_admin_log` VALUES ('501', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431468');
INSERT INTO `fa_admin_log` VALUES ('502', '1', 'admin', '/admin123.php/general/config/wxpayset?addtabs=1', '系统设置 支付配置', '{\"addtabs\":\"1\",\"row\":{\"mch_id\":\"1524685213\",\"apisecret\":\"12345678123456781234567812345678\",\"apiclient_cert\":\"<KEY>\",\"apiclient_key\":\"<KEY>}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431635');
INSERT INTO `fa_admin_log` VALUES ('503', '1', 'admin', '/admin123.php/general/config/wxpayset?addtabs=1', '系统设置 支付配置', '{\"addtabs\":\"1\",\"row\":{\"mch_id\":\"1524685213\",\"apisecret\":\"1234567812345678123456781234567812\",\"apiclient_cert\":\"asdsalkdjasoliaudfgoiahadjkfhadkjfahdfjkadhfkjadfhadkjfhadjfhadkjfahdkfjahfkjadhfkadjfhakdfjhadkfahdfkjadhfkjadhfkadjhfakdjfhadkfjahdfjadfkasdsa\",\"apiclient_key\":\"<KEY>}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431640');
INSERT INTO `fa_admin_log` VALUES ('504', '1', 'admin', '/admin123.php/general/config/wxpayset?addtabs=1', '系统设置 支付配置', '{\"addtabs\":\"1\",\"row\":{\"mch_id\":\"1524685213\",\"apisecret\":\"12345678123456781234567812345678\",\"apiclient_cert\":\"<KEY>\",\"apiclient_key\":\"<KEY>}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558431648');
INSERT INTO `fa_admin_log` VALUES ('505', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558434804');
INSERT INTO `fa_admin_log` VALUES ('506', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558434805');
INSERT INTO `fa_admin_log` VALUES ('507', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558434806');
INSERT INTO `fa_admin_log` VALUES ('508', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558434807');
INSERT INTO `fa_admin_log` VALUES ('509', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558434807');
INSERT INTO `fa_admin_log` VALUES ('510', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php', '登录', '{\"url\":\"\\/admin123.php\",\"__token__\":\"0c896ef19cb54c7a269397ca9b99e0e0\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558486714');
INSERT INTO `fa_admin_log` VALUES ('511', '1', 'admin', '/admin123.php/user/delagent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487294');
INSERT INTO `fa_admin_log` VALUES ('512', '1', 'admin', '/admin123.php/user/agent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487296');
INSERT INTO `fa_admin_log` VALUES ('513', '1', 'admin', '/admin123.php/user/delagent?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487297');
INSERT INTO `fa_admin_log` VALUES ('514', '1', 'admin', '/admin123.php/user/agent?id=2&ids=2', '', '{\"id\":\"2\",\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487298');
INSERT INTO `fa_admin_log` VALUES ('515', '1', 'admin', '/admin123.php/user/delagent?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487298');
INSERT INTO `fa_admin_log` VALUES ('516', '1', 'admin', '/admin123.php/user/agent?id=1&ids=1', '', '{\"id\":\"1\",\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487299');
INSERT INTO `fa_admin_log` VALUES ('517', '1', 'admin', '/admin123.php/auth/rule/add?dialog=1', '权限管理 菜单规则 添加', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"153\",\"name\":\"general\\/config\\/dashboard\",\"title\":\"\\u6570\\u636e\\u7edf\\u8ba1\",\"icon\":\"fa fa-dashboard\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487636');
INSERT INTO `fa_admin_log` VALUES ('518', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487636');
INSERT INTO `fa_admin_log` VALUES ('519', '1', 'admin', '/admin123.php/auth/rule/edit/ids/162?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"153\",\"name\":\"txrecord\\/dashboard\",\"title\":\"\\u6570\\u636e\\u7edf\\u8ba1\",\"icon\":\"fa fa-dashboard\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"162\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487795');
INSERT INTO `fa_admin_log` VALUES ('520', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558487795');
INSERT INTO `fa_admin_log` VALUES ('521', '1', 'admin', '/admin123.php/auth/rule/edit/ids/162?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"153\",\"name\":\"txdashboard\\/index\",\"title\":\"\\u6570\\u636e\\u7edf\\u8ba1\",\"icon\":\"fa fa-dashboard\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"162\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558488730');
INSERT INTO `fa_admin_log` VALUES ('522', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558488731');
INSERT INTO `fa_admin_log` VALUES ('523', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php', '登录', '{\"url\":\"\\/admin123.php\",\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0', '1558488860');
INSERT INTO `fa_admin_log` VALUES ('524', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489335');
INSERT INTO `fa_admin_log` VALUES ('525', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_agent\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489363');
INSERT INTO `fa_admin_log` VALUES ('526', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489370');
INSERT INTO `fa_admin_log` VALUES ('527', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489370');
INSERT INTO `fa_admin_log` VALUES ('528', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489371');
INSERT INTO `fa_admin_log` VALUES ('529', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489371');
INSERT INTO `fa_admin_log` VALUES ('530', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489373');
INSERT INTO `fa_admin_log` VALUES ('531', '1', 'admin', '/admin123.php/command/get_field_list', '', '{\"table\":\"fa_user\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489373');
INSERT INTO `fa_admin_log` VALUES ('532', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_agent\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"createtime\"],\"relation\":{\"2\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\",\"openid\",\"wechat\",\"tel\",\"name\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489466');
INSERT INTO `fa_admin_log` VALUES ('533', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"table\":\"fa_agent\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"createtime\"],\"relation\":{\"2\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\",\"openid\",\"wechat\",\"tel\",\"name\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489467');
INSERT INTO `fa_admin_log` VALUES ('534', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489468');
INSERT INTO `fa_admin_log` VALUES ('535', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489470');
INSERT INTO `fa_admin_log` VALUES ('536', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489473');
INSERT INTO `fa_admin_log` VALUES ('537', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"3\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489475');
INSERT INTO `fa_admin_log` VALUES ('538', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489477');
INSERT INTO `fa_admin_log` VALUES ('539', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489481');
INSERT INTO `fa_admin_log` VALUES ('540', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"1\",\"table\":\"fa_agent\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"createtime\"],\"relation\":{\"2\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\",\"openid\",\"wechat\",\"tel\",\"name\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489500');
INSERT INTO `fa_admin_log` VALUES ('541', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"crud\",\"isrelation\":\"1\",\"local\":\"0\",\"delete\":\"0\",\"force\":\"1\",\"table\":\"fa_agent\",\"controller\":\"\",\"model\":\"\",\"fields\":[\"id\",\"createtime\"],\"relation\":{\"2\":{\"relation\":\"fa_user\",\"relationmode\":\"belongsto\",\"relationforeignkey\":\"user_id\",\"relationprimarykey\":\"id\",\"relationfields\":[\"nickname\",\"avatar\",\"openid\",\"wechat\",\"tel\",\"name\"]}},\"setcheckboxsuffix\":\"\",\"enumradiosuffix\":\"\",\"imagefield\":\"\",\"filefield\":\"\",\"intdatesuffix\":\"\",\"switchsuffix\":\"\",\"citysuffix\":\"\",\"selectpagesuffix\":\"\",\"selectpagessuffix\":\"\",\"ignorefields\":\"\",\"sortfield\":\"\",\"editorsuffix\":\"\",\"headingfilterfield\":\"\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489501');
INSERT INTO `fa_admin_log` VALUES ('542', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489502');
INSERT INTO `fa_admin_log` VALUES ('543', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489504');
INSERT INTO `fa_admin_log` VALUES ('544', '1', 'admin', '/admin123.php/command/get_controller_list', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489505');
INSERT INTO `fa_admin_log` VALUES ('545', '1', 'admin', '/admin123.php/command/command/action/command', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Agent.php\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489506');
INSERT INTO `fa_admin_log` VALUES ('546', '1', 'admin', '/admin123.php/command/command/action/execute', '', '{\"commandtype\":\"menu\",\"allcontroller\":\"0\",\"delete\":\"0\",\"force\":\"0\",\"controllerfile_text\":\"\",\"controllerfile\":\"Agent.php\",\"action\":\"execute\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489507');
INSERT INTO `fa_admin_log` VALUES ('547', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489508');
INSERT INTO `fa_admin_log` VALUES ('548', '1', 'admin', '/admin123.php/auth/rule/edit/ids/163?dialog=1', '权限管理 菜单规则 编辑', '{\"dialog\":\"1\",\"row\":{\"ismenu\":\"1\",\"pid\":\"107\",\"name\":\"agent\",\"title\":\"\\u4ee3\\u7406\\u7ba1\\u7406\",\"icon\":\"fa fa-circle-o\",\"weigh\":\"0\",\"condition\":\"\",\"remark\":\"\",\"status\":\"normal\"},\"ids\":\"163\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489521');
INSERT INTO `fa_admin_log` VALUES ('549', '1', 'admin', '/admin123.php/index/index', '', '{\"action\":\"refreshmenu\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489521');
INSERT INTO `fa_admin_log` VALUES ('550', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489783');
INSERT INTO `fa_admin_log` VALUES ('551', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489784');
INSERT INTO `fa_admin_log` VALUES ('552', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489786');
INSERT INTO `fa_admin_log` VALUES ('553', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489788');
INSERT INTO `fa_admin_log` VALUES ('554', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489823');
INSERT INTO `fa_admin_log` VALUES ('555', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489824');
INSERT INTO `fa_admin_log` VALUES ('556', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489914');
INSERT INTO `fa_admin_log` VALUES ('557', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489915');
INSERT INTO `fa_admin_log` VALUES ('558', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"pid\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489917');
INSERT INTO `fa_admin_log` VALUES ('559', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558489919');
INSERT INTO `fa_admin_log` VALUES ('560', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490007');
INSERT INTO `fa_admin_log` VALUES ('561', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490012');
INSERT INTO `fa_admin_log` VALUES ('562', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"pid\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490014');
INSERT INTO `fa_admin_log` VALUES ('563', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490015');
INSERT INTO `fa_admin_log` VALUES ('564', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"pid\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490016');
INSERT INTO `fa_admin_log` VALUES ('565', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490017');
INSERT INTO `fa_admin_log` VALUES ('566', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"pid\":\"3\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490019');
INSERT INTO `fa_admin_log` VALUES ('567', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490020');
INSERT INTO `fa_admin_log` VALUES ('568', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"pid\":\"3\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490022');
INSERT INTO `fa_admin_log` VALUES ('569', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490023');
INSERT INTO `fa_admin_log` VALUES ('570', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490025');
INSERT INTO `fa_admin_log` VALUES ('571', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"3\",\"pid\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490026');
INSERT INTO `fa_admin_log` VALUES ('572', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490027');
INSERT INTO `fa_admin_log` VALUES ('573', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490494');
INSERT INTO `fa_admin_log` VALUES ('574', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490494');
INSERT INTO `fa_admin_log` VALUES ('575', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490495');
INSERT INTO `fa_admin_log` VALUES ('576', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490498');
INSERT INTO `fa_admin_log` VALUES ('577', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490498');
INSERT INTO `fa_admin_log` VALUES ('578', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490500');
INSERT INTO `fa_admin_log` VALUES ('579', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"3\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490502');
INSERT INTO `fa_admin_log` VALUES ('580', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490502');
INSERT INTO `fa_admin_log` VALUES ('581', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490512');
INSERT INTO `fa_admin_log` VALUES ('582', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490516');
INSERT INTO `fa_admin_log` VALUES ('583', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490520');
INSERT INTO `fa_admin_log` VALUES ('584', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490521');
INSERT INTO `fa_admin_log` VALUES ('585', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490530');
INSERT INTO `fa_admin_log` VALUES ('586', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"1\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490532');
INSERT INTO `fa_admin_log` VALUES ('587', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490542');
INSERT INTO `fa_admin_log` VALUES ('588', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490542');
INSERT INTO `fa_admin_log` VALUES ('589', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490549');
INSERT INTO `fa_admin_log` VALUES ('590', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490551');
INSERT INTO `fa_admin_log` VALUES ('591', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490552');
INSERT INTO `fa_admin_log` VALUES ('592', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490553');
INSERT INTO `fa_admin_log` VALUES ('593', '1', 'admin', '/admin123.php/user/delagent?id=3&ids=3', '', '{\"id\":\"3\",\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490714');
INSERT INTO `fa_admin_log` VALUES ('594', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490719');
INSERT INTO `fa_admin_log` VALUES ('595', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490720');
INSERT INTO `fa_admin_log` VALUES ('596', '1', 'admin', '/admin123.php/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"3\",\"pid\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490754');
INSERT INTO `fa_admin_log` VALUES ('597', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"3\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490774');
INSERT INTO `fa_admin_log` VALUES ('598', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558490775');
INSERT INTO `fa_admin_log` VALUES ('599', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491765');
INSERT INTO `fa_admin_log` VALUES ('600', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491766');
INSERT INTO `fa_admin_log` VALUES ('601', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491770');
INSERT INTO `fa_admin_log` VALUES ('602', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491770');
INSERT INTO `fa_admin_log` VALUES ('603', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491798');
INSERT INTO `fa_admin_log` VALUES ('604', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491798');
INSERT INTO `fa_admin_log` VALUES ('605', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491827');
INSERT INTO `fa_admin_log` VALUES ('606', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491828');
INSERT INTO `fa_admin_log` VALUES ('607', '1', 'admin', '/admin123.php/jobrecord/edit/ids/1?dialog=1', '职位管理 入职记录 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"job_id\":\"1\",\"state\":\"pass\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491833');
INSERT INTO `fa_admin_log` VALUES ('608', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491839');
INSERT INTO `fa_admin_log` VALUES ('609', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491839');
INSERT INTO `fa_admin_log` VALUES ('610', '1', 'admin', '/admin123.php/jobrecord/edit/ids/1?dialog=1', '职位管理 入职记录 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"job_id\":\"1\",\"state\":\"wait\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491840');
INSERT INTO `fa_admin_log` VALUES ('611', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491842');
INSERT INTO `fa_admin_log` VALUES ('612', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491842');
INSERT INTO `fa_admin_log` VALUES ('613', '1', 'admin', '/admin123.php/jobrecord/edit/ids/1?dialog=1', '职位管理 入职记录 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"job_id\":\"1\",\"state\":\"refuse\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491843');
INSERT INTO `fa_admin_log` VALUES ('614', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491845');
INSERT INTO `fa_admin_log` VALUES ('615', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491845');
INSERT INTO `fa_admin_log` VALUES ('616', '1', 'admin', '/admin123.php/jobrecord/edit/ids/1?dialog=1', '职位管理 入职记录 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"job_id\":\"1\",\"state\":\"pass\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491846');
INSERT INTO `fa_admin_log` VALUES ('617', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491849');
INSERT INTO `fa_admin_log` VALUES ('618', '1', 'admin', '/admin123.php/job/index', '职位管理 职位列表 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"1\",\"orderBy\":[[\"id\",\"ASC\"]],\"showField\":\"id\",\"keyField\":\"id\",\"keyValue\":\"1\",\"searchField\":[\"id\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491849');
INSERT INTO `fa_admin_log` VALUES ('619', '1', 'admin', '/admin123.php/jobrecord/edit/ids/1?dialog=1', '职位管理 入职记录 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"2\",\"job_id\":\"1\",\"state\":\"wait\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558491851');
INSERT INTO `fa_admin_log` VALUES ('620', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"export_2019-05-22.xls\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558492009');
INSERT INTO `fa_admin_log` VALUES ('621', '1', 'admin', '/admin123.php/jobrecord?addtabs=1', '职位管理 入职记录 查看', '{\"addtabs\":\"1\",\"file\":\"\\/uploads\\/20190522\\/24460384a8b6772eea1965bdcec5d1ad.xls\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558492009');
INSERT INTO `fa_admin_log` VALUES ('622', '1', 'admin', '/admin123.php/ajax/upload', '', '{\"name\":\"export_2019-05-22.xls\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558492058');
INSERT INTO `fa_admin_log` VALUES ('623', '1', 'admin', '/admin123.php/jobrecord?addtabs=1', '职位管理 入职记录 查看', '{\"addtabs\":\"1\",\"file\":\"\\/uploads\\/20190522\\/c9113220490dfd1f53e608567e30b9a7.xls\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558492058');
INSERT INTO `fa_admin_log` VALUES ('624', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558495709');
INSERT INTO `fa_admin_log` VALUES ('625', '1', 'admin', '/admin123.php/job/edit/ids/2?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"interview_images\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dormitory_images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"canteen_images\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"200.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u5de5\\u4f5c\\u7ecf\\u9a8c2\\u5e74\\/\\u5b66\\u5386\\u4e0d\\u9650\\/\\u4e3a\\u4eba\\u4e50\\u89c2\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"company\":\"\\u6070\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u516c\\u53f8\",\"introduce\":\"\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u6210\\u534e\\u533a\\u53cc\\u6865\\u5b50\\u8857\\u9053\\u65b0\\u534e\\u793e\\u533a\\u65b0\\u534e\\u793e\\u533a\\u5317\\u533a\",\"location\":\"30.657395,104.10762\",\"state\":\"1\"},\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558495713');
INSERT INTO `fa_admin_log` VALUES ('626', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\<KEY>,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558495715');
INSERT INTO `fa_admin_log` VALUES ('627', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"company\":\"\\u597d\\u4e0d\\u51d1\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u6709\\u9650\\u516c\\u53f8\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u91d1\\u725b\\u533a\\u897f\\u5b89\\u8def\\u8857\\u9053\\u629a\\u7434\\u897f\\u5357\\u8def12-\\u96441\\u53f7\\u629a\\u7434\\u897f\\u5357\\u8def14\\u53f7\\u9662\",\"location\":\"30.676885,104.036896\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558495729');
INSERT INTO `fa_admin_log` VALUES ('628', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558495739');
INSERT INTO `fa_admin_log` VALUES ('629', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '职位管理 福利设置 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e94\\u9669\\u4e00\\u91d1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558496773');
INSERT INTO `fa_admin_log` VALUES ('630', '1', 'admin', '/admin123.php/welfare/del/ids/1', '职位管理 福利设置 删除', '{\"action\":\"del\",\"ids\":\"1\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558496775');
INSERT INTO `fa_admin_log` VALUES ('631', '1', 'admin', '/admin123.php/welfare/add?dialog=1', '职位管理 福利设置 添加', '{\"dialog\":\"1\",\"row\":{\"name\":\"\\u4e94\\u9669\\u4e00\\u91d1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558496905');
INSERT INTO `fa_admin_log` VALUES ('632', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558497317');
INSERT INTO `fa_admin_log` VALUES ('633', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u7a0b\\u5e8f\\u5458\\u9f13\\u52b1\\u5e08\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"company\":\"\\u597d\\u4e0d\\u51d1\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u6709\\u9650\\u516c\\u53f8\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u91d1\\u725b\\u533a\\u897f\\u5b89\\u8def\\u8857\\u9053\\u629a\\u7434\\u897f\\u5357\\u8def12-\\u96441\\u53f7\\u629a\\u7434\\u897f\\u5357\\u8def14\\u53f7\\u9662\",\"location\":\"30.676885,104.036896\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558497334');
INSERT INTO `fa_admin_log` VALUES ('634', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558497371');
INSERT INTO `fa_admin_log` VALUES ('635', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"name\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"name\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558497701');
INSERT INTO `fa_admin_log` VALUES ('636', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"\\u4e00,\\u4e8c\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"\\u4e00,\\u4e8c\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505690');
INSERT INTO `fa_admin_log` VALUES ('637', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505693');
INSERT INTO `fa_admin_log` VALUES ('638', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505694');
INSERT INTO `fa_admin_log` VALUES ('639', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505694');
INSERT INTO `fa_admin_log` VALUES ('640', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505694');
INSERT INTO `fa_admin_log` VALUES ('641', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505695');
INSERT INTO `fa_admin_log` VALUES ('642', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505695');
INSERT INTO `fa_admin_log` VALUES ('643', '1', 'admin', '/admin123.php/job/edit/ids/2?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"interview_images\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dormitory_images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"canteen_images\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"200.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u5de5\\u4f5c\\u7ecf\\u9a8c2\\u5e74\\/\\u5b66\\u5386\\u4e0d\\u9650\\/\\u4e3a\\u4eba\\u4e50\\u89c2\",\"worktime\":\"9:00-18:30\",\"welfare\":\"3,6,4,5,2\",\"company\":\"\\u6070\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u516c\\u53f8\",\"introduce\":\"\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u6210\\u534e\\u533a\\u53cc\\u6865\\u5b50\\u8857\\u9053\\u65b0\\u534e\\u793e\\u533a\\u65b0\\u534e\\u793e\\u533a\\u5317\\u533a\",\"location\":\"30.657395,104.10762\",\"state\":\"1\"},\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505696');
INSERT INTO `fa_admin_log` VALUES ('644', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,6,4,5,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,6,4,5,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505698');
INSERT INTO `fa_admin_log` VALUES ('645', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505702');
INSERT INTO `fa_admin_log` VALUES ('646', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"\\u4e0d\\u5b9a\\u65f6\\u65c5\\u6e38,\\u4e94\\u9669\\u4e00\\u91d1,\\u53cc\\u4f11,\\u5e74\\u7ec8\\u5956,\\u793e\\u4fdd\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505711');
INSERT INTO `fa_admin_log` VALUES ('647', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505714');
INSERT INTO `fa_admin_log` VALUES ('648', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505715');
INSERT INTO `fa_admin_log` VALUES ('649', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505716');
INSERT INTO `fa_admin_log` VALUES ('650', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505716');
INSERT INTO `fa_admin_log` VALUES ('651', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u7a0b\\u5e8f\\u5458\\u9f13\\u52b1\\u5e08\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"3,6,4\",\"company\":\"\\u597d\\u4e0d\\u51d1\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u6709\\u9650\\u516c\\u53f8\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u91d1\\u725b\\u533a\\u897f\\u5b89\\u8def\\u8857\\u9053\\u629a\\u7434\\u897f\\u5357\\u8def12-\\u96441\\u53f7\\u629a\\u7434\\u897f\\u5357\\u8def14\\u53f7\\u9662\",\"location\":\"30.676885,104.036896\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558505718');
INSERT INTO `fa_admin_log` VALUES ('652', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507797');
INSERT INTO `fa_admin_log` VALUES ('653', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507797');
INSERT INTO `fa_admin_log` VALUES ('654', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"123\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"123\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507798');
INSERT INTO `fa_admin_log` VALUES ('655', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"12312312321\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"12312312321\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507800');
INSERT INTO `fa_admin_log` VALUES ('656', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507804');
INSERT INTO `fa_admin_log` VALUES ('657', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507805');
INSERT INTO `fa_admin_log` VALUES ('658', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507806');
INSERT INTO `fa_admin_log` VALUES ('659', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507806');
INSERT INTO `fa_admin_log` VALUES ('660', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507806');
INSERT INTO `fa_admin_log` VALUES ('661', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507808');
INSERT INTO `fa_admin_log` VALUES ('662', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507808');
INSERT INTO `fa_admin_log` VALUES ('663', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507809');
INSERT INTO `fa_admin_log` VALUES ('664', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507809');
INSERT INTO `fa_admin_log` VALUES ('665', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507809');
INSERT INTO `fa_admin_log` VALUES ('666', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507809');
INSERT INTO `fa_admin_log` VALUES ('667', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507810');
INSERT INTO `fa_admin_log` VALUES ('668', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507810');
INSERT INTO `fa_admin_log` VALUES ('669', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507811');
INSERT INTO `fa_admin_log` VALUES ('670', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507811');
INSERT INTO `fa_admin_log` VALUES ('671', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507814');
INSERT INTO `fa_admin_log` VALUES ('672', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507815');
INSERT INTO `fa_admin_log` VALUES ('673', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507815');
INSERT INTO `fa_admin_log` VALUES ('674', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507815');
INSERT INTO `fa_admin_log` VALUES ('675', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507816');
INSERT INTO `fa_admin_log` VALUES ('676', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507817');
INSERT INTO `fa_admin_log` VALUES ('677', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507817');
INSERT INTO `fa_admin_log` VALUES ('678', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507817');
INSERT INTO `fa_admin_log` VALUES ('679', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507818');
INSERT INTO `fa_admin_log` VALUES ('680', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507818');
INSERT INTO `fa_admin_log` VALUES ('681', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507819');
INSERT INTO `fa_admin_log` VALUES ('682', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507819');
INSERT INTO `fa_admin_log` VALUES ('683', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507822');
INSERT INTO `fa_admin_log` VALUES ('684', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507823');
INSERT INTO `fa_admin_log` VALUES ('685', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507823');
INSERT INTO `fa_admin_log` VALUES ('686', '1', 'admin', '/admin123.php/job/add?dialog=1', '职位管理 职位列表 添加', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"test\",\"interview_images\":\"asd\",\"dormitory_images\":\"asd\",\"canteen_images\":\"asd\",\"staff_images\":\"asd\",\"entry\":\"123123\",\"recommend\":\"123\",\"commission\":\"123\",\"salary\":\"123\",\"base_salary\":\"123\",\"pay_salary\":\"123\",\"nature\":\"123\",\"type\":\"12\",\"number\":\"123\",\"requirement\":\"123\",\"worktime\":\"123\",\"welfare\":\"6,4,5\",\"company\":\"123\",\"introduce\":\"123\",\"bonus\":\"123\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u9526\\u6c5f\\u533a\\u4e66\\u9662\\u8857\\u8857\\u9053\\u798f\\u5b57\\u8857\\u793e\\u533a(\\u7a7f\\u5df7\\u5b50)\",\"location\":\"30.656213,104.082901\",\"state\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507832');
INSERT INTO `fa_admin_log` VALUES ('687', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,6,4\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,6,4\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507851');
INSERT INTO `fa_admin_log` VALUES ('688', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,4,5\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,4,5\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507853');
INSERT INTO `fa_admin_log` VALUES ('689', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,4,5\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,4,5\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507906');
INSERT INTO `fa_admin_log` VALUES ('690', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,4,5\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,4,5\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558507970');
INSERT INTO `fa_admin_log` VALUES ('691', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,4,5\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,4,5\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508174');
INSERT INTO `fa_admin_log` VALUES ('692', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508177');
INSERT INTO `fa_admin_log` VALUES ('693', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508178');
INSERT INTO `fa_admin_log` VALUES ('694', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508178');
INSERT INTO `fa_admin_log` VALUES ('695', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508178');
INSERT INTO `fa_admin_log` VALUES ('696', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508178');
INSERT INTO `fa_admin_log` VALUES ('697', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508179');
INSERT INTO `fa_admin_log` VALUES ('698', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508179');
INSERT INTO `fa_admin_log` VALUES ('699', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508180');
INSERT INTO `fa_admin_log` VALUES ('700', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508181');
INSERT INTO `fa_admin_log` VALUES ('701', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508225');
INSERT INTO `fa_admin_log` VALUES ('702', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508250');
INSERT INTO `fa_admin_log` VALUES ('703', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508252');
INSERT INTO `fa_admin_log` VALUES ('704', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508252');
INSERT INTO `fa_admin_log` VALUES ('705', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508252');
INSERT INTO `fa_admin_log` VALUES ('706', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508252');
INSERT INTO `fa_admin_log` VALUES ('707', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508252');
INSERT INTO `fa_admin_log` VALUES ('708', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508255');
INSERT INTO `fa_admin_log` VALUES ('709', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508320');
INSERT INTO `fa_admin_log` VALUES ('710', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508322');
INSERT INTO `fa_admin_log` VALUES ('711', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508323');
INSERT INTO `fa_admin_log` VALUES ('712', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508323');
INSERT INTO `fa_admin_log` VALUES ('713', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508323');
INSERT INTO `fa_admin_log` VALUES ('714', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508323');
INSERT INTO `fa_admin_log` VALUES ('715', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508324');
INSERT INTO `fa_admin_log` VALUES ('716', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508325');
INSERT INTO `fa_admin_log` VALUES ('717', '1', 'admin', '/admin123.php/job/edit/ids/3?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"test\",\"interview_images\":\"asd\",\"dormitory_images\":\"asd\",\"canteen_images\":\"asd\",\"staff_images\":\"asd\",\"entry\":\"123123.00\",\"recommend\":\"123.00\",\"commission\":\"123.00\",\"salary\":\"123\",\"base_salary\":\"123\",\"pay_salary\":\"123\",\"nature\":\"123\",\"type\":\"12\",\"number\":\"123\",\"requirement\":\"123\",\"worktime\":\"123\",\"welfare\":\"6,2\",\"company\":\"123\",\"introduce\":\"123\",\"bonus\":\"123\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u9526\\u6c5f\\u533a\\u4e66\\u9662\\u8857\\u8857\\u9053\\u798f\\u5b57\\u8857\\u793e\\u533a(\\u7a7f\\u5df7\\u5b50)\",\"location\":\"30.656213,104.082901\",\"state\":\"1\"},\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508326');
INSERT INTO `fa_admin_log` VALUES ('718', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508421');
INSERT INTO `fa_admin_log` VALUES ('719', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508733');
INSERT INTO `fa_admin_log` VALUES ('720', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558508735');
INSERT INTO `fa_admin_log` VALUES ('721', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,6,4,5,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,6,4,5,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558510534');
INSERT INTO `fa_admin_log` VALUES ('722', '1', 'admin', '/admin123.php/job/edit/ids/2?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"interview_images\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dormitory_images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"canteen_images\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"200.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"15\",\"requirement\":\"\\u5de5\\u4f5c\\u7ecf\\u9a8c2\\u5e74\\/\\u5b66\\u5386\\u4e0d\\u9650\\/\\u4e3a\\u4eba\\u4e50\\u89c2\",\"worktime\":\"9:00-18:30\",\"welfare\":\"3,6,4,5,2\",\"company\":\"\\u6070\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u516c\\u53f8\",\"introduce\":\"\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\\u8fd9\\u662f\\u516c\\u53f8\\u4ecb\\u7ecd\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u6210\\u534e\\u533a\\u53cc\\u6865\\u5b50\\u8857\\u9053\\u65b0\\u534e\\u793e\\u533a\\u65b0\\u534e\\u793e\\u533a\\u5317\\u533a\",\"location\":\"30.657395,104.10762\",\"state\":\"1\"},\"ids\":\"2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558510570');
INSERT INTO `fa_admin_log` VALUES ('723', '1', 'admin', '/admin123.php/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3,6,4\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"3,6,4\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558510572');
INSERT INTO `fa_admin_log` VALUES ('724', '1', 'admin', '/admin123.php/job/edit/ids/1?dialog=1', '职位管理 职位列表 编辑', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"interview_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"dormitory_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"canteen_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"staff_images\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg,\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"entry\":\"200.00\",\"recommend\":\"100.00\",\"commission\":\"500.00\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u7a0b\\u5e8f\\u5458\\u9f13\\u52b1\\u5e08\",\"number\":\"15\",\"requirement\":\"\\u7537\\u5973\\u4e0d\\u9650\\/16-37\\u5c81\\/\\u5b66\\u5386\\u4e0d\\u9650\",\"worktime\":\"9:00-18:30\",\"welfare\":\"3,6,4\",\"company\":\"\\u597d\\u4e0d\\u51d1\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u6709\\u9650\\u516c\\u53f8\",\"introduce\":\"\\u534e\\u4e3a\\u662f\\u5168\\u7403\\u9886\\u5148\\u7684ICT\\uff08\\u4fe1\\u606f\\u4e0e\\u901a\\u4fe1\\uff09\\u57fa\\u7840\\u8bbe\\u65bd\\u548c\\u667a\\u80fd\\u7ec8\\u7aef\\u63d0\\u4f9b\\u5546\\uff0c\\u81f4\\u529b\\u4e8e\\u628a\\u6570\\u5b57\\u4e16\\u754c\\u5e26\\u5165\\u6bcf\\u4e2a\\u4eba\\u3001\\u6bcf\\u4e2a\\u5bb6\\u5ead\\u3001\\u6bcf\\u4e2a\\u7ec4\\u7ec7\\uff0c\\u6784\\u5efa\\u4e07\\u7269\\u4e92\\u8054\\u7684\\u667a\\u80fd\\u4e16\\u754c\\u3002\\u6211\\u4eec\\u5728\\u901a\\u4fe1\\u7f51\\u7edc\\u3001IT\\u3001\\u667a\\u80fd\\u7ec8\\u7aef\\u548c\\u4e91\\u670d\\u52a1\\u7b49\\u9886\\u57df\\u4e3a\\u5ba2\\u6237\\u63d0\\u4f9b\\u6709\\u7ade\\u4e89\\u529b\\u3001\\u5b89\\u5168\\u53ef\\u4fe1\\u8d56\\u7684\\u4ea7\\u54c1\\u3001\\u89e3\\u51b3\\u65b9\\u6848\\u4e0e\\u670d\\u52a1\\uff0c\\u4e0e\\u751f\\u6001\\u4f19\\u4f34\\u5f00\\u653e\\u5408\\u4f5c\\uff0c\\u6301\\u7eed\\u4e3a\\u5ba2\\u6237\\u521b\\u9020\\u4ef7\\u503c\\uff0c\\u91ca\\u653e\\u4e2a\\u4eba\\u6f5c\\u80fd\\uff0c\\u4e30\\u5bcc\\u5bb6\\u5ead\\u751f\\u6d3b\\uff0c\\u6fc0\\u53d1\\u7ec4\\u7ec7\\u521b\\u65b0\\u3002\\u534e\\u4e3a\\u575a\\u6301\\u56f4\\u7ed5\\u5ba2\\u6237\\u9700\\u6c42\\u6301\\u7eed\\u521b\\u65b0\\uff0c\\u52a0\\u5927\\u57fa\\u7840\\u7814\\u7a76\\u6295\\u5165\\uff0c\\u539a\\u79ef\\u8584\\u53d1\\uff0c\\u63a8\\u52a8\\u4e16\\u754c\\u8fdb\\u6b65\\u3002\\u534e\\u4e3a\\u6210\\u7acb\\u4e8e1987\\u5e74\\uff0c\\u662f\\u4e00\\u5bb6\\u7531\\u5458\\u5de5\\u6301\\u6709\\u5168\\u90e8\\u80a1\\u4efd\\u7684\\u6c11\\u8425\\u4f01\\u4e1a\\uff0c\\u76ee\\u524d\\u670918\\u4e07\\u5458\\u5de5\\uff0c\\u4e1a\\u52a1\\u904d\\u53ca170\\u591a\\u4e2a\\u56fd\\u5bb6\\u548c\\u5730\\u533a\\u3002\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u91d1\\u725b\\u533a\\u897f\\u5b89\\u8def\\u8857\\u9053\\u629a\\u7434\\u897f\\u5357\\u8def12-\\u96441\\u53f7\\u629a\\u7434\\u897f\\u5357\\u8def14\\u53f7\\u9662\",\"location\":\"30.676885,104.036896\",\"state\":\"1\"},\"ids\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558510573');
INSERT INTO `fa_admin_log` VALUES ('725', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"2\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"2\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558514624');
INSERT INTO `fa_admin_log` VALUES ('726', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"3\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"3\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558514624');
INSERT INTO `fa_admin_log` VALUES ('727', '1', 'admin', '/admin123.php/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36', '1558514626');
INSERT INTO `fa_admin_log` VALUES ('728', '1', 'admin', '/admin/index/login.html', '登录', '{\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558573340');
INSERT INTO `fa_admin_log` VALUES ('729', '1', 'admin', '/admin/user/del/ids/17,16,15,14,13,12,11,10,9,8', '用户管理 用户管理 删除', '{\"action\":\"del\",\"ids\":\"17,16,15,14,13,12,11,10,9,8\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558576919');
INSERT INTO `fa_admin_log` VALUES ('730', '1', 'admin', '/admin/user/del/ids/7,6,5,4,3,2,1', '用户管理 用户管理 删除', '{\"action\":\"del\",\"ids\":\"7,6,5,4,3,2,1\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558576923');
INSERT INTO `fa_admin_log` VALUES ('731', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577123');
INSERT INTO `fa_admin_log` VALUES ('732', '1', 'admin', '/admin/agent/del/ids/11,10,9,8,7,6', '用户管理 代理管理 删除', '{\"action\":\"del\",\"ids\":\"11,10,9,8,7,6\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577129');
INSERT INTO `fa_admin_log` VALUES ('733', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577133');
INSERT INTO `fa_admin_log` VALUES ('734', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577134');
INSERT INTO `fa_admin_log` VALUES ('735', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u7528\\u62371\",\"avatar\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"openid\":\"user1\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577199');
INSERT INTO `fa_admin_log` VALUES ('736', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user2\",\"avatar\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"openid\":\"user2\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577211');
INSERT INTO `fa_admin_log` VALUES ('737', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user11\",\"avatar\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"openid\":\"user11\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577221');
INSERT INTO `fa_admin_log` VALUES ('738', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user12\",\"avatar\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"openid\":\"user12\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577233');
INSERT INTO `fa_admin_log` VALUES ('739', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user21\",\"avatar\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"openid\":\"user21\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577244');
INSERT INTO `fa_admin_log` VALUES ('740', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user22\",\"avatar\":\"\\/uploads\\/20190520\\/d2d84e70ac25333d959c9759261f4b21.jpg\",\"openid\":\"user22\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577254');
INSERT INTO `fa_admin_log` VALUES ('741', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user111\",\"avatar\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"openid\":\"user111\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577268');
INSERT INTO `fa_admin_log` VALUES ('742', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user112\",\"avatar\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"openid\":\"user112\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577278');
INSERT INTO `fa_admin_log` VALUES ('743', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user113\",\"avatar\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"openid\":\"user113\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577299');
INSERT INTO `fa_admin_log` VALUES ('744', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user121\",\"avatar\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"openid\":\"user121\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577312');
INSERT INTO `fa_admin_log` VALUES ('745', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user1111\",\"avatar\":\"\\/uploads\\/20190520\\/cc4dcf888ab3502ee64f3dc09669f02a.jpg\",\"openid\":\"user1111\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577330');
INSERT INTO `fa_admin_log` VALUES ('746', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user1112\",\"avatar\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"openid\":\"user1112\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577339');
INSERT INTO `fa_admin_log` VALUES ('747', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"user1121\",\"avatar\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"openid\":\"user1121\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577359');
INSERT INTO `fa_admin_log` VALUES ('748', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577363');
INSERT INTO `fa_admin_log` VALUES ('749', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577365');
INSERT INTO `fa_admin_log` VALUES ('750', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577366');
INSERT INTO `fa_admin_log` VALUES ('751', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577368');
INSERT INTO `fa_admin_log` VALUES ('752', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577369');
INSERT INTO `fa_admin_log` VALUES ('753', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577435');
INSERT INTO `fa_admin_log` VALUES ('754', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577436');
INSERT INTO `fa_admin_log` VALUES ('755', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577439');
INSERT INTO `fa_admin_log` VALUES ('756', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577440');
INSERT INTO `fa_admin_log` VALUES ('757', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577443');
INSERT INTO `fa_admin_log` VALUES ('758', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"19\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577445');
INSERT INTO `fa_admin_log` VALUES ('759', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577446');
INSERT INTO `fa_admin_log` VALUES ('760', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577449');
INSERT INTO `fa_admin_log` VALUES ('761', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577451');
INSERT INTO `fa_admin_log` VALUES ('762', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577453');
INSERT INTO `fa_admin_log` VALUES ('763', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577456');
INSERT INTO `fa_admin_log` VALUES ('764', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"24\",\"pid\":\"20\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577460');
INSERT INTO `fa_admin_log` VALUES ('765', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577462');
INSERT INTO `fa_admin_log` VALUES ('766', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577465');
INSERT INTO `fa_admin_log` VALUES ('767', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"28\",\"pid\":\"24\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577467');
INSERT INTO `fa_admin_log` VALUES ('768', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577468');
INSERT INTO `fa_admin_log` VALUES ('769', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577473');
INSERT INTO `fa_admin_log` VALUES ('770', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"29\",\"pid\":\"24\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577474');
INSERT INTO `fa_admin_log` VALUES ('771', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577477');
INSERT INTO `fa_admin_log` VALUES ('772', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577479');
INSERT INTO `fa_admin_log` VALUES ('773', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"25\",\"pid\":\"20\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577481');
INSERT INTO `fa_admin_log` VALUES ('774', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577483');
INSERT INTO `fa_admin_log` VALUES ('775', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577487');
INSERT INTO `fa_admin_log` VALUES ('776', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"30\",\"pid\":\"25\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577490');
INSERT INTO `fa_admin_log` VALUES ('777', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577495');
INSERT INTO `fa_admin_log` VALUES ('778', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577499');
INSERT INTO `fa_admin_log` VALUES ('779', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"26\",\"pid\":\"20\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577501');
INSERT INTO `fa_admin_log` VALUES ('780', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577502');
INSERT INTO `fa_admin_log` VALUES ('781', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577506');
INSERT INTO `fa_admin_log` VALUES ('782', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"21\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577508');
INSERT INTO `fa_admin_log` VALUES ('783', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577510');
INSERT INTO `fa_admin_log` VALUES ('784', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577522');
INSERT INTO `fa_admin_log` VALUES ('785', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577523');
INSERT INTO `fa_admin_log` VALUES ('786', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577528');
INSERT INTO `fa_admin_log` VALUES ('787', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"27\",\"pid\":\"21\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577532');
INSERT INTO `fa_admin_log` VALUES ('788', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577534');
INSERT INTO `fa_admin_log` VALUES ('789', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577537');
INSERT INTO `fa_admin_log` VALUES ('790', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577539');
INSERT INTO `fa_admin_log` VALUES ('791', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577541');
INSERT INTO `fa_admin_log` VALUES ('792', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"22\",\"pid\":\"19\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577542');
INSERT INTO `fa_admin_log` VALUES ('793', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577544');
INSERT INTO `fa_admin_log` VALUES ('794', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577545');
INSERT INTO `fa_admin_log` VALUES ('795', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577546');
INSERT INTO `fa_admin_log` VALUES ('796', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577548');
INSERT INTO `fa_admin_log` VALUES ('797', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"23\",\"pid\":\"19\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558577550');
INSERT INTO `fa_admin_log` VALUES ('798', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"26\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"26\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578594');
INSERT INTO `fa_admin_log` VALUES ('799', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"20\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"20\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578595');
INSERT INTO `fa_admin_log` VALUES ('800', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578598');
INSERT INTO `fa_admin_log` VALUES ('801', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578600');
INSERT INTO `fa_admin_log` VALUES ('802', '1', 'admin', '/admin/agent/edit/ids/20?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"26\",\"pid\":\"20\"},\"ids\":\"20\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578601');
INSERT INTO `fa_admin_log` VALUES ('803', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"26\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"26\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578616');
INSERT INTO `fa_admin_log` VALUES ('804', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"20\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"20\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578616');
INSERT INTO `fa_admin_log` VALUES ('805', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578624');
INSERT INTO `fa_admin_log` VALUES ('806', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"26\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"26\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578630');
INSERT INTO `fa_admin_log` VALUES ('807', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"20\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"20\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578631');
INSERT INTO `fa_admin_log` VALUES ('808', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"26\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"26\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578653');
INSERT INTO `fa_admin_log` VALUES ('809', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"20\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"20\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578653');
INSERT INTO `fa_admin_log` VALUES ('810', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"22\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"22\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578656');
INSERT INTO `fa_admin_log` VALUES ('811', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"19\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"19\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578656');
INSERT INTO `fa_admin_log` VALUES ('812', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"26\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"26\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578766');
INSERT INTO `fa_admin_log` VALUES ('813', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578766');
INSERT INTO `fa_admin_log` VALUES ('814', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578767');
INSERT INTO `fa_admin_log` VALUES ('815', '1', 'admin', '/admin/agent/edit/ids/20?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"26\",\"pid\":\"20\"},\"ids\":\"20\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578769');
INSERT INTO `fa_admin_log` VALUES ('816', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578822');
INSERT INTO `fa_admin_log` VALUES ('817', '1', 'admin', '/admin/agent/edit/ids/20?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"26\",\"pid\":\"20\"},\"ids\":\"20\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578823');
INSERT INTO `fa_admin_log` VALUES ('818', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558578957');
INSERT INTO `fa_admin_log` VALUES ('819', '1', 'admin', '/admin/agent/del/ids/14,13,12', '用户管理 代理管理 删除', '{\"action\":\"del\",\"ids\":\"14,13,12\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579106');
INSERT INTO `fa_admin_log` VALUES ('820', '1', 'admin', '/admin/agent/del/ids/24,23,22,21,20,19,18,17,16,15', '用户管理 代理管理 删除', '{\"action\":\"del\",\"ids\":\"24,23,22,21,20,19,18,17,16,15\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579111');
INSERT INTO `fa_admin_log` VALUES ('821', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579123');
INSERT INTO `fa_admin_log` VALUES ('822', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579125');
INSERT INTO `fa_admin_log` VALUES ('823', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579126');
INSERT INTO `fa_admin_log` VALUES ('824', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579128');
INSERT INTO `fa_admin_log` VALUES ('825', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579129');
INSERT INTO `fa_admin_log` VALUES ('826', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579130');
INSERT INTO `fa_admin_log` VALUES ('827', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579131');
INSERT INTO `fa_admin_log` VALUES ('828', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579361');
INSERT INTO `fa_admin_log` VALUES ('829', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579410');
INSERT INTO `fa_admin_log` VALUES ('830', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579412');
INSERT INTO `fa_admin_log` VALUES ('831', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579624');
INSERT INTO `fa_admin_log` VALUES ('832', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '1172.16.17.32', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579631');
INSERT INTO `fa_admin_log` VALUES ('833', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579660');
INSERT INTO `fa_admin_log` VALUES ('834', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579664');
INSERT INTO `fa_admin_log` VALUES ('835', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579666');
INSERT INTO `fa_admin_log` VALUES ('836', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579668');
INSERT INTO `fa_admin_log` VALUES ('837', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579672');
INSERT INTO `fa_admin_log` VALUES ('838', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579676');
INSERT INTO `fa_admin_log` VALUES ('839', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579677');
INSERT INTO `fa_admin_log` VALUES ('840', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"user.nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"user.nickname\",\"keyField\":\"id\",\"searchField\":[\"user.nickname\"],\"user_nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579716');
INSERT INTO `fa_admin_log` VALUES ('841', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579837');
INSERT INTO `fa_admin_log` VALUES ('842', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579840');
INSERT INTO `fa_admin_log` VALUES ('843', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579841');
INSERT INTO `fa_admin_log` VALUES ('844', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"25\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579848');
INSERT INTO `fa_admin_log` VALUES ('845', '1', 'admin', '/admin/agent/del/ids/25', '用户管理 代理管理 删除', '{\"action\":\"del\",\"ids\":\"25\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579873');
INSERT INTO `fa_admin_log` VALUES ('846', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579896');
INSERT INTO `fa_admin_log` VALUES ('847', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"25\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"25\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579896');
INSERT INTO `fa_admin_log` VALUES ('848', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579917');
INSERT INTO `fa_admin_log` VALUES ('849', '1', 'admin', '/admin/agent/agentList', '', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"25\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"25\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579917');
INSERT INTO `fa_admin_log` VALUES ('850', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579918');
INSERT INTO `fa_admin_log` VALUES ('851', '1', 'admin', '/admin/agent/edit/ids/26?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"\"},\"ids\":\"26\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579923');
INSERT INTO `fa_admin_log` VALUES ('852', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579925');
INSERT INTO `fa_admin_log` VALUES ('853', '1', 'admin', '/admin/agent/agentList', '', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579925');
INSERT INTO `fa_admin_log` VALUES ('854', '1', 'admin', '/admin/agent/agentList', '', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558579925');
INSERT INTO `fa_admin_log` VALUES ('855', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580040');
INSERT INTO `fa_admin_log` VALUES ('856', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580041');
INSERT INTO `fa_admin_log` VALUES ('857', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580043');
INSERT INTO `fa_admin_log` VALUES ('858', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580047');
INSERT INTO `fa_admin_log` VALUES ('859', '1', 'admin', '/admin/agent/del/ids/26', '用户管理 代理管理 删除', '{\"action\":\"del\",\"ids\":\"26\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580052');
INSERT INTO `fa_admin_log` VALUES ('860', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580054');
INSERT INTO `fa_admin_log` VALUES ('861', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580055');
INSERT INTO `fa_admin_log` VALUES ('862', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580059');
INSERT INTO `fa_admin_log` VALUES ('863', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580060');
INSERT INTO `fa_admin_log` VALUES ('864', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580063');
INSERT INTO `fa_admin_log` VALUES ('865', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580112');
INSERT INTO `fa_admin_log` VALUES ('866', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580116');
INSERT INTO `fa_admin_log` VALUES ('867', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580117');
INSERT INTO `fa_admin_log` VALUES ('868', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580121');
INSERT INTO `fa_admin_log` VALUES ('869', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"20\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"20\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580131');
INSERT INTO `fa_admin_log` VALUES ('870', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580131');
INSERT INTO `fa_admin_log` VALUES ('871', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580262');
INSERT INTO `fa_admin_log` VALUES ('872', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580269');
INSERT INTO `fa_admin_log` VALUES ('873', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580269');
INSERT INTO `fa_admin_log` VALUES ('874', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580269');
INSERT INTO `fa_admin_log` VALUES ('875', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580350');
INSERT INTO `fa_admin_log` VALUES ('876', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580351');
INSERT INTO `fa_admin_log` VALUES ('877', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580352');
INSERT INTO `fa_admin_log` VALUES ('878', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580352');
INSERT INTO `fa_admin_log` VALUES ('879', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580353');
INSERT INTO `fa_admin_log` VALUES ('880', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580355');
INSERT INTO `fa_admin_log` VALUES ('881', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580547');
INSERT INTO `fa_admin_log` VALUES ('882', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580549');
INSERT INTO `fa_admin_log` VALUES ('883', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580549');
INSERT INTO `fa_admin_log` VALUES ('884', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580549');
INSERT INTO `fa_admin_log` VALUES ('885', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580551');
INSERT INTO `fa_admin_log` VALUES ('886', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580552');
INSERT INTO `fa_admin_log` VALUES ('887', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580552');
INSERT INTO `fa_admin_log` VALUES ('888', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580552');
INSERT INTO `fa_admin_log` VALUES ('889', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580559');
INSERT INTO `fa_admin_log` VALUES ('890', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580559');
INSERT INTO `fa_admin_log` VALUES ('891', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580560');
INSERT INTO `fa_admin_log` VALUES ('892', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580562');
INSERT INTO `fa_admin_log` VALUES ('893', '1', 'admin', '/admin/agent/edit/ids/27?dialog=1', '用户管理 代理管理 编辑', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"24\",\"pid\":\"0\"},\"ids\":\"27\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580564');
INSERT INTO `fa_admin_log` VALUES ('894', '1', 'admin', '/admin/agent/del/ids/28,27', '用户管理 代理管理 删除', '{\"action\":\"del\",\"ids\":\"28,27\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580569');
INSERT INTO `fa_admin_log` VALUES ('895', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580578');
INSERT INTO `fa_admin_log` VALUES ('896', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580579');
INSERT INTO `fa_admin_log` VALUES ('897', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"18\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580581');
INSERT INTO `fa_admin_log` VALUES ('898', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580582');
INSERT INTO `fa_admin_log` VALUES ('899', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580584');
INSERT INTO `fa_admin_log` VALUES ('900', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580585');
INSERT INTO `fa_admin_log` VALUES ('901', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580587');
INSERT INTO `fa_admin_log` VALUES ('902', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580588');
INSERT INTO `fa_admin_log` VALUES ('903', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"24\",\"pid\":\"20\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580589');
INSERT INTO `fa_admin_log` VALUES ('904', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580591');
INSERT INTO `fa_admin_log` VALUES ('905', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580594');
INSERT INTO `fa_admin_log` VALUES ('906', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"28\",\"pid\":\"24\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580596');
INSERT INTO `fa_admin_log` VALUES ('907', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580598');
INSERT INTO `fa_admin_log` VALUES ('908', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580600');
INSERT INTO `fa_admin_log` VALUES ('909', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"29\",\"pid\":\"24\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580601');
INSERT INTO `fa_admin_log` VALUES ('910', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580603');
INSERT INTO `fa_admin_log` VALUES ('911', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580618');
INSERT INTO `fa_admin_log` VALUES ('912', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"25\",\"pid\":\"20\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580620');
INSERT INTO `fa_admin_log` VALUES ('913', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580622');
INSERT INTO `fa_admin_log` VALUES ('914', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580625');
INSERT INTO `fa_admin_log` VALUES ('915', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"30\",\"pid\":\"25\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580628');
INSERT INTO `fa_admin_log` VALUES ('916', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580630');
INSERT INTO `fa_admin_log` VALUES ('917', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580633');
INSERT INTO `fa_admin_log` VALUES ('918', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"26\",\"pid\":\"20\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580636');
INSERT INTO `fa_admin_log` VALUES ('919', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580641');
INSERT INTO `fa_admin_log` VALUES ('920', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580644');
INSERT INTO `fa_admin_log` VALUES ('921', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580649');
INSERT INTO `fa_admin_log` VALUES ('922', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"21\",\"pid\":\"18\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580651');
INSERT INTO `fa_admin_log` VALUES ('923', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580653');
INSERT INTO `fa_admin_log` VALUES ('924', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580655');
INSERT INTO `fa_admin_log` VALUES ('925', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"27\",\"pid\":\"21\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580657');
INSERT INTO `fa_admin_log` VALUES ('926', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580659');
INSERT INTO `fa_admin_log` VALUES ('927', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580661');
INSERT INTO `fa_admin_log` VALUES ('928', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580662');
INSERT INTO `fa_admin_log` VALUES ('929', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580663');
INSERT INTO `fa_admin_log` VALUES ('930', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580664');
INSERT INTO `fa_admin_log` VALUES ('931', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"19\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580669');
INSERT INTO `fa_admin_log` VALUES ('932', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580671');
INSERT INTO `fa_admin_log` VALUES ('933', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580672');
INSERT INTO `fa_admin_log` VALUES ('934', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580674');
INSERT INTO `fa_admin_log` VALUES ('935', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580675');
INSERT INTO `fa_admin_log` VALUES ('936', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"19\",\"pid\":\"22\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580676');
INSERT INTO `fa_admin_log` VALUES ('937', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580680');
INSERT INTO `fa_admin_log` VALUES ('938', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580682');
INSERT INTO `fa_admin_log` VALUES ('939', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"22\",\"pid\":\"19\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580684');
INSERT INTO `fa_admin_log` VALUES ('940', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580686');
INSERT INTO `fa_admin_log` VALUES ('941', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580687');
INSERT INTO `fa_admin_log` VALUES ('942', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580688');
INSERT INTO `fa_admin_log` VALUES ('943', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580690');
INSERT INTO `fa_admin_log` VALUES ('944', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"23\",\"pid\":\"19\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558580692');
INSERT INTO `fa_admin_log` VALUES ('945', '1', 'admin', '/admin/user/delagent?id=18&ids=18', '', '{\"id\":\"18\",\"ids\":\"18\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558582298');
INSERT INTO `fa_admin_log` VALUES ('946', '1', 'admin', '/admin/user/agent?id=18&ids=18', '', '{\"id\":\"18\",\"ids\":\"18\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558582356');
INSERT INTO `fa_admin_log` VALUES ('947', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"18\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"18\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558582360');
INSERT INTO `fa_admin_log` VALUES ('948', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"0\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"showField\":\"nickname\",\"keyField\":\"id\",\"keyValue\":\"0\",\"searchField\":[\"nickname\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558582361');
INSERT INTO `fa_admin_log` VALUES ('949', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558590699');
INSERT INTO `fa_admin_log` VALUES ('950', '1', 'admin', '/admin/auth/group/roletree', '', '{\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558592505');
INSERT INTO `fa_admin_log` VALUES ('951', '1', 'admin', '/admin/auth/group/add?dialog=1', '权限管理 角色组 添加', '{\"dialog\":\"1\",\"row\":{\"rules\":\"4,13,55,56,57,58,59,60,61,62,63,64,65,98,99,100,101,102,103,104,105,106,1\",\"pid\":\"1\",\"name\":\"test\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558592511');
INSERT INTO `fa_admin_log` VALUES ('952', '1', 'admin', '/admin/auth/group/roletree', '', '{\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558592515');
INSERT INTO `fa_admin_log` VALUES ('953', '1', 'admin', '/admin/auth/group/roletree', '', '{\"id\":\"2\",\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558592518');
INSERT INTO `fa_admin_log` VALUES ('954', '1', 'admin', '/admin/auth/group/roletree', '', '{\"id\":\"2\",\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558592587');
INSERT INTO `fa_admin_log` VALUES ('955', '1', 'admin', '/admin/auth/group/roletree', '', '{\"id\":\"2\",\"pid\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558592908');
INSERT INTO `fa_admin_log` VALUES ('956', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558593630');
INSERT INTO `fa_admin_log` VALUES ('957', '1', 'admin', '/admin/job/index', '职位管理 职位列表 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"id\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"id\",\"keyField\":\"id\",\"searchField\":[\"id\"],\"id\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558593631');
INSERT INTO `fa_admin_log` VALUES ('958', '1', 'admin', '/admin/jobrecord/add?dialog=1', '职位管理 入职记录 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"20\",\"job_id\":\"3\",\"state\":\"wait\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558593633');
INSERT INTO `fa_admin_log` VALUES ('959', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599255');
INSERT INTO `fa_admin_log` VALUES ('960', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599257');
INSERT INTO `fa_admin_log` VALUES ('961', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599257');
INSERT INTO `fa_admin_log` VALUES ('962', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599258');
INSERT INTO `fa_admin_log` VALUES ('963', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599260');
INSERT INTO `fa_admin_log` VALUES ('964', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599260');
INSERT INTO `fa_admin_log` VALUES ('965', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599261');
INSERT INTO `fa_admin_log` VALUES ('966', '1', 'admin', '/admin/job/add?dialog=1', '职位管理 职位列表 添加', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"interview_images\":\"\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg\",\"dormitory_images\":\"\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"canteen_images\":\"\\/uploads\\/20190521\\/85bf06bb5108d81111cb2d0bf3c862a2.jpg\",\"staff_images\":\"\\/uploads\\/20190521\\/e878ab120b059b63b76ed97ccaab4248.jpg\",\"entry\":\"200\",\"recommend\":\"100\",\"commission\":\"1500\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b976000-8000\",\"base_salary\":\"4000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u8f6f\\u4ef6\\u5f00\\u53d1\\u884c\\u4e1a\",\"type\":\"PHPER\",\"number\":\"1\",\"requirement\":\"\\u5de5\\u4f5c\\u7ecf\\u9a8c2\\u5e74\\/\\u5b66\\u5386\\u4e0d\\u9650\\/\\u7cbe\\u901aphp\",\"worktime\":\"9:00-18:30\",\"welfare\":\"6,4,2\",\"company\":\"\\u6070\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u516c\\u53f8\",\"introduce\":\"\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\\u6070\\u5de7\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u9526\\u6c5f\\u533a\\u67f3\\u6c5f\\u8857\\u9053\\u6bd5\\u5347\\u8def\",\"location\":\"30.592315,104.091726\",\"state\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558599356');
INSERT INTO `fa_admin_log` VALUES ('967', '1', 'admin', '/admin/general.config/edit', '常规管理 系统配置 编辑', '{\"row\":{\"name\":\"\\u517c\\u804c\\u5c0f\\u7a0b\\u5e8f\",\"beian\":\"\",\"cdnurl\":\"\",\"version\":\"1.0.1\",\"timezone\":\"Asia\\/Shanghai\",\"forbiddenip\":\"\",\"languages\":\"{\\\"backend\\\":\\\"zh-cn\\\",\\\"frontend\\\":\\\"zh-cn\\\"}\",\"fixedpage\":\"dashboard\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558605032');
INSERT INTO `fa_admin_log` VALUES ('968', '1', 'admin', '/admin/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558605178');
INSERT INTO `fa_admin_log` VALUES ('969', '1', 'admin', '/admin/command/command/action/command', '', '{\"commandtype\":\"api\",\"force\":\"0\",\"url\":\"\",\"output\":\"api1.html\",\"template\":\"\",\"title\":\"api1\",\"author\":\"duomu.\",\"language\":\"zh-cn\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558605224');
INSERT INTO `fa_admin_log` VALUES ('970', '1', 'admin', '/admin/command/command/action/command', '', '{\"commandtype\":\"api\",\"force\":\"1\",\"url\":\"\",\"output\":\"api1.html\",\"template\":\"\",\"title\":\"api1\",\"author\":\"duomu.\",\"language\":\"zh-cn\",\"action\":\"command\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558605242');
INSERT INTO `fa_admin_log` VALUES ('971', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,4,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,4,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558606961');
INSERT INTO `fa_admin_log` VALUES ('972', '1', 'admin', '/admin/index/login.html', '登录', '{\"__token__\":\"<PASSWORD>855f\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558659570');
INSERT INTO `fa_admin_log` VALUES ('973', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558685802');
INSERT INTO `fa_admin_log` VALUES ('974', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558685803');
INSERT INTO `fa_admin_log` VALUES ('975', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558685803');
INSERT INTO `fa_admin_log` VALUES ('976', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558685804');
INSERT INTO `fa_admin_log` VALUES ('977', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"name\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"name\",\"keyField\":\"id\",\"searchField\":[\"name\"],\"name\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558685804');
INSERT INTO `fa_admin_log` VALUES ('978', '1', 'admin', '/admin/job/add?dialog=1', '职位管理 职位列表 添加', '{\"dialog\":\"1\",\"row\":{\"company_images\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"interview_images\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"dormitory_images\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"canteen_images\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"staff_images\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"entry\":\"200\",\"recommend\":\"100\",\"commission\":\"1500\",\"salary\":\"\\u6309\\u6708\\u7ed3\\u7b973000-4500\",\"base_salary\":\"2000\\/\\u6708\",\"pay_salary\":\"\\u6bcf\\u670815\\u53f7\\u53d1\\u653e\",\"nature\":\"\\u670d\\u52a1\\u4e1a\",\"type\":\"\\u5ba2\\u670d\\u4e13\\u5458\",\"number\":\"13\",\"requirement\":\"asdasdasdasdasd\",\"worktime\":\"9:00-18:30\",\"welfare\":\"6,4,5,3\",\"company\":\"\\u6070\\u5de7\\u7f51\\u7edc\\u79d1\\u6280\\u516c\\u53f8\",\"introduce\":\"asdasdasdsa\",\"bonus\":\"\\u5168\\u52e4\\u5956 \\u5e74\\u7ec8\\u5956 \\u5e74\\u5ea6\\u65c5\\u6e38\",\"address\":\"\\u56db\\u5ddd\\u7701\\u6210\\u90fd\\u5e02\\u9752\\u7f8a\\u533a\\u897f\\u5fa1\\u6cb3\\u8857\\u9053\\u56db\\u5ddd\\u79d1\\u6280\\u9986\",\"location\":\"30.659462,104.065735\",\"state\":\"1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558685815');
INSERT INTO `fa_admin_log` VALUES ('979', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u7528\\u6237\\u6d4b\\u8bd51\",\"avatar\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"openid\":\"test1\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688750');
INSERT INTO `fa_admin_log` VALUES ('980', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u7528\\u6237\\u6d4b\\u8bd52\",\"avatar\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"openid\":\"test2\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688758');
INSERT INTO `fa_admin_log` VALUES ('981', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u4ee3\\u7406\\u6d4b\\u8bd52\",\"avatar\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png\",\"openid\":\"test22\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688773');
INSERT INTO `fa_admin_log` VALUES ('982', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u4ee3\\u7406\\u6d4b\\u8bd51\",\"avatar\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"openid\":\"test11\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688792');
INSERT INTO `fa_admin_log` VALUES ('983', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688797');
INSERT INTO `fa_admin_log` VALUES ('984', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688799');
INSERT INTO `fa_admin_log` VALUES ('985', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688801');
INSERT INTO `fa_admin_log` VALUES ('986', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"34\",\"pid\":\"\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688805');
INSERT INTO `fa_admin_log` VALUES ('987', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688806');
INSERT INTO `fa_admin_log` VALUES ('988', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688808');
INSERT INTO `fa_admin_log` VALUES ('989', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688810');
INSERT INTO `fa_admin_log` VALUES ('990', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688811');
INSERT INTO `fa_admin_log` VALUES ('991', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"33\",\"pid\":\"34\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558688813');
INSERT INTO `fa_admin_log` VALUES ('992', '1', 'admin', '/admin/index/login.html', '登录', '{\"__token__\":\"<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558918840');
INSERT INTO `fa_admin_log` VALUES ('993', '1', 'admin', '/admin/txrecord/del/ids/4,3,2,1', '提现管理 提现申请 删除', '{\"action\":\"del\",\"ids\":\"4,3,2,1\",\"params\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558918917');
INSERT INTO `fa_admin_log` VALUES ('994', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558918918');
INSERT INTO `fa_admin_log` VALUES ('995', '1', 'admin', '/admin/user/add?dialog=1', '用户管理 用户管理 添加', '{\"dialog\":\"1\",\"row\":{\"nickname\":\"\\u4ee3\\u7406\\u6d4b\\u8bd53\",\"avatar\":\"\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg\",\"openid\":\"daili3\",\"status\":\"normal\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558925619');
INSERT INTO `fa_admin_log` VALUES ('996', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558925623');
INSERT INTO `fa_admin_log` VALUES ('997', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558925625');
INSERT INTO `fa_admin_log` VALUES ('998', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"1\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558925627');
INSERT INTO `fa_admin_log` VALUES ('999', '1', 'admin', '/admin/user/index', '用户管理 用户管理 查看', '{\"q_word\":[\"\"],\"pageNumber\":\"2\",\"pageSize\":\"10\",\"andOr\":\"AND\",\"orderBy\":[[\"nickname\",\"ASC\"]],\"searchTable\":\"tbl\",\"showField\":\"nickname\",\"keyField\":\"id\",\"searchField\":[\"nickname\"],\"nickname\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558925628');
INSERT INTO `fa_admin_log` VALUES ('1000', '1', 'admin', '/admin/agent/add?dialog=1', '用户管理 代理管理 添加', '{\"dialog\":\"1\",\"row\":{\"user_id\":\"35\",\"pid\":\"33\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558925632');
INSERT INTO `fa_admin_log` VALUES ('1001', '1', 'admin', '/admin/general/config/wxpayset?addtabs=1', '系统设置 支付配置', '{\"addtabs\":\"1\",\"row\":{\"mch_id\":\"1524685213\",\"apisecret\":\"12345678123456781234567812345678\",\"apiclient_cert\":\"asdasdasd\",\"apiclient_key\":\"sdasddasdasd\",\"ip\":\"127.0.0.1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558941322');
INSERT INTO `fa_admin_log` VALUES ('1002', '1', 'admin', '/admin/general/config/wxpayset?addtabs=1', '系统设置 支付配置', '{\"addtabs\":\"1\",\"row\":{\"mch_id\":\"1524685213\",\"apisecret\":\"12345678123456781234567812345678\",\"apiclient_cert\":\"apiclient_cert\",\"apiclient_key\":\"apiclient_key\",\"ip\":\"127.0.0.1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558941385');
INSERT INTO `fa_admin_log` VALUES ('1003', '1', 'admin', '/admin/general/config/wxpayset?addtabs=1', '系统设置 支付配置', '{\"addtabs\":\"1\",\"row\":{\"mch_id\":\"1524685213\",\"apisecret\":\"12345678123456781234567812345678\",\"apiclient_cert\":\"test\",\"apiclient_key\":\"test2\",\"ip\":\"127.0.0.1\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1558941924');
INSERT INTO `fa_admin_log` VALUES ('1004', '1', 'admin', '/admin/index/login.html', '登录', '{\"__token__\":\"298b<PASSWORD>bd<PASSWORD>5<PASSWORD>b<PASSWORD>\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559005095');
INSERT INTO `fa_admin_log` VALUES ('1005', '1', 'admin', '/admin/user/multi/ids/35', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"35\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559005491');
INSERT INTO `fa_admin_log` VALUES ('1006', '1', 'admin', '/admin/user/multi/ids/35', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"35\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559005492');
INSERT INTO `fa_admin_log` VALUES ('1007', '1', 'admin', '/admin/user/multi/ids/35', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"35\",\"params\":\"is_ban=1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559005493');
INSERT INTO `fa_admin_log` VALUES ('1008', '1', 'admin', '/admin/user/multi/ids/35', '用户管理 用户管理 批量更新', '{\"action\":\"\",\"ids\":\"35\",\"params\":\"is_ban=0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559005494');
INSERT INTO `fa_admin_log` VALUES ('1009', '1', 'admin', '/admin/welfare/index', '职位管理 福利设置 查看', '{\"searchTable\":\"tbl\",\"searchKey\":\"id\",\"searchValue\":\"6,4,2\",\"orderBy\":[[\"name\",\"ASC\"]],\"showField\":\"name\",\"keyField\":\"id\",\"keyValue\":\"6,4,2\",\"searchField\":[\"name\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559005681');
INSERT INTO `fa_admin_log` VALUES ('1010', '1', 'admin', '/admin/command/get_field_list', '', '{\"table\":\"fa_ad\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559006227');
INSERT INTO `fa_admin_log` VALUES ('1011', '1', 'admin', '/admin/dynamic/add?dialog=1', '动态管理 动态列表 添加', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60012\",\"images\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png,\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg,\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg,\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"details\":\"<p><b>asdasdasdasd<\\/b><\\/p><p><u>asdasdasdasdasda<\\/u><\\/p>\",\"type\":\"2\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559007260');
INSERT INTO `fa_admin_log` VALUES ('1012', '1', 'admin', '/admin/dynamic/edit/ids/3?dialog=1', '动态管理 动态列表 编辑', '{\"dialog\":\"1\",\"row\":{\"title\":\"\\u52a8\\u60013\",\"images\":\"\\/uploads\\/20190523\\/5bf611e402559427aae5b84ad227a266.png,\\/uploads\\/20190521\\/6aef9eb39d62df20a4dac1230694817b.jpg,\\/uploads\\/20190521\\/9ab6b8c0e6e5f070cc6ab95269761f28.jpg,\\/uploads\\/20190521\\/952b84a84bdaefec1224364c95ebb53a.jpg\",\"details\":\"<p><b>asdasdasdasd<\\/b><\\/p><p><u>asdasdasdasdasda<\\/u><\\/p>\",\"type\":\"2\"},\"ids\":\"3\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559007271');
INSERT INTO `fa_admin_log` VALUES ('1013', '1', 'admin', '/admin/general/config/appset?addtabs=1', '系统设置 小程序配置', '{\"addtabs\":\"1\",\"row\":{\"appid\":\"wxa9fb59a1009e0894\",\"appsecret\":\"<KEY>\"}}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559015729');
INSERT INTO `fa_admin_log` VALUES ('1014', '1', 'admin', '/admin/index/login.html', '登录', '{\"__token__\":\"e510bd6ec6f83a9106daf03b567750ad\",\"username\":\"admin\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559109116');
INSERT INTO `fa_admin_log` VALUES ('1015', '1', 'admin', '/admin123.php/index/login?url=%2Fadmin123.php', '登录', '{\"url\":\"\\/admin123.php\",\"__token__\":\"b7b935c8e559a710ee7110aba584d33d\",\"username\":\"admin\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559524474');
INSERT INTO `fa_admin_log` VALUES ('1016', '0', 'Unknown', '/admin123.php/index/login', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin666\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559525289');
INSERT INTO `fa_admin_log` VALUES ('1017', '0', 'Unknown', '/admin123.php/index/login', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin666\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559525290');
INSERT INTO `fa_admin_log` VALUES ('1018', '0', 'Unknown', '/admin123.php/index/login', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin666\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559525290');
INSERT INTO `fa_admin_log` VALUES ('1019', '0', 'Unknown', '/admin123.php/index/login', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin666\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559525291');
INSERT INTO `fa_admin_log` VALUES ('1020', '0', 'Unknown', '/admin123.php/index/login', '登录', '{\"__token__\":\"3<PASSWORD>\",\"username\":\"admin666\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559525291');
INSERT INTO `fa_admin_log` VALUES ('1021', '1', 'admin', '/admin123.php/index/login', '登录', '{\"__token__\":\"<KEY>\",\"username\":\"admin\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559525298');
INSERT INTO `fa_admin_log` VALUES ('1022', '1', 'admin', '/admin123.php/index/login.html', '登录', '{\"__token__\":\"7259577e691<PASSWORD>72bce68a81<PASSWORD>c\",\"username\":\"admin\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559529384');
INSERT INTO `fa_admin_log` VALUES ('1023', '1', 'admin', '/admin123.php/auth/group/del/ids/2', '权限管理 角色组 删除', '{\"action\":\"del\",\"ids\":\"2\",\"params\":\"\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559529407');
INSERT INTO `fa_admin_log` VALUES ('1024', '1', 'admin', '/admin123.php/auth/group/roletree', '', '{\"pid\":\"1\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559529409');
INSERT INTO `fa_admin_log` VALUES ('1025', '1', 'admin', '/admin123.php/auth/group/add?dialog=1', '权限管理 角色组 添加', '{\"dialog\":\"1\",\"row\":{\"rules\":\"2,6,18,19,20,21,22,7,23,24,25,26,27,28,8,29,30,31,32,33,34,9,40,41,42,43,10,44,45,46,11,47,48,49,50,107,92,93,94,95,96,97,163,164,165,166,167,168,120,114,115,116,117,118,119,122,123,124,125,126,127,128,129,130,131,132,133,147,148,149,150,151,152,121,108,109,110,111,112,113,160,161,134,135,136,137,138,139,140,141,142,143,144,145,146,153,154,155,156,157,158,159,162,5\",\"pid\":\"1\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"status\":\"normal\"}}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559529433');
INSERT INTO `fa_admin_log` VALUES ('1026', '1', 'admin', '/admin123.php/auth/admin/add?dialog=1', '权限管理 管理员管理 添加', '{\"dialog\":\"1\",\"group\":[\"3\"],\"row\":{\"username\":\"admin666\",\"email\":\"<EMAIL>\",\"nickname\":\"admin666\",\"password\":\"<PASSWORD>\",\"status\":\"normal\"}}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559529454');
INSERT INTO `fa_admin_log` VALUES ('1027', '2', 'admin666', '/admin123.php/index/login', '登录', '{\"__token__\":\"dfd1b37d9e07b0e0f0be4dc6923ec837\",\"username\":\"admin666\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559529465');
INSERT INTO `fa_admin_log` VALUES ('1028', '1', 'admin', '/admin123.php/index/login.html', '登录', '{\"__token__\":\"24dff70cfff5695b1d612e2ea0b96b08\",\"username\":\"admin\"}', '172.16.31.10', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36', '1559543446');
-- ----------------------------
-- Table structure for fa_agent
-- ----------------------------
DROP TABLE IF EXISTS `fa_agent`;
CREATE TABLE `fa_agent` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(11) NOT NULL COMMENT '用户id',
`pid` int(11) NOT NULL COMMENT '上级id-为用户id',
`createtime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COMMENT='代理表';
-- ----------------------------
-- Records of fa_agent
-- ----------------------------
INSERT INTO `fa_agent` VALUES ('30', '20', '18', '2019-05-22 11:03:05');
INSERT INTO `fa_agent` VALUES ('31', '24', '20', '2019-05-23 11:03:09');
INSERT INTO `fa_agent` VALUES ('32', '28', '24', '2019-05-23 11:03:16');
INSERT INTO `fa_agent` VALUES ('33', '29', '24', '2019-05-23 11:03:21');
INSERT INTO `fa_agent` VALUES ('34', '25', '20', '2019-05-23 11:03:40');
INSERT INTO `fa_agent` VALUES ('35', '300', '25', '2019-05-23 11:03:48');
INSERT INTO `fa_agent` VALUES ('36', '26', '20', '2019-05-23 11:03:56');
INSERT INTO `fa_agent` VALUES ('37', '21', '18', '2019-05-22 11:04:11');
INSERT INTO `fa_agent` VALUES ('38', '27', '21', '2019-05-23 11:04:17');
INSERT INTO `fa_agent` VALUES ('39', '19', '0', '2019-05-23 11:04:29');
INSERT INTO `fa_agent` VALUES ('40', '22', '19', '2019-05-23 11:04:44');
INSERT INTO `fa_agent` VALUES ('41', '23', '19', '2019-05-23 11:04:52');
INSERT INTO `fa_agent` VALUES ('42', '18', '0', '0000-00-00 00:00:00');
INSERT INTO `fa_agent` VALUES ('43', '34', '35', '2019-05-24 17:06:45');
INSERT INTO `fa_agent` VALUES ('44', '33', '34', '2019-05-24 17:06:53');
INSERT INTO `fa_agent` VALUES ('45', '35', '0', '2019-05-27 10:53:52');
-- ----------------------------
-- Table structure for fa_agent_job_commission
-- ----------------------------
DROP TABLE IF EXISTS `fa_agent_job_commission`;
CREATE TABLE `fa_agent_job_commission` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`job_id` int(11) NOT NULL COMMENT '职位id',
`user_id` int(11) NOT NULL COMMENT '代理的用户id',
`commission` decimal(10,2) NOT NULL COMMENT '代理给直属下级设置的佣金',
`pid` int(11) NOT NULL COMMENT '代理的上级的id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='职位与代理设置佣金表';
-- ----------------------------
-- Records of fa_agent_job_commission
-- ----------------------------
INSERT INTO `fa_agent_job_commission` VALUES ('1', '5', '18', '1300.00', '0');
INSERT INTO `fa_agent_job_commission` VALUES ('3', '5', '21', '1200.00', '18');
INSERT INTO `fa_agent_job_commission` VALUES ('4', '5', '33', '900.00', '34');
INSERT INTO `fa_agent_job_commission` VALUES ('5', '5', '34', '1100.00', '35');
INSERT INTO `fa_agent_job_commission` VALUES ('6', '5', '35', '1300.00', '0');
-- ----------------------------
-- Table structure for fa_attachment
-- ----------------------------
DROP TABLE IF EXISTS `fa_attachment`;
CREATE TABLE `fa_attachment` (
`id` int(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员ID',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '物理路径',
`imagewidth` varchar(30) NOT NULL DEFAULT '' COMMENT '宽度',
`imageheight` varchar(30) NOT NULL DEFAULT '' COMMENT '高度',
`imagetype` varchar(30) NOT NULL DEFAULT '' COMMENT '图片类型',
`imageframes` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '图片帧数',
`filesize` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '文件大小',
`mimetype` varchar(100) NOT NULL DEFAULT '' COMMENT 'mime类型',
`extparam` varchar(255) NOT NULL DEFAULT '' COMMENT '透传数据',
`createtime` int(10) DEFAULT NULL COMMENT '创建日期',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`uploadtime` int(10) DEFAULT NULL COMMENT '上传时间',
`storage` varchar(100) NOT NULL DEFAULT 'local' COMMENT '存储位置',
`sha1` varchar(40) NOT NULL DEFAULT '' COMMENT '文件 sha1编码',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='附件表';
-- ----------------------------
-- Records of fa_attachment
-- ----------------------------
INSERT INTO `fa_attachment` VALUES ('1', '1', '0', '/assets/img/qrcode.png', '150', '150', 'png', '0', '21859', 'image/png', '', '1499681848', '1499681848', '1499681848', 'local', '17163603d0263e4838b9387ff2cd4877e8b018f6');
INSERT INTO `fa_attachment` VALUES ('2', '1', '0', '/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '500', '313', 'jpg', '0', '26289', 'image/jpeg', '{\"name\":\"u=234634259,4236876085&fm=26&gp=0.jpg\"}', '1558331690', '1558331690', '1558331690', 'local', 'a104c94fdb14fbbf95b326876dba336e65ef65c4');
INSERT INTO `fa_attachment` VALUES ('3', '1', '0', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg', '533', '300', 'jpg', '0', '11531', 'image/jpeg', '{\"name\":\"u=1055727654,337004439&fm=26&gp=0.jpg\"}', '1558331879', '1558331879', '1558331878', 'local', '0df6d80a3654d3cb1949773ad13876513e16d4c1');
INSERT INTO `fa_attachment` VALUES ('4', '1', '0', '/uploads/20190521/e878ab120b059b63b76ed97ccaab4248.jpg', '500', '313', 'jpg', '0', '26908', 'image/jpeg', '{\"name\":\"u=1979198230,3799788659&fm=26&gp=0.jpg\"}', '1558406607', '1558406607', '1558406607', 'local', '92006817753c938bff6fbc762aaa80fec989d850');
INSERT INTO `fa_attachment` VALUES ('5', '1', '0', '/uploads/20190521/85bf06bb5108d81111cb2d0bf3c862a2.jpg', '528', '300', 'jpg', '0', '49709', 'image/jpeg', '{\"name\":\"u=1986179278,1118313821&fm=26&gp=0.jpg\"}', '1558406610', '1558406610', '1558406610', 'local', '7c04781b4a634fa224e1b2146c6a368009b0d762');
INSERT INTO `fa_attachment` VALUES ('6', '1', '0', '/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg', '500', '375', 'jpg', '0', '28111', 'image/jpeg', '{\"name\":\"u=2153937626,1074119156&fm=26&gp=0.jpg\"}', '1558406613', '1558406613', '1558406613', 'local', '78ce10bcde1fe9ec311f8b269d1e761a3c1849e8');
INSERT INTO `fa_attachment` VALUES ('7', '1', '0', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', '500', '313', 'jpg', '0', '38837', 'image/jpeg', '{\"name\":\"u=2968231382,1111539856&fm=26&gp=0.jpg\"}', '1558406615', '1558406615', '1558406615', 'local', 'eb9c81e54ee34c36f2b899792527ef85b6d0990f');
INSERT INTO `fa_attachment` VALUES ('8', '1', '0', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', '605', '300', 'jpg', '0', '16256', 'image/jpeg', '{\"name\":\"u=3300305952,1328708913&fm=26&gp=0.jpg\"}', '1558406617', '1558406617', '1558406617', 'local', 'aab05b1b8a3cae9543d3c4b5795254d711498bb0');
INSERT INTO `fa_attachment` VALUES ('9', '1', '0', '/uploads/20190522/24460384a8b6772eea1965bdcec5d1ad.xls', '', '', 'xls', '0', '22721', 'application/vnd.ms-excel', '{\"name\":\"export_2019-05-22.xls\"}', '1558492009', '1558492009', '1558492009', 'local', '50cc6a0fe43e07d627365c6eacc5ba64c3c19a0f');
INSERT INTO `fa_attachment` VALUES ('10', '1', '0', '/uploads/20190522/c9113220490dfd1f53e608567e30b9a7.xls', '', '', 'xls', '0', '20635', 'application/vnd.ms-excel', '{\"name\":\"export_2019-05-22.xls\"}', '1558492058', '1558492058', '1558492058', 'local', '58ddf354f8ad55ad2c69d7d5453cfe07a0b8b3d9');
INSERT INTO `fa_attachment` VALUES ('11', '0', '0', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', '588', '227', 'png', '0', '4279', 'image/png', '', '1558604658', '1558604658', '1558604658', 'local', 'f820bd3666a1c399b80c0d7b361909c684a538fc');
-- ----------------------------
-- Table structure for fa_auth_group
-- ----------------------------
DROP TABLE IF EXISTS `fa_auth_group`;
CREATE TABLE `fa_auth_group` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父组别',
`name` varchar(100) NOT NULL DEFAULT '' COMMENT '组名',
`rules` text NOT NULL COMMENT '规则ID',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='分组表';
-- ----------------------------
-- Records of fa_auth_group
-- ----------------------------
INSERT INTO `fa_auth_group` VALUES ('1', '0', 'Admin group', '*', '1490883540', '149088354', 'normal');
INSERT INTO `fa_auth_group` VALUES ('3', '1', '管理员', '2,6,18,19,20,21,22,7,23,24,25,26,27,28,8,29,30,31,32,33,34,9,40,41,42,43,10,44,45,46,11,47,48,49,50,107,92,93,94,95,96,97,163,164,165,166,167,168,120,114,115,116,117,118,119,122,123,124,125,126,127,128,129,130,131,132,133,147,148,149,150,151,152,121,108,109,110,111,112,113,160,161,134,135,136,137,138,139,140,141,142,143,144,145,146,153,154,155,156,157,158,159,162,5', '1559529433', '1559529433', 'normal');
-- ----------------------------
-- Table structure for fa_auth_group_access
-- ----------------------------
DROP TABLE IF EXISTS `fa_auth_group_access`;
CREATE TABLE `fa_auth_group_access` (
`uid` int(10) unsigned NOT NULL COMMENT '会员ID',
`group_id` int(10) unsigned NOT NULL COMMENT '级别ID',
UNIQUE KEY `uid_group_id` (`uid`,`group_id`),
KEY `uid` (`uid`),
KEY `group_id` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='权限分组表';
-- ----------------------------
-- Records of fa_auth_group_access
-- ----------------------------
INSERT INTO `fa_auth_group_access` VALUES ('1', '1');
INSERT INTO `fa_auth_group_access` VALUES ('2', '3');
-- ----------------------------
-- Table structure for fa_auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `fa_auth_rule`;
CREATE TABLE `fa_auth_rule` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` enum('menu','file') NOT NULL DEFAULT 'file' COMMENT 'menu为菜单,file为权限节点',
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父ID',
`name` varchar(100) NOT NULL DEFAULT '' COMMENT '规则名称',
`title` varchar(50) NOT NULL DEFAULT '' COMMENT '规则名称',
`icon` varchar(50) NOT NULL DEFAULT '' COMMENT '图标',
`condition` varchar(255) NOT NULL DEFAULT '' COMMENT '条件',
`remark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`ismenu` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否为菜单',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`) USING BTREE,
KEY `pid` (`pid`),
KEY `weigh` (`weigh`)
) ENGINE=InnoDB AUTO_INCREMENT=169 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='节点表';
-- ----------------------------
-- Records of fa_auth_rule
-- ----------------------------
INSERT INTO `fa_auth_rule` VALUES ('1', 'file', '0', 'dashboard', 'Dashboard', 'fa fa-dashboard', '', 'Dashboard tips', '1', '1497429920', '1497429920', '143', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('2', 'file', '0', 'general', 'General', 'fa fa-cogs', '', '', '1', '1497429920', '1497430169', '137', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('4', 'file', '0', 'addon', 'Addon', 'fa fa-rocket', '', 'Addon tips', '1', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('5', 'file', '0', 'auth', 'Auth', 'fa fa-group', '', '', '1', '1497429920', '1497430092', '99', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('6', 'file', '2', 'general/config', 'Config', 'fa fa-cog', '', 'Config tips', '1', '1497429920', '1497430683', '60', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('7', 'file', '2', 'general/attachment', 'Attachment', 'fa fa-file-image-o', '', 'Attachment tips', '1', '1497429920', '1497430699', '53', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('8', 'file', '2', 'general/profile', 'Profile', 'fa fa-user', '', '', '1', '1497429920', '1497429920', '34', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('9', 'file', '5', 'auth/admin', 'Admin', 'fa fa-user', '', 'Admin tips', '1', '1497429920', '1497430320', '118', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('10', 'file', '5', 'auth/adminlog', 'Admin log', 'fa fa-list-alt', '', 'Admin log tips', '1', '1497429920', '1497430307', '113', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('11', 'file', '5', 'auth/group', 'Group', 'fa fa-group', '', 'Group tips', '1', '1497429920', '1497429920', '109', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('12', 'file', '5', 'auth/rule', 'Rule', 'fa fa-bars', '', 'Rule tips', '1', '1497429920', '1497430581', '104', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('13', 'file', '1', 'dashboard/index', 'View', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '136', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('14', 'file', '1', 'dashboard/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '135', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('15', 'file', '1', 'dashboard/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '133', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('16', 'file', '1', 'dashboard/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '134', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('17', 'file', '1', 'dashboard/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '132', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('18', 'file', '6', 'general/config/index', 'View', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '52', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('19', 'file', '6', 'general/config/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '51', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('20', 'file', '6', 'general/config/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '50', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('21', 'file', '6', 'general/config/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '49', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('22', 'file', '6', 'general/config/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '48', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('23', 'file', '7', 'general/attachment/index', 'View', 'fa fa-circle-o', '', 'Attachment tips', '0', '1497429920', '1497429920', '59', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('24', 'file', '7', 'general/attachment/select', 'Select attachment', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '58', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('25', 'file', '7', 'general/attachment/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '57', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('26', 'file', '7', 'general/attachment/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '56', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('27', 'file', '7', 'general/attachment/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '55', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('28', 'file', '7', 'general/attachment/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '54', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('29', 'file', '8', 'general/profile/index', 'View', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '33', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('30', 'file', '8', 'general/profile/update', 'Update profile', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '32', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('31', 'file', '8', 'general/profile/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '31', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('32', 'file', '8', 'general/profile/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '30', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('33', 'file', '8', 'general/profile/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '29', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('34', 'file', '8', 'general/profile/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '28', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('40', 'file', '9', 'auth/admin/index', 'View', 'fa fa-circle-o', '', 'Admin tips', '0', '1497429920', '1497429920', '117', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('41', 'file', '9', 'auth/admin/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '116', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('42', 'file', '9', 'auth/admin/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '115', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('43', 'file', '9', 'auth/admin/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '114', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('44', 'file', '10', 'auth/adminlog/index', 'View', 'fa fa-circle-o', '', 'Admin log tips', '0', '1497429920', '1497429920', '112', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('45', 'file', '10', 'auth/adminlog/detail', 'Detail', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '111', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('46', 'file', '10', 'auth/adminlog/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '110', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('47', 'file', '11', 'auth/group/index', 'View', 'fa fa-circle-o', '', 'Group tips', '0', '1497429920', '1497429920', '108', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('48', 'file', '11', 'auth/group/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '107', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('49', 'file', '11', 'auth/group/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '106', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('50', 'file', '11', 'auth/group/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '105', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('51', 'file', '12', 'auth/rule/index', 'View', 'fa fa-circle-o', '', 'Rule tips', '0', '1497429920', '1497429920', '103', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('52', 'file', '12', 'auth/rule/add', 'Add', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '102', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('53', 'file', '12', 'auth/rule/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '101', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('54', 'file', '12', 'auth/rule/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1497429920', '1497429920', '100', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('55', 'file', '4', 'addon/index', 'View', 'fa fa-circle-o', '', 'Addon tips', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('56', 'file', '4', 'addon/add', 'Add', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('57', 'file', '4', 'addon/edit', 'Edit', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('58', 'file', '4', 'addon/del', 'Delete', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('59', 'file', '4', 'addon/local', 'Local install', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('60', 'file', '4', 'addon/state', 'Update state', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('61', 'file', '4', 'addon/install', 'Install', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('62', 'file', '4', 'addon/uninstall', 'Uninstall', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('63', 'file', '4', 'addon/config', 'Setting', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('64', 'file', '4', 'addon/refresh', 'Refresh', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('65', 'file', '4', 'addon/multi', 'Multi', 'fa fa-circle-o', '', '', '0', '1502035509', '1502035509', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('85', 'file', '0', 'command', '在线命令管理', 'fa fa-terminal', '', '', '1', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('86', 'file', '85', 'command/index', '查看', 'fa fa-circle-o', '', '', '0', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('87', 'file', '85', 'command/add', '添加', 'fa fa-circle-o', '', '', '0', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('88', 'file', '85', 'command/detail', '详情', 'fa fa-circle-o', '', '', '0', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('89', 'file', '85', 'command/execute', '运行', 'fa fa-circle-o', '', '', '0', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('90', 'file', '85', 'command/del', '删除', 'fa fa-circle-o', '', '', '0', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('91', 'file', '85', 'command/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558319898', '1558319898', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('92', 'file', '107', 'user', '用户管理', 'fa fa-user', '', '', '1', '1558331113', '1558347820', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('93', 'file', '92', 'user/index', '查看', 'fa fa-circle-o', '', '', '0', '1558331113', '1558331113', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('94', 'file', '92', 'user/add', '添加', 'fa fa-circle-o', '', '', '0', '1558331113', '1558331113', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('95', 'file', '92', 'user/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558331113', '1558331113', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('96', 'file', '92', 'user/del', '删除', 'fa fa-circle-o', '', '', '0', '1558331113', '1558331113', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('97', 'file', '92', 'user/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558331113', '1558331113', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('98', 'file', '0', 'test', '测试管理', 'fa fa-circle-o', '', '', '1', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('99', 'file', '98', 'test/index', '查看', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('100', 'file', '98', 'test/recyclebin', '回收站', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('101', 'file', '98', 'test/add', '添加', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('102', 'file', '98', 'test/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('103', 'file', '98', 'test/del', '删除', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('104', 'file', '98', 'test/destroy', '真实删除', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('105', 'file', '98', 'test/restore', '还原', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('106', 'file', '98', 'test/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558331323', '1558331323', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('107', 'file', '0', 'usermanage', '用户管理', 'fa fa-user-circle', '', '', '1', '1558347801', '1558347801', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('108', 'file', '121', 'ad', '首页轮播图', 'fa fa-eye', '', '', '1', '1558400980', '1558403329', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('109', 'file', '108', 'ad/index', '查看', 'fa fa-circle-o', '', '', '0', '1558400980', '1558400980', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('110', 'file', '108', 'ad/add', '添加', 'fa fa-circle-o', '', '', '0', '1558400980', '1558400980', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('111', 'file', '108', 'ad/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558400980', '1558400980', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('112', 'file', '108', 'ad/del', '删除', 'fa fa-circle-o', '', '', '0', '1558400980', '1558400980', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('113', 'file', '108', 'ad/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558400980', '1558400980', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('114', 'file', '120', 'welfare', '福利设置', 'fa fa-star-o', '', '', '1', '1558402903', '1558403209', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('115', 'file', '114', 'welfare/index', '查看', 'fa fa-circle-o', '', '', '0', '1558402903', '1558402903', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('116', 'file', '114', 'welfare/add', '添加', 'fa fa-circle-o', '', '', '0', '1558402903', '1558402903', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('117', 'file', '114', 'welfare/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558402903', '1558402903', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('118', 'file', '114', 'welfare/del', '删除', 'fa fa-circle-o', '', '', '0', '1558402903', '1558402903', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('119', 'file', '114', 'welfare/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558402903', '1558402903', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('120', 'file', '0', 'jobmanage', '职位管理', 'fa fa-list', '', '', '1', '1558403171', '1558403171', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('121', 'file', '0', 'settings', '系统设置', 'fa fa-wrench', '', '', '1', '1558403290', '1558403290', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('122', 'file', '120', 'job', '职位列表', 'fa fa-dedent', '', '', '1', '1558403642', '1558403700', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('123', 'file', '122', 'job/index', '查看', 'fa fa-circle-o', '', '', '0', '1558403642', '1558403642', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('124', 'file', '122', 'job/add', '添加', 'fa fa-circle-o', '', '', '0', '1558403642', '1558403642', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('125', 'file', '122', 'job/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558403642', '1558403642', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('126', 'file', '122', 'job/del', '删除', 'fa fa-circle-o', '', '', '0', '1558403642', '1558403642', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('127', 'file', '122', 'job/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558403642', '1558403642', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('128', 'file', '120', 'jobrecord', '入职记录', 'fa fa-reorder', '', '', '1', '1558407305', '1558407541', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('129', 'file', '128', 'jobrecord/index', '查看', 'fa fa-circle-o', '', '', '0', '1558407305', '1558407305', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('130', 'file', '128', 'jobrecord/add', '添加', 'fa fa-circle-o', '', '', '0', '1558407305', '1558407305', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('131', 'file', '128', 'jobrecord/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558407305', '1558407305', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('132', 'file', '128', 'jobrecord/del', '删除', 'fa fa-circle-o', '', '', '0', '1558407305', '1558407305', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('133', 'file', '128', 'jobrecord/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558407305', '1558407305', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('134', 'file', '0', 'dynamicmanage', '动态管理', 'fa fa-comments', '', '', '1', '1558408066', '1558408066', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('135', 'file', '134', 'dynamicad', '轮播图', 'fa fa-photo', '', '', '1', '1558408133', '1558408266', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('136', 'file', '135', 'dynamicad/index', '查看', 'fa fa-circle-o', '', '', '0', '1558408133', '1558408133', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('137', 'file', '135', 'dynamicad/add', '添加', 'fa fa-circle-o', '', '', '0', '1558408133', '1558408133', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('138', 'file', '135', 'dynamicad/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558408133', '1558408133', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('139', 'file', '135', 'dynamicad/del', '删除', 'fa fa-circle-o', '', '', '0', '1558408133', '1558408133', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('140', 'file', '135', 'dynamicad/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558408133', '1558408133', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('141', 'file', '134', 'dynamic', '动态列表', 'fa fa-ellipsis-h', '', '', '1', '1558408391', '1558408453', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('142', 'file', '141', 'dynamic/index', '查看', 'fa fa-circle-o', '', '', '0', '1558408391', '1558408391', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('143', 'file', '141', 'dynamic/add', '添加', 'fa fa-circle-o', '', '', '0', '1558408391', '1558408391', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('144', 'file', '141', 'dynamic/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558408391', '1558408391', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('145', 'file', '141', 'dynamic/del', '删除', 'fa fa-circle-o', '', '', '0', '1558408391', '1558408391', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('146', 'file', '141', 'dynamic/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558408391', '1558408391', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('147', 'file', '120', 'signup', '帮助报名', 'fa fa-address-book-o', '', '', '1', '1558418594', '1558418631', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('148', 'file', '147', 'signup/index', '查看', 'fa fa-circle-o', '', '', '0', '1558418594', '1558418594', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('149', 'file', '147', 'signup/add', '添加', 'fa fa-circle-o', '', '', '0', '1558418594', '1558418594', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('150', 'file', '147', 'signup/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558418594', '1558418594', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('151', 'file', '147', 'signup/del', '删除', 'fa fa-circle-o', '', '', '0', '1558418594', '1558418594', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('152', 'file', '147', 'signup/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558418594', '1558418594', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('153', 'file', '0', 'txmanage', '提现管理', 'fa fa-money', '', '', '1', '1558419811', '1558419811', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('154', 'file', '153', 'txrecord', '提现申请', 'fa fa-align-left', '', '', '1', '1558419925', '1558419957', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('155', 'file', '154', 'txrecord/index', '查看', 'fa fa-circle-o', '', '', '0', '1558419925', '1558419925', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('156', 'file', '154', 'txrecord/add', '添加', 'fa fa-circle-o', '', '', '0', '1558419925', '1558419925', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('157', 'file', '154', 'txrecord/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558419925', '1558419925', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('158', 'file', '154', 'txrecord/del', '删除', 'fa fa-circle-o', '', '', '0', '1558419925', '1558419925', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('159', 'file', '154', 'txrecord/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558419925', '1558419925', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('160', 'file', '121', 'general/config/appset', '小程序配置', 'fa fa-wrench', '', '', '1', '1558428038', '1558428038', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('161', 'file', '121', 'general/config/wxpayset', '支付配置', 'fa fa-cc-paypal', '', '', '1', '1558431449', '1558431467', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('162', 'file', '153', 'txdashboard/index', '数据统计', 'fa fa-dashboard', '', '', '1', '1558487636', '1558488730', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('163', 'file', '107', 'agent', '代理管理', 'fa fa-circle-o', '', '', '1', '1558489507', '1558489521', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('164', 'file', '163', 'agent/index', '查看', 'fa fa-circle-o', '', '', '0', '1558489507', '1558489507', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('165', 'file', '163', 'agent/add', '添加', 'fa fa-circle-o', '', '', '0', '1558489507', '1558489507', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('166', 'file', '163', 'agent/edit', '编辑', 'fa fa-circle-o', '', '', '0', '1558489507', '1558489507', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('167', 'file', '163', 'agent/del', '删除', 'fa fa-circle-o', '', '', '0', '1558489507', '1558489507', '0', 'normal');
INSERT INTO `fa_auth_rule` VALUES ('168', 'file', '163', 'agent/multi', '批量更新', 'fa fa-circle-o', '', '', '0', '1558489507', '1558489507', '0', 'normal');
-- ----------------------------
-- Table structure for fa_category
-- ----------------------------
DROP TABLE IF EXISTS `fa_category`;
CREATE TABLE `fa_category` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父ID',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '栏目类型',
`name` varchar(30) NOT NULL DEFAULT '',
`nickname` varchar(50) NOT NULL DEFAULT '',
`flag` set('hot','index','recommend') NOT NULL DEFAULT '',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`diyname` varchar(30) NOT NULL DEFAULT '' COMMENT '自定义名称',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`),
KEY `weigh` (`weigh`,`id`),
KEY `pid` (`pid`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='分类表';
-- ----------------------------
-- Records of fa_category
-- ----------------------------
INSERT INTO `fa_category` VALUES ('1', '0', 'page', '官方新闻', 'news', 'recommend', '/assets/img/qrcode.png', '', '', 'news', '1495262190', '1495262190', '1', 'normal');
INSERT INTO `fa_category` VALUES ('2', '0', 'page', '移动应用', 'mobileapp', 'hot', '/assets/img/qrcode.png', '', '', 'mobileapp', '1495262244', '1495262244', '2', 'normal');
INSERT INTO `fa_category` VALUES ('3', '2', 'page', '微信公众号', 'wechatpublic', 'index', '/assets/img/qrcode.png', '', '', 'wechatpublic', '1495262288', '1495262288', '3', 'normal');
INSERT INTO `fa_category` VALUES ('4', '2', 'page', 'Android开发', 'android', 'recommend', '/assets/img/qrcode.png', '', '', 'android', '1495262317', '1495262317', '4', 'normal');
INSERT INTO `fa_category` VALUES ('5', '0', 'page', '软件产品', 'software', 'recommend', '/assets/img/qrcode.png', '', '', 'software', '1495262336', '1499681850', '5', 'normal');
INSERT INTO `fa_category` VALUES ('6', '5', 'page', '网站建站', 'website', 'recommend', '/assets/img/qrcode.png', '', '', 'website', '1495262357', '1495262357', '6', 'normal');
INSERT INTO `fa_category` VALUES ('7', '5', 'page', '企业管理软件', 'company', 'index', '/assets/img/qrcode.png', '', '', 'company', '1495262391', '1495262391', '7', 'normal');
INSERT INTO `fa_category` VALUES ('8', '6', 'page', 'PC端', 'website-pc', 'recommend', '/assets/img/qrcode.png', '', '', 'website-pc', '1495262424', '1495262424', '8', 'normal');
INSERT INTO `fa_category` VALUES ('9', '6', 'page', '移动端', 'website-mobile', 'recommend', '/assets/img/qrcode.png', '', '', 'website-mobile', '1495262456', '1495262456', '9', 'normal');
INSERT INTO `fa_category` VALUES ('10', '7', 'page', 'CRM系统 ', 'company-crm', 'recommend', '/assets/img/qrcode.png', '', '', 'company-crm', '1495262487', '1495262487', '10', 'normal');
INSERT INTO `fa_category` VALUES ('11', '7', 'page', 'SASS平台软件', 'company-sass', 'recommend', '/assets/img/qrcode.png', '', '', 'company-sass', '1495262515', '1495262515', '11', 'normal');
INSERT INTO `fa_category` VALUES ('12', '0', 'test', '测试1', 'test1', 'recommend', '/assets/img/qrcode.png', '', '', 'test1', '1497015727', '1497015727', '12', 'normal');
INSERT INTO `fa_category` VALUES ('13', '0', 'test', '测试2', 'test2', 'recommend', '/assets/img/qrcode.png', '', '', 'test2', '1497015738', '1497015738', '13', 'normal');
-- ----------------------------
-- Table structure for fa_command
-- ----------------------------
DROP TABLE IF EXISTS `fa_command`;
CREATE TABLE `fa_command` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '类型',
`params` varchar(1500) NOT NULL DEFAULT '' COMMENT '参数',
`command` varchar(1500) NOT NULL DEFAULT '' COMMENT '命令',
`content` text COMMENT '返回结果',
`executetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '执行时间',
`createtime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
`status` enum('successed','failured') NOT NULL DEFAULT 'failured' COMMENT '状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='在线命令表';
-- ----------------------------
-- Records of fa_command
-- ----------------------------
INSERT INTO `fa_command` VALUES ('1', 'crud', '[\"--delete=1\",\"--table=fa_user\"]', 'php think crud --delete=1 --table=fa_user', 'table not found', '1558322757', '1558322757', '1558322757', 'failured');
INSERT INTO `fa_command` VALUES ('2', 'crud', '[\"--delete=1\",\"--table=fa_user\"]', 'php think crud --delete=1 --table=fa_user', null, '1558322880', '1558322880', '1558322880', 'failured');
INSERT INTO `fa_command` VALUES ('3', 'menu', '[\"--delete=1\",\"--controller=user\\/Rule\"]', 'php think menu --delete=1 --controller=user/Rule', 'user/rule\nuser/rule/add\nuser/rule/del\nuser/rule/edit\nuser/rule/index\nuser/rule/multi\nAre you sure you want to delete all those menu? Type \'yes\' to continue: \nUse of undefined constant STDIN - assumed \'STDIN\'', '1558324711', '1558324711', '1558324711', 'failured');
INSERT INTO `fa_command` VALUES ('4', 'menu', '[\"--delete=1\",\"--controller=user\\/Rule\"]', 'php think menu --delete=1 --controller=user/Rule', 'user/rule\nuser/rule/add\nuser/rule/del\nuser/rule/edit\nuser/rule/index\nuser/rule/multi\nAre you sure you want to delete all those menu? Type \'yes\' to continue: \nUse of undefined constant STDIN - assumed \'STDIN\'', '1558324716', '1558324716', '1558324716', 'failured');
INSERT INTO `fa_command` VALUES ('5', 'menu', '[\"--delete=1\",\"--controller=user\\/Rule\"]', 'php think menu --delete=1 --controller=user/Rule', 'user/rule\nuser/rule/add\nuser/rule/del\nuser/rule/edit\nuser/rule/index\nuser/rule/multi\nAre you sure you want to delete all those menu? Type \'yes\' to continue: \nUse of undefined constant STDIN - assumed \'STDIN\'', '1558324725', '1558324725', '1558324725', 'failured');
INSERT INTO `fa_command` VALUES ('6', 'crud', '[\"--table=fa_user\",\"--controller=user\",\"--model=user\",\"--fields=id,nickname,avatar,openid,createtime,status\",\"--local=0\",\"--switchsuffix=status\",\"--headingfilterfield=status\"]', 'php think crud --table=fa_user --controller=user --model=user --fields=id,nickname,avatar,openid,createtime,status --local=0 --switchsuffix=status --headingfilterfield=status', 'model already exists!\nIf you need to rebuild again, use the parameter --force=true', '1558331024', '1558331024', '1558331024', 'failured');
INSERT INTO `fa_command` VALUES ('7', 'crud', '[\"--table=fa_user\",\"--controller=user\",\"--model=user\",\"--fields=id,nickname,avatar,openid,createtime,status\",\"--local=0\",\"--switchsuffix=status\",\"--headingfilterfield=status\"]', 'php think crud --table=fa_user --controller=user --model=user --fields=id,nickname,avatar,openid,createtime,status --local=0 --switchsuffix=status --headingfilterfield=status', 'Build Successed', '1558331092', '1558331092', '1558331092', 'successed');
INSERT INTO `fa_command` VALUES ('8', 'menu', '[\"--controller=User\"]', 'php think menu --controller=User', 'Build Successed!', '1558331113', '1558331113', '1558331113', 'successed');
INSERT INTO `fa_command` VALUES ('9', 'crud', '[\"--table=fa_test\",\"--controller=test\",\"--model=test\"]', 'php think crud --table=fa_test --controller=test --model=test', 'Build Successed', '1558331300', '1558331300', '1558331300', 'successed');
INSERT INTO `fa_command` VALUES ('10', 'menu', '[\"--controller=Test\"]', 'php think menu --controller=Test', 'Build Successed!', '1558331323', '1558331323', '1558331323', 'successed');
INSERT INTO `fa_command` VALUES ('11', 'crud', '[\"--table=fa_ad\",\"--local=0\"]', 'php think crud --table=fa_ad --local=0', 'Build Successed', '1558400974', '1558400974', '1558400974', 'successed');
INSERT INTO `fa_command` VALUES ('12', 'menu', '[\"--controller=Ad\"]', 'php think menu --controller=Ad', 'Build Successed!', '1558400980', '1558400980', '1558400980', 'successed');
INSERT INTO `fa_command` VALUES ('13', 'crud', '[\"--table=fa_welfare\",\"--local=0\"]', 'php think crud --table=fa_welfare --local=0', 'Build Successed', '1558402895', '1558402895', '1558402895', 'successed');
INSERT INTO `fa_command` VALUES ('14', 'menu', '[\"--controller=Welfare\"]', 'php think menu --controller=Welfare', 'Build Successed!', '1558402903', '1558402903', '1558402903', 'successed');
INSERT INTO `fa_command` VALUES ('15', 'crud', '[\"--table=fa_job\",\"--fields=id,company_images,interview_images,dormitory_images,canteen_images,staff_images,entry,recommend,commission,nature,type,state\",\"--local=0\",\"--headingfilterfield=state\"]', 'php think crud --table=fa_job --fields=id,company_images,interview_images,dormitory_images,canteen_images,staff_images,entry,recommend,commission,nature,type,state --local=0 --headingfilterfield=state', 'Build Successed', '1558403633', '1558403633', '1558403633', 'successed');
INSERT INTO `fa_command` VALUES ('16', 'menu', '[\"--controller=Job\"]', 'php think menu --controller=Job', 'Build Successed!', '1558403642', '1558403642', '1558403642', 'successed');
INSERT INTO `fa_command` VALUES ('17', 'crud', '[\"--table=fa_job_record\",\"--controller=jobrecord\",\"--model=jobrecord\",\"--fields=id,job_id,state\",\"--local=0\",\"--headingfilterfield=state\",\"--relation=fa_job\",\"--relationmode=belongsto\",\"--relationforeignkey=job_id\",\"--relationprimarykey=id\",\"--relationfields=entry,recommend,commission\",\"--relation=fa_user\",\"--relationmode=belongsto\",\"--relationforeignkey=user_id\",\"--relationprimarykey=id\",\"--relationfields=nickname,avatar\"]', 'php think crud --table=fa_job_record --controller=jobrecord --model=jobrecord --fields=id,job_id,state --local=0 --headingfilterfield=state --relation=fa_job --relationmode=belongsto --relationforeignkey=job_id --relationprimarykey=id --relationfields=entry,recommend,commission --relation=fa_user --relationmode=belongsto --relationforeignkey=user_id --relationprimarykey=id --relationfields=nickname,avatar', 'Build Successed', '1558407297', '1558407297', '1558407297', 'successed');
INSERT INTO `fa_command` VALUES ('18', 'menu', '[\"--controller=Jobrecord\"]', 'php think menu --controller=Jobrecord', 'Build Successed!', '1558407305', '1558407305', '1558407305', 'successed');
INSERT INTO `fa_command` VALUES ('19', 'crud', '[\"--table=fa_dynamic_ad\",\"--controller=dynamicad\",\"--model=dynamicad\",\"--fields=id,image,dynamic_id\",\"--local=0\"]', 'php think crud --table=fa_dynamic_ad --controller=dynamicad --model=dynamicad --fields=id,image,dynamic_id --local=0', 'Build Successed', '1558408114', '1558408114', '1558408114', 'successed');
INSERT INTO `fa_command` VALUES ('20', 'menu', '[\"--controller=Dynamicad\"]', 'php think menu --controller=Dynamicad', 'Build Successed!', '1558408133', '1558408133', '1558408133', 'successed');
INSERT INTO `fa_command` VALUES ('21', 'crud', '[\"--table=fa_dynamic\",\"--fields=id,title,images,details,type\",\"--local=0\",\"--editorsuffix=details\",\"--headingfilterfield=type\"]', 'php think crud --table=fa_dynamic --fields=id,title,images,details,type --local=0 --editorsuffix=details --headingfilterfield=type', null, '1558408361', '1558408361', '1558408361', 'failured');
INSERT INTO `fa_command` VALUES ('22', 'crud', '[\"--table=fa_dynamic\",\"--fields=id,title,images,details,type\",\"--local=0\"]', 'php think crud --table=fa_dynamic --fields=id,title,images,details,type --local=0', 'Build Successed', '1558408380', '1558408380', '1558408380', 'successed');
INSERT INTO `fa_command` VALUES ('23', 'menu', '[\"--controller=Dynamic\"]', 'php think menu --controller=Dynamic', 'Build Successed!', '1558408391', '1558408391', '1558408391', 'successed');
INSERT INTO `fa_command` VALUES ('24', 'crud', '[\"--table=fa_signup\",\"--fields=id,name,tel,company,job,switch\",\"--local=0\",\"--switchsuffix=switch\",\"--headingfilterfield=switch\"]', 'php think crud --table=fa_signup --fields=id,name,tel,company,job,switch --local=0 --switchsuffix=switch --headingfilterfield=switch', 'Build Successed', '1558418578', '1558418578', '1558418578', 'successed');
INSERT INTO `fa_command` VALUES ('25', 'menu', '[\"--controller=Signup\"]', 'php think menu --controller=Signup', 'Build Successed!', '1558418594', '1558418594', '1558418594', 'successed');
INSERT INTO `fa_command` VALUES ('26', 'crud', '[\"--table=fa_txrecord\",\"--fields=id,tx_cost,sj_cost,createtime,state\",\"--local=0\",\"--headingfilterfield=state\",\"--relation=fa_user\",\"--relationmode=belongsto\",\"--relationforeignkey=user_id\",\"--relationprimarykey=id\",\"--relationfields=nickname,avatar,tel,name\"]', 'php think crud --table=fa_txrecord --fields=id,tx_cost,sj_cost,createtime,state --local=0 --headingfilterfield=state --relation=fa_user --relationmode=belongsto --relationforeignkey=user_id --relationprimarykey=id --relationfields=nickname,avatar,tel,name', 'Build Successed', '1558419915', '1558419915', '1558419915', 'successed');
INSERT INTO `fa_command` VALUES ('27', 'menu', '[\"--controller=Txrecord\"]', 'php think menu --controller=Txrecord', 'Build Successed!', '1558419925', '1558419925', '1558419925', 'successed');
INSERT INTO `fa_command` VALUES ('28', 'crud', '[\"--table=fa_agent\",\"--fields=id,createtime\",\"--local=0\",\"--relation=fa_user\",\"--relationmode=belongsto\",\"--relationforeignkey=user_id\",\"--relationprimarykey=id\",\"--relationfields=nickname,avatar,openid,wechat,tel,name\"]', 'php think crud --table=fa_agent --fields=id,createtime --local=0 --relation=fa_user --relationmode=belongsto --relationforeignkey=user_id --relationprimarykey=id --relationfields=nickname,avatar,openid,wechat,tel,name', 'model already exists!\nIf you need to rebuild again, use the parameter --force=true', '1558489467', '1558489467', '1558489467', 'failured');
INSERT INTO `fa_command` VALUES ('29', 'crud', '[\"--force=1\",\"--table=fa_agent\",\"--fields=id,createtime\",\"--local=0\",\"--relation=fa_user\",\"--relationmode=belongsto\",\"--relationforeignkey=user_id\",\"--relationprimarykey=id\",\"--relationfields=nickname,avatar,openid,wechat,tel,name\"]', 'php think crud --force=1 --table=fa_agent --fields=id,createtime --local=0 --relation=fa_user --relationmode=belongsto --relationforeignkey=user_id --relationprimarykey=id --relationfields=nickname,avatar,openid,wechat,tel,name', 'Build Successed', '1558489500', '1558489500', '1558489501', 'successed');
INSERT INTO `fa_command` VALUES ('30', 'menu', '[\"--controller=Agent\"]', 'php think menu --controller=Agent', 'Build Successed!', '1558489507', '1558489507', '1558489507', 'successed');
INSERT INTO `fa_command` VALUES ('31', 'api', '[\"--output=api1.html\",\"--title=api1\",\"--author=duomu.\",\"--language=zh-cn\"]', 'php think api --output=api1.html --title=api1 --author=duomu. --language=zh-cn', null, '1558605225', '1558605225', '1558605225', 'failured');
INSERT INTO `fa_command` VALUES ('32', 'api', '[\"--force=1\",\"--output=api1.html\",\"--title=api1\",\"--author=duomu.\",\"--language=zh-cn\"]', 'php think api --force=1 --output=api1.html --title=api1 --author=duomu. --language=zh-cn', null, '1558605242', '1558605242', '1558605242', 'failured');
-- ----------------------------
-- Table structure for fa_commission_record
-- ----------------------------
DROP TABLE IF EXISTS `fa_commission_record`;
CREATE TABLE `fa_commission_record` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`user_id` int(11) NOT NULL COMMENT '代理的用户id',
`amount` decimal(10,2) NOT NULL COMMENT '金额',
`pid` int(11) NOT NULL COMMENT '代理的上级的用户id',
`createtime` datetime NOT NULL COMMENT '创建时间',
`note` varchar(255) NOT NULL COMMENT '备注',
`type` int(11) NOT NULL COMMENT '用户类型:1=普通用户,2=代理',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8 COMMENT='代理佣金记录表';
-- ----------------------------
-- Records of fa_commission_record
-- ----------------------------
INSERT INTO `fa_commission_record` VALUES ('111', '18', '200.00', '31', '2019-05-27 11:08:16', '代理佣金', '2');
INSERT INTO `fa_commission_record` VALUES ('112', '31', '100.00', '33', '2019-05-27 11:08:16', '推荐奖', '1');
INSERT INTO `fa_commission_record` VALUES ('113', '33', '1100.00', '34', '2019-05-27 11:08:16', '代理佣金', '2');
INSERT INTO `fa_commission_record` VALUES ('114', '34', '200.00', '35', '2019-05-27 11:08:16', '代理佣金', '2');
INSERT INTO `fa_commission_record` VALUES ('115', '35', '200.00', '0', '2019-05-27 11:08:16', '代理佣金', '2');
INSERT INTO `fa_commission_record` VALUES ('122', '32', '200.00', '31', '2019-05-27 11:14:53', '入职奖', '1');
INSERT INTO `fa_commission_record` VALUES ('123', '31', '100.00', '33', '2019-05-27 11:14:54', '推荐奖', '1');
INSERT INTO `fa_commission_record` VALUES ('124', '33', '1100.00', '34', '2019-05-27 11:14:54', '代理佣金', '2');
INSERT INTO `fa_commission_record` VALUES ('125', '34', '200.00', '35', '2019-05-27 11:14:54', '代理佣金', '2');
INSERT INTO `fa_commission_record` VALUES ('126', '35', '200.00', '0', '2019-05-27 11:14:54', '代理佣金', '2');
-- ----------------------------
-- Table structure for fa_config
-- ----------------------------
DROP TABLE IF EXISTS `fa_config`;
CREATE TABLE `fa_config` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '' COMMENT '变量名',
`group` varchar(30) NOT NULL DEFAULT '' COMMENT '分组',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '变量标题',
`tip` varchar(100) NOT NULL DEFAULT '' COMMENT '变量描述',
`type` varchar(30) NOT NULL DEFAULT '' COMMENT '类型:string,text,int,bool,array,datetime,date,file',
`value` text NOT NULL COMMENT '变量值',
`content` text NOT NULL COMMENT '变量字典数据',
`rule` varchar(100) NOT NULL DEFAULT '' COMMENT '验证规则',
`extend` varchar(255) NOT NULL DEFAULT '' COMMENT '扩展属性',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='系统配置';
-- ----------------------------
-- Records of fa_config
-- ----------------------------
INSERT INTO `fa_config` VALUES ('1', 'name', 'basic', 'Site name', '请填写站点名称', 'string', '兼职小程序', '', 'required', '');
INSERT INTO `fa_config` VALUES ('2', 'beian', 'basic', 'Beian', '粤ICP备15000000号-1', 'string', '', '', '', '');
INSERT INTO `fa_config` VALUES ('3', 'cdnurl', 'basic', 'Cdn url', '如果静态资源使用第三方云储存请配置该值', 'string', '', '', '', '');
INSERT INTO `fa_config` VALUES ('4', 'version', 'basic', 'Version', '如果静态资源有变动请重新配置该值', 'string', '1.0.1', '', 'required', '');
INSERT INTO `fa_config` VALUES ('5', 'timezone', 'basic', 'Timezone', '', 'string', 'Asia/Shanghai', '', 'required', '');
INSERT INTO `fa_config` VALUES ('6', 'forbiddenip', 'basic', 'Forbidden ip', '一行一条记录', 'text', '', '', '', '');
INSERT INTO `fa_config` VALUES ('7', 'languages', 'basic', 'Languages', '', 'array', '{\"backend\":\"zh-cn\",\"frontend\":\"zh-cn\"}', '', 'required', '');
INSERT INTO `fa_config` VALUES ('8', 'fixedpage', 'basic', 'Fixed page', '请尽量输入左侧菜单栏存在的链接', 'string', 'dashboard', '', 'required', '');
INSERT INTO `fa_config` VALUES ('9', 'categorytype', 'dictionary', 'Category type', '', 'array', '{\"default\":\"Default\",\"page\":\"Page\",\"article\":\"Article\",\"test\":\"Test\"}', '', '', '');
INSERT INTO `fa_config` VALUES ('10', 'configgroup', 'dictionary', 'Config group', '', 'array', '{\"basic\":\"Basic\",\"email\":\"Email\",\"dictionary\":\"Dictionary\",\"user\":\"User\",\"example\":\"Example\"}', '', '', '');
INSERT INTO `fa_config` VALUES ('11', 'mail_type', 'email', 'Mail type', '选择邮件发送方式', 'select', '1', '[\"Please select\",\"SMTP\",\"Mail\"]', '', '');
INSERT INTO `fa_config` VALUES ('12', 'mail_smtp_host', 'email', 'Mail smtp host', '错误的配置发送邮件会导致服务器超时', 'string', 'smtp.qq.com', '', '', '');
INSERT INTO `fa_config` VALUES ('13', 'mail_smtp_port', 'email', 'Mail smtp port', '(不加密默认25,SSL默认465,TLS默认587)', 'string', '465', '', '', '');
INSERT INTO `fa_config` VALUES ('14', 'mail_smtp_user', 'email', 'Mail smtp user', '(填写完整用户名)', 'string', '10000', '', '', '');
INSERT INTO `fa_config` VALUES ('15', 'mail_smtp_pass', 'email', 'Mail smtp password', '(填写您的密码)', 'string', 'password', '', '', '');
INSERT INTO `fa_config` VALUES ('16', 'mail_verify_type', 'email', 'Mail vertify type', '(SMTP验证方式[推荐SSL])', 'select', '2', '[\"None\",\"TLS\",\"SSL\"]', '', '');
INSERT INTO `fa_config` VALUES ('17', 'mail_from', 'email', 'Mail from', '', 'string', '<EMAIL>', '', '', '');
INSERT INTO `fa_config` VALUES ('18', 'appid', 'appset', 'Appid', '小程序的appid', 'string', 'wxa9fb59a1009e0894', '', 'required', '');
INSERT INTO `fa_config` VALUES ('19', 'appsecret', 'appset', 'Appsecret', '小程序的appsecret', 'string', '08aae97f27f492b550ea15886c84bd3c', '', 'required', '');
INSERT INTO `fa_config` VALUES ('20', 'mch_id', 'wxpayset', 'Mch_id', '商户号id', 'string', '1524685213', '', 'required', '');
INSERT INTO `fa_config` VALUES ('21', 'apisecret', 'wxpayset', 'Apisecret', 'api秘钥', 'string', '12345678123456781234567812345678', '', 'required', '');
INSERT INTO `fa_config` VALUES ('22', 'apiclient_cert', 'wxpayset', 'Apiclient_cert', 'apiclient_cert.pem', 'text', 'test', '', 'required', '');
INSERT INTO `fa_config` VALUES ('23', 'apiclient_key', 'wxpayset', 'Apiclient_key', 'apiclient_key.pem', 'text', 'test2', '', 'required', '');
INSERT INTO `fa_config` VALUES ('24', 'ip', 'wxpayset', 'Ip', '服务器ip', 'text', '127.0.0.1', '', 'required', '');
-- ----------------------------
-- Table structure for fa_dynamic
-- ----------------------------
DROP TABLE IF EXISTS `fa_dynamic`;
CREATE TABLE `fa_dynamic` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`title` varchar(500) NOT NULL COMMENT '标题',
`images` text NOT NULL COMMENT '轮播图',
`details` text NOT NULL COMMENT '动态详情',
`type` enum('1','2') NOT NULL DEFAULT '1' COMMENT '动态类型:1=普通用户可查看,2=代理商可查看',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='动态表';
-- ----------------------------
-- Records of fa_dynamic
-- ----------------------------
INSERT INTO `fa_dynamic` VALUES ('1', '动态11111', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg,/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', '<h2 style=\"text-align: center; \"><b><i>这是加大加粗还斜体的标题</i></b></h2><blockquote style=\"color: rgb(0, 0, 0); text-align: center;\"><p><span style=\"font-size: 12px;\">这是正文asda</span>asdasdasdasd<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdas<span style=\"font-size: 12px;\">正文asda</span>asdasdasasdasdasdasdasdasdsd</p><p><b>这里是结尾1</b></p></blockquote><h1 style=\"color: rgb(0, 0, 0); text-align: center;\"><span style=\"font-size: 12px;\"></span></h1>', '1');
INSERT INTO `fa_dynamic` VALUES ('2', '动态2', '/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg,/uploads/20190521/85bf06bb5108d81111cb2d0bf3c862a2.jpg', '<ol><li>sad按时的啊是的阿萨德啊实打实</li><li>按时d按时 asd 阿萨德</li><li> 阿萨德撒 按时daas </li><li>按时打算d按时</li><li>a是d按时</li><li>da是</li><li>按时</li><li>sa da是</li><li>as </li><li>阿萨德</li><li>as dsa</li></ol>', '2');
INSERT INTO `fa_dynamic` VALUES ('3', '动态3', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png,/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg,/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg,/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg', '<p><b>asdasdasdasd</b></p><p><u>asdasdasdasdasda</u></p>', '2');
-- ----------------------------
-- Table structure for fa_dynamic_ad
-- ----------------------------
DROP TABLE IF EXISTS `fa_dynamic_ad`;
CREATE TABLE `fa_dynamic_ad` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`image` text NOT NULL COMMENT '图片',
`dynamic_id` int(11) NOT NULL COMMENT '链接动态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='动态轮播图';
-- ----------------------------
-- Records of fa_dynamic_ad
-- ----------------------------
INSERT INTO `fa_dynamic_ad` VALUES ('1', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', '1');
INSERT INTO `fa_dynamic_ad` VALUES ('2', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', '2');
-- ----------------------------
-- Table structure for fa_ems
-- ----------------------------
DROP TABLE IF EXISTS `fa_ems`;
CREATE TABLE `fa_ems` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`event` varchar(30) NOT NULL DEFAULT '' COMMENT '事件',
`email` varchar(100) NOT NULL DEFAULT '' COMMENT '邮箱',
`code` varchar(10) NOT NULL DEFAULT '' COMMENT '验证码',
`times` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '验证次数',
`ip` varchar(30) NOT NULL DEFAULT '' COMMENT 'IP',
`createtime` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='邮箱验证码表';
-- ----------------------------
-- Records of fa_ems
-- ----------------------------
-- ----------------------------
-- Table structure for fa_formid
-- ----------------------------
DROP TABLE IF EXISTS `fa_formid`;
CREATE TABLE `fa_formid` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`form_id` text NOT NULL COMMENT 'form_id',
`openid` varchar(300) NOT NULL COMMENT '用户的openid',
`createtime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='form_id表';
-- ----------------------------
-- Records of fa_formid
-- ----------------------------
INSERT INTO `fa_formid` VALUES ('1', 'asdasd', 'user1', '2019-05-28 10:44:06');
-- ----------------------------
-- Table structure for fa_job
-- ----------------------------
DROP TABLE IF EXISTS `fa_job`;
CREATE TABLE `fa_job` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`company_images` text NOT NULL COMMENT '公司',
`interview_images` text NOT NULL COMMENT '面试',
`dormitory_images` text NOT NULL COMMENT '宿舍',
`canteen_images` text NOT NULL COMMENT '食堂',
`staff_images` text NOT NULL COMMENT '员工风采',
`entry` decimal(10,2) NOT NULL COMMENT '入职奖',
`recommend` decimal(10,2) NOT NULL COMMENT '推荐奖',
`commission` decimal(10,2) NOT NULL COMMENT '代理佣金',
`salary` varchar(300) NOT NULL COMMENT '薪资结算',
`base_salary` varchar(300) NOT NULL COMMENT '基本工资',
`pay_salary` varchar(300) NOT NULL COMMENT '薪资发放',
`nature` varchar(300) NOT NULL COMMENT '性质',
`type` varchar(300) NOT NULL COMMENT '类型',
`number` int(11) NOT NULL COMMENT '招聘人数',
`requirement` text NOT NULL COMMENT '要求',
`worktime` varchar(300) NOT NULL COMMENT '工作时间',
`welfare` varchar(300) NOT NULL COMMENT '工作福利',
`introduce` text NOT NULL COMMENT '公司介绍',
`bonus` varchar(300) NOT NULL COMMENT '奖金',
`state` enum('1','2') NOT NULL DEFAULT '1' COMMENT '状态:1=进行中,2=已完成',
`address` varchar(300) NOT NULL COMMENT '地址',
`location` varchar(200) NOT NULL COMMENT '地址坐标',
`company` varchar(300) NOT NULL COMMENT '公司名称',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='职位表';
-- ----------------------------
-- Records of fa_job
-- ----------------------------
INSERT INTO `fa_job` VALUES ('1', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg,/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg,/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg,/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg,/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg,/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '200.00', '100.00', '500.00', '按月结算3000-4500', '2000/月', '每月15号发放', '服务业', '程序员鼓励师', '15', '男女不限/16-37岁/学历不限', '9:00-18:30', '3,6,4', '华为是全球领先的ICT(信息与通信)基础设施和智能终端提供商,致力于把数字世界带入每个人、每个家庭、每个组织,构建万物互联的智能世界。我们在通信网络、IT、智能终端和云服务等领域为客户提供有竞争力、安全可信赖的产品、解决方案与服务,与生态伙伴开放合作,持续为客户创造价值,释放个人潜能,丰富家庭生活,激发组织创新。华为坚持围绕客户需求持续创新,加大基础研究投入,厚积薄发,推动世界进步。华为成立于1987年,是一家由员工持有全部股份的民营企业,目前有18万员工,业务遍及170多个国家和地区。', '全勤奖 年终奖 年度旅游', '1', '四川省成都市金牛区西安路街道抚琴西南路12-附1号抚琴西南路14号院', '30.676885,104.036896', '好不凑巧网络科技有限公司');
INSERT INTO `fa_job` VALUES ('2', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', '/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg', '/uploads/20190521/85bf06bb5108d81111cb2d0bf3c862a2.jpg', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg,/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', '200.00', '100.00', '200.00', '按月结算3000-4500', '2000/月', '每月15号发放', '服务业', '客服专员', '15', '工作经验2年/学历不限/为人乐观', '9:00-18:30', '3,6,4,5,2', '这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍这是公司介绍', '全勤奖 年终奖 年度旅游', '1', '四川省成都市成华区双桥子街道新华社区新华社区北区', '30.657395,104.10762', '恰巧网络科技公司');
INSERT INTO `fa_job` VALUES ('3', 'test', 'asd', 'asd', 'asd', 'asd', '123123.00', '123.00', '123.00', '123', '123', '123', '123', '12', '123', '123', '123', '6,2', '123', '123', '1', '四川省成都市锦江区书院街街道福字街社区(穿巷子)', '30.656213,104.082901', '123');
INSERT INTO `fa_job` VALUES ('4', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', '/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg', '/uploads/20190521/85bf06bb5108d81111cb2d0bf3c862a2.jpg', '/uploads/20190521/e878ab120b059b63b76ed97ccaab4248.jpg', '200.00', '100.00', '1500.00', '按月结算6000-8000', '4000/月', '每月15号发放', '软件开发行业', 'PHPER', '1', '工作经验2年/学历不限/精通php', '9:00-18:30', '6,4,2', '恰巧恰巧恰巧恰巧恰巧恰巧恰巧恰巧恰巧', '全勤奖 年终奖 年度旅游', '1', '四川省成都市锦江区柳江街道毕升路', '30.592315,104.091726', '恰巧网络科技公司');
INSERT INTO `fa_job` VALUES ('5', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', '200.00', '100.00', '1500.00', '按月结算3000-4500', '2000/月', '每月15号发放', '服务业', '客服专员', '13', 'asdasdasdasdasd', '9:00-18:30', '6,4,5,3', 'asdasdasdsa', '全勤奖 年终奖 年度旅游', '1', '四川省成都市青羊区西御河街道四川科技馆', '30.659462,104.065735', '恰巧网络科技公司');
-- ----------------------------
-- Table structure for fa_job_record
-- ----------------------------
DROP TABLE IF EXISTS `fa_job_record`;
CREATE TABLE `fa_job_record` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(11) NOT NULL COMMENT '用户id',
`job_id` int(11) NOT NULL COMMENT '职位id',
`state` enum('wait','pass','refuse') NOT NULL COMMENT '状态:wait=待确认,pass=已入职,refuse=已拒绝',
`entry` decimal(10,2) NOT NULL COMMENT '入职奖',
`recommend` decimal(10,2) NOT NULL COMMENT '推荐奖',
`commission` decimal(10,2) NOT NULL COMMENT '代理佣金',
`createtime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='入职记录表';
-- ----------------------------
-- Records of fa_job_record
-- ----------------------------
INSERT INTO `fa_job_record` VALUES ('4', '18', '5', 'wait', '200.00', '100.00', '1500.00', '2019-05-28 09:56:07');
-- ----------------------------
-- Table structure for fa_job_welfare
-- ----------------------------
DROP TABLE IF EXISTS `fa_job_welfare`;
CREATE TABLE `fa_job_welfare` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`welfare_id` int(11) NOT NULL COMMENT '福利id',
`job_id` int(11) NOT NULL COMMENT '职位id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COMMENT='职位福利关联表';
-- ----------------------------
-- Records of fa_job_welfare
-- ----------------------------
INSERT INTO `fa_job_welfare` VALUES ('9', '6', '3');
INSERT INTO `fa_job_welfare` VALUES ('10', '2', '3');
INSERT INTO `fa_job_welfare` VALUES ('11', '3', '2');
INSERT INTO `fa_job_welfare` VALUES ('12', '6', '2');
INSERT INTO `fa_job_welfare` VALUES ('13', '4', '2');
INSERT INTO `fa_job_welfare` VALUES ('14', '5', '2');
INSERT INTO `fa_job_welfare` VALUES ('15', '2', '2');
INSERT INTO `fa_job_welfare` VALUES ('16', '3', '1');
INSERT INTO `fa_job_welfare` VALUES ('17', '6', '1');
INSERT INTO `fa_job_welfare` VALUES ('18', '4', '1');
INSERT INTO `fa_job_welfare` VALUES ('19', '6', '4');
INSERT INTO `fa_job_welfare` VALUES ('20', '4', '4');
INSERT INTO `fa_job_welfare` VALUES ('21', '2', '4');
INSERT INTO `fa_job_welfare` VALUES ('22', '6', '5');
INSERT INTO `fa_job_welfare` VALUES ('23', '4', '5');
INSERT INTO `fa_job_welfare` VALUES ('24', '5', '5');
INSERT INTO `fa_job_welfare` VALUES ('25', '3', '5');
-- ----------------------------
-- Table structure for fa_likes
-- ----------------------------
DROP TABLE IF EXISTS `fa_likes`;
CREATE TABLE `fa_likes` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`dynamic_id` int(11) NOT NULL COMMENT '动态id',
`user_id` int(11) NOT NULL COMMENT '用户id',
`createtime` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='点赞表';
-- ----------------------------
-- Records of fa_likes
-- ----------------------------
INSERT INTO `fa_likes` VALUES ('1', '3', '18', '2019-05-28 10:08:55');
-- ----------------------------
-- Table structure for fa_signup
-- ----------------------------
DROP TABLE IF EXISTS `fa_signup`;
CREATE TABLE `fa_signup` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(300) NOT NULL COMMENT '姓名',
`tel` bigint(11) NOT NULL COMMENT '电话号',
`company` varchar(300) NOT NULL COMMENT '公司',
`job` varchar(300) NOT NULL COMMENT '职位',
`switch` enum('1','2') NOT NULL DEFAULT '1' COMMENT '阅读状态:1=未读,2=已读',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='帮助报名表';
-- ----------------------------
-- Records of fa_signup
-- ----------------------------
INSERT INTO `fa_signup` VALUES ('1', '陈林', '12312312312', '人体医学工程终生责任有限公司', '搬运红细胞,凝血止血', '1');
INSERT INTO `fa_signup` VALUES ('2', '张三', '12312312312', '公司名称', '工作', '1');
INSERT INTO `fa_signup` VALUES ('3', '陈林', '12312312312', '某个公司', 'php攻城狮', '1');
-- ----------------------------
-- Table structure for fa_sms
-- ----------------------------
DROP TABLE IF EXISTS `fa_sms`;
CREATE TABLE `fa_sms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`event` varchar(30) NOT NULL DEFAULT '' COMMENT '事件',
`mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '手机号',
`code` varchar(10) NOT NULL DEFAULT '' COMMENT '验证码',
`times` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '验证次数',
`ip` varchar(30) NOT NULL DEFAULT '' COMMENT 'IP',
`createtime` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='短信验证码表';
-- ----------------------------
-- Records of fa_sms
-- ----------------------------
-- ----------------------------
-- Table structure for fa_test
-- ----------------------------
DROP TABLE IF EXISTS `fa_test`;
CREATE TABLE `fa_test` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(10) NOT NULL DEFAULT '0' COMMENT '管理员ID',
`category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID(单选)',
`category_ids` varchar(100) NOT NULL COMMENT '分类ID(多选)',
`week` enum('monday','tuesday','wednesday') NOT NULL COMMENT '星期(单选):monday=星期一,tuesday=星期二,wednesday=星期三',
`flag` set('hot','index','recommend') NOT NULL DEFAULT '' COMMENT '标志(多选):hot=热门,index=首页,recommend=推荐',
`genderdata` enum('male','female') NOT NULL DEFAULT 'male' COMMENT '性别(单选):male=男,female=女',
`hobbydata` set('music','reading','swimming') NOT NULL COMMENT '爱好(多选):music=音乐,reading=读书,swimming=游泳',
`title` varchar(50) NOT NULL DEFAULT '' COMMENT '标题',
`content` text NOT NULL COMMENT '内容',
`image` varchar(100) NOT NULL DEFAULT '' COMMENT '图片',
`images` varchar(1500) NOT NULL DEFAULT '' COMMENT '图片组',
`attachfile` varchar(100) NOT NULL DEFAULT '' COMMENT '附件',
`keywords` varchar(100) NOT NULL DEFAULT '' COMMENT '关键字',
`description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
`city` varchar(100) NOT NULL DEFAULT '' COMMENT '省市',
`json` varchar(255) DEFAULT NULL COMMENT '配置:key=名称,value=值',
`price` float(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '价格',
`views` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '点击',
`startdate` date DEFAULT NULL COMMENT '开始日期',
`activitytime` datetime DEFAULT NULL COMMENT '活动时间(datetime)',
`year` year(4) DEFAULT NULL COMMENT '年',
`times` time DEFAULT NULL COMMENT '时间',
`refreshtime` int(10) DEFAULT NULL COMMENT '刷新时间(int)',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`deletetime` int(10) DEFAULT NULL COMMENT '删除时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`switch` tinyint(1) NOT NULL DEFAULT '0' COMMENT '开关',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态',
`state` enum('0','1','2') NOT NULL DEFAULT '1' COMMENT '状态值:0=禁用,1=正常,2=推荐',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='测试表';
-- ----------------------------
-- Records of fa_test
-- ----------------------------
INSERT INTO `fa_test` VALUES ('1', '0', '12', '12,13', 'monday', 'hot,index', 'male', 'music,reading', '我是一篇测试文章', '<p>我是测试内容</p>', '/assets/img/avatar.png', '/assets/img/avatar.png,/assets/img/qrcode.png', '/assets/img/avatar.png', '关键字', '描述', '广西壮族自治区/百色市/平果县', '{\"a\":\"1\",\"b\":\"2\"}', '0.00', '0', '2017-07-10', '2017-07-10 18:24:45', '2017', '18:24:45', '1499682285', '1499682526', '1499682526', null, '0', '1', 'normal', '1');
-- ----------------------------
-- Table structure for fa_txrecord
-- ----------------------------
DROP TABLE IF EXISTS `fa_txrecord`;
CREATE TABLE `fa_txrecord` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(11) NOT NULL COMMENT '用户id',
`tx_cost` decimal(10,2) NOT NULL COMMENT '提现金额',
`sj_cost` decimal(10,2) NOT NULL COMMENT '实际金额',
`createtime` datetime NOT NULL COMMENT '创建时间',
`state` enum('wait','pass','refuse') NOT NULL COMMENT '审核状态:wait=待审核,pass=已通过,refuse=已拒绝',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户提现申请表';
-- ----------------------------
-- Records of fa_txrecord
-- ----------------------------
-- ----------------------------
-- Table structure for fa_user
-- ----------------------------
DROP TABLE IF EXISTS `fa_user`;
CREATE TABLE `fa_user` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`nickname` varchar(300) NOT NULL COMMENT '昵称',
`avatar` text NOT NULL COMMENT '头像',
`openid` varchar(300) NOT NULL COMMENT 'openid',
`createtime` datetime NOT NULL COMMENT '创建时间',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '状态:normal=正常,hidden=禁用',
`is_ban` enum('1','0') NOT NULL DEFAULT '0' COMMENT '是否禁用用户的邀请权限:1为禁用,0为不禁用',
`wechat` varchar(300) NOT NULL COMMENT '微信号',
`tel` bigint(11) NOT NULL COMMENT '手机号',
`name` varchar(300) NOT NULL COMMENT '姓名',
`balance` decimal(10,2) NOT NULL COMMENT '余额',
`pid` int(11) NOT NULL COMMENT '上级id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='用户表';
-- ----------------------------
-- Records of fa_user
-- ----------------------------
INSERT INTO `fa_user` VALUES ('18', 'user1', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', 'user1', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '600.00', '0');
INSERT INTO `fa_user` VALUES ('19', 'user2', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', 'user2', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('20', 'user11', '/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg', 'user11', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('21', 'user12', '/uploads/20190521/85bf06bb5108d81111cb2d0bf3c862a2.jpg', 'user12', '2019-05-22 11:00:00', 'normal', '0', '', '0', '', '4200.00', '18');
INSERT INTO `fa_user` VALUES ('22', 'user21', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', 'user21', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('23', 'user22', '/uploads/20190520/d2d84e70ac25333d959c9759261f4b21.jpg', 'user22', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('24', 'user111', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', 'user111', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('25', 'user112', '/uploads/20190521/952b84a84bdaefec1224364c95ebb53a.jpg', 'user112', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('26', 'user113', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', 'user113', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('27', 'user121', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', 'user121', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('28', 'user1111', '/uploads/20190520/cc4dcf888ab3502ee64f3dc09669f02a.jpg', 'user1111', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('29', 'user1112', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', 'user1112', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '0.00', '0');
INSERT INTO `fa_user` VALUES ('30', 'user1121', '/uploads/20190521/9ab6b8c0e6e5f070cc6ab95269761f28.jpg', 'user1121', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '600.00', '21');
INSERT INTO `fa_user` VALUES ('31', '用户测试1', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', 'test1', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '200.00', '33');
INSERT INTO `fa_user` VALUES ('32', '用户测试2', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', 'test2', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '400.00', '31');
INSERT INTO `fa_user` VALUES ('33', '代理测试2', '/uploads/20190523/5bf611e402559427aae5b84ad227a266.png', 'test22', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '2200.00', '0');
INSERT INTO `fa_user` VALUES ('34', '代理测试1', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', 'test11', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '400.00', '0');
INSERT INTO `fa_user` VALUES ('35', '代理测试3', '/uploads/20190521/6aef9eb39d62df20a4dac1230694817b.jpg', 'daili3', '0000-00-00 00:00:00', 'normal', '0', '', '0', '', '400.00', '0');
-- ----------------------------
-- Table structure for fa_user_group
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_group`;
CREATE TABLE `fa_user_group` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT '' COMMENT '组名',
`rules` text COMMENT '权限节点',
`createtime` int(10) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`status` enum('normal','hidden') DEFAULT NULL COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员组表';
-- ----------------------------
-- Records of fa_user_group
-- ----------------------------
INSERT INTO `fa_user_group` VALUES ('1', '默认组', '1,2,3,4,5,6,7,8,9,10,11,12', '1515386468', '1516168298', 'normal');
-- ----------------------------
-- Table structure for fa_user_money_log
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_money_log`;
CREATE TABLE `fa_user_money_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '变更余额',
`before` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '变更前余额',
`after` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '变更后余额',
`memo` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员余额变动表';
-- ----------------------------
-- Records of fa_user_money_log
-- ----------------------------
-- ----------------------------
-- Table structure for fa_user_rule
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_rule`;
CREATE TABLE `fa_user_rule` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) DEFAULT NULL COMMENT '父ID',
`name` varchar(50) DEFAULT NULL COMMENT '名称',
`title` varchar(50) DEFAULT '' COMMENT '标题',
`remark` varchar(100) DEFAULT NULL COMMENT '备注',
`ismenu` tinyint(1) DEFAULT NULL COMMENT '是否菜单',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`updatetime` int(10) DEFAULT NULL COMMENT '更新时间',
`weigh` int(10) DEFAULT '0' COMMENT '权重',
`status` enum('normal','hidden') DEFAULT NULL COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员规则表';
-- ----------------------------
-- Records of fa_user_rule
-- ----------------------------
INSERT INTO `fa_user_rule` VALUES ('1', '0', 'index', '前台', '', '1', '1516168079', '1516168079', '1', 'normal');
INSERT INTO `fa_user_rule` VALUES ('2', '0', 'api', 'API接口', '', '1', '1516168062', '1516168062', '2', 'normal');
INSERT INTO `fa_user_rule` VALUES ('3', '1', 'user', '会员模块', '', '1', '1515386221', '1516168103', '12', 'normal');
INSERT INTO `fa_user_rule` VALUES ('4', '2', 'user', '会员模块', '', '1', '1515386221', '1516168092', '11', 'normal');
INSERT INTO `fa_user_rule` VALUES ('5', '3', 'index/user/login', '登录', '', '0', '1515386247', '1515386247', '5', 'normal');
INSERT INTO `fa_user_rule` VALUES ('6', '3', 'index/user/register', '注册', '', '0', '1515386262', '1516015236', '7', 'normal');
INSERT INTO `fa_user_rule` VALUES ('7', '3', 'index/user/index', '会员中心', '', '0', '1516015012', '1516015012', '9', 'normal');
INSERT INTO `fa_user_rule` VALUES ('8', '3', 'index/user/profile', '个人资料', '', '0', '1516015012', '1516015012', '4', 'normal');
INSERT INTO `fa_user_rule` VALUES ('9', '4', 'api/user/login', '登录', '', '0', '1515386247', '1515386247', '6', 'normal');
INSERT INTO `fa_user_rule` VALUES ('10', '4', 'api/user/register', '注册', '', '0', '1515386262', '1516015236', '8', 'normal');
INSERT INTO `fa_user_rule` VALUES ('11', '4', 'api/user/index', '会员中心', '', '0', '1516015012', '1516015012', '10', 'normal');
INSERT INTO `fa_user_rule` VALUES ('12', '4', 'api/user/profile', '个人资料', '', '0', '1516015012', '1516015012', '3', 'normal');
-- ----------------------------
-- Table structure for fa_user_score_log
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_score_log`;
CREATE TABLE `fa_user_score_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`score` int(10) NOT NULL DEFAULT '0' COMMENT '变更积分',
`before` int(10) NOT NULL DEFAULT '0' COMMENT '变更前积分',
`after` int(10) NOT NULL DEFAULT '0' COMMENT '变更后积分',
`memo` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员积分变动表';
-- ----------------------------
-- Records of fa_user_score_log
-- ----------------------------
-- ----------------------------
-- Table structure for fa_user_token
-- ----------------------------
DROP TABLE IF EXISTS `fa_user_token`;
CREATE TABLE `fa_user_token` (
`token` varchar(50) NOT NULL COMMENT 'Token',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`createtime` int(10) DEFAULT NULL COMMENT '创建时间',
`expiretime` int(10) DEFAULT NULL COMMENT '过期时间',
PRIMARY KEY (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='会员Token表';
-- ----------------------------
-- Records of fa_user_token
-- ----------------------------
-- ----------------------------
-- Table structure for fa_version
-- ----------------------------
DROP TABLE IF EXISTS `fa_version`;
CREATE TABLE `fa_version` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`oldversion` varchar(30) NOT NULL DEFAULT '' COMMENT '旧版本号',
`newversion` varchar(30) NOT NULL DEFAULT '' COMMENT '新版本号',
`packagesize` varchar(30) NOT NULL DEFAULT '' COMMENT '包大小',
`content` varchar(500) NOT NULL DEFAULT '' COMMENT '升级内容',
`downloadurl` varchar(255) NOT NULL DEFAULT '' COMMENT '下载地址',
`enforce` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '强制更新',
`createtime` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
`weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重',
`status` varchar(30) NOT NULL DEFAULT '' COMMENT '状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='版本表';
-- ----------------------------
-- Records of fa_version
-- ----------------------------
INSERT INTO `fa_version` VALUES ('1', '1.1.1,2', '1.2.1', '20M', '更新内容', 'https://www.fastadmin.net/download.html', '1', '1520425318', '0', '0', 'normal');
-- ----------------------------
-- Table structure for fa_welfare
-- ----------------------------
DROP TABLE IF EXISTS `fa_welfare`;
CREATE TABLE `fa_welfare` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(300) NOT NULL COMMENT '福利名称',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='福利表';
-- ----------------------------
-- Records of fa_welfare
-- ----------------------------
INSERT INTO `fa_welfare` VALUES ('2', '社保');
INSERT INTO `fa_welfare` VALUES ('3', '不定时旅游');
INSERT INTO `fa_welfare` VALUES ('4', '双休');
INSERT INTO `fa_welfare` VALUES ('5', '年终奖');
INSERT INTO `fa_welfare` VALUES ('6', '五险一金');
|
<filename>data/data.sql<gh_stars>1-10
INSERT INTO postboard (sys_name, show_name, icon)
VALUES
('relationship', '感情', 'https://d2lzngk4bddvz9.cloudfront.net/board/relationship.svg'),
('trending', '時事', 'https://d2lzngk4bddvz9.cloudfront.net/board/trending.svg'),
('talk', '閒聊', 'https://d2lzngk4bddvz9.cloudfront.net/board/talk.svg'),
('mood', '心情', 'https://d2lzngk4bddvz9.cloudfront.net/board/mood.svg'),
('job', '工作', 'https://d2lzngk4bddvz9.cloudfront.net/board/job.svg'),
('youtuber', 'Youtuber', 'https://d2lzngk4bddvz9.cloudfront.net/board/youtuber.svg'),
('acg', '動漫', 'https://d2lzngk4bddvz9.cloudfront.net/board/acg.svg'),
('tvepisode', '戲劇綜藝', 'https://d2lzngk4bddvz9.cloudfront.net/board/tvepisode.svg'),
('music', '音樂', 'https://d2lzngk4bddvz9.cloudfront.net/board/music.svg'),
('COVID-19', 'COVID-19', 'https://d2lzngk4bddvz9.cloudfront.net/board/COVID-19.svg');
|
<reponame>GeorgeKirev/OpenOLAT
alter table o_goto_organizer alter column g_access_token type varchar(4000);
alter table o_goto_organizer alter column g_refresh_token type varchar(4000);
|
<gh_stars>1000+
TRUNCATE TABLE {$NAMESPACE}_phortune.phortune_charge;
ALTER TABLE {$NAMESPACE}_phortune.phortune_charge
DROP paymentProviderKey;
ALTER TABLE {$NAMESPACE}_phortune.phortune_charge
ADD merchantPHID VARBINARY(64) NOT NULL;
ALTER TABLE {$NAMESPACE}_phortune.phortune_charge
ADD providerPHID VARBINARY(64) NOT NULL;
ALTER TABLE {$NAMESPACE}_phortune.phortune_charge
ADD KEY `key_merchant` (merchantPHID);
ALTER TABLE {$NAMESPACE}_phortune.phortune_charge
ADD KEY `key_provider` (providerPHID);
|
<reponame>fossabot/DIRBS-Core-1
--
-- DIRBS SQL migration script (v64 -> v65)
--
-- Copyright (c) 2018-2019 Qualcomm Technologies, Inc.
--
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the
-- limitations in the disclaimer below) provided that the following conditions are met:
--
-- - Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-- disclaimer.
-- - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
-- disclaimer in the documentation and/or other materials provided with the distribution.
-- - Neither the name of Qualcomm Technologies, Inc. nor the names of its contributors may be used to endorse or promote
-- products derived from this software without specific prior written permission.
-- - The origin of this software must not be misrepresented; you must not claim that you wrote the original software.
-- If you use this software in a product, an acknowledgment is required by displaying the trademark/log as per the
-- details provided here: https://www.qualcomm.com/documents/dirbs-logo-and-brand-guidelines
-- - Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
-- - This notice may not be removed or altered from any source distribution.
--
-- NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY
-- THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-- COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
--
--
-- Removing imei columns, indexes and copying datas
-- from previous tables (pairing_list, stolen_list, golden_list, registration_list)
--
-- Name: pairing_list; Type: TABLE; Schema: core; Owner: -
CREATE TABLE pairing_list_new (
imei_norm text NOT NULL,
imsi text NOT NULL,
PRIMARY KEY(imei_norm, imsi)
);
-- Grant permissions
ALTER TABLE pairing_list_new OWNER TO dirbs_core_import_pairing_list;
GRANT SELECT ON pairing_list_new TO dirbs_core_listgen;
GRANT SELECT ON pairing_list_new TO dirbs_core_report;
-- populate table
INSERT INTO pairing_list_new(imei_norm, imsi)
SELECT DISTINCT imei_norm, imsi
FROM pairing_list;
-- Name: stolen_list; Type: TABLE; Schema: core; Owner: -
CREATE TABLE stolen_list_new (
imei_norm text PRIMARY KEY,
reporting_date DATE DEFAULT NULL
);
-- Grant permissions
ALTER TABLE stolen_list_new OWNER TO dirbs_core_import_stolen_list;
GRANT SELECT ON stolen_list_new TO dirbs_core_classify;
-- populate table
INSERT INTO stolen_list_new(imei_norm, reporting_date)
SELECT imei_norm, MIN(reporting_date) AS reporting_date
FROM stolen_list
GROUP BY imei_norm;
-- Name: golden_list; Type: TABLE; Schema: core; Owner: -
CREATE TABLE golden_list_new (
hashed_imei_norm UUID PRIMARY KEY
);
-- Grant permissions
ALTER TABLE golden_list_new OWNER TO dirbs_core_import_golden_list;
GRANT SELECT ON golden_list_new TO dirbs_core_listgen;
-- populate table
INSERT INTO golden_list_new(hashed_imei_norm)
SELECT DISTINCT(hashed_imei_norm)
FROM golden_list;
-- Name: registration_list; Type: TABLE; Schema: core; Owner: -
CREATE TABLE registration_list_new (
imei_norm text PRIMARY KEY
);
-- Grant permissions
ALTER TABLE registration_list_new OWNER TO dirbs_core_import_registration_list;
GRANT SELECT ON registration_list_new TO dirbs_core_classify;
GRANT SELECT ON registration_list_new TO dirbs_core_api;
-- populate table
INSERT INTO registration_list_new(imei_norm)
SELECT DISTINCT(imei_norm)
FROM registration_list;
-- Drop old tables and rename new ones
-- pairing_list
DROP TABLE pairing_list;
ALTER INDEX pairing_list_new_pkey RENAME to pairing_list_pkey;
ALTER TABLE pairing_list_new RENAME TO pairing_list;
-- stolen_list
DROP TABLE stolen_list;
ALTER INDEX stolen_list_new_pkey RENAME to stolen_list_pkey;
ALTER TABLE stolen_list_new RENAME TO stolen_list;
-- golden_list
DROP TABLE golden_list;
ALTER INDEX golden_list_new_pkey RENAME to golden_list_pkey;
ALTER TABLE golden_list_new RENAME TO golden_list;
-- registration_list
DROP TABLE registration_list;
ALTER INDEX registration_list_new_pkey RENAME to registration_list_pkey;
ALTER TABLE registration_list_new RENAME TO registration_list;
-- Create triggers to Clean/normalize data before inserting
CREATE FUNCTION pairing_list_staging_data_insert_trigger_fn() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
-- Clean/normalize data before inserting
NEW.imei_norm = normalize_imei(NULLIF(TRIM(NEW.imei), ''));
RETURN NEW;
END
$$;
CREATE FUNCTION stolen_list_staging_data_insert_trigger_fn() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
-- Clean/normalize data before inserting
NEW.imei_norm = normalize_imei(NULLIF(TRIM(NEW.imei), ''));
RETURN NEW;
END
$$;
CREATE FUNCTION registration_list_staging_data_insert_trigger_fn() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
-- Clean/normalize data before inserting
NEW.imei_norm = normalize_imei(NULLIF(TRIM(NEW.imei), ''));
RETURN NEW;
END
$$;
CREATE FUNCTION golden_list_prehashed_imei_staging_data_insert_trigger_fn() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
-- Clean/normalize data before inserting
NEW.hashed_imei_norm = NULLIF(TRIM(NEW.golden_imei), '')::UUID;
RETURN NEW;
END
$$;
CREATE FUNCTION golden_list_unhashed_imei_staging_data_insert_trigger_fn() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
-- Clean/normalize data before inserting
NEW.hashed_imei_norm = MD5(normalize_imei(NULLIF(TRIM(NEW.golden_imei), '')))::UUID;
RETURN NEW;
END
$$;
|
<reponame>clouserw/olympia<filename>migrations/36-creatured-download-source.sql<gh_stars>1-10
INSERT INTO download_sources (name, type, created)
VALUES ('creatured', 'full', NOW());
|
-- views.sql
select *
from "user";
drop view user_view;
-- view для таблицы "user"
create or replace view user_view as
select id,
coalesce('@' || username_nm || ' ', '') || coalesce(first_nm || ' ', '') ||
coalesce("user".second_nm || ' ', '') as nm,
now() - create_dttm as authorized_ago
from "user";
select *
from user_view;
-- view для таблицы room
drop view room_view;
create view room_view
as
select id,
name_nm,
repeat('*', length(key_value)) as key_value,
case when private_flg then 'private' else 'public' end as status,
user_id,
now() - create_dttm as create_ago
from room;
select *
from room_view;
-- view для таблицы message
create view message_view as
select id,
content_id,
user_id,
case when txt is not null then substr(txt, 0, 12) || '...' end as txt,
now() - create_dttm as create_ago
from message;
select *
from message_view;
-- view для таблицы content
create view content_view as
select id, room_id, type_value, now() - create_dttm as create_ago
from content;
select *
from content_view; |
<gh_stars>0
INSERT INTO [dbo].[Table] ([Username], [DoctorName], [Phone], [Specification], [Password]) VALUES (N'<PASSWORD>', N'<PASSWORD>', N'0555555555', N'Debute', N'<PASSWORD>')
INSERT INTO [dbo].[Table] ([Username], [DoctorName], [Phone], [Specification], [Password]) VALUES (N'<PASSWORD>', N'<PASSWORD>', N'0598787878', N'G<PASSWORD>', N'<PASSWORD>')
|
CREATE TABLE `tblTags` (
`TagID` int(11) NOT NULL AUTO_INCREMENT,
`TagName` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`CompanyID` int(11) DEFAULT NULL,
`TagType` int(11) DEFAULT NULL,
PRIMARY KEY (`TagID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci |
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Aug 05, 2019 at 01:29 PM
-- Server version: 10.3.15-MariaDB
-- PHP Version: 7.2.7
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: `saintcos_software`
--
-- --------------------------------------------------------
--
-- Table structure for table `classes`
--
CREATE TABLE `classes` (
`id` int(11) NOT NULL,
`name` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `classes`
--
INSERT INTO `classes` (`id`, `name`) VALUES
(1, 'KG'),
(2, 'Nursary'),
(3, 'Play'),
(4, 'One'),
(5, 'Two'),
(6, 'Three'),
(7, 'Four'),
(8, 'Five');
-- --------------------------------------------------------
--
-- Table structure for table `members`
--
CREATE TABLE `members` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`father` varchar(50) DEFAULT NULL,
`mother` varchar(50) DEFAULT NULL,
`address` text DEFAULT NULL,
`mobile_no` varchar(13) NOT NULL,
`position` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `metric_id_type`
--
CREATE TABLE `metric_id_type` (
`id` int(11) NOT NULL,
`metric_id` int(11) NOT NULL,
`type` varchar(20) NOT NULL,
`primary_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `metric_id_type`
--
INSERT INTO `metric_id_type` (`id`, `metric_id`, `type`, `primary_id`) VALUES
(7, 133, 'student', 5),
(8, 134, 'student', 6),
(9, 135, 'student', 7),
(10, 132, 'student', 8),
(11, 155, 'student', 9),
(12, 138, 'student', 10),
(13, 109, 'student', 11),
(14, 137, 'student', 12),
(15, 161, 'student', 13),
(16, 136, 'student', 14),
(17, 160, 'student', 15),
(18, 159, 'student', 16),
(19, 97, 'student', 17),
(20, 164, 'student', 18),
(21, 20, 'student', 19),
(22, 162, 'student', 20),
(23, 163, 'student', 21),
(24, 3, 'student', 22),
(25, 158, 'student', 23),
(26, 157, 'student', 24),
(27, 156, 'student', 25),
(28, 4, 'student', 26),
(29, 19, 'student', 27),
(30, 24, 'student', 28),
(31, 18, 'student', 29),
(32, 9, 'student', 30),
(33, 16, 'student', 31),
(34, 15, 'student', 32),
(35, 7, 'student', 33),
(36, 14, 'student', 34),
(37, 12, 'student', 35),
(38, 5, 'student', 36),
(39, 25, 'student', 37),
(40, 26, 'student', 38),
(41, 27, 'student', 39),
(42, 13, 'student', 40),
(43, 8, 'student', 41),
(44, 10, 'student', 42),
(45, 6, 'student', 43),
(46, 146, 'student', 44),
(47, 145, 'student', 45),
(48, 144, 'student', 46),
(49, 143, 'student', 47),
(50, 115, 'student', 48),
(51, 141, 'student', 49),
(52, 128, 'student', 50),
(53, 130, 'student', 51),
(54, 116, 'student', 52),
(55, 125, 'student', 53),
(56, 124, 'student', 54),
(57, 131, 'student', 55),
(58, 129, 'student', 56),
(59, 127, 'student', 57),
(60, 142, 'student', 58),
(61, 2, 'student', 59),
(62, 126, 'student', 60),
(63, 123, 'student', 61),
(64, 122, 'student', 62),
(65, 121, 'student', 63),
(66, 120, 'student', 64),
(67, 119, 'student', 65),
(68, 118, 'student', 66),
(69, 147, 'student', 67),
(70, 148, 'student', 68),
(71, 139, 'student', 69),
(72, 140, 'student', 70),
(73, 154, 'student', 71),
(74, 113, 'student', 72),
(75, 43, 'student', 73),
(76, 58, 'student', 74),
(77, 57, 'student', 75),
(78, 102, 'student', 76),
(79, 35, 'student', 77),
(80, 54, 'student', 78),
(81, 34, 'student', 79),
(82, 61, 'student', 80),
(83, 209, 'student', 81),
(84, 209, 'student', 82),
(85, 209, 'student', 83),
(86, 36, 'student', 84),
(87, 55, 'student', 85),
(88, 63, 'student', 86),
(89, 66, 'student', 87),
(90, 62, 'student', 88),
(91, 64, 'student', 89),
(92, 46, 'student', 90),
(93, 38, 'student', 91),
(94, 45, 'student', 92),
(95, 37, 'student', 93),
(96, 52, 'student', 94),
(97, 47, 'student', 95),
(98, 33, 'student', 96),
(99, 53, 'student', 97),
(100, 44, 'student', 98),
(101, 59, 'student', 99),
(102, 32, 'student', 100),
(103, 65, 'student', 101),
(104, 60, 'student', 102),
(105, 48, 'student', 103),
(106, 56, 'student', 104),
(107, 49, 'student', 105),
(108, 50, 'student', 106),
(109, 39, 'student', 107),
(110, 40, 'student', 108),
(111, 41, 'student', 109),
(112, 42, 'student', 110),
(113, 51, 'student', 111),
(114, 28, 'student', 112),
(115, 29, 'student', 113),
(116, 30, 'student', 114),
(117, 31, 'student', 115),
(118, 17, 'student', 116),
(119, 21, 'student', 117),
(120, 22, 'student', 118),
(121, 23, 'student', 119),
(122, 95, 'student', 120),
(123, 96, 'student', 121),
(124, 11, 'student', 122),
(125, 78, 'student', 123),
(126, 106, 'student', 124),
(127, 75, 'student', 125),
(128, 84, 'student', 126),
(129, 189, 'student', 127),
(130, 71, 'student', 128),
(131, 72, 'student', 129),
(132, 68, 'student', 130),
(133, 88, 'student', 131),
(134, 82, 'student', 132),
(135, 73, 'student', 133),
(136, 199, 'student', 134),
(137, 70, 'student', 135),
(138, 89, 'student', 136),
(139, 69, 'student', 137),
(140, 103, 'student', 138),
(141, 81, 'student', 139),
(142, 79, 'student', 140),
(143, 74, 'student', 141),
(144, 67, 'student', 142),
(145, 87, 'student', 143),
(146, 86, 'student', 144),
(147, 93, 'student', 145),
(148, 83, 'student', 146),
(149, 94, 'student', 147),
(150, 85, 'student', 148),
(151, 98, 'student', 149),
(152, 90, 'student', 150),
(153, 80, 'student', 151),
(154, 104, 'student', 152),
(155, 91, 'student', 153),
(156, 92, 'student', 154),
(157, 77, 'student', 155),
(158, 76, 'student', 156),
(159, 105, 'student', 157),
(160, 180, 'teacher', 1),
(161, 177, 'teacher', 2),
(162, 174, 'teacher', 3),
(163, 173, 'teacher', 4),
(164, 178, 'teacher', 5),
(165, 171, 'teacher', 6),
(166, 179, 'teacher', 7),
(167, 166, 'teacher', 8),
(168, 176, 'teacher', 9),
(169, 172, 'teacher', 10),
(170, 194, 'teacher', 11),
(171, 169, 'teacher', 12),
(172, 165, 'teacher', 13),
(173, 181, 'teacher', 14),
(174, 167, 'teacher', 15),
(175, 168, 'teacher', 16),
(176, 193, 'staff', 2),
(177, 184, 'staff', 3),
(178, 183, 'staff', 4),
(179, 185, 'staff', 5),
(180, 182, 'staff', 6),
(181, 186, 'staff', 7),
(182, 175, 'teacher', 17),
(183, 101, 'student', 158),
(184, 100, 'student', 159),
(185, 99, 'student', 160),
(186, 201, 'student', 161),
(187, 112, 'student', 162),
(188, 110, 'student', 163),
(189, 111, 'student', 164),
(190, 108, 'student', 165),
(191, 107, 'student', 166),
(192, 114, 'student', 167),
(193, 149, 'student', 168),
(194, 150, 'student', 169),
(195, 117, 'student', 170),
(196, 151, 'student', 171),
(197, 152, 'student', 172),
(198, 153, 'student', 173),
(199, 170, 'teacher', 18),
(200, 187, 'staff', 8),
(201, 188, 'student', 174),
(202, 190, 'student', 175),
(203, 192, 'student', 176),
(204, 191, 'student', 177),
(205, 196, 'student', 178),
(206, 203, 'student', 179),
(207, 198, 'student', 180),
(208, 202, 'student', 181),
(209, 200, 'student', 182),
(210, 197, 'student', 183),
(211, 195, 'staff', 9),
(212, 207, 'student', 184),
(213, 204, 'student', 185),
(214, 206, 'student', 186),
(215, 209, 'student', 187),
(216, 208, 'student', 188),
(217, 205, 'student', 189),
(218, 212, 'student', 190),
(219, 211, 'student', 191),
(220, 210, 'teacher', 19),
(221, 213, 'student', 192);
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) 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, '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, '2018_04_10_095329_create_products_table', 2);
-- --------------------------------------------------------
--
-- Table structure for table `oauth_access_tokens`
--
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`client_id` int(11) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`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;
--
-- Dumping data for table `oauth_access_tokens`
--
INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES
('1d08517b811e732d3328318c8f4ed6adb1e91c950e0899699a2a1a93893243e46f83a24b331423c5', 2, 2, NULL, '[]', 0, '2018-04-10 23:26:23', '2018-04-10 23:26:23', '2019-04-11 05:26:23'),
('c368914a772a636850ac68f178ada773a20691498c855d8481bce63d1de081047371a6c4af263382', 2, 1, 'MyApp', '[]', 0, '2018-04-10 23:23:56', '2018-04-10 23:23:56', '2019-04-11 05:23:56'),
('f37f7b28ec920ab87e109dab8f987bab9f15732dd1691a1ec3ef7def5e99a2674638b30b40cd9da8', 2, 2, NULL, '[]', 0, '2018-04-10 23:30:56', '2018-04-10 23:30:56', '2019-04-11 05:30:56');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_auth_codes`
--
CREATE TABLE `oauth_auth_codes` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`client_id` int(11) NOT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_clients`
--
CREATE TABLE `oauth_clients` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT 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;
--
-- Dumping data for table `oauth_clients`
--
INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES
(1, NULL, 'Laravel Personal Access Client', 'RbzHnuRZN9NQ1YBf5QFbxgn0zZplYf4OXbzqieww', 'http://localhost', 1, 0, 0, '2018-04-10 03:51:12', '2018-04-10 03:51:12'),
(2, NULL, 'Laravel Password Grant Client', 'FvQ6W3eWzn64ySY8zeXhNuArPYtQEqmf2GYGEGK3', 'http://localhost', 0, 1, 0, '2018-04-10 03:51:12', '2018-04-10 03:51:12');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_personal_access_clients`
--
CREATE TABLE `oauth_personal_access_clients` (
`id` int(10) UNSIGNED NOT NULL,
`client_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;
--
-- Dumping data for table `oauth_personal_access_clients`
--
INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES
(1, 1, '2018-04-10 03:51:12', '2018-04-10 03:51:12');
-- --------------------------------------------------------
--
-- Table structure for table `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;
--
-- Dumping data for table `oauth_refresh_tokens`
--
INSERT INTO `oauth_refresh_tokens` (`id`, `access_token_id`, `revoked`, `expires_at`) VALUES
('455411fb03ed74512bbb39af713a30eba029177b7c14c381551537b1713ad7de548beed6ec030929', '1d08517b811e732d3328318c8f4ed6adb1e91c950e0899699a2a1a93893243e46f83a24b331423c5', 0, '2019-04-11 05:26:23'),
('9c1426efebfe9d38935d7bf45ab45d5cdc33352cfce276ec7abe405b122cb328a1bb8a8c216ee00d', 'f37f7b28ec920ab87e109dab8f987bab9f15732dd1691a1ec3ef7def5e99a2674638b30b40cd9da8', 0, '2019-04-11 05:30:56');
-- --------------------------------------------------------
--
-- Table structure for table `parents`
--
CREATE TABLE `parents` (
`id` int(10) UNSIGNED NOT NULL,
`father` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mother` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mobile_no` varchar(13) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`occupation` longtext 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 `parents`
--
INSERT INTO `parents` (`id`, `father`, `mother`, `address`, `mobile_no`, `email`, `occupation`, `created_at`, `updated_at`) VALUES
(3, '<NAME>', '<NAME>', '<NAME>, 37 Ward, Munshipara, Ctg.', '8801726502740', '<EMAIL>', 'Service', NULL, NULL),
(4, 'MD.Fakhrul Islam', 'Tahmina Sultana', 'Dalim <NAME>ari,Moddom Goshaildanga,36 ward,ctg', '8801868358326', NULL, 'Service holder', NULL, NULL),
(5, '<NAME>', '<NAME>', 'CDA road no 6,27 ward,Agrabad,ctg', '8801838507940', NULL, 'Service', NULL, NULL),
(6, '<NAME>', '<NAME>', 'Abidarpara,27 ward,ctg', '8801718318924', NULL, 'Business', NULL, NULL),
(7, '<NAME>', '<NAME>', 'Azhar miar building,Abidarpara,27 ward,ctg', '8801712196938', NULL, 'Service', NULL, NULL),
(8, 'MD.<NAME>', '<NAME>', 'CDA road no 13,Agrabad,ctg', '8801853013995', NULL, 'service', NULL, NULL),
(9, 'Arafat-E-Karim', '<NAME>', 'Mohona building,Hazi thanda miah moshjid.36 ward.ctg', '8801919865173', NULL, 'service', NULL, NULL),
(10, 'MD.<NAME>', 'MO.<NAME>', '<NAME>,Beparipara,27 ward,ctg', '8801615663767', NULL, 'Business', NULL, NULL),
(11, '<NAME>', '<NAME>', 'Sojib bekary building,Moulovipara chowmuhony,24 ward,ctg', '8801817662841', NULL, 'Service', NULL, NULL),
(14, '<NAME>', '<NAME>', '<NAME>,Beparipara,27 ward,Agrabad,ctg', '8801827273638', NULL, 'Business', NULL, NULL),
(15, 'MD.Khokon', '<NAME>', '<NAME>ari,Road no 9,36 ward,ctg', '8801818194852', NULL, 'Service', NULL, NULL),
(16, '<NAME>', '<NAME>', '<NAME>ari,Sheikh Mujib road,ctg', '8801726809262', NULL, 'Business', NULL, NULL),
(17, '<NAME>', '<NAME>', '<NAME>,<NAME>ane,Agrabad,Ctg.', '8801779736074', NULL, 'Service', NULL, NULL),
(18, '<NAME>', '<NAME>', 'Borobari Moddom Goshaildanga,ctg', '8801626977360', NULL, 'service', NULL, NULL),
(19, '<NAME>', '<NAME>', 'CDA road no-12,bari-383,Agrabad,Ctg.', '8801816706021', NULL, 'Service', NULL, NULL),
(20, '<NAME>', '<NAME>', 'Abul Hossen company building,Road no 3,Goshaildanga fokirhat,36 ward,ctg', '8801879654142', NULL, 'Service', NULL, NULL),
(21, '<NAME>', '<NAME>', 'Abu Hasem bari,Ghoshildanga,36 ward,Ctg.', '8801812883827', NULL, 'Service', NULL, NULL),
(22, 'MD.<NAME>', '<NAME>', '<NAME>ari,Hazipara,ctg', '8801819874786', NULL, 'Service', NULL, NULL),
(23, 'MD.<NAME>', 'MRS.<NAME>', 'CDA road no 6,Agrabad,ctg', '8801730590358', NULL, 'service', NULL, NULL),
(24, '<NAME>', 'Ms.<NAME>', 'Mabud showdagor bari,27 no ward,Abedorpara,Ctg.', '8801815566363', NULL, 'Service', NULL, NULL),
(25, '<NAME>', '<NAME>', '<NAME>ari,27 ward,ctg', '8801883811105', NULL, 'Service', NULL, NULL),
(26, 'Sahabuddin', '<NAME>', '<NAME> bari,CDA road no 9,36 ward,ctg', '8801630143322', NULL, 'Service', NULL, NULL),
(27, 'MD.Sayed', '<NAME>', 'Hazi fojol hoque showdagorerbari,Abidarpara,27 ward,ctg', '8801710696311', NULL, 'Service', NULL, NULL),
(28, '<NAME>', '<NAME>', 'Cda-13,Abedorpara,<NAME> bari,Ctg.', '8801816722419', NULL, 'Service', NULL, NULL),
(29, 'MD.<NAME>', '<NAME>', '<NAME> bari.Abidarpara,27 ward,ctg', '8801849172721', NULL, 'Service', NULL, NULL),
(30, '<NAME>', '<NAME>', 'Munshi mia bari,Abedorpara,Ctg.', '8801741436205', NULL, 'Service', NULL, NULL),
(31, '<NAME>', '<NAME>', '<NAME>,<NAME>,24 ward,ctg', '8801883584411', NULL, 'Service', NULL, NULL),
(34, '<NAME>', '<NAME>', '<NAME>ari,middle goshaildanga,Ctg.', '8801815184599', NULL, 'Service', NULL, NULL),
(37, '<NAME>', '<NAME>', '<NAME> bari,36 ward,Ctg.', '8801866326581', NULL, 'Service', NULL, NULL),
(40, '<NAME>', '<NAME>', 'Borobari Moddom Goshaildanga,ctg', '8801537089886', NULL, 'Service', NULL, NULL),
(41, '<NAME>', '<NAME>', 'Bohutala Koloni,Mosjid Market ,Ctg.', '8801815948362', NULL, 'Service', NULL, NULL),
(42, 'MD.Zonayed', '<NAME>', 'Abul Hossen Maneger building,36 ward,ctg', '8801688609030', NULL, 'Service', NULL, NULL),
(43, '<NAME>', '<NAME>', '<NAME> ,6 no binajuri,Rawzan', '8801818464373', NULL, 'Service', NULL, NULL),
(44, 'MD.<NAME>', '<NAME>', 'CDA road no 12,Abidarpara,27 ward,ctg', '8801767883354', NULL, 'Service', NULL, NULL),
(45, '<NAME>', '<NAME>', '<NAME>ari,5-ward,Mohora, Ctg.', '8801843046442', NULL, 'Service', NULL, NULL),
(46, '<NAME>', '<NAME>', 'CDA road no 3,27 ward,Agrabad,ctg', '8801716757906', NULL, 'Service', NULL, NULL),
(47, '<NAME>', '<NAME>', '<NAME>, Goshildanga, Bohutola Mosgider pase, Bandar, Ctg.', '8801758226434', NULL, 'Service', NULL, NULL),
(48, '<NAME>', '<NAME>', '<NAME>,Shishu hospital road,36 no ward, Bandar, Ctg', '8801778044063', NULL, 'Service', NULL, NULL),
(49, 'MD.Mohiuddin', '<NAME>', '<NAME>,36 ward,ctg', '8801819977285', NULL, 'Business', NULL, NULL),
(50, 'MD.Bashir Uddin', '<NAME>', '<NAME> bari,Moddom Goshaildangga,ctg', '8801789854070', NULL, 'Service', NULL, NULL),
(51, '<NAME>', '<NAME>', 'Ishaq Mp road,Hazipara,24ward,Agrabad,ctg', '8801815511388', NULL, 'Service', NULL, NULL),
(52, 'MD.<NAME>', '<NAME>', '<NAME>,road no 5,27 ward,Agrabad,ctg', '8801817781714', NULL, 'Business', NULL, NULL),
(53, 'Abdullah-Al-Mamun', '<NAME>', '1461 Hazipara,Uttor Agrabad,Ctg', '8801981116776', NULL, 'Business', NULL, NULL),
(54, 'MD.<NAME>', '<NAME>', 'CDA road no 14,27 ward,Agrabad,ctg', '8801710971383', NULL, 'Service', NULL, NULL),
(55, '<NAME>', '<NAME>', '<NAME>ari,Road 11,36 ward,ctg', '8801832816140', NULL, 'Service', NULL, NULL),
(56, '<NAME>', '<NAME>', '<NAME> building,Billapara kather moshjid,Abidarpara,27 ward,ctg', '8801770035810', NULL, 'Service', NULL, NULL),
(57, 'MD.<NAME>', '<NAME>', 'Samad showdagorer bari,Goshaildangga,ctg', '8801817252854', NULL, 'Service', NULL, NULL),
(61, '<NAME>', '<NAME>', '<NAME> Memberer bari,CDA road no 1,27 ward,ctg', '8801819673198', NULL, 'Service', NULL, NULL),
(62, 'MD.<NAME>', '<NAME>', '254/A,Saiba villa,24 ward,ctg', '8801839505454', NULL, 'Service', NULL, NULL),
(63, 'MD.<NAME>', 'MRS.Maksuda Begum', '<NAME>,<NAME>,Goshaildangga,36 ward,ctg', '8801749269217', NULL, 'Service', NULL, NULL),
(64, '<NAME>', '<NAME>', 'Hasomtali malumer bari,CDA road no 10,Abidarpara,27 ward,ctg', '8801819924033', NULL, 'Service', NULL, NULL),
(65, '<NAME>', '<NAME>', 'Rahman shaheber building,Goshaildangga Shil colony,36 ward,ctg', '8801794095086', NULL, 'Service', NULL, NULL),
(66, 'MD.<NAME>', '<NAME>', 'Aziz Bhabon,CDA road no 9,Abidarpara,27 ward,ctg', '8801818786867', NULL, 'service', NULL, NULL),
(67, '<NAME>', '<NAME>', 'Mohona building,Hazi thanda Miar Moshjid lane,fokirhat,ctg', '8801925628099', NULL, 'Service', NULL, NULL),
(68, 'MD.<NAME>', '<NAME>', 'Dr.Abu <NAME>,Abidarpara,27 ward,ctg', '8801819852949', NULL, 'Service', NULL, NULL),
(69, 'MD.<NAME>', '<NAME>', '<NAME> bari,CDA road no1/1,27 ward,ctg', '8801718598440', NULL, 'Service', NULL, NULL),
(70, '<NAME>', '<NAME>', '<NAME>,<NAME>,Chairman lane,Agrabad,Ctg', '8801850327492', NULL, 'Business', NULL, NULL),
(71, 'MD.<NAME>', '<NAME>', '<NAME>ari,Goshasildangga,36 ward,ctg', '8801819385942', NULL, 'Business', NULL, NULL),
(72, 'MD.<NAME>', 'MRS.<NAME>', 'Agrabad C&B colony,ctg', '8801783718977', NULL, 'Service', NULL, NULL),
(73, '<NAME>', '<NAME>', '<NAME>ari,CDA road no 13,ctg', '8801824786871', NULL, 'Service', NULL, NULL),
(74, '<NAME>', 'MRS.Jaria Begum', 'Chowdhury villa 316,CDA road no 14,Agrabad,ctg', '8801673732074', NULL, 'Business', NULL, NULL),
(75, 'MD.Jafar', '<NAME>', 'Hazi Nurul Hoque Chowdhury bari,CDa road no 13 ,ctg', '8801625465823', NULL, 'service', NULL, NULL),
(76, '<NAME>', 'Kamrunnahar', 'Brickfield road,20 ward,ctg', '8801714407330', NULL, 'Service', NULL, NULL),
(77, 'MD.<NAME>', 'MRS.<NAME>', '<NAME>,Daiyapara,24 ward,ctg', '8801850374649', NULL, 'Service', NULL, NULL),
(78, 'Md.Amran', '<NAME>', 'CDA 1,Forest colony,27 ward,ctg', '8801710800548', NULL, 'service', NULL, NULL),
(79, '<NAME>', '<NAME>', 'Faruk mension,CDA road no 1,Abidarpara,ctg', '8801818633793', NULL, 'Service', NULL, NULL),
(80, '<NAME>', '<NAME>', 'Goshaildangga Wadud brothers bari,3 no Fokirhat,36 ward,ctg', '8801877183906', NULL, 'Service', NULL, NULL),
(81, 'MD.Jayed', 'MS.<NAME>', 'Badsha mia showdagorer bari,Moddom Goshaildangga,36 ward,ctg', '8801822343413', NULL, 'Service', NULL, NULL),
(82, '<NAME>', '<NAME>', 'Johur company building,Goshaildangga,Thanda miar moshjid,36 ward,ctg', '8801712641166', NULL, 'Service', NULL, NULL),
(83, '<NAME>', '<NAME>', 'CDA road no 10,Agrabad, ctg', '8801733744297', NULL, 'Service', NULL, NULL),
(84, 'MD.<NAME>', '<NAME>', '<NAME> bari,road no 9,Abidarpara,ctg', '8801789245195', NULL, 'Service', NULL, NULL),
(85, '<NAME>', '<NAME>', 'CDA road no 1/1,Forkan tower,27 ward,Agrabad,ctg', '8801817753435', NULL, 'service', NULL, NULL),
(86, 'MD.Hosain', '<NAME>', 'CDA road 1/1,Bolirpara,Agrabad,ctg', '8801640701544', NULL, 'Service', NULL, NULL),
(89, 'MD.<NAME>', 'MRS.<NAME>', '<NAME>,Daiyyapara,ctg', '8801919386120', NULL, 'Service', NULL, NULL),
(90, '<NAME>', '<NAME>', '<NAME>dagorer bari,Abidarpara,27 ward,ctg', '8801817728018', NULL, 'Service', NULL, NULL),
(91, '<NAME>', '<NAME>', '<NAME> bari,CDA road no 11,ctg', '8801768222066', NULL, 'Service', NULL, NULL),
(92, 'MD.<NAME>', '<NAME>', 'Late Munshi mia showdagorer bari,Abidarpara,27 ward,Agrabad ctg', '8801814997221', NULL, 'Service', NULL, NULL),
(93, '<NAME>', '<NAME>', 'Jane alamer bari,CDA road no 1/1,27 ward,ctg', '8801885395060', NULL, 'Service', NULL, NULL),
(94, '<NAME>', 'MST.<NAME>', 'Bohutola colony,Agrabad,ctg', '8801714574857', NULL, 'Service', NULL, NULL),
(95, 'MD.<NAME>', '<NAME>', 'Bohutola colony 14/23,Agrabad,ctg', '8801863220877', NULL, 'Service', NULL, NULL),
(96, 'MD.<NAME>', 'MRS.Nadira Begum', 'CDA road no 12,27 ward,Agrabad,ctg', '8801716904261', NULL, 'Service', NULL, NULL),
(97, 'MD.<NAME>', '<NAME>', '<NAME> bari,Abidarpara,36 ward.ctg', '8801815400280', NULL, 'Service', NULL, NULL),
(98, '<NAME>', '<NAME>', 'CDA road no 6,27 ward,Agrabad ctg', '8801823627413', NULL, 'Service', NULL, NULL),
(99, 'MD.Bah<NAME>', '<NAME>', '<NAME>,Abidarpara,ctg', '8801818771700', NULL, 'Service', NULL, NULL),
(100, '<NAME>', '<NAME>', '<NAME>,Posshim Goshaildangga,ctg', '8801881758226', NULL, 'Service', NULL, NULL),
(101, 'MD.Murad', '<NAME>', '<NAME>,36 ward,ctg', '8801829784950', NULL, 'Service', NULL, NULL),
(102, 'MD.<NAME>', '<NAME>', 'Moddom Goshaildangga,3no Fokirhat,ctg', '8801851366526', NULL, 'Service', NULL, NULL),
(103, '<NAME>', '<NAME>', 'Road no 1,Shantibag shamoli,ctg', '8801732884124', NULL, 'Service', NULL, NULL),
(104, 'MD.Akram', '<NAME>', '<NAME>ari,CDA road no 10,27 ward,Abidarpara,ctg', '8801825106635', NULL, 'Service', NULL, NULL),
(105, 'MD.<NAME>', '<NAME>', 'CDA road no 12,Khaleda khanom,27 ward,Agrabad,ctg', '8801626647716', NULL, 'Service', NULL, NULL),
(106, 'MD.<NAME>', '<NAME>', '<NAME> showdagorer bari,3 no Fokirhat,Moddom Goshaildangga,36 ward,ctg', '8801670564476', NULL, 'Service', NULL, NULL),
(107, 'MD.Lokman', '<NAME>', '<NAME>,Moddom Goshaildangga36 ward,ctg', '8801689206352', NULL, 'Service', NULL, NULL),
(108, 'MD.<NAME>', '<NAME>', 'Saiba villa 254/a,24 ward,ctg', '8801882902214', NULL, 'Service', NULL, NULL),
(109, '<NAME>', 'MRS.Rubiya Begum', 'CDA road no 9,27 ward,Agrabad,ctg', '8801680805073', NULL, 'Service', NULL, NULL),
(110, 'MD.Yousuf', '<NAME>', '<NAME>iding,Fokirhat road,Abidarpara,27 ward,ctg', '8801843228601', NULL, 'Service', NULL, NULL),
(111, '<NAME>', '<NAME>', 'Ali ahammoder bari-1630,road no 3,27 ward,ctg', '8801717734367', NULL, 'Service', NULL, NULL),
(112, 'MD.<NAME>', 'MS.Aysha Begum', '<NAME>,Beca shah road,Posshim Goshaildangga,36 ward,ctg', '8801743846570', NULL, 'Service', NULL, NULL),
(113, 'MD.Imran', '<NAME>', 'Moddom Goshaildangga,Forid companyr bari,36 ward,ctg', '8801711448181', NULL, 'Service', NULL, NULL),
(114, '<NAME>', '<NAME>', 'T&T store colony E-1/2,27 ward,ctg', '8801678586331', NULL, 'Service', NULL, NULL),
(115, 'MD.<NAME>', 'MRS.Sultana Rajia', 'CDA road no 5,House no 248,27 ward,Agrabad,ctg', '8801711382684', NULL, 'Business', NULL, NULL),
(116, 'MD.Ismaile', '<NAME>', '<NAME>ari,Uttor Goshaildangga,36 ward,ctg', '8801778000831', NULL, 'Service', NULL, NULL),
(117, 'MD.<NAME>', '<NAME>', '<NAME>al Hospital Mawa-2,ctg', '8801704027105', NULL, 'Service', NULL, NULL),
(118, '<NAME>', '<NAME>', 'Hoque Villa,CDA road no 1,ctg', '8801643667825', NULL, 'Service', NULL, NULL),
(119, '<NAME>', '<NAME>', '14/9 Bohutola Sorkari Colony,Agrabad,ctg', '8801817730045', NULL, 'Service', NULL, NULL),
(120, 'MD.<NAME>', '<NAME>', 'Hazi Fojol Hoque bari,Abidarpara,ctg', '8801818876692', NULL, 'Service', NULL, NULL),
(121, 'MD.<NAME>', '<NAME>', '<NAME>ari,Posshim Goshaildangga,ctg', '8801680126503', NULL, 'Service', NULL, NULL),
(122, '<NAME>', '<NAME>', '<NAME>,Goshaildangga,ctg', '8801616945699', NULL, 'Service', NULL, NULL),
(123, 'MD.<NAME>', 'MS,Tumpa', 'CDA road no 20,27 ward,Agrabad,ctg', '8801781943211', NULL, 'Service', NULL, NULL),
(124, '<NAME>', '<NAME>', 'CDA road no 4,Agrabad,ctg', '8801883602269', NULL, 'Service', NULL, NULL),
(125, '<NAME>', '<NAME>', '<NAME> Colony B-10/13,Agrabad,ctg', '8801924343869', NULL, 'Service', NULL, NULL),
(126, '<NAME>', '<NAME>', 'CDA road no 3,House no-721,Agrabad,ctg', '8801812822466', NULL, 'Service', NULL, NULL),
(127, 'MD.<NAME>', '<NAME>', '<NAME>ari,Uttor goshaildangga,36 ward,Ctg', '8801813258267', NULL, 'Business', NULL, NULL),
(128, '<NAME>', '<NAME>', 'Bangladesh Bank Colony G-2/3,ctg', '8801728079869', NULL, 'Servicve', NULL, NULL),
(129, 'MD.<NAME>', '<NAME>', 'Alamgir Shaheber Building,Road no 1 Ronggipara,ctg', '8801684497990', NULL, 'business', NULL, NULL),
(130, '<NAME>', '<NAME>', 'Abul khayer colony,Pilkhana road,Amin jutemills-4211,Ctg', '8801715954479', NULL, 'Service', NULL, NULL),
(131, '<NAME>', '<NAME>', '<NAME> D-1225,Abidarpara,27 ward,ctg', '8801773048907', NULL, 'Service', NULL, NULL),
(132, 'MD.Shakir', '<NAME>', '<NAME>ari 552-557,Goshaildangga,36 ward,ctg', '8801817207709', NULL, 'Business', NULL, NULL),
(133, '<NAME>', '<NAME>', 'CDA road no 2 1618/A,27 ward,Agrabad,Ctg', '8801828372950', NULL, 'Business', NULL, NULL),
(134, 'MD.<NAME>', '<NAME>', '<NAME>ari,Posshim Goshaildangga,36 ward,Ctg', '8801826571809', NULL, 'Service', NULL, NULL),
(135, 'MD.<NAME>', '<NAME>', 'CDA road no 13,27 ward,Agrabad,ctg', '8801832746040', NULL, 'Service', NULL, NULL),
(136, 'MD.<NAME>', '<NAME>', '<NAME>,Posshim Goshaildangga,36 ward,ctg', '8801817724762', NULL, 'Business', NULL, NULL),
(137, '<NAME>', '<NAME>', '<NAME>,B <NAME>ane,Goshaildangga,36 ward,Ctg', '8801615483572', NULL, 'Service', NULL, NULL),
(138, '<NAME>', '<NAME>', 'Anowara building,Aziz miar godown,Goshaidangga,36 ward,ctg', '8801912501326', NULL, 'Service', NULL, NULL),
(139, 'MD.Mohiuddin', '<NAME>', 'Mia Company bari,road no 9,Posshim goshaildangga,36 ward,ctg', '8801856722910', NULL, 'Service', NULL, NULL),
(140, 'MD.Sohel', 'MRS.Razia Sultana', 'Nurjahan Mension 1497,road no 17/21,Bolirpara,27 ward,Ctg', '8801777223248', NULL, 'Service', NULL, NULL),
(142, 'MD.En<NAME>', '<NAME>', '<NAME>ari,Abidarpara,27 ward,Ctg', '8801711236858', NULL, 'Business', NULL, NULL),
(143, 'MD.<NAME>', '<NAME>', '<NAME>ari,CDA road no 13,27 ward,Ctg', '8801824280663', NULL, 'Service', NULL, NULL),
(144, 'MD.<NAME>', '<NAME>', '<NAME>,Abidarpara,27 ward,Ctg', '8801628848494', NULL, 'Business', NULL, NULL),
(145, 'MD.<NAME>', '<NAME>', 'CDA road no 3,House no 209,Agrabad,Ctg', '8801711895666', NULL, 'Business', NULL, NULL),
(146, '<NAME>', '<NAME>', '<NAME>ari,Becashah road,36 ward,Ctg', '8801714645773', NULL, 'Service', NULL, NULL),
(147, 'MD.<NAME>', '<NAME>', 'CDA road no 4,27 ward,Agrabad,Ctg', '8801815338144', NULL, 'Service', NULL, NULL),
(148, '<NAME>', 'MRS.<NAME>', 'Beparipara Agrabad,Ctg', '8801819316132', NULL, 'Business', NULL, NULL),
(149, '<NAME>', '<NAME>', '<NAME>,<NAME>,36 ward,Ctg', '8801976202742', NULL, 'Business', NULL, NULL),
(150, 'MD.Newaz', '<NAME>', '<NAME> bari ,Posshim Goshaildangga,36 ward,Ctg', '8801720890791', NULL, 'Service', NULL, NULL),
(151, 'MD.<NAME>', 'Sanjida', '<NAME> bari,Fokirhat,Posshim goshaildangga,36 ward,Ctg', '8801812347205', NULL, 'Service', NULL, NULL),
(152, 'MD.<NAME>', 'Mrs.<NAME>', 'CDA road no 29,House no 158,Ctg', '8801631713571', NULL, 'Service', NULL, NULL),
(153, '<NAME>', '<NAME>', 'C.G.<NAME>oshjid colony,House no F 3/A/16,27 ward,Ctg', '8801819633486', NULL, 'service', NULL, NULL),
(155, 'MD.<NAME>', '<NAME>', '<NAME>ari,halishor road,Hazipara,Ctg', '8801790196633', NULL, 'Service', NULL, NULL),
(156, 'MD.Alam', '<NAME>', '<NAME>,road no 1/1,Abidarpara,Agrabad,Ctg', '8801811304092', NULL, 'Service', NULL, NULL),
(157, '<NAME>', '<NAME>', 'CDA road no 11,House no 933/934', '8801758626969', NULL, 'Service', NULL, NULL),
(158, 'MD.E<NAME>', '<NAME>', 'CDA road no 17/1,Agrabad,ctg', '8801822242225', NULL, 'Service', NULL, NULL),
(159, 'MD.<NAME>', '<NAME>', 'Khan Shaheber building,CDA road no 17,Agrabad,Ctg', '8801630696962', NULL, 'Service', NULL, NULL),
(160, 'MD.<NAME>', 'MRS.Fahima Begum', 'Sekander Commissioner Lane,Fokirhat Road,Abidarpara,27 ward,Ctg', '8801625060705', NULL, 'Service', NULL, NULL),
(161, '<NAME>', '<NAME>', '<NAME>ari,Moddom Goshsaildangga,Ctg', '8801740628407', NULL, 'Service', NULL, NULL),
(162, 'MR.<NAME>', 'MRS.Reba Begum', 'Boshor Villa,Billapara,Ctg', '8801745109362', NULL, 'Service', NULL, NULL),
(163, 'MD.<NAME>', '<NAME>', '<NAME>,CDA road no 13,27 ward,Ctg', '8801788855869', NULL, 'Business', NULL, NULL),
(164, 'MD.<NAME>', 'MRS.Shazu Ara Bagum', 'CDA road no 27,Shopnil 68 no Bari,37 ward,Ctg', '8801671693291', NULL, 'Service', NULL, NULL),
(165, '<NAME>', '<NAME>', '<NAME>,Barik Miar school Road,Moddom Goshaildangga,36 ward,Ctg', '8801820554499', NULL, 'Business', NULL, NULL),
(166, '<NAME>', '<NAME>', 'CDA road no 13,Amader Bari-3718,27 ward,Ctg', '8801851360916', NULL, 'Business', NULL, NULL),
(167, '<NAME>', '<NAME>', '<NAME>-2,Abidarpara,27 ward,Agrabad,Ctg', '8801817743246', NULL, 'Business', NULL, NULL),
(168, 'MD.Salauddin', '<NAME>', 'CDA road no 13,27 ward,Agrabad,Ctg', '8801849203989', NULL, 'Service', NULL, NULL),
(169, '<NAME>', '<NAME>', '<NAME>,36 ward,Ctg', '8801814979595', NULL, 'Service', NULL, NULL),
(170, '<NAME>', '<NAME>', '<NAME>ari,CDA road no 11,Abidarpara,27 ward,Ctg', '8801614316368', NULL, 'Service', NULL, NULL),
(171, '<NAME>', '<NAME>', 'Gentry Salam House,Abidarpara,Ctg', '8801819950404', NULL, 'Service', NULL, NULL),
(172, '<NAME>', 'Mrs. <NAME>', '<NAME>, Goshildanga, Bandar Ctg.', '8801711261983', NULL, 'Service', NULL, NULL),
(173, '<NAME>', '<NAME>', 'Road 4, House 243, CDA R/A, Agrabad Ctg.', '8801817593705', NULL, 'Business', NULL, NULL),
(174, '<NAME>', '<NAME>', '<NAME>, Bandar, Ctg.', '8801819649448', NULL, 'Service', NULL, NULL),
(175, 'Md. <NAME>', '<NAME>', '<NAME>, 3 No Fokir Hat, West Goshaildanga, Bandar Ctg.', '8801621486842', NULL, 'Service', NULL, NULL),
(176, 'MD.Iqbal', '<NAME>', '<NAME>,Ward no 36,Ctg', '8801811015314', NULL, 'Service', NULL, NULL),
(177, '<NAME>', '<NAME>', '<NAME>,Abidarpara,ward no 27,Agrabad,ctg', '8801819825250', NULL, 'Service', NULL, NULL),
(178, 'MD.Harun', '<NAME>', 'CDA Road no 4,habib Contracter Bari,Ward no 27,Ctg', '8801632101862', NULL, 'Service', NULL, NULL),
(179, 'MD.<NAME>', 'MRS.Safaly Akter Poppy', 'Chattogram Ma o Shishu hospital,ward no 27,Agrabad,Ctg', '8801824004079', NULL, 'Service', NULL, NULL),
(180, '<NAME>', 'MRS.Rukaya Sultana', 'Billapara commissioner Bari,', '8801972400833', NULL, 'Service', NULL, NULL),
(181, '<NAME>', '<NAME>', 'Almas Mia Company,3 no Becashah,Possim Goshaildangga', '8801813824968', NULL, 'Service', NULL, NULL),
(182, '<NAME>', '<NAME>', 'Road no 13,House no 351,Agrabad,Ctg', '8801851468974', NULL, 'Service', NULL, NULL),
(183, '<NAME>', '<NAME>', '<NAME>,<NAME>,Bepari para,Ward no 27,Agrabad,Ctg', '8801621973308', NULL, 'Service', NULL, NULL),
(184, '<NAME>', '<NAME>', 'House 373/A, Road 13, CDA R/A, Agrabad, CTG', '8801734665075', NULL, 'Service', NULL, NULL),
(185, '<NAME>', '<NAME>', '<NAME>, Abidor Para, 27 No Dobulmooring ward, Agrabad Ctg.', '8801710807392', NULL, 'Service', NULL, NULL),
(186, '<NAME>', 'Mrs. <NAME>', 'House No 455, Road No 10, CDA R/A, Agrabad, Ctg.', '8801729371201', NULL, 'Service', NULL, NULL),
(187, '<NAME>', '<NAME>', 'House No 97 E, Road No 28, CDA R/A, Agrabad, Ctg.', '8801842344762', NULL, 'Business', NULL, NULL),
(188, '<NAME>', '<NAME>', 'Titas Bhaban, House No 4, Road No 23/1, CDA R/A, Agrabad, CTG.', '8801714094566', '<EMAIL>', 'Business', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) 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` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`detail` text 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`, `detail`, `created_at`, `updated_at`) VALUES
(1, 'Rolex Future', 'An elegant watch for men', NULL, NULL),
(2, 'Iphone', 'Best Smart Phone', '2018-04-10 23:35:09', '2018-04-10 23:35:09'),
(3, 'Xiaomi', 'Best Chinese Smart Phone', '2018-04-11 04:03:51', '2018-04-11 04:03:51'),
(5, 'Oppo', 'Selfiw Phone', '2018-04-11 04:05:25', '2018-04-11 04:05:25'),
(7, 'qwewq', 'qwewqe', '2018-04-11 04:18:34', '2018-04-11 04:18:34'),
(8, 'test', 'test', '2018-04-11 04:20:23', '2018-04-11 04:20:23'),
(9, 'Hello', 'Passed Test', '2018-04-11 04:27:02', '2018-04-11 04:27:02'),
(11, 'Hi', 'Test', '2018-04-11 04:28:03', '2018-04-11 04:28:03'),
(14, 'Tv Card', 'For LED tv', '2018-12-11 04:26:53', '2018-12-11 04:26:53'),
(15, 'Fan', 'Ceiling Fan', '2018-12-18 10:36:38', '2018-12-18 10:36:38'),
(16, 'Laptop', 'Laptop Desc.', '2018-12-18 10:41:23', '2018-12-18 10:41:23'),
(17, 'Cart', 'From MVC Application', '2018-12-22 08:21:42', '2018-12-22 08:21:42'),
(18, 'XYZ', 'Dot Net Application', '2018-12-23 07:12:54', '2018-12-23 07:12:54'),
(20, 'Radio', 'From MVC Application', '2018-12-23 07:14:51', '2018-12-23 07:14:51'),
(21, 'Test 180', 'From MVC Application', '2018-12-23 07:17:06', '2018-12-23 13:20:11'),
(22, 'Car', 'From MVC Application', '2018-12-23 07:19:50', '2018-12-23 11:10:07'),
(23, 'Bike', 'From MVC Application', '2018-12-23 07:22:12', '2018-12-23 11:09:25'),
(24, 'Energy Bulb', 'From MVC Application', '2018-12-23 11:00:36', '2018-12-23 11:09:05'),
(25, 'AC', 'Air Conditioner', '2018-12-23 11:11:11', '2018-12-23 11:11:11');
-- --------------------------------------------------------
--
-- Table structure for table `sections`
--
CREATE TABLE `sections` (
`id` int(11) NOT NULL,
`name` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `sections`
--
INSERT INTO `sections` (`id`, `name`) VALUES
(1, 'A'),
(2, 'B');
-- --------------------------------------------------------
--
-- Table structure for table `sms_logs`
--
CREATE TABLE `sms_logs` (
`id` int(11) NOT NULL,
`date` datetime NOT NULL,
`type` varchar(50) NOT NULL,
`numbers_count` int(11) DEFAULT NULL,
`message` text NOT NULL,
`status` text DEFAULT NULL,
`user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `sms_logs`
--
INSERT INTO `sms_logs` (`id`, `date`, `type`, `numbers_count`, `message`, `status`, `user_id`) VALUES
(1, '2018-12-10 01:00:00', 'students', 17, 'Class is suspended', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `sms_templates`
--
CREATE TABLE `sms_templates` (
`id` int(11) NOT NULL,
`subject` varchar(50) NOT NULL,
`message` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `sms_templates`
--
INSERT INTO `sms_templates` (`id`, `subject`, `message`) VALUES
(1, 'Meeting', 'Meeting at 10 am.'),
(2, 'Holiday', 'Tomorrow is holiday');
-- --------------------------------------------------------
--
-- Table structure for table `staffs`
--
CREATE TABLE `staffs` (
`id` int(11) NOT NULL,
`metric_id` int(11) DEFAULT NULL,
`name` varchar(250) NOT NULL,
`father` varchar(50) DEFAULT NULL,
`mother` varchar(50) DEFAULT NULL,
`mobile_no` varchar(20) NOT NULL,
`address` text DEFAULT NULL,
`position` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `staffs`
--
INSERT INTO `staffs` (`id`, `metric_id`, `name`, `father`, `mother`, `mobile_no`, `address`, `position`) VALUES
(2, 193, '<NAME>', '<NAME>mir Ali', 'Late Amena Begum', '8801831570704', 'CDA road no 13,Agrabad,Ctg', 'Security Guard'),
(3, 184, '<NAME>', '<NAME>', 'Milon Bala Dash', '8801815598576', 'CDA road no 1,Agrabad,Ctg', 'Aaya'),
(4, 183, 'Yasmin', 'Md.Shofi', '<NAME>', '8801814991579', 'CDA road no 24,House no-705,Agrabad,Ctg', 'Aaya'),
(5, 185, '<NAME>', '<NAME>', '<NAME>', '8801680147056', 'CDA road no 1,Bolirpara,Agrabad,Ctg', 'Aaya'),
(6, 182, '<NAME>', 'Ruhi Dash', 'Jolmoni Dash', '8801884065778', '<NAME>,37 ward,Halishore,Ctg', 'Aaya'),
(7, 186, '<NAME>', '<NAME>', '<NAME>', '8801850691453', 'CDA road no 1,Bolirpara,Agrabad,Ctg', 'Van Driver'),
(8, 187, '<NAME>', '<NAME>', 'Fozilot Begum', '8801864851257', 'Road 1, Bolir Para, CDA R/A, Agrabad, Ctg.', 'Van Driver'),
(9, 195, 'Mosharuf', 'Shahalom', '<NAME>', '8801880316815', 'Mahabub colony,CDA Road no 1/1 Bolirpara,Ctg', 'Van Driver');
-- --------------------------------------------------------
--
-- Table structure for table `staff_attendance`
--
CREATE TABLE `staff_attendance` (
`id` int(11) NOT NULL,
`date` date NOT NULL,
`staff_id` int(11) NOT NULL,
`in_time` datetime NOT NULL,
`out_time` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `staff_attendance`
--
INSERT INTO `staff_attendance` (`id`, `date`, `staff_id`, `in_time`, `out_time`) VALUES
(1, '2019-01-14', 4, '2019-01-14 20:12:36', NULL),
(2, '2019-01-15', 3, '2019-01-15 09:13:46', NULL),
(3, '2019-01-15', 6, '2019-01-15 09:18:15', NULL),
(4, '2019-01-15', 8, '2019-01-15 13:39:23', NULL),
(5, '2019-01-19', 3, '2019-01-19 07:30:46', NULL),
(6, '2019-01-19', 2, '2019-01-19 07:31:18', '2019-01-19 13:21:42'),
(7, '2019-01-19', 6, '2019-01-19 07:31:36', NULL),
(8, '2019-01-19', 5, '2019-01-19 07:32:14', '2019-01-19 07:32:24'),
(9, '2019-01-19', 4, '2019-01-19 07:33:05', '2019-01-19 14:03:16'),
(10, '2019-01-20', 8, '2019-01-20 07:04:27', NULL),
(11, '2019-01-20', 4, '2019-01-20 07:28:36', NULL),
(12, '2019-01-20', 3, '2019-01-20 07:28:50', NULL),
(13, '2019-01-20', 5, '2019-01-20 07:33:15', NULL),
(14, '2019-01-20', 2, '2019-01-20 08:38:10', NULL),
(15, '2019-01-21', 8, '2019-01-21 07:07:39', NULL),
(16, '2019-01-21', 2, '2019-01-21 07:09:02', NULL),
(17, '2019-01-21', 6, '2019-01-21 07:22:15', NULL),
(18, '2019-01-21', 3, '2019-01-21 07:26:22', NULL),
(19, '2019-01-21', 4, '2019-01-21 07:26:34', NULL),
(20, '2019-01-21', 5, '2019-01-21 07:32:52', NULL),
(21, '2019-01-22', 2, '2019-01-22 07:05:40', NULL),
(22, '2019-01-22', 8, '2019-01-22 07:14:14', NULL),
(23, '2019-01-22', 4, '2019-01-22 07:27:53', NULL),
(24, '2019-01-22', 6, '2019-01-22 07:28:22', NULL),
(25, '2019-01-22', 3, '2019-01-22 07:28:48', NULL),
(26, '2019-01-22', 5, '2019-01-22 07:31:16', NULL),
(27, '2019-01-23', 2, '2019-01-23 06:50:37', NULL),
(28, '2019-01-23', 8, '2019-01-23 07:03:18', NULL),
(29, '2019-01-23', 4, '2019-01-23 07:21:32', NULL),
(30, '2019-01-23', 6, '2019-01-23 07:21:46', NULL),
(31, '2019-01-23', 3, '2019-01-23 07:28:12', NULL),
(32, '2019-01-23', 5, '2019-01-23 07:34:16', NULL),
(33, '2019-01-26', 2, '2019-01-26 07:00:54', '2019-01-26 12:29:42'),
(34, '2019-01-26', 8, '2019-01-26 07:04:28', NULL),
(35, '2019-01-26', 4, '2019-01-26 07:05:40', '2019-01-26 12:30:47'),
(36, '2019-01-26', 3, '2019-01-26 07:05:50', '2019-01-26 12:29:33'),
(37, '2019-01-26', 6, '2019-01-26 07:12:43', '2019-01-26 12:29:18'),
(38, '2019-01-26', 5, '2019-01-26 07:22:29', '2019-01-26 12:29:58'),
(39, '2019-01-27', 8, '2019-01-27 07:03:19', NULL),
(40, '2019-01-27', 5, '2019-01-27 07:29:03', '2019-01-27 13:27:44'),
(41, '2019-01-27', 3, '2019-01-27 07:30:42', '2019-01-27 13:22:32'),
(42, '2019-01-27', 4, '2019-01-27 07:30:54', '2019-01-27 13:22:38'),
(43, '2019-01-27', 2, '2019-01-27 09:19:28', NULL),
(44, '2019-01-28', 2, '2019-01-28 08:44:53', NULL),
(45, '2019-01-28', 4, '2019-01-28 13:19:18', NULL),
(46, '2019-01-28', 5, '2019-01-28 13:24:37', NULL),
(47, '2019-01-29', 2, '2019-01-29 06:58:58', NULL),
(48, '2019-01-29', 8, '2019-01-29 07:13:20', NULL),
(49, '2019-01-29', 9, '2019-01-29 07:14:07', NULL),
(50, '2019-01-29', 4, '2019-01-29 07:31:18', '2019-01-29 13:20:10'),
(51, '2019-01-29', 3, '2019-01-29 07:31:20', '2019-01-29 13:19:29'),
(52, '2019-01-29', 5, '2019-01-29 07:35:31', '2019-01-29 13:22:44'),
(53, '2019-01-30', 5, '2019-01-30 07:23:35', NULL),
(54, '2019-01-30', 2, '2019-01-30 07:24:43', '2019-01-30 20:00:39'),
(55, '2019-02-02', 9, '2019-02-02 07:02:04', NULL),
(56, '2019-02-02', 8, '2019-02-02 07:02:20', NULL),
(57, '2019-02-02', 3, '2019-02-02 07:04:19', NULL),
(58, '2019-02-02', 4, '2019-02-02 07:05:05', NULL),
(59, '2019-02-02', 2, '2019-02-02 08:39:02', '2019-02-02 18:57:58'),
(60, '2019-02-03', 3, '2019-02-03 13:19:01', NULL),
(61, '2019-02-03', 4, '2019-02-03 13:19:35', NULL),
(62, '2019-02-03', 5, '2019-02-03 13:19:49', NULL),
(63, '2019-02-03', 8, '2019-02-03 13:41:36', NULL),
(64, '2019-02-04', 2, '2019-02-04 06:42:25', NULL),
(65, '2019-02-04', 7, '2019-02-04 06:42:46', NULL),
(66, '2019-02-04', 8, '2019-02-04 07:07:45', '2019-02-04 13:31:37'),
(67, '2019-02-04', 9, '2019-02-04 07:08:22', '2019-02-04 13:34:12'),
(68, '2019-02-04', 4, '2019-02-04 07:31:55', NULL),
(69, '2019-02-04', 3, '2019-02-04 07:32:00', NULL),
(70, '2019-02-04', 5, '2019-02-04 07:33:43', '2019-02-04 13:28:34'),
(71, '2019-02-05', 2, '2019-02-05 07:02:32', NULL),
(72, '2019-02-05', 9, '2019-02-05 07:06:25', NULL),
(73, '2019-02-05', 8, '2019-02-05 07:06:29', NULL),
(74, '2019-02-05', 3, '2019-02-05 07:27:05', '2019-02-05 13:24:21'),
(75, '2019-02-05', 4, '2019-02-05 07:27:07', '2019-02-05 13:25:29'),
(76, '2019-02-05', 5, '2019-02-05 07:39:28', '2019-02-05 13:32:23'),
(77, '2019-02-06', 2, '2019-02-06 06:52:46', '2019-02-06 13:47:32'),
(78, '2019-02-06', 9, '2019-02-06 07:01:56', '2019-02-06 13:47:35'),
(79, '2019-02-06', 8, '2019-02-06 07:02:03', NULL),
(80, '2019-02-06', 4, '2019-02-06 07:31:49', '2019-02-06 13:31:00'),
(81, '2019-02-06', 3, '2019-02-06 07:32:26', '2019-02-06 13:31:10'),
(82, '2019-02-06', 5, '2019-02-06 07:36:35', '2019-02-06 13:34:44'),
(83, '2019-02-09', 2, '2019-02-09 06:54:15', '2019-02-09 13:44:37'),
(84, '2019-02-09', 9, '2019-02-09 07:03:56', '2019-02-09 13:53:41'),
(85, '2019-02-09', 3, '2019-02-09 07:08:58', NULL),
(86, '2019-02-09', 4, '2019-02-09 07:09:11', NULL),
(87, '2019-02-09', 8, '2019-02-09 07:11:45', NULL),
(88, '2019-02-09', 5, '2019-02-09 07:38:26', '2019-02-09 14:16:41'),
(89, '2019-02-11', 2, '2019-02-11 07:12:28', '2019-02-11 13:36:55'),
(90, '2019-02-11', 5, '2019-02-11 07:28:42', '2019-02-11 13:32:30'),
(91, '2019-02-11', 8, '2019-02-11 13:28:54', NULL),
(92, '2019-02-11', 9, '2019-02-11 13:54:01', NULL),
(93, '2019-02-12', 3, '2019-02-12 07:30:32', '2019-02-12 13:26:20'),
(94, '2019-02-12', 4, '2019-02-12 07:30:35', '2019-02-12 13:26:55'),
(95, '2019-02-12', 5, '2019-02-12 07:32:07', NULL),
(96, '2019-02-12', 8, '2019-02-12 13:36:34', NULL),
(97, '2019-02-12', 9, '2019-02-12 13:43:03', NULL),
(98, '2019-02-13', 2, '2019-02-13 06:38:04', NULL),
(99, '2019-02-13', 9, '2019-02-13 06:51:35', NULL),
(100, '2019-02-13', 8, '2019-02-13 07:15:42', NULL),
(101, '2019-02-13', 5, '2019-02-13 07:32:59', NULL),
(102, '2019-02-13', 4, '2019-02-13 07:34:47', NULL),
(103, '2019-02-13', 3, '2019-02-13 07:35:43', NULL),
(104, '2019-02-18', 8, '2019-02-18 07:05:13', '2019-02-18 13:28:42'),
(105, '2019-02-18', 2, '2019-02-18 07:05:57', NULL),
(106, '2019-02-18', 3, '2019-02-18 07:19:29', NULL),
(107, '2019-02-18', 4, '2019-02-18 07:19:31', NULL),
(108, '2019-02-18', 5, '2019-02-18 07:23:09', '2019-02-18 13:32:48'),
(109, '2019-02-20', 8, '2019-02-20 13:37:33', NULL),
(110, '2019-02-23', 8, '2019-02-23 07:30:29', NULL),
(111, '2019-02-23', 8, '2019-02-23 07:30:29', NULL),
(112, '2019-02-23', 5, '2019-02-23 07:37:10', NULL),
(113, '2019-02-23', 5, '2019-02-23 07:37:10', NULL),
(114, '2019-02-24', 5, '2019-02-24 07:25:20', NULL),
(115, '2019-02-24', 3, '2019-02-24 07:59:36', NULL),
(116, '2019-02-24', 2, '2019-02-24 11:39:26', NULL),
(117, '2019-02-25', 3, '2019-02-25 07:27:25', NULL),
(118, '2019-02-25', 4, '2019-02-25 07:27:26', NULL),
(119, '2019-02-25', 5, '2019-02-25 07:37:29', NULL),
(120, '2019-02-26', 8, '2019-02-26 07:11:29', '2019-02-26 13:33:33'),
(121, '2019-02-26', 3, '2019-02-26 07:29:48', '2019-02-26 13:09:16'),
(122, '2019-02-26', 4, '2019-02-26 07:30:37', NULL),
(123, '2019-02-26', 5, '2019-02-26 08:22:01', '2019-02-26 13:14:03'),
(124, '2019-02-26', 9, '2019-02-26 13:30:06', NULL),
(125, '2019-02-26', 2, '2019-02-26 13:37:52', NULL),
(126, '2019-02-27', 5, '2019-02-27 07:28:42', '2019-02-27 13:21:57'),
(127, '2019-02-27', 3, '2019-02-27 07:30:20', NULL),
(128, '2019-02-27', 4, '2019-02-27 07:30:45', NULL),
(129, '2019-02-27', 8, '2019-02-27 13:23:55', NULL),
(130, '2019-02-27', 2, '2019-02-27 13:27:47', NULL),
(131, '2019-03-02', 4, '2019-03-02 06:55:14', NULL),
(132, '2019-03-02', 3, '2019-03-02 06:55:24', NULL),
(133, '2019-03-02', 9, '2019-03-02 06:57:25', '2019-03-02 13:59:21'),
(134, '2019-03-02', 8, '2019-03-02 06:57:38', '2019-03-02 13:27:01'),
(135, '2019-03-02', 5, '2019-03-02 07:17:30', '2019-03-02 13:11:05'),
(136, '2019-03-02', 2, '2019-03-02 13:27:04', NULL),
(137, '2019-03-03', 5, '2019-03-03 07:32:27', '2019-03-03 13:23:43'),
(138, '2019-03-03', 3, '2019-03-03 07:32:27', NULL),
(139, '2019-03-03', 4, '2019-03-03 07:33:11', NULL),
(140, '2019-03-03', 8, '2019-03-03 13:31:47', NULL),
(141, '2019-03-04', 5, '2019-03-04 07:23:12', '2019-03-04 13:18:19'),
(142, '2019-03-04', 3, '2019-03-04 07:32:26', NULL),
(143, '2019-03-04', 4, '2019-03-04 07:33:53', NULL),
(144, '2019-03-04', 8, '2019-03-04 13:32:06', NULL),
(145, '2019-03-04', 9, '2019-03-04 13:54:43', NULL),
(146, '2019-03-05', 8, '2019-03-05 07:06:51', '2019-03-05 13:27:50'),
(147, '2019-03-05', 3, '2019-03-05 07:34:01', NULL),
(148, '2019-03-05', 4, '2019-03-05 07:35:34', NULL),
(149, '2019-03-05', 5, '2019-03-05 07:40:43', NULL),
(150, '2019-03-05', 2, '2019-03-05 08:37:57', NULL),
(151, '2019-03-05', 9, '2019-03-05 13:56:19', NULL),
(152, '2019-03-06', 3, '2019-03-06 07:32:56', NULL),
(153, '2019-03-06', 4, '2019-03-06 07:33:00', NULL),
(154, '2019-03-06', 5, '2019-03-06 07:36:04', '2019-03-06 13:19:48'),
(155, '2019-03-06', 8, '2019-03-06 13:23:21', NULL),
(156, '2019-03-06', 9, '2019-03-06 13:47:12', NULL),
(157, '2019-03-09', 3, '2019-03-09 06:59:03', NULL),
(158, '2019-03-09', 4, '2019-03-09 06:59:29', NULL),
(159, '2019-03-09', 8, '2019-03-09 07:04:26', NULL),
(160, '2019-03-09', 5, '2019-03-09 07:08:44', NULL),
(161, '2019-03-10', 5, '2019-03-10 07:25:11', NULL),
(162, '2019-03-10', 3, '2019-03-10 07:28:21', NULL),
(163, '2019-03-10', 4, '2019-03-10 07:28:37', NULL),
(164, '2019-03-10', 2, '2019-03-10 08:11:40', NULL),
(165, '2019-03-11', 5, '2019-03-11 07:27:59', NULL),
(166, '2019-03-11', 3, '2019-03-11 07:33:59', NULL),
(167, '2019-03-11', 4, '2019-03-11 07:34:38', NULL),
(168, '2019-03-11', 2, '2019-03-11 08:51:42', NULL),
(169, '2019-03-12', 5, '2019-03-12 07:38:20', NULL),
(170, '2019-03-12', 3, '2019-03-12 08:02:47', NULL),
(171, '2019-03-12', 2, '2019-03-12 08:45:47', NULL),
(172, '2019-03-13', 3, '2019-03-13 07:32:31', NULL),
(173, '2019-03-13', 4, '2019-03-13 07:33:56', NULL),
(174, '2019-03-13', 5, '2019-03-13 07:36:07', NULL),
(175, '2019-03-16', 5, '2019-03-16 13:20:56', NULL),
(176, '2019-03-18', 3, '2019-03-18 07:25:42', NULL),
(177, '2019-03-18', 4, '2019-03-18 07:28:50', NULL),
(178, '2019-03-18', 5, '2019-03-18 07:28:56', NULL),
(179, '2019-03-18', 2, '2019-03-18 08:26:37', NULL),
(180, '2019-03-19', 3, '2019-03-19 07:27:59', NULL),
(181, '2019-03-19', 4, '2019-03-19 07:28:13', NULL),
(182, '2019-03-19', 5, '2019-03-19 07:31:08', '2019-03-19 13:15:25'),
(183, '2019-03-19', 2, '2019-03-19 09:07:23', NULL),
(184, '2019-03-20', 5, '2019-03-20 07:25:13', NULL),
(185, '2019-03-23', 5, '2019-03-23 08:33:28', NULL),
(186, '2019-03-23', 5, '2019-03-23 08:33:28', NULL),
(187, '2019-03-23', 2, '2019-03-23 08:47:13', NULL),
(188, '2019-03-24', 5, '2019-03-24 07:34:18', NULL),
(189, '2019-03-24', 3, '2019-03-24 07:34:20', NULL),
(190, '2019-03-24', 4, '2019-03-24 07:34:38', NULL),
(191, '2019-03-24', 2, '2019-03-24 08:18:34', NULL),
(192, '2019-03-25', 8, '2019-03-25 07:03:02', NULL),
(193, '2019-03-25', 5, '2019-03-25 07:26:52', NULL),
(194, '2019-03-25', 3, '2019-03-25 07:31:24', NULL),
(195, '2019-03-27', 3, '2019-03-27 07:37:04', NULL),
(196, '2019-03-27', 5, '2019-03-27 07:46:23', '2019-03-27 13:33:07'),
(197, '2019-03-27', 2, '2019-03-27 12:08:16', NULL),
(198, '2019-04-01', 3, '2019-04-01 07:42:01', NULL),
(199, '2019-04-01', 5, '2019-04-01 07:43:15', '2019-04-01 13:26:00'),
(200, '2019-04-01', 2, '2019-04-01 08:49:11', NULL),
(201, '2019-04-02', 5, '2019-04-02 07:26:48', '2019-04-02 13:18:06'),
(202, '2019-04-02', 4, '2019-04-02 07:29:18', NULL),
(203, '2019-04-02', 3, '2019-04-02 07:29:24', NULL),
(204, '2019-04-03', 5, '2019-04-03 07:36:07', '2019-04-03 13:35:22'),
(205, '2019-04-06', 3, '2019-04-06 07:13:01', NULL),
(206, '2019-04-06', 5, '2019-04-06 07:21:07', NULL),
(207, '2019-04-06', 2, '2019-04-06 08:44:11', NULL),
(208, '2019-04-07', 5, '2019-04-07 07:35:02', NULL),
(209, '2019-04-07', 2, '2019-04-07 08:37:12', NULL),
(210, '2019-04-08', 5, '2019-04-08 07:31:59', '2019-04-08 12:59:35'),
(211, '2019-04-09', 5, '2019-04-09 07:37:15', '2019-04-09 13:23:30'),
(212, '2019-04-09', 3, '2019-04-09 08:14:41', NULL),
(213, '2019-04-09', 4, '2019-04-09 08:14:49', NULL),
(214, '2019-04-10', 5, '2019-04-10 07:25:56', '2019-04-10 13:17:48'),
(215, '2019-04-10', 4, '2019-04-10 07:31:32', NULL),
(216, '2019-04-15', 5, '2019-04-15 07:27:03', NULL),
(217, '2019-04-15', 2, '2019-04-15 10:36:16', NULL),
(218, '2019-04-16', 5, '2019-04-16 07:33:41', '2019-04-16 13:22:25'),
(219, '2019-04-17', 3, '2019-04-17 07:40:53', NULL),
(220, '2019-04-17', 5, '2019-04-17 07:40:53', '2019-04-17 12:49:28'),
(221, '2019-04-17', 2, '2019-04-17 09:37:10', NULL),
(222, '2019-04-18', 3, '2019-04-18 07:39:04', NULL),
(223, '2019-04-18', 5, '2019-04-18 07:39:18', NULL),
(224, '2019-04-20', 3, '2019-04-20 07:32:09', NULL),
(225, '2019-04-20', 5, '2019-04-20 07:35:02', '2019-04-20 12:53:49'),
(226, '2019-04-23', 5, '2019-04-23 07:31:05', NULL),
(227, '2019-04-23', 3, '2019-04-23 07:36:04', NULL),
(228, '2019-04-24', 3, '2019-04-24 07:37:42', NULL),
(229, '2019-04-24', 4, '2019-04-24 07:37:43', NULL),
(230, '2019-04-24', 5, '2019-04-24 07:42:21', '2019-04-24 12:31:22'),
(231, '2019-04-25', 3, '2019-04-25 08:13:11', NULL),
(232, '2019-04-25', 5, '2019-04-25 12:11:45', NULL),
(233, '2019-04-28', 5, '2019-04-28 07:32:16', '2019-04-28 12:57:31'),
(234, '2019-04-28', 3, '2019-04-28 07:34:55', NULL),
(235, '2019-04-28', 4, '2019-04-28 07:35:18', NULL),
(236, '2019-04-29', 5, '2019-04-29 07:40:20', '2019-04-29 13:17:19'),
(237, '2019-04-30', 5, '2019-04-30 07:35:49', '2019-04-30 13:36:51'),
(238, '2019-04-30', 3, '2019-04-30 07:40:18', NULL),
(239, '2019-04-30', 4, '2019-04-30 07:40:36', NULL),
(240, '2019-05-04', 3, '2019-05-04 07:11:15', NULL),
(241, '2019-05-04', 5, '2019-05-04 11:40:29', NULL),
(242, '2019-06-11', 5, '2019-06-11 08:56:12', '2019-06-11 13:09:06'),
(243, '2019-06-12', 5, '2019-06-12 08:01:19', '2019-06-12 13:03:17'),
(244, '2019-06-15', 5, '2019-06-15 07:38:52', NULL),
(245, '2019-06-16', 3, '2019-06-16 07:35:04', NULL),
(246, '2019-06-16', 4, '2019-06-16 07:35:09', NULL),
(247, '2019-06-16', 5, '2019-06-16 07:36:57', '2019-06-16 13:08:01'),
(248, '2019-06-17', 5, '2019-06-17 07:29:59', '2019-06-17 13:15:17'),
(249, '2019-06-19', 5, '2019-06-19 13:15:15', NULL),
(250, '2019-06-22', 5, '2019-06-22 08:40:10', '2019-06-22 13:20:12'),
(251, '2019-06-23', 5, '2019-06-23 13:16:02', NULL),
(252, '2019-06-25', 3, '2019-06-25 07:33:39', NULL),
(253, '2019-06-25', 5, '2019-06-25 07:39:30', '2019-06-25 13:17:23'),
(254, '2019-06-26', 2, '2019-06-26 08:35:04', NULL),
(255, '2019-06-26', 5, '2019-06-26 13:26:53', NULL),
(256, '2019-06-29', 5, '2019-06-29 07:11:10', NULL),
(257, '2019-06-29', 2, '2019-06-29 08:53:15', NULL),
(258, '2019-06-30', 5, '2019-06-30 07:40:45', '2019-06-30 13:21:47'),
(259, '2019-07-01', 5, '2019-07-01 08:10:09', NULL),
(260, '2019-07-02', 5, '2019-07-02 08:26:10', NULL),
(261, '2019-07-03', 5, '2019-07-03 07:30:11', '2019-07-03 12:35:51'),
(262, '2019-07-06', 5, '2019-07-06 07:28:47', '2019-07-06 13:13:00'),
(263, '2019-07-06', 2, '2019-07-06 08:14:00', NULL),
(264, '2019-07-07', 5, '2019-07-07 13:21:26', NULL),
(265, '2019-07-08', 5, '2019-07-08 07:43:35', '2019-07-08 12:49:51'),
(266, '2019-07-10', 5, '2019-07-10 08:05:04', '2019-07-10 13:13:25'),
(267, '2019-07-14', 5, '2019-07-14 07:48:41', '2019-07-14 13:15:09'),
(268, '2019-07-15', 5, '2019-07-15 07:55:54', '2019-07-15 13:13:51'),
(269, '2019-07-15', 2, '2019-07-15 09:17:34', NULL),
(270, '2019-07-16', 5, '2019-07-16 12:46:16', NULL),
(271, '2019-07-17', 5, '2019-07-17 07:40:49', '2019-07-17 12:58:26'),
(272, '2019-07-20', 5, '2019-07-20 13:18:58', NULL),
(273, '2019-07-21', 5, '2019-07-21 07:38:10', '2019-07-21 13:18:48'),
(274, '2019-07-21', 2, '2019-07-21 08:07:22', NULL),
(275, '2019-07-22', 5, '2019-07-22 07:35:13', '2019-07-22 13:12:34'),
(276, '2019-07-23', 5, '2019-07-23 13:04:40', NULL),
(277, '2019-07-24', 5, '2019-07-24 07:42:39', NULL),
(278, '2019-07-27', 2, '2019-07-27 13:04:46', NULL),
(279, '2019-07-28', 5, '2019-07-28 07:40:34', NULL),
(280, '2019-07-29', 5, '2019-07-29 07:48:26', '2019-07-29 13:15:53'),
(281, '2019-07-30', 5, '2019-07-30 07:37:40', '2019-07-30 13:19:17'),
(282, '2019-07-30', 2, '2019-07-30 09:01:28', NULL),
(283, '2019-07-31', 5, '2019-07-31 08:35:49', NULL),
(284, '2019-08-03', 2, '2019-08-03 11:18:51', NULL),
(285, '2019-08-03', 5, '2019-08-03 12:16:08', NULL),
(286, '2019-08-04', 5, '2019-08-04 07:31:14', '2019-08-04 12:48:27'),
(287, '2019-08-05', 5, '2019-08-05 08:15:37', NULL),
(288, '2019-08-05', 2, '2019-08-05 09:39:48', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `students`
--
CREATE TABLE `students` (
`id` int(11) NOT NULL,
`metric_id` int(11) NOT NULL,
`name` varchar(100) DEFAULT NULL,
`dob` date DEFAULT NULL,
`image` text DEFAULT NULL,
`parent_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `students`
--
INSERT INTO `students` (`id`, `metric_id`, `name`, `dob`, `image`, `parent_id`) VALUES
(5, 133, '<NAME>', '2011-09-26', 'public/image/avatar.png', 3),
(6, 134, '<NAME>', '2012-07-08', 'public/image/avatar.png', 4),
(7, 135, '<NAME>', '2012-11-10', 'public/image/avatar.png', 5),
(8, 132, '<NAME>', '2012-04-05', 'public/image/avatar.png', 6),
(9, 155, '<NAME>', '2014-01-20', 'public/image/avatar.png', 7),
(10, 138, '<NAME>', '2012-09-23', 'public/image/avatar.png', 8),
(11, 109, '<NAME>', '2012-07-02', 'public/image/avatar.png', 9),
(12, 137, '<NAME>', '2011-12-15', 'public/image/avatar.png', 10),
(13, 161, '<NAME>', '2013-02-16', 'public/image/avatar.png', 11),
(14, 136, '<NAME>', '2011-08-16', 'public/image/avatar.png', 14),
(15, 160, 'MD.<NAME>', '2012-04-26', 'public/image/avatar.png', 15),
(16, 159, '<NAME>', NULL, 'public/image/avatar.png', 16),
(17, 97, '<NAME>', NULL, 'public/image/avatar.png', 17),
(18, 164, '<NAME>', '2012-11-23', 'public/image/avatar.png', 18),
(19, 20, '<NAME>', '2015-04-15', 'public/image/avatar.png', 19),
(20, 162, 'MO.<NAME>', '2012-12-16', 'public/image/avatar.png', 20),
(21, 163, '<NAME>', '2012-11-13', 'public/image/avatar.png', 22),
(22, 3, '<NAME>', '2015-05-15', 'public/image/avatar.png', 21),
(23, 158, 'MD.<NAME>', '2012-12-30', 'public/image/avatar.png', 23),
(24, 157, 'MD.<NAME>', '2013-05-14', 'public/image/avatar.png', 25),
(25, 156, '<NAME>', '2012-11-11', 'public/image/avatar.png', 26),
(26, 4, '<NAME>', '2015-06-04', 'public/image/avatar.png', 24),
(27, 19, 'MD.<NAME>', '2015-06-04', 'public/image/avatar.png', 27),
(28, 24, '<NAME>', '2014-01-05', 'public/image/avatar.png', 28),
(29, 18, '<NAME>', '2015-12-04', 'public/image/avatar.png', 29),
(30, 9, '<NAME>', '2014-10-09', 'public/image/avatar.png', 30),
(31, 16, '<NAME>', '2015-02-09', 'public/image/avatar.png', 31),
(33, 7, '<NAME>', '2015-03-20', 'public/image/avatar.png', 37),
(34, 14, '<NAME>', '2015-04-30', 'public/image/avatar.png', 40),
(35, 12, 'MD.<NAME>', '2014-10-07', 'public/image/avatar.png', 42),
(36, 5, '<NAME>', '2015-05-23', 'public/image/avatar.png', 41),
(37, 25, '<NAME>', '2015-01-05', 'public/image/avatar.png', 43),
(38, 26, '<NAME>', '2014-10-30', 'public/image/avatar.png', 44),
(39, 27, '<NAME>', '2014-10-14', 'public/image/avatar.png', 46),
(40, 13, '<NAME>', '2016-02-21', 'public/image/avatar.png', 45),
(41, 8, '<NAME>', '2014-03-11', 'public/image/avatar.png', 47),
(42, 10, '<NAME>', NULL, 'public/image/avatar.png', 48),
(43, 6, '<NAME>', '2010-04-01', 'public/image/avatar.png', 49),
(44, 146, '<NAME>', '2010-12-09', 'public/image/avatar.png', 6),
(45, 145, '<NAME>', '2011-12-20', 'public/image/avatar.png', 50),
(46, 144, '<NAME>', '2009-12-30', 'public/image/avatar.png', 51),
(47, 143, '<NAME>', '2011-01-14', 'public/image/avatar.png', 52),
(48, 115, '<NAME>', '2011-12-20', 'public/image/avatar.png', 53),
(49, 141, '<NAME>', '2010-11-22', 'public/image/avatar.png', 54),
(50, 128, '<NAME>', '2010-09-04', 'public/image/avatar.png', 55),
(51, 130, '<NAME>', '2010-04-23', 'public/image/avatar.png', 56),
(52, 116, '<NAME>', '2010-12-06', 'public/image/avatar.png', 57),
(53, 125, '<NAME>', '2010-12-30', 'public/image/avatar.png', 61),
(54, 124, '<NAME>', '2012-07-12', 'public/image/avatar.png', 62),
(55, 131, '<NAME>', '2011-06-09', 'public/image/avatar.png', 63),
(56, 129, '<NAME>', '2011-09-20', 'public/image/avatar.png', 64),
(57, 127, '<NAME>', '2011-11-24', 'public/image/avatar.png', 65),
(58, 142, '<NAME>', '2011-10-05', 'public/image/avatar.png', 66),
(59, 2, '<NAME>', '2011-08-03', 'public/image/avatar.png', 67),
(60, 126, '<NAME>', '2011-12-12', 'public/image/avatar.png', 68),
(61, 123, 'MD.<NAME>', '2010-09-16', 'public/image/avatar.png', 69),
(62, 122, '<NAME>', '2011-08-17', 'public/image/avatar.png', 70),
(63, 121, '<NAME>', '2011-01-16', 'public/image/avatar.png', 71),
(64, 120, 'MD.Himel', '2013-01-01', 'public/image/avatar.png', 72),
(65, 119, '<NAME>', '2011-10-04', 'public/image/avatar.png', 73),
(66, 118, '<NAME>', '2011-06-10', 'public/image/avatar.png', 74),
(67, 147, '<NAME>', '2011-08-05', 'public/image/avatar.png', 75),
(68, 148, '<NAME>', '2012-03-31', 'public/image/avatar.png', 76),
(69, 139, '<NAME>', '2013-02-14', 'public/image/avatar.png', 77),
(70, 140, '<NAME>', '2011-11-16', 'public/image/avatar.png', 78),
(71, 154, '<NAME>', '2011-08-07', 'public/image/avatar.png', 79),
(72, 113, 'MD.Abdullah', '2011-03-04', 'public/image/avatar.png', 80),
(73, 43, '<NAME>', '2013-04-05', 'public/image/avatar.png', 54),
(74, 58, '<NAME>', '2013-03-25', 'public/image/avatar.png', 81),
(75, 57, 'MD.<NAME>', '2014-05-18', 'public/image/avatar.png', 82),
(76, 102, '<NAME>', '2014-12-17', 'public/image/avatar.png', 17),
(77, 35, '<NAME>', '2014-05-25', 'public/image/avatar.png', 83),
(78, 54, 'MD.<NAME>', '2014-07-06', 'public/image/avatar.png', 84),
(79, 34, '<NAME>', '2013-08-26', 'public/image/avatar.png', 85),
(80, 61, 'MD.<NAME>', '2013-09-09', 'public/image/avatar.png', 74),
(84, 36, '<NAME>', '2014-08-05', 'public/image/avatar.png', 86),
(85, 55, 'MD.S<NAME>', '2014-11-28', 'public/image/avatar.png', 89),
(86, 63, '<NAME>', '2013-02-13', 'public/image/avatar.png', 90),
(87, 66, '<NAME>', '2014-08-29', 'public/image/avatar.png', 91),
(88, 62, '<NAME>', '2013-08-30', 'public/image/avatar.png', 92),
(89, 64, '<NAME>', '2015-05-16', 'public/image/avatar.png', 93),
(90, 46, '<NAME>', '2015-11-27', 'public/image/avatar.png', 94),
(91, 38, '<NAME>', '2015-09-18', 'public/image/avatar.png', 95),
(92, 45, 'MD.<NAME>', '2014-12-28', 'public/image/avatar.png', 96),
(93, 37, '<NAME>', '2014-09-01', 'public/image/avatar.png', 97),
(94, 52, '<NAME>', '2014-12-01', 'public/image/avatar.png', 98),
(95, 47, '<NAME>', '2014-11-22', 'public/image/avatar.png', 99),
(96, 33, '<NAME>', '2014-02-05', 'public/image/avatar.png', 100),
(97, 53, 'MD.<NAME>', '2015-01-19', 'public/image/avatar.png', 101),
(98, 44, '<NAME>', '2014-11-01', 'public/image/avatar.png', 70),
(99, 59, 'MD.<NAME>', '2014-04-29', 'public/image/avatar.png', 102),
(100, 32, 'Ariz-ar-Rahman', '2014-05-28', 'public/image/avatar.png', 103),
(101, 65, '<NAME>', '2013-09-09', 'public/image/avatar.png', 104),
(102, 60, 'MD.<NAME>', '2014-01-15', 'public/image/avatar.png', 105),
(103, 48, '<NAME>', '2014-10-09', 'public/image/avatar.png', 106),
(104, 56, '<NAME>', '2015-06-15', 'public/image/avatar.png', 107),
(105, 49, '<NAME>', '2015-12-10', 'public/image/avatar.png', 108),
(106, 50, '<NAME>', '2013-10-11', 'public/image/avatar.png', 109),
(107, 39, '<NAME>', '2014-06-24', 'public/image/avatar.png', 110),
(108, 40, '<NAME>', '2014-09-27', 'public/image/avatar.png', 111),
(109, 41, '<NAME> Miraz', '2014-05-26', 'public/image/avatar.png', 112),
(110, 42, 'MD.Imtiaz', '2014-03-26', 'public/image/avatar.png', 113),
(111, 51, '<NAME>', '2014-09-01', 'public/image/avatar.png', 114),
(112, 28, '<NAME>', '2015-10-25', 'public/image/avatar.png', 115),
(113, 29, '<NAME>', '2015-03-29', 'public/image/avatar.png', 116),
(114, 30, '<NAME>', '2015-05-04', 'public/image/avatar.png', 117),
(115, 31, '<NAME>', '2014-10-30', 'public/image/avatar.png', 118),
(116, 17, '<NAME>', '2016-08-03', 'public/image/avatar.png', 119),
(117, 21, '<NAME>', '2015-06-04', 'public/image/avatar.png', 120),
(118, 22, 'MD.<NAME>', '2015-01-29', 'public/image/avatar.png', 121),
(119, 23, '<NAME>', '2015-02-16', 'public/image/avatar.png', 122),
(120, 95, 'MD.D<NAME>', '2014-12-04', 'public/image/avatar.png', 123),
(121, 96, '<NAME>', '2014-12-22', 'public/image/avatar.png', 124),
(122, 11, '<NAME>', '2015-04-24', 'public/image/avatar.png', 54),
(123, 78, '<NAME>', '2013-03-24', 'public/image/avatar.png', 125),
(124, 106, '<NAME>', '2014-04-09', 'public/image/avatar.png', 126),
(125, 75, '<NAME>', '2013-11-27', 'public/image/avatar.png', 127),
(126, 84, '<NAME>', '2014-01-05', 'public/image/avatar.png', 128),
(127, 189, '<NAME>', '2012-03-08', 'public/image/avatar.png', 129),
(128, 71, '<NAME>', NULL, 'public/image/avatar.png', 130),
(129, 72, '<NAME>', '2013-02-17', 'public/image/avatar.png', 131),
(130, 68, '<NAME>', '2012-07-22', 'public/image/avatar.png', 132),
(131, 88, '<NAME>', '2012-10-14', 'public/image/avatar.png', 133),
(132, 82, '<NAME>', '2012-12-26', 'public/image/avatar.png', 134),
(133, 73, 'MD.<NAME>', '2012-07-05', 'public/image/avatar.png', 135),
(134, 199, '<NAME>', '2012-11-01', 'public/image/avatar.png', 136),
(135, 70, '<NAME>', '2014-09-11', 'public/image/avatar.png', 137),
(136, 89, '<NAME>', '2013-05-24', 'public/image/avatar.png', 138),
(137, 69, 'MD.Mainuddin', '2013-12-11', 'public/image/avatar.png', 139),
(138, 103, 'MD.<NAME>', '2015-05-15', 'public/image/avatar.png', 140),
(139, 81, '<NAME>', '2013-10-19', 'public/image/avatar.png', 56),
(140, 79, '<NAME>', '2013-06-16', 'public/image/avatar.png', 142),
(141, 74, '<NAME>', '2013-04-19', 'public/image/avatar.png', 143),
(142, 67, 'MD.If<NAME>', '2014-12-16', 'public/image/avatar.png', 144),
(143, 87, 'MD.Ishan Howlader', '2013-07-20', 'public/image/avatar.png', 145),
(144, 86, '<NAME>', '2013-04-23', 'public/image/avatar.png', 146),
(145, 93, '<NAME>', '2012-12-08', 'public/image/avatar.png', 147),
(146, 83, 'MD.<NAME>', '2014-01-13', 'public/image/avatar.png', 148),
(147, 94, '<NAME>', '2013-08-21', 'public/image/avatar.png', 149),
(148, 85, '<NAME>', '2012-01-01', 'public/image/avatar.png', 150),
(149, 98, '<NAME>', '2014-11-02', 'public/image/avatar.png', 151),
(150, 90, 'MD.<NAME>', '2013-08-14', 'public/image/avatar.png', 152),
(151, 80, 'Kazi MD.<NAME>', '2013-06-01', 'public/image/avatar.png', 153),
(152, 104, '<NAME>', '2013-06-21', 'public/image/avatar.png', 80),
(153, 91, '<NAME>', '2013-03-02', 'public/image/avatar.png', 155),
(154, 92, '<NAME>', NULL, 'public/image/avatar.png', 156),
(155, 77, '<NAME>', '2014-02-10', 'public/image/avatar.png', 157),
(156, 76, '<NAME>', '2014-03-09', 'public/image/avatar.png', 158),
(157, 105, '<NAME>', '2011-08-22', 'public/image/avatar.png', 159),
(158, 101, '<NAME>', '2014-04-03', 'public/image/avatar.png', 160),
(159, 100, '<NAME>', '2015-03-02', 'public/image/avatar.png', 161),
(160, 99, '<NAME>', '2014-07-25', 'public/image/avatar.png', 66),
(161, 201, 'MRS.<NAME>', '2012-12-10', 'public/image/avatar.png', 162),
(162, 112, 'MD.<NAME>', '2012-08-10', 'public/image/avatar.png', 163),
(163, 110, 'MD.<NAME>', '2012-05-12', 'public/image/avatar.png', 164),
(164, 111, 'MD.<NAME>', '2012-01-21', 'public/image/avatar.png', 165),
(165, 108, '<NAME>', '2012-09-14', 'public/image/avatar.png', 166),
(166, 107, '<NAME>', '2012-03-29', 'public/image/avatar.png', 167),
(167, 114, 'MD.<NAME>', '2009-07-12', 'public/image/avatar.png', 168),
(168, 149, '<NAME>', NULL, 'public/image/avatar.png', 169),
(169, 150, '<NAME>', '2009-06-07', 'public/image/avatar.png', 164),
(170, 117, '<NAME>', NULL, 'public/image/avatar.png', 14),
(171, 151, '<NAME>', '2010-05-17', 'public/image/avatar.png', 170),
(172, 152, '<NAME>', '2009-04-10', 'public/image/avatar.png', 89),
(173, 153, '<NAME>', '2010-07-10', 'public/image/avatar.png', 171),
(174, 188, '<NAME>', '2013-02-01', 'public/image/avatar.png', 172),
(175, 190, '<NAME>', '2015-10-19', 'public/image/avatar.png', 173),
(176, 192, '<NAME>', '2010-10-26', 'public/image/avatar.png', 174),
(177, 191, '<NAME>', '2011-03-23', 'public/image/avatar.png', 175),
(178, 196, '<NAME>', '2015-08-19', 'public/image/avatar.png', 176),
(179, 203, '<NAME>', '2008-04-20', 'public/image/avatar.png', 176),
(180, 198, '<NAME>', '2013-08-23', 'public/image/avatar.png', 177),
(181, 202, '<NAME>', '2010-03-14', 'public/image/avatar.png', 178),
(182, 200, '<NAME>', '2012-07-31', 'public/image/avatar.png', 179),
(183, 197, '<NAME>', '2014-07-07', 'public/image/avatar.png', 180),
(184, 207, '<NAME>', '2015-03-21', 'public/image/avatar.png', 181),
(185, 204, '<NAME>', '2013-08-08', 'public/image/avatar.png', 182),
(186, 206, '<NAME>', '2013-01-12', 'public/image/avatar.png', 183),
(187, 209, 'M<NAME>', '2014-08-26', 'public/image/avatar.png', 184),
(188, 208, '<NAME>', '2016-08-23', 'public/image/avatar.png', 185),
(189, 205, '<NAME>', '2012-04-28', 'public/image/avatar.png', 186),
(190, 212, '<NAME>', NULL, 'public/image/avatar.png', 187),
(191, 211, '<NAME>', NULL, 'public/image/avatar.png', 187),
(192, 213, '<NAME>', '2014-11-21', 'public/image/avatar.png', 188);
-- --------------------------------------------------------
--
-- Table structure for table `student_attendance`
--
CREATE TABLE `student_attendance` (
`id` int(11) NOT NULL,
`date` date NOT NULL,
`student_id` int(11) NOT NULL,
`in_time` datetime NOT NULL,
`out_time` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `student_attendance`
--
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(5, '2019-01-08', 59, '2019-01-08 22:03:44', NULL),
(6, '2019-01-08', 22, '2019-01-08 22:08:47', NULL),
(7, '2019-01-08', 26, '2019-01-08 22:08:52', NULL),
(8, '2019-01-08', 43, '2019-01-08 22:27:54', NULL),
(9, '2019-01-13', 155, '2019-01-13 07:50:33', NULL),
(10, '2019-01-13', 156, '2019-01-13 07:55:35', NULL),
(11, '2019-01-13', 118, '2019-01-13 07:59:32', NULL),
(12, '2019-01-13', 136, '2019-01-13 08:00:08', NULL),
(13, '2019-01-13', 119, '2019-01-13 08:00:24', NULL),
(14, '2019-01-13', 62, '2019-01-13 08:00:50', NULL),
(15, '2019-01-13', 98, '2019-01-13 08:01:00', NULL),
(16, '2019-01-13', 99, '2019-01-13 08:03:23', NULL),
(17, '2019-01-13', 60, '2019-01-13 08:38:29', NULL),
(18, '2019-01-13', 26, '2019-01-13 08:39:23', NULL),
(19, '2019-01-13', 39, '2019-01-13 08:39:34', NULL),
(20, '2019-01-13', 59, '2019-01-13 08:39:56', NULL),
(21, '2019-01-13', 144, '2019-01-13 08:40:27', NULL),
(22, '2019-01-13', 69, '2019-01-13 08:40:51', NULL),
(23, '2019-01-13', 21, '2019-01-13 08:41:03', NULL),
(24, '2019-01-13', 75, '2019-01-13 08:41:10', NULL),
(25, '2019-01-13', 15, '2019-01-13 08:43:57', NULL),
(26, '2019-01-13', 9, '2019-01-13 08:44:21', NULL),
(27, '2019-01-13', 94, '2019-01-13 08:45:42', NULL),
(28, '2019-01-13', 7, '2019-01-13 08:45:45', NULL),
(29, '2019-01-13', 38, '2019-01-13 08:47:34', NULL),
(30, '2019-01-13', 110, '2019-01-13 08:50:46', NULL),
(31, '2019-01-14', 96, '2019-01-14 07:44:12', '2019-01-14 10:33:21'),
(32, '2019-01-14', 157, '2019-01-14 07:45:44', NULL),
(33, '2019-01-14', 85, '2019-01-14 09:55:25', NULL),
(34, '2019-01-14', 172, '2019-01-14 09:57:48', '2019-01-14 13:06:03'),
(35, '2019-01-14', 110, '2019-01-14 09:58:00', NULL),
(36, '2019-01-14', 17, '2019-01-14 10:10:23', NULL),
(37, '2019-01-14', 113, '2019-01-14 10:10:26', NULL),
(38, '2019-01-14', 34, '2019-01-14 10:13:30', NULL),
(39, '2019-01-14', 39, '2019-01-14 10:14:49', NULL),
(40, '2019-01-14', 105, '2019-01-14 10:16:58', NULL),
(41, '2019-01-14', 38, '2019-01-14 10:17:22', NULL),
(43, '2019-01-14', 119, '2019-01-14 10:24:13', NULL),
(44, '2019-01-14', 29, '2019-01-14 10:24:44', NULL),
(45, '2019-01-14', 112, '2019-01-14 10:24:50', NULL),
(46, '2019-01-14', 26, '2019-01-14 10:24:53', NULL),
(47, '2019-01-14', 22, '2019-01-14 10:25:24', NULL),
(48, '2019-01-14', 118, '2019-01-14 10:25:28', NULL),
(49, '2019-01-14', 93, '2019-01-14 10:31:07', NULL),
(50, '2019-01-14', 78, '2019-01-14 10:31:13', NULL),
(51, '2019-01-14', 88, '2019-01-14 10:31:25', NULL),
(52, '2019-01-14', 80, '2019-01-14 10:31:39', NULL),
(53, '2019-01-14', 77, '2019-01-14 10:31:44', NULL),
(54, '2019-01-14', 99, '2019-01-14 10:31:53', NULL),
(55, '2019-01-14', 75, '2019-01-14 10:31:57', NULL),
(56, '2019-01-14', 100, '2019-01-14 10:32:01', NULL),
(57, '2019-01-14', 89, '2019-01-14 10:32:11', NULL),
(58, '2019-01-14', 160, '2019-01-14 10:32:18', NULL),
(59, '2019-01-14', 86, '2019-01-14 10:32:23', NULL),
(60, '2019-01-14', 94, '2019-01-14 10:32:26', NULL),
(61, '2019-01-14', 97, '2019-01-14 10:32:38', NULL),
(62, '2019-01-14', 87, '2019-01-14 10:32:52', NULL),
(63, '2019-01-14', 159, '2019-01-14 10:33:03', NULL),
(64, '2019-01-14', 76, '2019-01-14 10:33:12', NULL),
(65, '2019-01-14', 91, '2019-01-14 10:33:28', NULL),
(66, '2019-01-14', 90, '2019-01-14 10:33:33', NULL),
(67, '2019-01-14', 84, '2019-01-14 10:33:37', NULL),
(68, '2019-01-14', 33, '2019-01-14 10:36:35', NULL),
(69, '2019-01-14', 42, '2019-01-14 10:36:45', NULL),
(70, '2019-01-14', 111, '2019-01-14 10:36:54', NULL),
(71, '2019-01-14', 109, '2019-01-14 10:38:43', NULL),
(72, '2019-01-14', 106, '2019-01-14 10:45:52', NULL),
(73, '2019-01-14', 107, '2019-01-14 10:48:45', NULL),
(74, '2019-01-14', 104, '2019-01-14 10:49:00', NULL),
(75, '2019-01-14', 41, '2019-01-14 10:58:59', NULL),
(76, '2019-01-14', 35, '2019-01-14 11:04:16', NULL),
(77, '2019-01-14', 36, '2019-01-14 11:04:17', NULL),
(79, '2019-01-14', 59, '2019-01-14 19:23:30', '2019-01-14 19:42:20'),
(80, '2019-01-14', 122, '2019-01-14 19:23:34', '2019-01-14 19:42:29'),
(81, '2019-01-14', 31, '2019-01-14 19:23:40', '2019-01-14 19:42:25'),
(82, '2019-01-14', 32, '2019-01-14 19:23:44', '2019-01-14 19:42:15'),
(83, '2019-01-14', 37, '2019-01-14 19:23:49', '2019-01-14 19:42:14'),
(84, '2019-01-15', 155, '2019-01-15 07:51:51', NULL),
(85, '2019-01-15', 14, '2019-01-15 07:52:16', NULL),
(86, '2019-01-15', 170, '2019-01-15 07:52:22', NULL),
(87, '2019-01-15', 146, '2019-01-15 07:52:37', NULL),
(88, '2019-01-15', 142, '2019-01-15 07:57:18', NULL),
(89, '2019-01-15', 115, '2019-01-15 07:57:52', '2019-01-15 08:01:27'),
(90, '2019-01-15', 99, '2019-01-15 07:58:05', NULL),
(91, '2019-01-15', 67, '2019-01-15 07:59:35', NULL),
(92, '2019-01-15', 147, '2019-01-15 08:00:04', NULL),
(93, '2019-01-15', 55, '2019-01-15 08:00:23', NULL),
(94, '2019-01-15', 152, '2019-01-15 08:00:28', '2019-01-15 08:03:24'),
(95, '2019-01-15', 53, '2019-01-15 08:00:33', NULL),
(96, '2019-01-15', 125, '2019-01-15 08:01:40', NULL),
(97, '2019-01-15', 6, '2019-01-15 08:01:44', NULL),
(98, '2019-01-15', 171, '2019-01-15 08:01:54', NULL),
(99, '2019-01-15', 154, '2019-01-15 08:02:02', NULL),
(100, '2019-01-15', 157, '2019-01-15 08:02:08', NULL),
(101, '2019-01-15', 173, '2019-01-15 08:02:42', '2019-01-15 13:15:55'),
(102, '2019-01-15', 156, '2019-01-15 08:02:56', NULL),
(103, '2019-01-15', 57, '2019-01-15 08:03:00', '2019-01-15 08:28:28'),
(104, '2019-01-15', 62, '2019-01-15 08:03:20', NULL),
(105, '2019-01-15', 98, '2019-01-15 08:03:34', NULL),
(106, '2019-01-15', 116, '2019-01-15 08:06:39', NULL),
(107, '2019-01-15', 59, '2019-01-15 08:07:34', '2019-01-15 13:21:31'),
(108, '2019-01-15', 72, '2019-01-15 08:07:49', '2019-01-15 13:10:10'),
(109, '2019-01-15', 123, '2019-01-15 08:08:01', NULL),
(110, '2019-01-15', 110, '2019-01-15 08:08:07', '2019-01-15 08:40:02'),
(111, '2019-01-15', 126, '2019-01-15 08:08:18', NULL),
(112, '2019-01-15', 46, '2019-01-15 08:08:34', NULL),
(113, '2019-01-15', 118, '2019-01-15 08:09:56', NULL),
(114, '2019-01-15', 168, '2019-01-15 08:10:17', NULL),
(115, '2019-01-15', 141, '2019-01-15 08:11:18', NULL),
(116, '2019-01-15', 124, '2019-01-15 08:12:05', '2019-01-15 08:28:57'),
(117, '2019-01-15', 51, '2019-01-15 08:12:31', NULL),
(118, '2019-01-15', 139, '2019-01-15 08:12:44', NULL),
(119, '2019-01-15', 137, '2019-01-15 08:13:20', '2019-01-15 08:27:27'),
(120, '2019-01-15', 39, '2019-01-15 08:14:17', NULL),
(121, '2019-01-15', 78, '2019-01-15 08:15:14', NULL),
(122, '2019-01-15', 25, '2019-01-15 08:15:19', NULL),
(123, '2019-01-15', 86, '2019-01-15 08:15:39', NULL),
(124, '2019-01-15', 163, '2019-01-15 08:16:40', NULL),
(125, '2019-01-15', 169, '2019-01-15 08:16:49', NULL),
(126, '2019-01-15', 138, '2019-01-15 08:17:11', NULL),
(127, '2019-01-15', 129, '2019-01-15 08:17:25', NULL),
(128, '2019-01-15', 145, '2019-01-15 08:18:26', NULL),
(129, '2019-01-15', 63, '2019-01-15 08:19:16', NULL),
(130, '2019-01-15', 132, '2019-01-15 08:19:19', NULL),
(131, '2019-01-15', 93, '2019-01-15 08:20:29', NULL),
(132, '2019-01-15', 165, '2019-01-15 08:20:36', NULL),
(133, '2019-01-15', 50, '2019-01-15 08:20:39', NULL),
(134, '2019-01-15', 159, '2019-01-15 08:20:44', NULL),
(135, '2019-01-15', 87, '2019-01-15 08:20:49', NULL),
(136, '2019-01-15', 76, '2019-01-15 08:20:59', NULL),
(137, '2019-01-15', 17, '2019-01-15 08:21:01', NULL),
(138, '2019-01-15', 100, '2019-01-15 08:21:21', NULL),
(139, '2019-01-15', 150, '2019-01-15 08:21:43', NULL),
(140, '2019-01-15', 112, '2019-01-15 08:22:29', NULL),
(141, '2019-01-15', 84, '2019-01-15 08:22:32', NULL),
(142, '2019-01-15', 7, '2019-01-15 08:26:50', NULL),
(143, '2019-01-15', 94, '2019-01-15 08:27:06', NULL),
(144, '2019-01-15', 8, '2019-01-15 08:27:10', NULL),
(145, '2019-01-15', 143, '2019-01-15 08:27:21', NULL),
(146, '2019-01-15', 44, '2019-01-15 08:27:57', NULL),
(147, '2019-01-15', 172, '2019-01-15 08:28:07', NULL),
(148, '2019-01-15', 58, '2019-01-15 08:28:18', NULL),
(149, '2019-01-15', 66, '2019-01-15 08:28:21', NULL),
(150, '2019-01-15', 9, '2019-01-15 08:28:36', NULL),
(151, '2019-01-15', 140, '2019-01-15 08:28:41', NULL),
(152, '2019-01-15', 164, '2019-01-15 08:28:46', NULL),
(153, '2019-01-15', 68, '2019-01-15 08:28:49', NULL),
(154, '2019-01-15', 120, '2019-01-15 08:29:17', NULL),
(155, '2019-01-15', 113, '2019-01-15 08:30:40', NULL),
(156, '2019-01-15', 60, '2019-01-15 08:31:08', NULL),
(157, '2019-01-15', 148, '2019-01-15 08:31:58', NULL),
(158, '2019-01-15', 75, '2019-01-15 08:34:44', NULL),
(159, '2019-01-15', 162, '2019-01-15 08:34:55', NULL),
(160, '2019-01-15', 13, '2019-01-15 08:35:00', NULL),
(161, '2019-01-15', 160, '2019-01-15 08:35:27', NULL),
(162, '2019-01-15', 45, '2019-01-15 08:36:14', NULL),
(163, '2019-01-15', 70, '2019-01-15 08:36:29', NULL),
(164, '2019-01-15', 90, '2019-01-15 08:36:36', NULL),
(165, '2019-01-15', 153, '2019-01-15 08:36:43', NULL),
(166, '2019-01-15', 97, '2019-01-15 08:37:04', NULL),
(167, '2019-01-15', 91, '2019-01-15 08:37:09', NULL),
(168, '2019-01-15', 22, '2019-01-15 08:37:23', NULL),
(169, '2019-01-15', 101, '2019-01-15 08:38:48', NULL),
(170, '2019-01-15', 48, '2019-01-15 08:39:10', NULL),
(171, '2019-01-15', 144, '2019-01-15 08:40:36', NULL),
(172, '2019-01-15', 133, '2019-01-15 08:40:42', NULL),
(173, '2019-01-15', 54, '2019-01-15 08:40:46', NULL),
(174, '2019-01-15', 69, '2019-01-15 08:40:51', NULL),
(175, '2019-01-15', 88, '2019-01-15 08:41:46', NULL),
(176, '2019-01-15', 38, '2019-01-15 08:44:05', NULL),
(177, '2019-01-15', 77, '2019-01-15 09:23:18', NULL),
(178, '2019-01-15', 105, '2019-01-15 10:18:05', NULL),
(179, '2019-01-17', 122, '2019-01-17 20:04:48', NULL),
(180, '2019-01-18', 30, '2019-01-18 19:53:11', NULL),
(181, '2019-01-19', 157, '2019-01-19 07:44:33', '2019-01-19 11:35:32'),
(182, '2019-01-19', 155, '2019-01-19 07:57:02', '2019-01-19 10:55:12'),
(183, '2019-01-19', 57, '2019-01-19 07:57:30', '2019-01-19 12:45:39'),
(184, '2019-01-19', 98, '2019-01-19 07:57:51', '2019-01-19 10:29:54'),
(185, '2019-01-19', 119, '2019-01-19 07:57:57', '2019-01-19 10:24:36'),
(186, '2019-01-19', 62, '2019-01-19 07:58:03', '2019-01-19 12:46:27'),
(187, '2019-01-19', 147, '2019-01-19 08:04:09', '2019-01-19 11:41:33'),
(188, '2019-01-19', 152, '2019-01-19 08:04:12', '2019-01-19 11:43:52'),
(189, '2019-01-19', 72, '2019-01-19 08:04:17', '2019-01-19 12:46:10'),
(190, '2019-01-19', 6, '2019-01-19 08:04:21', '2019-01-19 12:10:04'),
(191, '2019-01-19', 55, '2019-01-19 08:04:44', '2019-01-19 12:46:29'),
(192, '2019-01-19', 99, '2019-01-19 08:04:46', '2019-01-19 10:29:44'),
(193, '2019-01-19', 96, '2019-01-19 08:05:10', '2019-01-19 10:30:16'),
(194, '2019-01-19', 171, '2019-01-19 08:05:36', NULL),
(195, '2019-01-19', 46, '2019-01-19 08:07:05', '2019-01-19 12:42:30'),
(196, '2019-01-19', 101, '2019-01-19 08:08:56', '2019-01-19 10:30:41'),
(197, '2019-01-19', 124, '2019-01-19 08:09:26', '2019-01-19 11:35:40'),
(198, '2019-01-19', 43, '2019-01-19 08:33:05', NULL),
(199, '2019-01-19', 75, '2019-01-19 08:33:13', NULL),
(200, '2019-01-19', 113, '2019-01-19 08:34:13', '2019-01-19 10:24:04'),
(201, '2019-01-19', 95, '2019-01-19 08:34:24', '2019-01-19 10:29:34'),
(202, '2019-01-19', 44, '2019-01-19 08:35:06', NULL),
(203, '2019-01-19', 121, '2019-01-19 08:35:26', '2019-01-19 10:24:08'),
(204, '2019-01-19', 15, '2019-01-19 08:38:00', '2019-01-19 12:10:55'),
(205, '2019-01-19', 133, '2019-01-19 08:38:48', '2019-01-19 11:35:16'),
(206, '2019-01-19', 61, '2019-01-19 08:40:08', '2019-01-19 12:54:54'),
(207, '2019-01-19', 70, '2019-01-19 08:42:25', '2019-01-19 12:46:23'),
(208, '2019-01-19', 91, '2019-01-19 08:43:03', '2019-01-19 10:30:39'),
(209, '2019-01-19', 90, '2019-01-19 08:43:12', '2019-01-19 10:30:45'),
(210, '2019-01-19', 22, '2019-01-19 08:43:19', '2019-01-19 10:26:13'),
(211, '2019-01-19', 97, '2019-01-19 08:43:23', '2019-01-19 10:30:33'),
(212, '2019-01-19', 58, '2019-01-19 08:44:04', '2019-01-19 12:46:02'),
(213, '2019-01-19', 160, '2019-01-19 08:44:21', '2019-01-19 10:31:02'),
(214, '2019-01-19', 120, '2019-01-19 08:47:33', NULL),
(215, '2019-01-19', 69, '2019-01-19 08:48:05', '2019-01-19 12:46:07'),
(216, '2019-01-19', 144, '2019-01-19 08:48:12', '2019-01-19 11:35:28'),
(217, '2019-01-19', 135, '2019-01-19 08:54:37', '2019-01-19 11:36:50'),
(218, '2019-01-19', 128, '2019-01-19 08:55:00', '2019-01-19 11:34:58'),
(219, '2019-01-19', 105, '2019-01-19 10:19:20', '2019-01-19 12:47:17'),
(220, '2019-01-19', 115, '2019-01-19 10:24:21', NULL),
(221, '2019-01-19', 39, '2019-01-19 10:24:30', NULL),
(222, '2019-01-19', 29, '2019-01-19 10:24:39', NULL),
(223, '2019-01-19', 112, '2019-01-19 10:24:51', NULL),
(224, '2019-01-19', 34, '2019-01-19 10:25:25', NULL),
(225, '2019-01-19', 27, '2019-01-19 10:25:32', NULL),
(226, '2019-01-19', 106, '2019-01-19 10:25:59', '2019-01-19 12:45:50'),
(227, '2019-01-19', 116, '2019-01-19 10:27:09', NULL),
(228, '2019-01-19', 86, '2019-01-19 10:29:46', NULL),
(229, '2019-01-19', 159, '2019-01-19 10:29:53', NULL),
(230, '2019-01-19', 94, '2019-01-19 10:29:58', NULL),
(231, '2019-01-19', 80, '2019-01-19 10:30:09', NULL),
(232, '2019-01-19', 89, '2019-01-19 10:30:28', NULL),
(233, '2019-01-19', 78, '2019-01-19 10:30:51', NULL),
(234, '2019-01-19', 87, '2019-01-19 10:30:56', NULL),
(235, '2019-01-19', 84, '2019-01-19 10:31:05', NULL),
(236, '2019-01-19', 149, '2019-01-19 10:31:41', '2019-01-19 12:50:06'),
(237, '2019-01-19', 85, '2019-01-19 10:31:55', NULL),
(238, '2019-01-19', 33, '2019-01-19 10:34:06', '2019-01-19 12:51:48'),
(239, '2019-01-19', 42, '2019-01-19 10:34:17', '2019-01-19 12:49:41'),
(240, '2019-01-19', 111, '2019-01-19 10:34:29', '2019-01-19 12:45:19'),
(241, '2019-01-19', 104, '2019-01-19 10:37:31', '2019-01-19 12:45:34'),
(242, '2019-01-19', 35, '2019-01-19 10:39:14', '2019-01-19 12:54:08'),
(243, '2019-01-19', 36, '2019-01-19 10:39:25', '2019-01-19 12:50:45'),
(244, '2019-01-19', 109, '2019-01-19 10:42:13', '2019-01-19 12:46:25'),
(245, '2019-01-19', 28, '2019-01-19 10:47:08', NULL),
(246, '2019-01-19', 141, '2019-01-19 11:07:45', NULL),
(247, '2019-01-19', 150, '2019-01-19 11:35:11', NULL),
(248, '2019-01-19', 137, '2019-01-19 11:35:12', NULL),
(249, '2019-01-19', 154, '2019-01-19 11:35:18', NULL),
(250, '2019-01-19', 125, '2019-01-19 11:35:25', NULL),
(251, '2019-01-19', 129, '2019-01-19 11:35:27', NULL),
(252, '2019-01-19', 148, '2019-01-19 11:36:28', NULL),
(253, '2019-01-19', 145, '2019-01-19 11:41:03', NULL),
(254, '2019-01-19', 156, '2019-01-19 11:41:07', NULL),
(255, '2019-01-19', 126, '2019-01-19 11:41:31', NULL),
(256, '2019-01-19', 138, '2019-01-19 11:41:46', NULL),
(257, '2019-01-19', 59, '2019-01-19 11:51:22', NULL),
(258, '2019-01-19', 8, '2019-01-19 12:09:18', NULL),
(259, '2019-01-19', 165, '2019-01-19 12:09:44', NULL),
(260, '2019-01-19', 5, '2019-01-19 12:09:53', NULL),
(261, '2019-01-19', 9, '2019-01-19 12:10:01', NULL),
(262, '2019-01-19', 25, '2019-01-19 12:10:07', NULL),
(263, '2019-01-19', 10, '2019-01-19 12:10:20', NULL),
(264, '2019-01-19', 11, '2019-01-19 12:23:19', NULL),
(265, '2019-01-19', 163, '2019-01-19 12:24:37', NULL),
(266, '2019-01-19', 56, '2019-01-19 12:45:58', NULL),
(267, '2019-01-19', 66, '2019-01-19 12:46:14', NULL),
(268, '2019-01-19', 71, '2019-01-19 12:46:44', NULL),
(269, '2019-01-19', 176, '2019-01-19 12:46:51', NULL),
(270, '2019-01-19', 68, '2019-01-19 12:47:10', NULL),
(271, '2019-01-19', 103, '2019-01-19 12:47:58', NULL),
(272, '2019-01-19', 30, '2019-01-19 12:49:33', NULL),
(273, '2019-01-20', 157, '2019-01-20 07:41:21', '2019-01-20 11:38:09'),
(274, '2019-01-20', 96, '2019-01-20 07:54:29', '2019-01-20 08:29:13'),
(275, '2019-01-20', 63, '2019-01-20 07:54:40', '2019-01-20 12:46:10'),
(276, '2019-01-20', 67, '2019-01-20 07:57:18', '2019-01-20 12:46:37'),
(277, '2019-01-20', 25, '2019-01-20 07:57:42', '2019-01-20 12:07:17'),
(278, '2019-01-20', 99, '2019-01-20 07:59:19', '2019-01-20 10:27:24'),
(279, '2019-01-20', 168, '2019-01-20 08:02:17', '2019-01-20 12:46:48'),
(280, '2019-01-20', 114, '2019-01-20 08:02:48', '2019-01-20 10:25:54'),
(281, '2019-01-20', 72, '2019-01-20 08:03:06', NULL),
(282, '2019-01-20', 152, '2019-01-20 08:03:13', '2019-01-20 11:38:04'),
(283, '2019-01-20', 141, '2019-01-20 08:05:02', '2019-01-20 11:37:19'),
(284, '2019-01-20', 95, '2019-01-20 08:05:23', '2019-01-20 10:30:08'),
(285, '2019-01-20', 171, '2019-01-20 08:06:50', '2019-01-20 12:48:34'),
(286, '2019-01-20', 169, '2019-01-20 08:08:29', '2019-01-20 12:48:00'),
(287, '2019-01-20', 155, '2019-01-20 08:08:50', '2019-01-20 11:47:55'),
(288, '2019-01-20', 115, '2019-01-20 08:09:05', '2019-01-20 10:23:43'),
(289, '2019-01-20', 159, '2019-01-20 08:09:42', '2019-01-20 10:30:02'),
(290, '2019-01-20', 139, '2019-01-20 08:11:16', '2019-01-20 11:38:36'),
(291, '2019-01-20', 87, '2019-01-20 08:11:37', '2019-01-20 10:30:41'),
(292, '2019-01-20', 51, '2019-01-20 08:11:40', NULL),
(293, '2019-01-20', 9, '2019-01-20 08:11:53', '2019-01-20 12:10:42'),
(294, '2019-01-20', 86, '2019-01-20 08:12:53', '2019-01-20 10:30:28'),
(295, '2019-01-20', 116, '2019-01-20 08:12:58', '2019-01-20 10:25:40'),
(296, '2019-01-20', 138, '2019-01-20 08:13:24', '2019-01-20 11:37:59'),
(297, '2019-01-20', 6, '2019-01-20 08:13:29', NULL),
(298, '2019-01-20', 101, '2019-01-20 08:13:32', '2019-01-20 10:31:01'),
(299, '2019-01-20', 46, '2019-01-20 08:13:40', '2019-01-20 12:46:20'),
(300, '2019-01-20', 176, '2019-01-20 08:13:48', NULL),
(301, '2019-01-20', 129, '2019-01-20 08:14:30', NULL),
(302, '2019-01-20', 90, '2019-01-20 08:15:03', '2019-01-20 10:29:53'),
(303, '2019-01-20', 119, '2019-01-20 08:15:15', '2019-01-20 10:23:53'),
(304, '2019-01-20', 22, '2019-01-20 08:15:25', '2019-01-20 10:26:06'),
(305, '2019-01-20', 57, '2019-01-20 08:15:29', '2019-01-20 12:46:07'),
(306, '2019-01-20', 154, '2019-01-20 08:15:35', '2019-01-20 11:37:32'),
(307, '2019-01-20', 17, '2019-01-20 08:15:40', '2019-01-20 10:25:18'),
(308, '2019-01-20', 123, '2019-01-20 08:16:10', '2019-01-20 11:38:21'),
(309, '2019-01-20', 27, '2019-01-20 08:16:25', '2019-01-20 10:25:23'),
(310, '2019-01-20', 173, '2019-01-20 08:16:29', '2019-01-20 12:46:44'),
(311, '2019-01-20', 85, '2019-01-20 08:16:50', '2019-01-20 10:31:20'),
(312, '2019-01-20', 172, '2019-01-20 08:16:53', NULL),
(313, '2019-01-20', 37, '2019-01-20 08:16:55', '2019-01-20 10:24:49'),
(314, '2019-01-20', 79, '2019-01-20 08:17:19', '2019-01-20 10:31:00'),
(315, '2019-01-20', 84, '2019-01-20 08:17:30', '2019-01-20 10:30:53'),
(316, '2019-01-20', 121, '2019-01-20 08:18:01', '2019-01-20 10:24:42'),
(317, '2019-01-20', 39, '2019-01-20 08:18:25', '2019-01-20 10:26:34'),
(318, '2019-01-20', 165, '2019-01-20 08:18:37', '2019-01-20 12:06:27'),
(319, '2019-01-20', 150, '2019-01-20 08:18:45', '2019-01-20 11:38:00'),
(320, '2019-01-20', 68, '2019-01-20 08:19:15', '2019-01-20 12:47:35'),
(321, '2019-01-20', 65, '2019-01-20 08:19:39', '2019-01-20 12:47:05'),
(322, '2019-01-20', 133, '2019-01-20 08:20:19', '2019-01-20 11:36:54'),
(323, '2019-01-20', 130, '2019-01-20 08:28:47', '2019-01-20 11:43:41'),
(324, '2019-01-20', 160, '2019-01-20 08:28:59', '2019-01-20 10:30:49'),
(325, '2019-01-20', 143, '2019-01-20 08:29:03', '2019-01-20 11:36:55'),
(326, '2019-01-20', 126, '2019-01-20 08:29:06', '2019-01-20 11:37:22'),
(327, '2019-01-20', 137, '2019-01-20 08:29:14', '2019-01-20 11:37:26'),
(328, '2019-01-20', 142, '2019-01-20 08:29:21', '2019-01-20 11:38:26'),
(329, '2019-01-20', 132, '2019-01-20 08:29:31', NULL),
(330, '2019-01-20', 58, '2019-01-20 08:29:38', '2019-01-20 12:46:32'),
(331, '2019-01-20', 44, '2019-01-20 08:29:41', '2019-01-20 12:46:22'),
(332, '2019-01-20', 156, '2019-01-20 08:29:51', '2019-01-20 11:37:57'),
(333, '2019-01-20', 10, '2019-01-20 08:29:54', '2019-01-20 12:07:21'),
(334, '2019-01-20', 144, '2019-01-20 08:29:56', '2019-01-20 11:37:48'),
(335, '2019-01-20', 45, '2019-01-20 08:30:00', '2019-01-20 12:47:22'),
(336, '2019-01-20', 43, '2019-01-20 08:30:03', '2019-01-20 12:46:28'),
(337, '2019-01-20', 69, '2019-01-20 08:30:04', NULL),
(338, '2019-01-20', 117, '2019-01-20 08:30:09', '2019-01-20 10:25:50'),
(339, '2019-01-20', 140, '2019-01-20 08:30:13', '2019-01-20 11:43:28'),
(340, '2019-01-20', 29, '2019-01-20 08:30:22', '2019-01-20 10:25:58'),
(341, '2019-01-20', 74, '2019-01-20 08:30:30', '2019-01-20 10:30:10'),
(342, '2019-01-20', 97, '2019-01-20 08:31:09', '2019-01-20 10:30:37'),
(343, '2019-01-20', 13, '2019-01-20 08:31:23', '2019-01-20 12:06:49'),
(344, '2019-01-20', 5, '2019-01-20 08:31:28', '2019-01-20 12:07:12'),
(345, '2019-01-20', 15, '2019-01-20 08:31:31', NULL),
(346, '2019-01-20', 23, '2019-01-20 08:31:38', NULL),
(347, '2019-01-20', 80, '2019-01-20 08:31:44', '2019-01-20 10:31:11'),
(348, '2019-01-20', 163, '2019-01-20 08:31:50', '2019-01-20 12:06:40'),
(349, '2019-01-20', 113, '2019-01-20 08:31:55', '2019-01-20 10:24:35'),
(350, '2019-01-20', 11, '2019-01-20 08:32:01', NULL),
(351, '2019-01-20', 18, '2019-01-20 08:32:07', NULL),
(352, '2019-01-20', 66, '2019-01-20 08:32:16', '2019-01-20 12:47:07'),
(353, '2019-01-20', 110, '2019-01-20 08:32:25', NULL),
(354, '2019-01-20', 125, '2019-01-20 08:32:46', NULL),
(355, '2019-01-20', 60, '2019-01-20 08:33:44', '2019-01-20 12:47:15'),
(356, '2019-01-20', 26, '2019-01-20 08:33:50', '2019-01-20 10:24:12'),
(357, '2019-01-20', 89, '2019-01-20 08:34:58', '2019-01-20 10:26:44'),
(358, '2019-01-20', 52, '2019-01-20 08:35:08', '2019-01-20 12:46:46'),
(359, '2019-01-20', 56, '2019-01-20 08:36:31', '2019-01-20 12:46:59'),
(360, '2019-01-20', 59, '2019-01-20 08:36:44', '2019-01-20 12:46:30'),
(361, '2019-01-20', 16, '2019-01-20 08:36:49', NULL),
(362, '2019-01-20', 48, '2019-01-20 08:37:12', '2019-01-20 12:47:00'),
(363, '2019-01-20', 88, '2019-01-20 08:38:20', '2019-01-20 10:31:33'),
(364, '2019-01-20', 164, '2019-01-20 08:39:17', NULL),
(365, '2019-01-20', 70, '2019-01-20 08:40:02', '2019-01-20 12:47:27'),
(366, '2019-01-20', 151, '2019-01-20 08:41:30', '2019-01-20 11:37:38'),
(367, '2019-01-20', 61, '2019-01-20 08:42:48', '2019-01-20 12:46:41'),
(368, '2019-01-20', 135, '2019-01-20 08:44:57', '2019-01-20 11:37:43'),
(369, '2019-01-20', 128, '2019-01-20 08:45:02', '2019-01-20 11:37:55'),
(370, '2019-01-20', 19, '2019-01-20 08:50:19', NULL),
(371, '2019-01-20', 77, '2019-01-20 08:53:43', '2019-01-20 10:31:09'),
(372, '2019-01-20', 105, '2019-01-20 10:07:18', '2019-01-20 12:49:48'),
(373, '2019-01-20', 112, '2019-01-20 10:24:52', NULL),
(374, '2019-01-20', 34, '2019-01-20 10:25:08', NULL),
(375, '2019-01-20', 109, '2019-01-20 10:26:19', '2019-01-20 12:45:57'),
(376, '2019-01-20', 78, '2019-01-20 10:29:58', NULL),
(377, '2019-01-20', 93, '2019-01-20 10:30:22', NULL),
(378, '2019-01-20', 33, '2019-01-20 10:32:34', NULL),
(379, '2019-01-20', 111, '2019-01-20 10:32:38', '2019-01-20 12:45:25'),
(380, '2019-01-20', 106, '2019-01-20 10:32:51', '2019-01-20 12:46:34'),
(381, '2019-01-20', 30, '2019-01-20 10:35:16', '2019-01-20 12:47:52'),
(382, '2019-01-20', 149, '2019-01-20 10:35:21', '2019-01-20 12:48:02'),
(383, '2019-01-20', 108, '2019-01-20 10:35:51', '2019-01-20 12:45:31'),
(384, '2019-01-20', 104, '2019-01-20 10:36:15', NULL),
(385, '2019-01-20', 103, '2019-01-20 10:36:18', '2019-01-20 12:46:52'),
(386, '2019-01-20', 175, '2019-01-20 10:50:55', '2019-01-20 12:46:16'),
(387, '2019-01-20', 41, '2019-01-20 10:51:56', '2019-01-20 12:48:30'),
(388, '2019-01-20', 36, '2019-01-20 10:52:36', '2019-01-20 12:48:24'),
(389, '2019-01-20', 35, '2019-01-20 10:52:43', NULL),
(390, '2019-01-20', 174, '2019-01-20 12:45:45', NULL),
(391, '2019-01-20', 102, '2019-01-20 12:45:50', NULL),
(392, '2019-01-20', 28, '2019-01-20 12:47:20', NULL),
(393, '2019-01-20', 50, '2019-01-20 12:48:12', NULL),
(394, '2019-01-20', 177, '2019-01-20 12:50:22', NULL),
(395, '2019-01-21', 89, '2019-01-21 07:52:42', '2019-01-21 10:29:05'),
(396, '2019-01-21', 115, '2019-01-21 07:56:02', '2019-01-21 10:29:51'),
(397, '2019-01-21', 67, '2019-01-21 07:57:50', NULL),
(398, '2019-01-21', 155, '2019-01-21 07:58:18', NULL),
(399, '2019-01-21', 96, '2019-01-21 07:58:46', '2019-01-21 10:32:12'),
(400, '2019-01-21', 150, '2019-01-21 08:00:15', NULL),
(401, '2019-01-21', 95, '2019-01-21 08:00:28', '2019-01-21 10:30:53'),
(402, '2019-01-21', 99, '2019-01-21 08:00:56', '2019-01-21 10:30:41'),
(403, '2019-01-21', 144, '2019-01-21 08:02:21', '2019-01-21 11:29:37'),
(404, '2019-01-21', 69, '2019-01-21 08:02:25', NULL),
(405, '2019-01-21', 54, '2019-01-21 08:02:33', NULL),
(406, '2019-01-21', 16, '2019-01-21 08:02:48', NULL),
(407, '2019-01-21', 25, '2019-01-21 08:03:00', NULL),
(408, '2019-01-21', 157, '2019-01-21 08:03:09', NULL),
(409, '2019-01-21', 91, '2019-01-21 08:05:21', '2019-01-21 10:31:19'),
(410, '2019-01-21', 90, '2019-01-21 08:05:26', NULL),
(411, '2019-01-21', 57, '2019-01-21 08:05:28', NULL),
(412, '2019-01-21', 119, '2019-01-21 08:05:31', '2019-01-21 10:27:07'),
(413, '2019-01-21', 62, '2019-01-21 08:05:33', NULL),
(414, '2019-01-21', 98, '2019-01-21 08:05:40', '2019-01-21 10:32:08'),
(415, '2019-01-21', 136, '2019-01-21 08:05:42', NULL),
(416, '2019-01-21', 176, '2019-01-21 08:05:53', NULL),
(417, '2019-01-21', 22, '2019-01-21 08:06:01', '2019-01-21 10:28:10'),
(418, '2019-01-21', 167, '2019-01-21 08:06:08', NULL),
(419, '2019-01-21', 123, '2019-01-21 08:06:21', NULL),
(420, '2019-01-21', 116, '2019-01-21 08:06:54', '2019-01-21 10:28:02'),
(421, '2019-01-21', 87, '2019-01-21 08:07:26', '2019-01-21 10:32:38'),
(422, '2019-01-21', 141, '2019-01-21 08:08:34', NULL),
(423, '2019-01-21', 23, '2019-01-21 08:08:42', NULL),
(424, '2019-01-21', 154, '2019-01-21 08:08:47', NULL),
(425, '2019-01-21', 146, '2019-01-21 08:09:14', NULL),
(426, '2019-01-21', 50, '2019-01-21 08:09:18', NULL),
(427, '2019-01-21', 169, '2019-01-21 08:09:28', NULL),
(428, '2019-01-21', 152, '2019-01-21 08:10:15', NULL),
(429, '2019-01-21', 6, '2019-01-21 08:10:21', NULL),
(430, '2019-01-21', 72, '2019-01-21 08:10:49', NULL),
(431, '2019-01-21', 65, '2019-01-21 08:10:55', NULL),
(432, '2019-01-21', 159, '2019-01-21 08:11:32', '2019-01-21 10:31:28'),
(433, '2019-01-21', 26, '2019-01-21 08:11:47', '2019-01-21 10:27:22'),
(434, '2019-01-21', 173, '2019-01-21 08:12:13', NULL),
(435, '2019-01-21', 140, '2019-01-21 08:14:05', NULL),
(436, '2019-01-21', 29, '2019-01-21 08:14:12', '2019-01-21 10:29:08'),
(437, '2019-01-21', 76, '2019-01-21 08:14:50', '2019-01-21 10:31:52'),
(438, '2019-01-21', 126, '2019-01-21 08:14:52', NULL),
(439, '2019-01-21', 100, '2019-01-21 08:14:56', '2019-01-21 10:30:30'),
(440, '2019-01-21', 139, '2019-01-21 08:15:46', NULL),
(441, '2019-01-21', 59, '2019-01-21 08:16:02', NULL),
(442, '2019-01-21', 51, '2019-01-21 08:17:17', NULL),
(443, '2019-01-21', 5, '2019-01-21 08:17:31', NULL),
(444, '2019-01-21', 148, '2019-01-21 08:17:59', NULL),
(445, '2019-01-21', 86, '2019-01-21 08:18:24', NULL),
(446, '2019-01-21', 165, '2019-01-21 08:19:01', NULL),
(447, '2019-01-21', 143, '2019-01-21 08:19:08', NULL),
(448, '2019-01-21', 68, '2019-01-21 08:19:12', NULL),
(449, '2019-01-21', 70, '2019-01-21 08:19:18', NULL),
(450, '2019-01-21', 13, '2019-01-21 08:19:24', NULL),
(451, '2019-01-21', 80, '2019-01-21 08:20:31', '2019-01-21 10:32:46'),
(452, '2019-01-21', 78, '2019-01-21 08:20:36', '2019-01-21 10:30:44'),
(453, '2019-01-21', 145, '2019-01-21 08:20:46', NULL),
(454, '2019-01-21', 10, '2019-01-21 08:20:53', NULL),
(455, '2019-01-21', 114, '2019-01-21 08:27:22', '2019-01-21 10:27:45'),
(456, '2019-01-21', 79, '2019-01-21 08:27:33', '2019-01-21 10:31:32'),
(457, '2019-01-21', 160, '2019-01-21 08:27:43', '2019-01-21 10:32:33'),
(458, '2019-01-21', 94, '2019-01-21 08:28:12', '2019-01-21 10:31:01'),
(459, '2019-01-21', 129, '2019-01-21 08:28:14', NULL),
(460, '2019-01-21', 156, '2019-01-21 08:28:18', NULL),
(461, '2019-01-21', 66, '2019-01-21 08:28:30', NULL),
(462, '2019-01-21', 58, '2019-01-21 08:28:33', NULL),
(463, '2019-01-21', 63, '2019-01-21 08:28:36', NULL),
(464, '2019-01-21', 71, '2019-01-21 08:28:39', NULL),
(465, '2019-01-21', 171, '2019-01-21 08:28:43', NULL),
(466, '2019-01-21', 46, '2019-01-21 08:28:46', NULL),
(467, '2019-01-21', 45, '2019-01-21 08:28:49', NULL),
(468, '2019-01-21', 44, '2019-01-21 08:28:52', NULL),
(469, '2019-01-21', 85, '2019-01-21 08:29:03', '2019-01-21 10:33:09'),
(470, '2019-01-21', 172, '2019-01-21 08:29:05', NULL),
(471, '2019-01-21', 162, '2019-01-21 08:29:08', NULL),
(472, '2019-01-21', 133, '2019-01-21 08:29:10', NULL),
(473, '2019-01-21', 142, '2019-01-21 08:29:14', NULL),
(474, '2019-01-21', 74, '2019-01-21 08:29:33', '2019-01-21 10:31:14'),
(475, '2019-01-21', 9, '2019-01-21 08:29:42', NULL),
(476, '2019-01-21', 31, '2019-01-21 08:29:58', '2019-01-21 10:29:02'),
(477, '2019-01-21', 43, '2019-01-21 08:30:13', NULL),
(478, '2019-01-21', 110, '2019-01-21 08:30:48', '2019-01-21 09:52:02'),
(479, '2019-01-21', 60, '2019-01-21 08:31:18', NULL),
(480, '2019-01-21', 153, '2019-01-21 08:31:30', NULL),
(481, '2019-01-21', 75, '2019-01-21 08:32:06', NULL),
(482, '2019-01-21', 113, '2019-01-21 08:32:57', '2019-01-21 10:27:35'),
(483, '2019-01-21', 163, '2019-01-21 08:33:11', NULL),
(484, '2019-01-21', 7, '2019-01-21 08:33:15', NULL),
(485, '2019-01-21', 101, '2019-01-21 08:33:46', '2019-01-21 10:31:34'),
(486, '2019-01-21', 120, '2019-01-21 08:34:56', '2019-01-21 10:28:18'),
(487, '2019-01-21', 52, '2019-01-21 08:35:47', NULL),
(488, '2019-01-21', 164, '2019-01-21 08:35:58', NULL),
(489, '2019-01-21', 117, '2019-01-21 08:38:26', '2019-01-21 10:27:27'),
(490, '2019-01-21', 48, '2019-01-21 08:39:26', NULL),
(491, '2019-01-21', 125, '2019-01-21 08:39:36', NULL),
(492, '2019-01-21', 97, '2019-01-21 08:41:14', '2019-01-21 10:32:57'),
(493, '2019-01-21', 61, '2019-01-21 08:41:20', NULL),
(494, '2019-01-21', 88, '2019-01-21 08:41:48', '2019-01-21 10:36:20'),
(495, '2019-01-21', 135, '2019-01-21 08:42:23', NULL),
(496, '2019-01-21', 128, '2019-01-21 08:42:32', NULL),
(497, '2019-01-21', 77, '2019-01-21 09:19:08', '2019-01-21 10:30:58'),
(498, '2019-01-21', 37, '2019-01-21 09:51:58', '2019-01-21 10:27:09'),
(499, '2019-01-21', 105, '2019-01-21 10:03:23', NULL),
(500, '2019-01-21', 17, '2019-01-21 10:27:38', NULL),
(501, '2019-01-21', 112, '2019-01-21 10:28:32', NULL),
(502, '2019-01-21', 106, '2019-01-21 10:29:25', NULL),
(503, '2019-01-21', 84, '2019-01-21 10:32:03', NULL),
(504, '2019-01-21', 93, '2019-01-21 10:32:18', NULL),
(505, '2019-01-21', 109, '2019-01-21 10:33:00', NULL),
(506, '2019-01-21', 174, '2019-01-21 10:36:39', NULL),
(507, '2019-01-21', 30, '2019-01-21 10:36:45', NULL),
(508, '2019-01-21', 111, '2019-01-21 10:36:50', NULL),
(509, '2019-01-21', 103, '2019-01-21 10:37:11', NULL),
(510, '2019-01-21', 42, '2019-01-21 10:37:19', NULL),
(511, '2019-01-21', 104, '2019-01-21 10:37:23', NULL),
(512, '2019-01-21', 28, '2019-01-21 10:38:22', NULL),
(513, '2019-01-21', 108, '2019-01-21 10:39:52', NULL),
(514, '2019-01-21', 35, '2019-01-21 10:40:59', NULL),
(515, '2019-01-21', 36, '2019-01-21 10:41:09', NULL),
(516, '2019-01-21', 107, '2019-01-21 10:45:28', NULL),
(517, '2019-01-21', 175, '2019-01-21 10:50:52', NULL),
(518, '2019-01-21', 33, '2019-01-21 10:55:36', NULL),
(519, '2019-01-22', 157, '2019-01-22 07:50:01', NULL),
(520, '2019-01-22', 118, '2019-01-22 07:55:03', '2019-01-22 10:31:04'),
(521, '2019-01-22', 99, '2019-01-22 07:55:30', '2019-01-22 10:31:35'),
(522, '2019-01-22', 23, '2019-01-22 07:56:30', NULL),
(523, '2019-01-22', 89, '2019-01-22 07:57:51', '2019-01-22 10:32:29'),
(524, '2019-01-22', 95, '2019-01-22 07:59:44', '2019-01-22 10:32:00'),
(525, '2019-01-22', 96, '2019-01-22 08:01:24', '2019-01-22 10:32:26'),
(526, '2019-01-22', 115, '2019-01-22 08:01:34', '2019-01-22 10:29:52'),
(527, '2019-01-22', 91, '2019-01-22 08:03:05', '2019-01-22 10:31:30'),
(528, '2019-01-22', 119, '2019-01-22 08:03:22', NULL),
(529, '2019-01-22', 22, '2019-01-22 08:03:28', '2019-01-22 10:31:41'),
(530, '2019-01-22', 57, '2019-01-22 08:03:31', NULL),
(531, '2019-01-22', 90, '2019-01-22 08:03:35', '2019-01-22 10:31:32'),
(532, '2019-01-22', 176, '2019-01-22 08:03:47', NULL),
(533, '2019-01-22', 65, '2019-01-22 08:04:15', NULL),
(534, '2019-01-22', 86, '2019-01-22 08:04:19', '2019-01-22 10:31:38'),
(535, '2019-01-22', 159, '2019-01-22 08:05:43', '2019-01-22 10:31:49'),
(536, '2019-01-22', 54, '2019-01-22 08:06:08', NULL),
(537, '2019-01-22', 69, '2019-01-22 08:06:13', NULL),
(538, '2019-01-22', 144, '2019-01-22 08:06:21', NULL),
(539, '2019-01-22', 163, '2019-01-22 08:06:47', NULL),
(540, '2019-01-22', 169, '2019-01-22 08:06:56', NULL),
(541, '2019-01-22', 165, '2019-01-22 08:07:25', NULL),
(542, '2019-01-22', 168, '2019-01-22 08:07:55', NULL),
(543, '2019-01-22', 84, '2019-01-22 08:08:14', NULL),
(544, '2019-01-22', 50, '2019-01-22 08:08:31', NULL),
(545, '2019-01-22', 114, '2019-01-22 08:08:59', NULL),
(546, '2019-01-22', 152, '2019-01-22 08:09:15', NULL),
(547, '2019-01-22', 150, '2019-01-22 08:09:22', NULL),
(548, '2019-01-22', 6, '2019-01-22 08:09:38', NULL),
(549, '2019-01-22', 55, '2019-01-22 08:09:41', NULL),
(550, '2019-01-22', 25, '2019-01-22 08:10:29', NULL),
(551, '2019-01-22', 173, '2019-01-22 08:10:48', NULL),
(552, '2019-01-22', 170, '2019-01-22 08:10:57', NULL),
(553, '2019-01-22', 141, '2019-01-22 08:11:07', NULL),
(554, '2019-01-22', 116, '2019-01-22 08:11:11', '2019-01-22 10:30:39'),
(555, '2019-01-22', 123, '2019-01-22 08:11:27', NULL),
(556, '2019-01-22', 51, '2019-01-22 08:11:54', NULL),
(557, '2019-01-22', 139, '2019-01-22 08:12:03', NULL),
(558, '2019-01-22', 126, '2019-01-22 08:12:26', NULL),
(559, '2019-01-22', 87, '2019-01-22 08:12:47', NULL),
(560, '2019-01-22', 44, '2019-01-22 08:12:50', NULL),
(561, '2019-01-22', 14, '2019-01-22 08:13:59', NULL),
(562, '2019-01-22', 146, '2019-01-22 08:14:10', NULL),
(563, '2019-01-22', 46, '2019-01-22 08:15:05', NULL),
(564, '2019-01-22', 13, '2019-01-22 08:15:19', NULL),
(565, '2019-01-22', 8, '2019-01-22 08:15:31', NULL),
(566, '2019-01-22', 156, '2019-01-22 08:15:41', '2019-01-22 09:27:19'),
(567, '2019-01-22', 143, '2019-01-22 08:16:56', NULL),
(568, '2019-01-22', 101, '2019-01-22 08:17:58', '2019-01-22 10:32:20'),
(569, '2019-01-22', 129, '2019-01-22 08:18:40', NULL),
(570, '2019-01-22', 37, '2019-01-22 08:19:21', '2019-01-22 10:30:05'),
(571, '2019-01-22', 112, '2019-01-22 08:19:57', '2019-01-22 10:32:06'),
(572, '2019-01-22', 5, '2019-01-22 08:28:45', NULL),
(573, '2019-01-22', 145, '2019-01-22 08:28:56', NULL),
(574, '2019-01-22', 67, '2019-01-22 08:29:05', NULL),
(575, '2019-01-22', 9, '2019-01-22 08:29:13', NULL),
(576, '2019-01-22', 59, '2019-01-22 08:29:26', NULL),
(577, '2019-01-22', 140, '2019-01-22 08:29:46', NULL),
(578, '2019-01-22', 72, '2019-01-22 08:29:51', NULL),
(579, '2019-01-22', 58, '2019-01-22 08:29:56', NULL),
(580, '2019-01-22', 60, '2019-01-22 08:30:01', NULL),
(581, '2019-01-22', 45, '2019-01-22 08:30:09', NULL),
(582, '2019-01-22', 43, '2019-01-22 08:30:18', NULL),
(583, '2019-01-22', 61, '2019-01-22 08:30:22', NULL),
(584, '2019-01-22', 132, '2019-01-22 08:30:32', NULL),
(585, '2019-01-22', 71, '2019-01-22 08:30:40', NULL),
(586, '2019-01-22', 11, '2019-01-22 08:30:45', NULL),
(587, '2019-01-22', 17, '2019-01-22 08:30:52', NULL),
(588, '2019-01-22', 27, '2019-01-22 08:30:55', '2019-01-22 10:30:19'),
(589, '2019-01-22', 133, '2019-01-22 08:30:58', NULL),
(590, '2019-01-22', 85, '2019-01-22 08:31:01', '2019-01-22 10:33:13'),
(591, '2019-01-22', 172, '2019-01-22 08:31:05', NULL),
(592, '2019-01-22', 166, '2019-01-22 08:31:18', NULL),
(593, '2019-01-22', 151, '2019-01-22 08:31:23', NULL),
(594, '2019-01-22', 94, '2019-01-22 08:31:29', '2019-01-22 10:32:52'),
(595, '2019-01-22', 125, '2019-01-22 08:31:37', NULL),
(596, '2019-01-22', 160, '2019-01-22 08:31:49', '2019-01-22 10:31:54'),
(597, '2019-01-22', 7, '2019-01-22 08:31:52', NULL),
(598, '2019-01-22', 68, '2019-01-22 08:32:04', NULL),
(599, '2019-01-22', 88, '2019-01-22 08:32:20', '2019-01-22 10:32:36'),
(600, '2019-01-22', 97, '2019-01-22 08:32:29', '2019-01-22 10:31:57'),
(601, '2019-01-22', 31, '2019-01-22 08:32:41', '2019-01-22 10:32:43'),
(602, '2019-01-22', 80, '2019-01-22 08:32:52', '2019-01-22 10:31:25'),
(603, '2019-01-22', 113, '2019-01-22 08:33:04', '2019-01-22 10:31:09'),
(604, '2019-01-22', 66, '2019-01-22 08:33:09', NULL),
(605, '2019-01-22', 110, '2019-01-22 08:33:20', '2019-01-22 10:11:32'),
(606, '2019-01-22', 76, '2019-01-22 08:33:27', NULL),
(607, '2019-01-22', 153, '2019-01-22 08:34:01', NULL),
(608, '2019-01-22', 39, '2019-01-22 08:35:00', '2019-01-22 10:30:15'),
(609, '2019-01-22', 26, '2019-01-22 08:35:08', '2019-01-22 10:31:14'),
(610, '2019-01-22', 48, '2019-01-22 08:35:23', NULL),
(611, '2019-01-22', 177, '2019-01-22 08:35:37', NULL),
(612, '2019-01-22', 56, '2019-01-22 08:35:50', NULL),
(613, '2019-01-22', 117, '2019-01-22 08:37:59', '2019-01-22 10:29:58'),
(614, '2019-01-22', 38, '2019-01-22 08:40:42', '2019-01-22 10:30:34'),
(615, '2019-01-22', 135, '2019-01-22 08:40:48', NULL),
(616, '2019-01-22', 128, '2019-01-22 08:40:54', '2019-01-22 11:31:51'),
(617, '2019-01-22', 19, '2019-01-22 08:48:40', NULL),
(618, '2019-01-22', 127, '2019-01-22 08:54:56', NULL),
(619, '2019-01-22', 77, '2019-01-22 08:57:57', '2019-01-22 10:31:20'),
(620, '2019-01-22', 105, '2019-01-22 10:13:52', NULL),
(621, '2019-01-22', 149, '2019-01-22 10:18:19', NULL),
(622, '2019-01-22', 111, '2019-01-22 10:27:53', NULL),
(623, '2019-01-22', 33, '2019-01-22 10:27:57', NULL),
(624, '2019-01-22', 109, '2019-01-22 10:28:03', NULL),
(625, '2019-01-22', 42, '2019-01-22 10:28:11', NULL),
(626, '2019-01-22', 29, '2019-01-22 10:30:57', NULL),
(627, '2019-01-22', 158, '2019-01-22 10:31:43', NULL),
(628, '2019-01-22', 34, '2019-01-22 10:33:04', NULL),
(629, '2019-01-22', 103, '2019-01-22 10:34:00', NULL),
(630, '2019-01-22', 30, '2019-01-22 10:36:35', NULL),
(631, '2019-01-22', 108, '2019-01-22 10:38:28', NULL),
(632, '2019-01-22', 102, '2019-01-22 10:38:34', NULL),
(633, '2019-01-22', 106, '2019-01-22 10:39:34', NULL),
(634, '2019-01-22', 104, '2019-01-22 10:41:57', NULL),
(635, '2019-01-22', 107, '2019-01-22 10:50:05', NULL),
(636, '2019-01-22', 18, '2019-01-22 10:50:34', NULL),
(637, '2019-01-22', 175, '2019-01-22 10:51:15', NULL),
(638, '2019-01-22', 35, '2019-01-22 10:54:46', NULL),
(639, '2019-01-22', 36, '2019-01-22 10:54:56', NULL),
(640, '2019-01-23', 96, '2019-01-23 07:48:48', NULL),
(641, '2019-01-23', 115, '2019-01-23 07:52:02', NULL),
(642, '2019-01-23', 155, '2019-01-23 07:54:12', NULL),
(643, '2019-01-23', 95, '2019-01-23 08:00:46', NULL),
(644, '2019-01-23', 157, '2019-01-23 08:00:48', NULL),
(645, '2019-01-23', 99, '2019-01-23 08:01:15', NULL),
(646, '2019-01-23', 114, '2019-01-23 08:01:47', NULL),
(647, '2019-01-23', 152, '2019-01-23 08:02:28', NULL),
(648, '2019-01-23', 147, '2019-01-23 08:02:36', NULL),
(649, '2019-01-23', 6, '2019-01-23 08:02:41', NULL),
(650, '2019-01-23', 24, '2019-01-23 08:02:55', NULL),
(651, '2019-01-23', 57, '2019-01-23 08:03:05', NULL),
(652, '2019-01-23', 23, '2019-01-23 08:03:14', NULL),
(653, '2019-01-23', 176, '2019-01-23 08:03:28', NULL),
(654, '2019-01-23', 173, '2019-01-23 08:03:34', NULL),
(655, '2019-01-23', 62, '2019-01-23 08:03:41', NULL),
(656, '2019-01-23', 91, '2019-01-23 08:03:43', NULL),
(657, '2019-01-23', 46, '2019-01-23 08:03:51', NULL),
(658, '2019-01-23', 90, '2019-01-23 08:03:57', NULL),
(659, '2019-01-23', 89, '2019-01-23 08:04:05', NULL),
(660, '2019-01-23', 163, '2019-01-23 08:04:11', NULL),
(661, '2019-01-23', 22, '2019-01-23 08:04:17', NULL),
(662, '2019-01-23', 169, '2019-01-23 08:04:20', NULL),
(663, '2019-01-23', 119, '2019-01-23 08:04:26', NULL),
(664, '2019-01-23', 118, '2019-01-23 08:04:33', NULL),
(665, '2019-01-23', 67, '2019-01-23 08:04:50', NULL),
(666, '2019-01-23', 65, '2019-01-23 08:05:12', NULL),
(667, '2019-01-23', 34, '2019-01-23 08:05:51', NULL),
(668, '2019-01-23', 18, '2019-01-23 08:06:17', NULL),
(669, '2019-01-23', 144, '2019-01-23 08:07:10', NULL),
(670, '2019-01-23', 54, '2019-01-23 08:07:15', NULL),
(671, '2019-01-23', 70, '2019-01-23 08:07:24', NULL),
(672, '2019-01-23', 72, '2019-01-23 08:07:55', NULL),
(673, '2019-01-23', 170, '2019-01-23 08:08:01', NULL),
(674, '2019-01-23', 168, '2019-01-23 08:08:20', NULL),
(675, '2019-01-23', 98, '2019-01-23 08:08:26', NULL),
(676, '2019-01-23', 167, '2019-01-23 08:09:40', NULL),
(677, '2019-01-23', 159, '2019-01-23 08:09:59', NULL),
(678, '2019-01-23', 86, '2019-01-23 08:10:48', NULL),
(679, '2019-01-23', 69, '2019-01-23 08:11:07', NULL),
(680, '2019-01-23', 78, '2019-01-23 08:11:14', NULL),
(681, '2019-01-23', 126, '2019-01-23 08:11:18', NULL),
(682, '2019-01-23', 101, '2019-01-23 08:11:31', NULL),
(683, '2019-01-23', 26, '2019-01-23 08:11:42', NULL),
(684, '2019-01-23', 79, '2019-01-23 08:12:51', NULL),
(685, '2019-01-23', 116, '2019-01-23 08:12:55', NULL),
(686, '2019-01-23', 141, '2019-01-23 08:13:59', NULL),
(687, '2019-01-23', 123, '2019-01-23 08:14:31', NULL),
(688, '2019-01-23', 31, '2019-01-23 08:15:07', NULL),
(689, '2019-01-23', 59, '2019-01-23 08:15:13', NULL),
(690, '2019-01-23', 142, '2019-01-23 08:15:23', NULL),
(691, '2019-01-23', 51, '2019-01-23 08:15:34', NULL),
(692, '2019-01-23', 93, '2019-01-23 08:15:51', NULL),
(693, '2019-01-23', 25, '2019-01-23 08:16:25', NULL),
(694, '2019-01-23', 39, '2019-01-23 08:17:02', NULL),
(695, '2019-01-23', 150, '2019-01-23 08:18:55', NULL),
(696, '2019-01-23', 37, '2019-01-23 08:19:56', NULL),
(697, '2019-01-23', 87, '2019-01-23 08:26:20', NULL),
(698, '2019-01-23', 145, '2019-01-23 08:27:06', NULL),
(699, '2019-01-23', 139, '2019-01-23 08:27:12', NULL),
(700, '2019-01-23', 140, '2019-01-23 08:27:20', NULL),
(701, '2019-01-23', 162, '2019-01-23 08:27:38', NULL),
(702, '2019-01-23', 45, '2019-01-23 08:27:44', NULL),
(703, '2019-01-23', 148, '2019-01-23 08:27:49', NULL),
(704, '2019-01-23', 156, '2019-01-23 08:27:56', NULL),
(705, '2019-01-23', 165, '2019-01-23 08:28:01', NULL),
(706, '2019-01-23', 13, '2019-01-23 08:28:07', NULL),
(707, '2019-01-23', 143, '2019-01-23 08:28:11', NULL),
(708, '2019-01-23', 8, '2019-01-23 08:28:15', NULL),
(709, '2019-01-23', 44, '2019-01-23 08:28:17', NULL),
(710, '2019-01-23', 137, '2019-01-23 08:28:20', NULL),
(711, '2019-01-23', 129, '2019-01-23 08:28:24', NULL),
(712, '2019-01-23', 63, '2019-01-23 08:28:29', NULL),
(713, '2019-01-23', 11, '2019-01-23 08:28:34', NULL),
(714, '2019-01-23', 112, '2019-01-23 08:28:41', NULL),
(715, '2019-01-23', 80, '2019-01-23 08:28:44', NULL),
(716, '2019-01-23', 85, '2019-01-23 08:28:51', NULL),
(717, '2019-01-23', 117, '2019-01-23 08:28:56', NULL),
(718, '2019-01-23', 172, '2019-01-23 08:29:00', NULL),
(719, '2019-01-23', 68, '2019-01-23 08:29:10', NULL),
(720, '2019-01-23', 132, '2019-01-23 08:29:13', NULL),
(721, '2019-01-23', 153, '2019-01-23 08:29:23', NULL),
(722, '2019-01-23', 27, '2019-01-23 08:29:26', NULL),
(723, '2019-01-23', 125, '2019-01-23 08:29:30', NULL),
(724, '2019-01-23', 5, '2019-01-23 08:29:35', NULL),
(725, '2019-01-23', 71, '2019-01-23 08:29:40', NULL),
(726, '2019-01-23', 110, '2019-01-23 08:29:44', '2019-01-23 10:04:45'),
(727, '2019-01-23', 164, '2019-01-23 08:29:48', NULL),
(728, '2019-01-23', 66, '2019-01-23 08:29:54', NULL),
(729, '2019-01-23', 97, '2019-01-23 08:30:06', NULL),
(730, '2019-01-23', 43, '2019-01-23 08:30:15', NULL),
(731, '2019-01-23', 58, '2019-01-23 08:30:19', NULL),
(732, '2019-01-23', 56, '2019-01-23 08:30:24', NULL),
(733, '2019-01-23', 75, '2019-01-23 08:30:31', NULL),
(734, '2019-01-23', 17, '2019-01-23 08:30:59', NULL),
(735, '2019-01-23', 113, '2019-01-23 08:31:22', NULL),
(736, '2019-01-23', 100, '2019-01-23 08:31:41', NULL),
(737, '2019-01-23', 61, '2019-01-23 08:31:48', NULL),
(738, '2019-01-23', 94, '2019-01-23 08:32:02', NULL),
(739, '2019-01-23', 160, '2019-01-23 08:32:18', NULL),
(740, '2019-01-23', 60, '2019-01-23 08:32:23', NULL),
(741, '2019-01-23', 135, '2019-01-23 08:33:32', NULL),
(742, '2019-01-23', 128, '2019-01-23 08:33:49', NULL),
(743, '2019-01-23', 158, '2019-01-23 08:33:59', NULL),
(744, '2019-01-23', 151, '2019-01-23 08:36:12', NULL),
(745, '2019-01-23', 88, '2019-01-23 08:40:06', NULL),
(746, '2019-01-23', 177, '2019-01-23 08:47:30', NULL),
(747, '2019-01-23', 77, '2019-01-23 08:48:52', NULL),
(748, '2019-01-23', 127, '2019-01-23 08:53:38', NULL),
(749, '2019-01-25', 59, '2019-01-25 10:03:31', NULL),
(750, '2019-01-26', 59, '2019-01-26 07:18:17', '2019-01-26 12:27:44'),
(751, '2019-01-26', 70, '2019-01-26 08:22:29', '2019-01-26 12:54:04'),
(752, '2019-01-26', 141, '2019-01-26 08:22:38', NULL),
(753, '2019-01-26', 37, '2019-01-26 08:29:15', NULL),
(754, '2019-01-26', 98, '2019-01-26 08:29:19', NULL),
(755, '2019-01-26', 155, '2019-01-26 08:29:26', NULL),
(756, '2019-01-26', 112, '2019-01-26 08:29:28', NULL),
(757, '2019-01-26', 90, '2019-01-26 08:29:33', NULL),
(758, '2019-01-26', 31, '2019-01-26 08:37:01', NULL),
(759, '2019-01-26', 110, '2019-01-26 08:37:21', NULL),
(760, '2019-01-26', 11, '2019-01-26 08:40:04', NULL),
(761, '2019-01-26', 88, '2019-01-26 08:41:59', NULL),
(762, '2019-01-26', 66, '2019-01-26 08:43:14', '2019-01-26 12:53:06'),
(763, '2019-01-26', 128, '2019-01-26 08:45:00', '2019-01-26 11:39:55'),
(764, '2019-01-26', 135, '2019-01-26 08:45:09', NULL),
(765, '2019-01-26', 79, '2019-01-26 08:48:06', NULL),
(766, '2019-01-26', 127, '2019-01-26 08:49:16', NULL),
(767, '2019-01-26', 77, '2019-01-26 08:53:36', NULL),
(768, '2019-01-26', 5, '2019-01-26 12:10:10', NULL),
(769, '2019-01-26', 25, '2019-01-26 12:10:25', NULL),
(770, '2019-01-26', 8, '2019-01-26 12:10:38', NULL),
(771, '2019-01-26', 166, '2019-01-26 12:10:46', NULL),
(772, '2019-01-26', 163, '2019-01-26 12:10:52', NULL),
(773, '2019-01-26', 6, '2019-01-26 12:10:58', NULL),
(774, '2019-01-26', 18, '2019-01-26 12:11:05', NULL),
(775, '2019-01-26', 165, '2019-01-26 12:11:18', NULL),
(776, '2019-01-26', 24, '2019-01-26 12:14:34', NULL),
(777, '2019-01-26', 46, '2019-01-26 12:34:30', NULL),
(778, '2019-01-26', 173, '2019-01-26 12:51:28', NULL),
(779, '2019-01-26', 44, '2019-01-26 12:51:35', NULL),
(780, '2019-01-26', 43, '2019-01-26 12:51:45', NULL),
(781, '2019-01-26', 51, '2019-01-26 12:51:49', NULL),
(782, '2019-01-26', 169, '2019-01-26 12:51:56', NULL),
(783, '2019-01-26', 54, '2019-01-26 12:52:05', NULL),
(784, '2019-01-26', 176, '2019-01-26 12:52:39', NULL),
(785, '2019-01-26', 57, '2019-01-26 12:52:50', NULL),
(786, '2019-01-26', 56, '2019-01-26 12:52:57', NULL),
(787, '2019-01-26', 58, '2019-01-26 12:53:02', NULL),
(788, '2019-01-26', 71, '2019-01-26 12:53:09', NULL),
(789, '2019-01-26', 69, '2019-01-26 12:53:12', NULL),
(790, '2019-01-26', 171, '2019-01-26 12:53:14', NULL),
(791, '2019-01-26', 177, '2019-01-26 12:53:18', NULL),
(792, '2019-01-26', 62, '2019-01-26 12:53:30', NULL),
(793, '2019-01-26', 68, '2019-01-26 12:53:38', NULL),
(794, '2019-01-26', 172, '2019-01-26 12:53:59', NULL),
(795, '2019-01-26', 28, '2019-01-26 12:54:48', NULL),
(796, '2019-01-26', 30, '2019-01-26 12:55:08', NULL),
(797, '2019-01-26', 33, '2019-01-26 12:55:15', NULL),
(798, '2019-01-26', 42, '2019-01-26 12:55:30', NULL),
(799, '2019-01-26', 36, '2019-01-26 12:55:43', NULL),
(800, '2019-01-26', 149, '2019-01-26 12:55:46', NULL),
(801, '2019-01-26', 175, '2019-01-26 13:00:28', NULL),
(802, '2019-01-26', 111, '2019-01-26 13:00:32', NULL),
(803, '2019-01-26', 108, '2019-01-26 13:00:35', NULL),
(804, '2019-01-26', 102, '2019-01-26 13:00:42', NULL),
(805, '2019-01-26', 106, '2019-01-26 13:00:47', NULL),
(806, '2019-01-26', 109, '2019-01-26 13:00:51', NULL),
(807, '2019-01-26', 105, '2019-01-26 13:03:50', NULL),
(808, '2019-01-27', 61, '2019-01-27 07:47:07', '2019-01-27 12:49:51'),
(809, '2019-01-27', 59, '2019-01-27 08:18:27', NULL),
(810, '2019-01-27', 177, '2019-01-27 08:18:41', '2019-01-27 12:49:48'),
(811, '2019-01-27', 13, '2019-01-27 08:18:46', NULL),
(812, '2019-01-27', 91, '2019-01-27 08:18:51', NULL),
(813, '2019-01-27', 90, '2019-01-27 08:18:57', NULL),
(814, '2019-01-27', 142, '2019-01-27 08:19:07', '2019-01-27 11:37:49'),
(815, '2019-01-27', 22, '2019-01-27 08:19:12', '2019-01-27 10:36:29'),
(816, '2019-01-27', 62, '2019-01-27 08:19:17', NULL),
(817, '2019-01-27', 57, '2019-01-27 08:19:24', '2019-01-27 12:49:09'),
(818, '2019-01-27', 176, '2019-01-27 08:19:32', '2019-01-27 12:40:31'),
(819, '2019-01-27', 152, '2019-01-27 08:19:37', '2019-01-27 11:37:21'),
(820, '2019-01-27', 27, '2019-01-27 08:19:43', '2019-01-27 10:36:07'),
(821, '2019-01-27', 50, '2019-01-27 08:19:48', '2019-01-27 12:40:38'),
(822, '2019-01-27', 39, '2019-01-27 08:22:17', NULL),
(823, '2019-01-27', 101, '2019-01-27 08:22:22', '2019-01-27 10:35:09'),
(824, '2019-01-27', 158, '2019-01-27 08:22:48', NULL),
(825, '2019-01-27', 68, '2019-01-27 08:23:10', '2019-01-27 12:49:42'),
(826, '2019-01-27', 29, '2019-01-27 08:24:09', '2019-01-27 10:36:35'),
(827, '2019-01-27', 121, '2019-01-27 08:28:13', NULL),
(828, '2019-01-27', 119, '2019-01-27 08:30:43', '2019-01-27 10:39:21'),
(829, '2019-01-27', 84, '2019-01-27 08:31:22', NULL),
(830, '2019-01-27', 156, '2019-01-27 08:31:36', '2019-01-27 11:35:57'),
(831, '2019-01-27', 126, '2019-01-27 08:31:41', '2019-01-27 11:36:44'),
(832, '2019-01-27', 18, '2019-01-27 08:31:46', '2019-01-27 12:06:14'),
(833, '2019-01-27', 143, '2019-01-27 08:31:56', NULL),
(834, '2019-01-27', 140, '2019-01-27 08:32:04', '2019-01-27 11:37:32'),
(835, '2019-01-27', 125, '2019-01-27 08:32:09', '2019-01-27 11:37:27'),
(836, '2019-01-27', 150, '2019-01-27 08:32:17', '2019-01-27 11:36:16'),
(837, '2019-01-27', 63, '2019-01-27 08:32:26', '2019-01-27 12:49:13'),
(838, '2019-01-27', 172, '2019-01-27 08:32:38', '2019-01-27 12:46:56'),
(839, '2019-01-27', 34, '2019-01-27 08:32:56', '2019-01-27 10:35:37'),
(840, '2019-01-27', 139, '2019-01-27 08:33:01', '2019-01-27 11:37:12'),
(841, '2019-01-27', 44, '2019-01-27 08:33:06', '2019-01-27 12:38:17'),
(842, '2019-01-27', 145, '2019-01-27 08:33:11', '2019-01-27 11:36:40'),
(843, '2019-01-27', 45, '2019-01-27 08:33:17', NULL),
(844, '2019-01-27', 51, '2019-01-27 08:33:21', '2019-01-27 12:38:26'),
(845, '2019-01-27', 164, '2019-01-27 08:33:27', NULL),
(846, '2019-01-27', 166, '2019-01-27 08:33:32', '2019-01-27 12:06:07'),
(847, '2019-01-27', 11, '2019-01-27 08:33:38', NULL),
(848, '2019-01-27', 26, '2019-01-27 08:33:49', NULL),
(849, '2019-01-27', 132, '2019-01-27 08:33:55', NULL),
(850, '2019-01-27', 79, '2019-01-27 08:34:01', NULL),
(851, '2019-01-27', 9, '2019-01-27 08:34:06', '2019-01-27 12:06:46'),
(852, '2019-01-27', 10, '2019-01-27 08:34:13', NULL),
(853, '2019-01-27', 15, '2019-01-27 08:34:19', NULL),
(854, '2019-01-27', 113, '2019-01-27 08:34:26', '2019-01-27 10:36:02'),
(855, '2019-01-27', 94, '2019-01-27 08:34:31', NULL),
(856, '2019-01-27', 7, '2019-01-27 08:34:36', NULL),
(857, '2019-01-27', 66, '2019-01-27 08:34:46', NULL),
(858, '2019-01-27', 80, '2019-01-27 08:34:51', '2019-01-27 10:39:08'),
(859, '2019-01-27', 97, '2019-01-27 08:34:58', '2019-01-27 10:36:23'),
(860, '2019-01-27', 110, '2019-01-27 08:35:26', NULL),
(861, '2019-01-27', 52, '2019-01-27 08:36:40', '2019-01-27 12:38:32'),
(862, '2019-01-27', 130, '2019-01-27 08:38:29', NULL),
(863, '2019-01-27', 75, '2019-01-27 08:38:44', NULL),
(864, '2019-01-27', 151, '2019-01-27 08:41:50', '2019-01-27 11:37:02'),
(865, '2019-01-27', 49, '2019-01-27 08:47:56', '2019-01-27 12:38:24'),
(866, '2019-01-27', 135, '2019-01-27 08:49:14', '2019-01-27 11:36:32'),
(867, '2019-01-27', 128, '2019-01-27 08:49:17', '2019-01-27 11:36:20'),
(868, '2019-01-27', 37, '2019-01-27 10:35:06', NULL),
(869, '2019-01-27', 93, '2019-01-27 10:35:13', NULL),
(870, '2019-01-27', 118, '2019-01-27 10:35:44', NULL),
(871, '2019-01-27', 112, '2019-01-27 10:35:57', NULL),
(872, '2019-01-27', 109, '2019-01-27 10:36:15', '2019-01-27 12:59:33'),
(873, '2019-01-27', 77, '2019-01-27 10:39:11', NULL),
(874, '2019-01-27', 30, '2019-01-27 10:41:08', '2019-01-27 12:49:01');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(875, '2019-01-27', 108, '2019-01-27 10:41:16', '2019-01-27 12:59:45'),
(876, '2019-01-27', 102, '2019-01-27 10:41:42', '2019-01-27 12:59:57'),
(877, '2019-01-27', 28, '2019-01-27 10:48:16', '2019-01-27 12:31:18'),
(878, '2019-01-27', 35, '2019-01-27 10:49:20', '2019-01-27 12:08:32'),
(879, '2019-01-27', 36, '2019-01-27 10:49:23', '2019-01-27 12:08:29'),
(880, '2019-01-27', 175, '2019-01-27 10:54:53', '2019-01-27 13:00:04'),
(881, '2019-01-27', 147, '2019-01-27 11:36:00', NULL),
(882, '2019-01-27', 129, '2019-01-27 11:36:03', NULL),
(883, '2019-01-27', 144, '2019-01-27 11:36:06', NULL),
(884, '2019-01-27', 127, '2019-01-27 11:36:29', NULL),
(885, '2019-01-27', 141, '2019-01-27 11:36:35', NULL),
(886, '2019-01-27', 146, '2019-01-27 11:36:54', NULL),
(887, '2019-01-27', 137, '2019-01-27 11:36:59', NULL),
(888, '2019-01-27', 157, '2019-01-27 11:37:15', NULL),
(889, '2019-01-27', 123, '2019-01-27 11:37:35', NULL),
(890, '2019-01-27', 148, '2019-01-27 11:37:42', NULL),
(891, '2019-01-27', 8, '2019-01-27 12:05:48', NULL),
(892, '2019-01-27', 14, '2019-01-27 12:05:51', NULL),
(893, '2019-01-27', 163, '2019-01-27 12:06:22', NULL),
(894, '2019-01-27', 6, '2019-01-27 12:07:42', NULL),
(895, '2019-01-27', 5, '2019-01-27 12:07:54', NULL),
(896, '2019-01-27', 46, '2019-01-27 12:38:30', NULL),
(897, '2019-01-27', 54, '2019-01-27 12:41:55', NULL),
(898, '2019-01-27', 168, '2019-01-27 12:46:59', NULL),
(899, '2019-01-27', 171, '2019-01-27 12:47:11', NULL),
(900, '2019-01-27', 169, '2019-01-27 12:47:39', NULL),
(901, '2019-01-27', 42, '2019-01-27 12:48:27', NULL),
(902, '2019-01-27', 40, '2019-01-27 12:48:42', NULL),
(903, '2019-01-27', 33, '2019-01-27 12:49:04', NULL),
(904, '2019-01-27', 56, '2019-01-27 12:49:24', NULL),
(905, '2019-01-27', 149, '2019-01-27 12:49:26', NULL),
(906, '2019-01-27', 58, '2019-01-27 12:49:33', NULL),
(907, '2019-01-27', 69, '2019-01-27 12:49:37', NULL),
(908, '2019-01-27', 72, '2019-01-27 12:50:00', NULL),
(909, '2019-01-27', 71, '2019-01-27 12:50:08', NULL),
(910, '2019-01-27', 70, '2019-01-27 12:50:13', NULL),
(911, '2019-01-27', 174, '2019-01-27 12:59:50', NULL),
(912, '2019-01-27', 106, '2019-01-27 13:00:00', NULL),
(913, '2019-01-27', 111, '2019-01-27 13:00:08', NULL),
(914, '2019-01-27', 105, '2019-01-27 13:00:37', NULL),
(915, '2019-01-28', 59, '2019-01-28 07:58:22', NULL),
(916, '2019-01-28', 118, '2019-01-28 07:58:27', NULL),
(917, '2019-01-28', 99, '2019-01-28 08:01:48', NULL),
(918, '2019-01-28', 101, '2019-01-28 08:03:01', NULL),
(919, '2019-01-28', 168, '2019-01-28 08:04:20', NULL),
(920, '2019-01-28', 46, '2019-01-28 08:04:52', '2019-01-28 12:44:12'),
(921, '2019-01-28', 95, '2019-01-28 08:07:47', NULL),
(922, '2019-01-28', 170, '2019-01-28 08:07:53', NULL),
(923, '2019-01-28', 146, '2019-01-28 08:07:58', '2019-01-28 11:37:34'),
(924, '2019-01-28', 141, '2019-01-28 08:08:34', '2019-01-28 11:33:36'),
(925, '2019-01-28', 137, '2019-01-28 08:08:43', '2019-01-28 11:34:12'),
(926, '2019-01-28', 14, '2019-01-28 08:08:53', NULL),
(927, '2019-01-28', 159, '2019-01-28 08:09:01', NULL),
(928, '2019-01-28', 23, '2019-01-28 08:09:07', '2019-01-28 12:08:04'),
(929, '2019-01-28', 157, '2019-01-28 08:09:10', '2019-01-28 11:39:42'),
(930, '2019-01-28', 45, '2019-01-28 08:09:21', NULL),
(931, '2019-01-28', 173, '2019-01-28 08:09:35', '2019-01-28 12:50:26'),
(932, '2019-01-28', 126, '2019-01-28 08:10:00', '2019-01-28 11:39:25'),
(933, '2019-01-28', 169, '2019-01-28 08:10:07', '2019-01-28 12:43:57'),
(934, '2019-01-28', 163, '2019-01-28 08:10:14', NULL),
(935, '2019-01-28', 61, '2019-01-28 08:10:35', '2019-01-28 12:48:44'),
(936, '2019-01-28', 172, '2019-01-28 08:10:41', '2019-01-28 12:50:19'),
(937, '2019-01-28', 24, '2019-01-28 08:10:45', '2019-01-28 12:07:35'),
(938, '2019-01-28', 147, '2019-01-28 08:10:50', '2019-01-28 11:39:34'),
(939, '2019-01-28', 142, '2019-01-28 08:10:55', '2019-01-28 11:40:21'),
(940, '2019-01-28', 55, '2019-01-28 08:11:01', NULL),
(941, '2019-01-28', 72, '2019-01-28 08:11:08', '2019-01-28 12:48:49'),
(942, '2019-01-28', 6, '2019-01-28 08:11:15', '2019-01-28 12:07:58'),
(943, '2019-01-28', 69, '2019-01-28 08:11:20', '2019-01-28 12:49:07'),
(944, '2019-01-28', 144, '2019-01-28 08:11:26', '2019-01-28 11:33:54'),
(945, '2019-01-28', 54, '2019-01-28 08:11:32', '2019-01-28 12:46:11'),
(946, '2019-01-28', 152, '2019-01-28 08:11:38', '2019-01-28 11:40:34'),
(947, '2019-01-28', 70, '2019-01-28 08:11:51', '2019-01-28 12:49:22'),
(948, '2019-01-28', 5, '2019-01-28 08:11:59', '2019-01-28 12:08:23'),
(949, '2019-01-28', 91, '2019-01-28 08:12:25', NULL),
(950, '2019-01-28', 90, '2019-01-28 08:12:33', NULL),
(951, '2019-01-28', 22, '2019-01-28 08:12:40', NULL),
(952, '2019-01-28', 62, '2019-01-28 08:12:47', NULL),
(953, '2019-01-28', 98, '2019-01-28 08:12:52', NULL),
(954, '2019-01-28', 13, '2019-01-28 08:12:58', '2019-01-28 12:06:28'),
(955, '2019-01-28', 89, '2019-01-28 08:13:06', NULL),
(956, '2019-01-28', 57, '2019-01-28 08:13:13', '2019-01-28 12:47:36'),
(957, '2019-01-28', 80, '2019-01-28 08:13:17', NULL),
(958, '2019-01-28', 27, '2019-01-28 08:13:30', NULL),
(959, '2019-01-28', 7, '2019-01-28 08:13:41', '2019-01-28 12:04:38'),
(960, '2019-01-28', 92, '2019-01-28 08:13:47', NULL),
(961, '2019-01-28', 50, '2019-01-28 08:13:59', NULL),
(962, '2019-01-28', 139, '2019-01-28 08:14:09', '2019-01-28 11:39:54'),
(963, '2019-01-28', 51, '2019-01-28 08:14:14', NULL),
(964, '2019-01-28', 87, '2019-01-28 08:14:20', NULL),
(965, '2019-01-28', 66, '2019-01-28 08:14:54', '2019-01-28 12:49:17'),
(966, '2019-01-28', 123, '2019-01-28 08:15:03', '2019-01-28 11:35:47'),
(967, '2019-01-28', 67, '2019-01-28 08:15:13', NULL),
(968, '2019-01-28', 116, '2019-01-28 08:15:32', NULL),
(969, '2019-01-28', 86, '2019-01-28 08:15:49', NULL),
(970, '2019-01-28', 176, '2019-01-28 08:15:56', '2019-01-28 12:03:04'),
(971, '2019-01-28', 68, '2019-01-28 08:17:21', '2019-01-28 12:49:52'),
(972, '2019-01-28', 17, '2019-01-28 08:18:16', NULL),
(973, '2019-01-28', 160, '2019-01-28 08:19:27', NULL),
(974, '2019-01-28', 58, '2019-01-28 08:19:50', '2019-01-28 12:48:40'),
(975, '2019-01-28', 84, '2019-01-28 08:20:28', NULL),
(976, '2019-01-28', 140, '2019-01-28 08:21:32', NULL),
(977, '2019-01-28', 29, '2019-01-28 08:21:37', NULL),
(978, '2019-01-28', 125, '2019-01-28 08:22:07', '2019-01-28 11:40:12'),
(979, '2019-01-28', 129, '2019-01-28 08:22:49', '2019-01-28 11:36:11'),
(980, '2019-01-28', 96, '2019-01-28 08:22:54', NULL),
(981, '2019-01-28', 150, '2019-01-28 08:23:39', '2019-01-28 11:39:47'),
(982, '2019-01-28', 8, '2019-01-28 08:23:44', NULL),
(983, '2019-01-28', 37, '2019-01-28 08:26:52', NULL),
(984, '2019-01-28', 114, '2019-01-28 08:26:56', NULL),
(985, '2019-01-28', 39, '2019-01-28 08:27:00', NULL),
(986, '2019-01-28', 117, '2019-01-28 08:27:24', NULL),
(987, '2019-01-28', 138, '2019-01-28 08:27:42', '2019-01-28 11:39:37'),
(988, '2019-01-28', 65, '2019-01-28 08:27:59', '2019-01-28 12:49:02'),
(989, '2019-01-28', 63, '2019-01-28 08:28:04', '2019-01-28 12:47:41'),
(990, '2019-01-28', 44, '2019-01-28 08:28:21', '2019-01-28 12:44:35'),
(991, '2019-01-28', 18, '2019-01-28 08:28:38', '2019-01-28 12:12:04'),
(992, '2019-01-28', 143, '2019-01-28 08:28:43', '2019-01-28 11:37:15'),
(993, '2019-01-28', 171, '2019-01-28 08:28:49', '2019-01-28 12:44:00'),
(994, '2019-01-28', 34, '2019-01-28 08:28:56', '2019-01-28 11:55:49'),
(995, '2019-01-28', 43, '2019-01-28 08:29:05', '2019-01-28 12:44:21'),
(996, '2019-01-28', 156, '2019-01-28 08:29:11', '2019-01-28 11:39:29'),
(997, '2019-01-28', 112, '2019-01-28 08:29:16', NULL),
(998, '2019-01-28', 94, '2019-01-28 08:29:21', NULL),
(999, '2019-01-28', 10, '2019-01-28 08:29:27', NULL),
(1000, '2019-01-28', 158, '2019-01-28 08:31:03', NULL),
(1001, '2019-01-28', 164, '2019-01-28 08:32:15', NULL),
(1002, '2019-01-28', 75, '2019-01-28 08:33:01', NULL),
(1003, '2019-01-28', 161, '2019-01-28 08:33:28', '2019-01-28 12:07:53'),
(1004, '2019-01-28', 181, '2019-01-28 08:33:38', '2019-01-28 12:44:58'),
(1005, '2019-01-28', 97, '2019-01-28 08:33:46', NULL),
(1006, '2019-01-28', 179, '2019-01-28 08:33:51', NULL),
(1007, '2019-01-28', 113, '2019-01-28 08:34:13', NULL),
(1008, '2019-01-28', 121, '2019-01-28 08:34:34', NULL),
(1009, '2019-01-28', 31, '2019-01-28 08:34:42', NULL),
(1010, '2019-01-28', 100, '2019-01-28 08:35:11', NULL),
(1011, '2019-01-28', 178, '2019-01-28 08:35:18', NULL),
(1012, '2019-01-28', 71, '2019-01-28 08:35:46', '2019-01-28 12:50:32'),
(1013, '2019-01-28', 56, '2019-01-28 08:36:23', '2019-01-28 12:48:37'),
(1014, '2019-01-28', 177, '2019-01-28 08:38:38', '2019-01-28 12:50:38'),
(1015, '2019-01-28', 148, '2019-01-28 08:39:06', '2019-01-28 11:40:07'),
(1016, '2019-01-28', 11, '2019-01-28 08:39:15', NULL),
(1017, '2019-01-28', 120, '2019-01-28 08:40:32', NULL),
(1018, '2019-01-28', 151, '2019-01-28 08:40:35', '2019-01-28 11:40:16'),
(1019, '2019-01-28', 48, '2019-01-28 08:40:40', NULL),
(1020, '2019-01-28', 38, '2019-01-28 08:44:02', NULL),
(1021, '2019-01-28', 135, '2019-01-28 08:45:08', '2019-01-28 11:39:57'),
(1022, '2019-01-28', 128, '2019-01-28 08:45:14', '2019-01-28 11:40:02'),
(1023, '2019-01-28', 88, '2019-01-28 08:46:46', NULL),
(1024, '2019-01-28', 180, '2019-01-28 08:53:49', '2019-01-28 11:43:45'),
(1025, '2019-01-28', 134, '2019-01-28 08:53:52', '2019-01-28 11:43:37'),
(1026, '2019-01-28', 124, '2019-01-28 08:55:14', '2019-01-28 11:35:26'),
(1027, '2019-01-28', 130, '2019-01-28 11:34:29', NULL),
(1028, '2019-01-28', 132, '2019-01-28 11:36:14', NULL),
(1029, '2019-01-28', 127, '2019-01-28 11:40:40', NULL),
(1030, '2019-01-28', 162, '2019-01-28 12:03:44', NULL),
(1031, '2019-01-28', 9, '2019-01-28 12:04:35', NULL),
(1032, '2019-01-28', 165, '2019-01-28 12:06:05', NULL),
(1033, '2019-01-28', 28, '2019-01-28 12:46:03', NULL),
(1034, '2019-01-28', 33, '2019-01-28 12:46:16', NULL),
(1035, '2019-01-28', 35, '2019-01-28 12:46:23', NULL),
(1036, '2019-01-28', 40, '2019-01-28 12:46:34', NULL),
(1037, '2019-01-28', 30, '2019-01-28 12:46:42', NULL),
(1038, '2019-01-28', 41, '2019-01-28 12:47:04', NULL),
(1039, '2019-01-28', 149, '2019-01-28 12:48:10', NULL),
(1040, '2019-01-28', 111, '2019-01-28 12:58:34', NULL),
(1041, '2019-01-28', 104, '2019-01-28 12:58:39', NULL),
(1042, '2019-01-28', 174, '2019-01-28 12:59:25', NULL),
(1043, '2019-01-28', 108, '2019-01-28 12:59:31', NULL),
(1044, '2019-01-28', 175, '2019-01-28 12:59:36', NULL),
(1045, '2019-01-28', 109, '2019-01-28 12:59:44', NULL),
(1046, '2019-01-28', 102, '2019-01-28 12:59:49', NULL),
(1047, '2019-01-28', 106, '2019-01-28 12:59:55', NULL),
(1048, '2019-01-28', 183, '2019-01-28 13:02:24', NULL),
(1049, '2019-01-28', 105, '2019-01-28 13:05:29', NULL),
(1050, '2019-01-29', 6, '2019-01-29 07:57:15', '2019-01-29 12:09:43'),
(1051, '2019-01-29', 152, '2019-01-29 07:57:21', '2019-01-29 11:35:31'),
(1052, '2019-01-29', 147, '2019-01-29 07:57:29', '2019-01-29 11:34:54'),
(1053, '2019-01-29', 55, '2019-01-29 07:57:36', '2019-01-29 12:49:44'),
(1054, '2019-01-29', 114, '2019-01-29 07:57:55', NULL),
(1055, '2019-01-29', 24, '2019-01-29 07:58:34', '2019-01-29 12:09:10'),
(1056, '2019-01-29', 99, '2019-01-29 08:01:52', '2019-01-29 10:25:52'),
(1057, '2019-01-29', 118, '2019-01-29 08:02:47', NULL),
(1058, '2019-01-29', 61, '2019-01-29 08:03:09', '2019-01-29 13:01:30'),
(1059, '2019-01-29', 96, '2019-01-29 08:04:07', '2019-01-29 10:32:08'),
(1060, '2019-01-29', 95, '2019-01-29 08:05:07', '2019-01-29 10:39:28'),
(1061, '2019-01-29', 46, '2019-01-29 08:05:49', '2019-01-29 12:49:01'),
(1062, '2019-01-29', 57, '2019-01-29 08:07:35', '2019-01-29 12:50:03'),
(1063, '2019-01-29', 91, '2019-01-29 08:07:41', '2019-01-29 10:32:13'),
(1064, '2019-01-29', 90, '2019-01-29 08:07:49', '2019-01-29 10:34:40'),
(1065, '2019-01-29', 59, '2019-01-29 08:07:56', NULL),
(1066, '2019-01-29', 119, '2019-01-29 08:08:02', NULL),
(1067, '2019-01-29', 176, '2019-01-29 08:08:28', '2019-01-29 12:49:26'),
(1068, '2019-01-29', 98, '2019-01-29 08:08:40', '2019-01-29 10:31:33'),
(1069, '2019-01-29', 62, '2019-01-29 08:08:48', '2019-01-29 12:49:46'),
(1070, '2019-01-29', 94, '2019-01-29 08:08:55', '2019-01-29 10:31:18'),
(1071, '2019-01-29', 163, '2019-01-29 08:09:15', NULL),
(1072, '2019-01-29', 168, '2019-01-29 08:09:23', '2019-01-29 12:57:14'),
(1073, '2019-01-29', 89, '2019-01-29 08:09:38', '2019-01-29 10:35:01'),
(1074, '2019-01-29', 86, '2019-01-29 08:09:45', '2019-01-29 10:32:25'),
(1075, '2019-01-29', 22, '2019-01-29 08:10:04', '2019-01-29 10:26:09'),
(1076, '2019-01-29', 45, '2019-01-29 08:10:11', '2019-01-29 12:51:54'),
(1077, '2019-01-29', 25, '2019-01-29 08:10:16', '2019-01-29 12:08:41'),
(1078, '2019-01-29', 67, '2019-01-29 08:10:23', '2019-01-29 12:49:49'),
(1079, '2019-01-29', 173, '2019-01-29 08:10:37', '2019-01-29 12:57:20'),
(1080, '2019-01-29', 141, '2019-01-29 08:10:50', '2019-01-29 11:34:12'),
(1081, '2019-01-29', 101, '2019-01-29 08:10:57', '2019-01-29 10:32:30'),
(1082, '2019-01-29', 5, '2019-01-29 08:11:05', '2019-01-29 12:09:53'),
(1083, '2019-01-29', 159, '2019-01-29 08:11:37', '2019-01-29 10:31:01'),
(1084, '2019-01-29', 137, '2019-01-29 08:11:43', '2019-01-29 11:34:06'),
(1085, '2019-01-29', 54, '2019-01-29 08:12:26', '2019-01-29 12:52:16'),
(1086, '2019-01-29', 70, '2019-01-29 08:12:34', '2019-01-29 12:49:59'),
(1087, '2019-01-29', 144, '2019-01-29 08:12:39', '2019-01-29 11:34:20'),
(1088, '2019-01-29', 69, '2019-01-29 08:12:44', '2019-01-29 12:50:07'),
(1089, '2019-01-29', 110, '2019-01-29 08:12:50', '2019-01-29 10:22:07'),
(1090, '2019-01-29', 23, '2019-01-29 08:12:56', '2019-01-29 12:09:22'),
(1091, '2019-01-29', 157, '2019-01-29 08:13:01', '2019-01-29 11:35:21'),
(1092, '2019-01-29', 170, '2019-01-29 08:14:10', '2019-01-29 12:57:30'),
(1093, '2019-01-29', 146, '2019-01-29 08:14:25', '2019-01-29 11:34:27'),
(1094, '2019-01-29', 92, '2019-01-29 08:14:30', '2019-01-29 10:30:47'),
(1095, '2019-01-29', 177, '2019-01-29 08:14:37', '2019-01-29 12:50:28'),
(1096, '2019-01-29', 154, '2019-01-29 08:14:42', '2019-01-29 11:34:49'),
(1097, '2019-01-29', 150, '2019-01-29 08:14:57', '2019-01-29 11:35:06'),
(1098, '2019-01-29', 172, '2019-01-29 08:15:45', '2019-01-29 12:57:35'),
(1099, '2019-01-29', 129, '2019-01-29 08:15:48', '2019-01-29 11:33:53'),
(1100, '2019-01-29', 143, '2019-01-29 08:16:11', NULL),
(1101, '2019-01-29', 15, '2019-01-29 08:17:29', NULL),
(1102, '2019-01-29', 58, '2019-01-29 08:18:09', NULL),
(1103, '2019-01-29', 18, '2019-01-29 08:18:15', '2019-01-29 12:08:47'),
(1104, '2019-01-29', 116, '2019-01-29 08:18:25', '2019-01-29 10:26:58'),
(1105, '2019-01-29', 160, '2019-01-29 08:18:46', '2019-01-29 10:31:37'),
(1106, '2019-01-29', 37, '2019-01-29 08:19:12', '2019-01-29 10:25:31'),
(1107, '2019-01-29', 97, '2019-01-29 08:20:32', '2019-01-29 10:33:05'),
(1108, '2019-01-29', 34, '2019-01-29 08:20:59', '2019-01-29 10:26:42'),
(1109, '2019-01-29', 182, '2019-01-29 08:21:04', '2019-01-29 12:10:34'),
(1110, '2019-01-29', 29, '2019-01-29 08:21:36', '2019-01-29 10:26:00'),
(1111, '2019-01-29', 9, '2019-01-29 08:22:47', '2019-01-29 12:09:49'),
(1112, '2019-01-29', 165, '2019-01-29 08:22:53', '2019-01-29 12:11:04'),
(1113, '2019-01-29', 117, '2019-01-29 08:23:49', '2019-01-29 10:25:24'),
(1114, '2019-01-29', 84, '2019-01-29 08:28:04', '2019-01-29 10:32:38'),
(1115, '2019-01-29', 87, '2019-01-29 08:28:09', '2019-01-29 10:31:50'),
(1116, '2019-01-29', 93, '2019-01-29 08:28:19', '2019-01-29 10:31:13'),
(1117, '2019-01-29', 140, '2019-01-29 08:28:44', '2019-01-29 11:34:17'),
(1118, '2019-01-29', 142, '2019-01-29 08:28:49', '2019-01-29 11:35:13'),
(1119, '2019-01-29', 14, '2019-01-29 08:28:53', '2019-01-29 12:10:41'),
(1120, '2019-01-29', 139, '2019-01-29 08:29:05', '2019-01-29 11:34:39'),
(1121, '2019-01-29', 132, '2019-01-29 08:29:11', NULL),
(1122, '2019-01-29', 56, '2019-01-29 08:29:18', '2019-01-29 12:49:54'),
(1123, '2019-01-29', 13, '2019-01-29 08:29:25', '2019-01-29 12:11:19'),
(1124, '2019-01-29', 161, '2019-01-29 08:29:30', '2019-01-29 12:09:02'),
(1125, '2019-01-29', 60, '2019-01-29 08:29:35', '2019-01-29 12:50:14'),
(1126, '2019-01-29', 179, '2019-01-29 08:29:41', '2019-01-29 12:57:22'),
(1127, '2019-01-29', 44, '2019-01-29 08:29:48', NULL),
(1128, '2019-01-29', 123, '2019-01-29 08:29:52', '2019-01-29 11:35:36'),
(1129, '2019-01-29', 51, '2019-01-29 08:29:57', NULL),
(1130, '2019-01-29', 171, '2019-01-29 08:30:02', '2019-01-29 12:57:26'),
(1131, '2019-01-29', 68, '2019-01-29 08:30:07', '2019-01-29 12:50:47'),
(1132, '2019-01-29', 178, '2019-01-29 08:30:13', '2019-01-29 10:27:06'),
(1133, '2019-01-29', 7, '2019-01-29 08:30:18', NULL),
(1134, '2019-01-29', 27, '2019-01-29 08:30:24', '2019-01-29 10:25:44'),
(1135, '2019-01-29', 10, '2019-01-29 08:30:29', '2019-01-29 12:08:51'),
(1136, '2019-01-29', 138, '2019-01-29 08:30:40', '2019-01-29 11:36:06'),
(1137, '2019-01-29', 26, '2019-01-29 08:30:51', '2019-01-29 10:26:27'),
(1138, '2019-01-29', 166, '2019-01-29 08:30:54', NULL),
(1139, '2019-01-29', 125, '2019-01-29 08:30:58', '2019-01-29 11:34:34'),
(1140, '2019-01-29', 156, '2019-01-29 08:31:09', '2019-01-29 11:35:56'),
(1141, '2019-01-29', 79, '2019-01-29 08:31:16', '2019-01-29 10:39:37'),
(1142, '2019-01-29', 164, '2019-01-29 08:31:21', NULL),
(1143, '2019-01-29', 113, '2019-01-29 08:31:27', '2019-01-29 10:25:34'),
(1144, '2019-01-29', 75, '2019-01-29 08:32:29', NULL),
(1145, '2019-01-29', 39, '2019-01-29 08:32:45', '2019-01-29 10:25:38'),
(1146, '2019-01-29', 158, '2019-01-29 08:33:08', NULL),
(1147, '2019-01-29', 151, '2019-01-29 08:35:27', '2019-01-29 11:35:18'),
(1148, '2019-01-29', 77, '2019-01-29 08:35:47', '2019-01-29 10:32:01'),
(1149, '2019-01-29', 130, '2019-01-29 08:35:52', '2019-01-29 11:34:57'),
(1150, '2019-01-29', 17, '2019-01-29 08:36:51', '2019-01-29 10:25:48'),
(1151, '2019-01-29', 76, '2019-01-29 08:36:57', '2019-01-29 10:33:38'),
(1152, '2019-01-29', 80, '2019-01-29 08:37:42', '2019-01-29 10:31:24'),
(1153, '2019-01-29', 66, '2019-01-29 08:37:46', NULL),
(1154, '2019-01-29', 48, '2019-01-29 08:38:08', NULL),
(1155, '2019-01-29', 43, '2019-01-29 08:38:34', '2019-01-29 12:52:50'),
(1156, '2019-01-29', 71, '2019-01-29 08:41:43', '2019-01-29 12:51:17'),
(1157, '2019-01-29', 38, '2019-01-29 08:42:56', '2019-01-29 10:25:27'),
(1158, '2019-01-29', 31, '2019-01-29 08:44:31', '2019-01-29 10:26:50'),
(1159, '2019-01-29', 121, '2019-01-29 08:44:36', NULL),
(1160, '2019-01-29', 135, '2019-01-29 08:47:08', NULL),
(1161, '2019-01-29', 128, '2019-01-29 08:47:12', '2019-01-29 11:34:01'),
(1162, '2019-01-29', 19, '2019-01-29 08:55:55', NULL),
(1163, '2019-01-29', 105, '2019-01-29 10:17:45', '2019-01-29 13:02:29'),
(1164, '2019-01-29', 112, '2019-01-29 10:26:36', NULL),
(1165, '2019-01-29', 40, '2019-01-29 10:28:26', NULL),
(1166, '2019-01-29', 111, '2019-01-29 10:29:07', '2019-01-29 12:58:58'),
(1167, '2019-01-29', 33, '2019-01-29 10:29:30', NULL),
(1168, '2019-01-29', 106, '2019-01-29 10:30:33', '2019-01-29 12:59:07'),
(1169, '2019-01-29', 100, '2019-01-29 10:30:51', NULL),
(1170, '2019-01-29', 109, '2019-01-29 10:33:57', '2019-01-29 12:59:15'),
(1171, '2019-01-29', 104, '2019-01-29 10:34:11', '2019-01-29 12:59:44'),
(1172, '2019-01-29', 30, '2019-01-29 10:35:16', '2019-01-29 12:49:30'),
(1173, '2019-01-29', 102, '2019-01-29 10:35:47', NULL),
(1174, '2019-01-29', 149, '2019-01-29 10:37:32', '2019-01-29 12:50:53'),
(1175, '2019-01-29', 108, '2019-01-29 10:39:44', '2019-01-29 12:59:31'),
(1176, '2019-01-29', 183, '2019-01-29 10:44:17', '2019-01-29 12:58:55'),
(1177, '2019-01-29', 36, '2019-01-29 10:45:14', '2019-01-29 12:50:33'),
(1178, '2019-01-29', 175, '2019-01-29 10:47:09', '2019-01-29 12:59:39'),
(1179, '2019-01-29', 103, '2019-01-29 10:48:31', '2019-01-29 12:59:50'),
(1180, '2019-01-29', 107, '2019-01-29 10:49:31', '2019-01-29 13:02:21'),
(1181, '2019-01-29', 134, '2019-01-29 11:34:45', NULL),
(1182, '2019-01-29', 180, '2019-01-29 11:35:26', NULL),
(1183, '2019-01-29', 11, '2019-01-29 12:08:56', NULL),
(1184, '2019-01-29', 8, '2019-01-29 12:11:01', NULL),
(1185, '2019-01-29', 50, '2019-01-29 12:52:04', NULL),
(1186, '2019-01-29', 174, '2019-01-29 12:59:21', NULL),
(1187, '2019-01-30', 97, '2019-01-30 08:21:11', NULL),
(1188, '2019-01-30', 31, '2019-01-30 08:23:07', NULL),
(1189, '2019-01-30', 29, '2019-01-30 08:26:29', NULL),
(1190, '2019-01-30', 80, '2019-01-30 08:26:32', NULL),
(1191, '2019-01-30', 37, '2019-01-30 08:26:46', NULL),
(1192, '2019-01-30', 94, '2019-01-30 08:26:52', NULL),
(1193, '2019-01-30', 92, '2019-01-30 08:26:57', NULL),
(1194, '2019-01-30', 140, '2019-01-30 08:27:02', NULL),
(1195, '2019-01-30', 143, '2019-01-30 08:27:15', NULL),
(1196, '2019-01-30', 152, '2019-01-30 08:27:25', NULL),
(1197, '2019-01-30', 139, '2019-01-30 08:27:31', NULL),
(1198, '2019-01-30', 24, '2019-01-30 08:27:35', NULL),
(1199, '2019-01-30', 66, '2019-01-30 08:27:43', NULL),
(1200, '2019-01-30', 179, '2019-01-30 08:28:02', NULL),
(1201, '2019-01-30', 178, '2019-01-30 08:28:08', NULL),
(1202, '2019-01-30', 181, '2019-01-30 08:28:12', NULL),
(1203, '2019-01-30', 172, '2019-01-30 08:28:17', NULL),
(1204, '2019-01-30', 56, '2019-01-30 08:28:20', NULL),
(1205, '2019-01-30', 11, '2019-01-30 08:28:26', NULL),
(1206, '2019-01-30', 125, '2019-01-30 08:28:31', NULL),
(1207, '2019-01-30', 32, '2019-01-30 19:58:40', NULL),
(1208, '2019-02-02', 157, '2019-02-02 07:51:49', '2019-02-02 11:34:13'),
(1209, '2019-02-02', 18, '2019-02-02 07:56:27', NULL),
(1210, '2019-02-02', 6, '2019-02-02 07:56:35', NULL),
(1211, '2019-02-02', 24, '2019-02-02 07:56:54', NULL),
(1212, '2019-02-02', 152, '2019-02-02 07:57:06', NULL),
(1213, '2019-02-02', 34, '2019-02-02 07:57:23', '2019-02-02 10:53:52'),
(1214, '2019-02-02', 72, '2019-02-02 07:57:32', NULL),
(1215, '2019-02-02', 155, '2019-02-02 07:57:35', '2019-02-02 11:34:49'),
(1216, '2019-02-02', 154, '2019-02-02 07:57:47', '2019-02-02 11:34:36'),
(1217, '2019-02-02', 114, '2019-02-02 07:58:03', '2019-02-02 10:56:25'),
(1218, '2019-02-02', 23, '2019-02-02 07:59:04', NULL),
(1219, '2019-02-02', 96, '2019-02-02 08:00:29', '2019-02-02 10:55:56'),
(1220, '2019-02-02', 89, '2019-02-02 08:02:49', '2019-02-02 10:57:18'),
(1221, '2019-02-02', 118, '2019-02-02 08:04:53', '2019-02-02 10:56:31'),
(1222, '2019-02-02', 159, '2019-02-02 08:05:25', NULL),
(1223, '2019-02-02', 168, '2019-02-02 08:06:27', NULL),
(1224, '2019-02-02', 95, '2019-02-02 08:06:35', '2019-02-02 10:55:17'),
(1225, '2019-02-02', 61, '2019-02-02 08:07:35', NULL),
(1226, '2019-02-02', 146, '2019-02-02 08:08:29', NULL),
(1227, '2019-02-02', 170, '2019-02-02 08:08:34', NULL),
(1228, '2019-02-02', 142, '2019-02-02 08:08:45', '2019-02-02 11:34:44'),
(1229, '2019-02-02', 126, '2019-02-02 08:08:48', '2019-02-02 11:34:18'),
(1230, '2019-02-02', 141, '2019-02-02 08:10:52', '2019-02-02 11:33:19'),
(1231, '2019-02-02', 53, '2019-02-02 08:11:11', NULL),
(1232, '2019-02-02', 172, '2019-02-02 08:11:16', '2019-02-02 12:47:31'),
(1233, '2019-02-02', 169, '2019-02-02 08:11:21', NULL),
(1234, '2019-02-02', 57, '2019-02-02 08:11:27', NULL),
(1235, '2019-02-02', 125, '2019-02-02 08:11:32', '2019-02-02 11:35:05'),
(1236, '2019-02-02', 59, '2019-02-02 08:11:45', NULL),
(1237, '2019-02-02', 165, '2019-02-02 08:11:49', NULL),
(1238, '2019-02-02', 91, '2019-02-02 08:11:55', '2019-02-02 10:56:03'),
(1239, '2019-02-02', 90, '2019-02-02 08:12:08', '2019-02-02 10:56:13'),
(1240, '2019-02-02', 85, '2019-02-02 08:12:23', '2019-02-02 10:59:35'),
(1241, '2019-02-02', 145, '2019-02-02 08:12:50', '2019-02-02 11:33:33'),
(1242, '2019-02-02', 181, '2019-02-02 08:12:57', NULL),
(1243, '2019-02-02', 22, '2019-02-02 08:14:15', '2019-02-02 10:56:42'),
(1244, '2019-02-02', 139, '2019-02-02 08:14:20', '2019-02-02 11:34:54'),
(1245, '2019-02-02', 177, '2019-02-02 08:15:25', NULL),
(1246, '2019-02-02', 51, '2019-02-02 08:15:38', NULL),
(1247, '2019-02-02', 129, '2019-02-02 08:15:48', NULL),
(1248, '2019-02-02', 176, '2019-02-02 08:15:54', NULL),
(1249, '2019-02-02', 112, '2019-02-02 08:16:02', '2019-02-02 10:47:11'),
(1250, '2019-02-02', 13, '2019-02-02 08:16:12', NULL),
(1251, '2019-02-02', 39, '2019-02-02 08:17:25', '2019-02-02 10:57:04'),
(1252, '2019-02-02', 143, '2019-02-02 08:17:39', '2019-02-02 09:32:49'),
(1253, '2019-02-02', 70, '2019-02-02 08:17:45', NULL),
(1254, '2019-02-02', 173, '2019-02-02 08:17:57', '2019-02-02 12:47:22'),
(1255, '2019-02-02', 84, '2019-02-02 08:18:14', NULL),
(1256, '2019-02-02', 138, '2019-02-02 08:18:20', '2019-02-02 11:34:29'),
(1257, '2019-02-02', 86, '2019-02-02 08:21:27', '2019-02-02 10:52:53'),
(1258, '2019-02-02', 144, '2019-02-02 08:22:34', '2019-02-02 11:34:21'),
(1259, '2019-02-02', 97, '2019-02-02 08:22:40', '2019-02-02 10:57:48'),
(1260, '2019-02-02', 123, '2019-02-02 08:22:47', '2019-02-02 11:35:12'),
(1261, '2019-02-02', 5, '2019-02-02 08:23:49', NULL),
(1262, '2019-02-02', 87, '2019-02-02 08:29:16', '2019-02-02 10:50:28'),
(1263, '2019-02-02', 116, '2019-02-02 08:29:26', '2019-02-02 10:57:09'),
(1264, '2019-02-02', 166, '2019-02-02 08:29:44', NULL),
(1265, '2019-02-02', 29, '2019-02-02 08:29:49', '2019-02-02 10:46:45'),
(1266, '2019-02-02', 9, '2019-02-02 08:29:55', NULL),
(1267, '2019-02-02', 161, '2019-02-02 08:30:00', NULL),
(1268, '2019-02-02', 115, '2019-02-02 08:30:05', '2019-02-02 10:56:35'),
(1269, '2019-02-02', 7, '2019-02-02 08:30:14', NULL),
(1270, '2019-02-02', 150, '2019-02-02 08:30:22', '2019-02-02 11:33:46'),
(1271, '2019-02-02', 56, '2019-02-02 08:30:26', NULL),
(1272, '2019-02-02', 179, '2019-02-02 08:30:36', NULL),
(1273, '2019-02-02', 54, '2019-02-02 08:30:40', NULL),
(1274, '2019-02-02', 67, '2019-02-02 08:30:51', NULL),
(1275, '2019-02-02', 135, '2019-02-02 08:30:56', '2019-02-02 11:33:56'),
(1276, '2019-02-02', 25, '2019-02-02 08:31:01', NULL),
(1277, '2019-02-02', 128, '2019-02-02 08:31:07', '2019-02-02 11:34:02'),
(1278, '2019-02-02', 92, '2019-02-02 08:31:12', '2019-02-02 10:20:59'),
(1279, '2019-02-02', 43, '2019-02-02 08:31:20', NULL),
(1280, '2019-02-02', 117, '2019-02-02 08:31:24', '2019-02-02 10:19:56'),
(1281, '2019-02-02', 178, '2019-02-02 08:31:28', NULL),
(1282, '2019-02-02', 133, '2019-02-02 08:31:33', '2019-02-02 11:33:22'),
(1283, '2019-02-02', 151, '2019-02-02 08:31:38', '2019-02-02 11:34:08'),
(1284, '2019-02-02', 93, '2019-02-02 08:31:43', NULL),
(1285, '2019-02-02', 52, '2019-02-02 08:32:55', '2019-02-02 12:47:41'),
(1286, '2019-02-02', 110, '2019-02-02 08:32:59', NULL),
(1287, '2019-02-02', 44, '2019-02-02 08:33:25', NULL),
(1288, '2019-02-02', 156, '2019-02-02 08:33:49', '2019-02-02 11:34:32'),
(1289, '2019-02-02', 120, '2019-02-02 08:34:54', NULL),
(1290, '2019-02-02', 71, '2019-02-02 08:36:05', NULL),
(1291, '2019-02-02', 80, '2019-02-02 08:36:32', NULL),
(1292, '2019-02-02', 171, '2019-02-02 08:37:00', NULL),
(1293, '2019-02-02', 75, '2019-02-02 08:37:26', NULL),
(1294, '2019-02-02', 76, '2019-02-02 08:37:34', NULL),
(1295, '2019-02-02', 113, '2019-02-02 08:39:38', '2019-02-02 10:56:16'),
(1296, '2019-02-02', 58, '2019-02-02 08:43:24', NULL),
(1297, '2019-02-02', 77, '2019-02-02 08:47:12', '2019-02-02 10:55:34'),
(1298, '2019-02-02', 48, '2019-02-02 08:48:04', NULL),
(1299, '2019-02-02', 60, '2019-02-02 08:49:54', NULL),
(1300, '2019-02-02', 64, '2019-02-02 09:28:59', NULL),
(1301, '2019-02-02', 107, '2019-02-02 09:34:42', NULL),
(1302, '2019-02-02', 106, '2019-02-02 09:34:48', '2019-02-02 11:02:58'),
(1303, '2019-02-02', 175, '2019-02-02 09:47:04', '2019-02-02 10:51:41'),
(1304, '2019-02-02', 105, '2019-02-02 09:49:07', NULL),
(1305, '2019-02-02', 103, '2019-02-02 09:55:28', '2019-02-02 11:03:37'),
(1306, '2019-02-02', 183, '2019-02-02 10:51:33', NULL),
(1307, '2019-02-02', 174, '2019-02-02 10:53:02', NULL),
(1308, '2019-02-02', 40, '2019-02-02 10:53:05', NULL),
(1309, '2019-02-02', 37, '2019-02-02 10:55:24', NULL),
(1310, '2019-02-02', 17, '2019-02-02 10:56:07', NULL),
(1311, '2019-02-02', 109, '2019-02-02 10:59:26', NULL),
(1312, '2019-02-02', 108, '2019-02-02 11:00:08', NULL),
(1313, '2019-02-02', 104, '2019-02-02 11:03:44', NULL),
(1314, '2019-02-02', 180, '2019-02-02 11:34:39', NULL),
(1316, '2019-02-03', 28, '2019-02-03 12:48:52', NULL),
(1317, '2019-02-03', 61, '2019-02-03 12:48:55', NULL),
(1318, '2019-02-03', 40, '2019-02-03 12:49:04', NULL),
(1319, '2019-02-03', 67, '2019-02-03 12:49:06', NULL),
(1320, '2019-02-03', 58, '2019-02-03 12:49:10', NULL),
(1321, '2019-02-03', 64, '2019-02-03 12:49:14', NULL),
(1322, '2019-02-03', 56, '2019-02-03 12:49:20', NULL),
(1323, '2019-02-03', 44, '2019-02-03 12:49:26', NULL),
(1324, '2019-02-03', 62, '2019-02-03 12:49:31', NULL),
(1325, '2019-02-03', 66, '2019-02-03 12:49:35', NULL),
(1326, '2019-02-03', 43, '2019-02-03 12:49:39', NULL),
(1327, '2019-02-03', 55, '2019-02-03 12:49:43', NULL),
(1328, '2019-02-03', 68, '2019-02-03 12:49:48', NULL),
(1329, '2019-02-03', 71, '2019-02-03 12:49:53', NULL),
(1330, '2019-02-03', 168, '2019-02-03 12:49:57', NULL),
(1331, '2019-02-03', 167, '2019-02-03 12:50:00', NULL),
(1332, '2019-02-03', 173, '2019-02-03 12:50:03', NULL),
(1333, '2019-02-03', 60, '2019-02-03 12:50:14', NULL),
(1334, '2019-02-03', 42, '2019-02-03 12:50:28', NULL),
(1335, '2019-02-03', 30, '2019-02-03 12:50:34', NULL),
(1336, '2019-02-03', 169, '2019-02-03 12:50:39', NULL),
(1337, '2019-02-03', 54, '2019-02-03 12:50:45', NULL),
(1338, '2019-02-03', 45, '2019-02-03 12:50:54', NULL),
(1339, '2019-02-03', 48, '2019-02-03 12:50:57', NULL),
(1340, '2019-02-03', 149, '2019-02-03 12:51:00', NULL),
(1341, '2019-02-03', 181, '2019-02-03 12:51:12', NULL),
(1342, '2019-02-03', 171, '2019-02-03 12:51:17', NULL),
(1343, '2019-02-03', 179, '2019-02-03 12:51:20', NULL),
(1344, '2019-02-03', 170, '2019-02-03 12:51:22', NULL),
(1345, '2019-02-03', 70, '2019-02-03 12:51:26', NULL),
(1346, '2019-02-03', 72, '2019-02-03 12:51:29', NULL),
(1347, '2019-02-03', 36, '2019-02-03 12:51:36', NULL),
(1348, '2019-02-03', 108, '2019-02-03 12:57:42', NULL),
(1349, '2019-02-03', 183, '2019-02-03 12:57:49', NULL),
(1350, '2019-02-03', 111, '2019-02-03 12:57:52', NULL),
(1351, '2019-02-03', 174, '2019-02-03 12:58:00', NULL),
(1352, '2019-02-03', 104, '2019-02-03 12:58:05', NULL),
(1353, '2019-02-03', 175, '2019-02-03 12:58:08', NULL),
(1354, '2019-02-03', 103, '2019-02-03 12:58:14', NULL),
(1355, '2019-02-03', 102, '2019-02-03 12:58:23', NULL),
(1356, '2019-02-03', 106, '2019-02-03 12:58:27', NULL),
(1357, '2019-02-03', 107, '2019-02-03 12:58:46', NULL),
(1358, '2019-02-03', 105, '2019-02-03 13:00:06', NULL),
(1359, '2019-02-03', 109, '2019-02-03 13:02:09', NULL),
(1360, '2019-02-04', 114, '2019-02-04 07:54:10', '2019-02-04 10:22:07'),
(1361, '2019-02-04', 55, '2019-02-04 07:54:17', NULL),
(1362, '2019-02-04', 147, '2019-02-04 07:54:21', '2019-02-04 11:35:05'),
(1363, '2019-02-04', 24, '2019-02-04 07:54:56', '2019-02-04 12:08:05'),
(1364, '2019-02-04', 95, '2019-02-04 07:57:01', '2019-02-04 10:33:26'),
(1365, '2019-02-04', 155, '2019-02-04 07:59:41', '2019-02-04 11:37:11'),
(1366, '2019-02-04', 96, '2019-02-04 08:00:03', '2019-02-04 10:34:10'),
(1367, '2019-02-04', 89, '2019-02-04 08:00:16', NULL),
(1368, '2019-02-04', 159, '2019-02-04 08:03:41', '2019-02-04 10:33:22'),
(1369, '2019-02-04', 99, '2019-02-04 08:04:06', '2019-02-04 10:33:38'),
(1370, '2019-02-04', 143, '2019-02-04 08:04:12', '2019-02-04 11:35:29'),
(1371, '2019-02-04', 141, '2019-02-04 08:05:53', '2019-02-04 11:36:49'),
(1372, '2019-02-04', 169, '2019-02-04 08:06:17', '2019-02-04 12:49:22'),
(1373, '2019-02-04', 14, '2019-02-04 08:09:50', '2019-02-04 12:08:35'),
(1374, '2019-02-04', 59, '2019-02-04 08:10:09', '2019-02-04 13:46:32'),
(1375, '2019-02-04', 126, '2019-02-04 08:10:38', '2019-02-04 11:35:45'),
(1376, '2019-02-04', 157, '2019-02-04 08:11:19', '2019-02-04 11:35:33'),
(1377, '2019-02-04', 68, '2019-02-04 08:11:29', '2019-02-04 12:48:10'),
(1378, '2019-02-04', 46, '2019-02-04 08:11:52', '2019-02-04 12:48:40'),
(1379, '2019-02-04', 37, '2019-02-04 08:11:57', '2019-02-04 10:21:25'),
(1380, '2019-02-04', 168, '2019-02-04 08:12:24', NULL),
(1381, '2019-02-04', 91, '2019-02-04 08:13:16', '2019-02-04 10:34:30'),
(1382, '2019-02-04', 90, '2019-02-04 08:13:20', NULL),
(1383, '2019-02-04', 125, '2019-02-04 08:13:24', '2019-02-04 11:36:34'),
(1384, '2019-02-04', 57, '2019-02-04 08:13:27', '2019-02-04 12:47:53'),
(1385, '2019-02-04', 22, '2019-02-04 08:13:34', '2019-02-04 10:23:20'),
(1386, '2019-02-04', 172, '2019-02-04 08:13:40', '2019-02-04 12:48:37'),
(1387, '2019-02-04', 138, '2019-02-04 08:14:10', '2019-02-04 11:35:16'),
(1388, '2019-02-04', 161, '2019-02-04 08:15:01', '2019-02-04 12:09:49'),
(1389, '2019-02-04', 5, '2019-02-04 08:15:15', '2019-02-04 12:08:01'),
(1390, '2019-02-04', 70, '2019-02-04 08:15:20', '2019-02-04 12:48:16'),
(1391, '2019-02-04', 144, '2019-02-04 08:15:26', '2019-02-04 11:35:23'),
(1392, '2019-02-04', 85, '2019-02-04 08:15:33', '2019-02-04 10:35:53'),
(1393, '2019-02-04', 156, '2019-02-04 08:16:37', '2019-02-04 11:35:09'),
(1394, '2019-02-04', 62, '2019-02-04 08:16:42', '2019-02-04 12:47:38'),
(1395, '2019-02-04', 158, '2019-02-04 08:16:54', '2019-02-04 10:33:04'),
(1396, '2019-02-04', 86, '2019-02-04 08:17:01', '2019-02-04 10:34:07'),
(1397, '2019-02-04', 69, '2019-02-04 08:17:08', '2019-02-04 12:49:12'),
(1398, '2019-02-04', 137, '2019-02-04 08:17:12', '2019-02-04 11:36:24'),
(1399, '2019-02-04', 170, '2019-02-04 08:17:17', '2019-02-04 12:49:19'),
(1400, '2019-02-04', 145, '2019-02-04 08:17:21', '2019-02-04 11:35:12'),
(1401, '2019-02-04', 181, '2019-02-04 08:17:23', '2019-02-04 12:49:50'),
(1402, '2019-02-04', 93, '2019-02-04 08:17:26', '2019-02-04 10:34:18'),
(1403, '2019-02-04', 150, '2019-02-04 08:17:29', '2019-02-04 11:35:48'),
(1404, '2019-02-04', 173, '2019-02-04 08:17:32', '2019-02-04 12:54:57'),
(1405, '2019-02-04', 9, '2019-02-04 08:17:39', '2019-02-04 12:09:14'),
(1406, '2019-02-04', 27, '2019-02-04 08:17:44', '2019-02-04 10:21:52'),
(1407, '2019-02-04', 116, '2019-02-04 08:17:49', '2019-02-04 10:22:52'),
(1408, '2019-02-04', 165, '2019-02-04 08:19:04', '2019-02-04 12:11:33'),
(1409, '2019-02-04', 112, '2019-02-04 08:19:25', '2019-02-04 10:22:16'),
(1410, '2019-02-04', 11, '2019-02-04 08:20:04', '2019-02-04 12:11:20'),
(1411, '2019-02-04', 17, '2019-02-04 08:20:22', NULL),
(1412, '2019-02-04', 97, '2019-02-04 08:20:25', '2019-02-04 10:34:35'),
(1413, '2019-02-04', 67, '2019-02-04 08:20:55', '2019-02-04 12:48:03'),
(1414, '2019-02-04', 29, '2019-02-04 08:23:02', '2019-02-04 10:23:01'),
(1415, '2019-02-04', 84, '2019-02-04 08:23:18', '2019-02-04 10:34:24'),
(1416, '2019-02-04', 77, '2019-02-04 08:24:13', '2019-02-04 10:33:49'),
(1417, '2019-02-04', 15, '2019-02-04 08:24:28', '2019-02-04 12:10:51'),
(1418, '2019-02-04', 39, '2019-02-04 08:26:05', '2019-02-04 10:21:31'),
(1419, '2019-02-04', 38, '2019-02-04 08:26:20', '2019-02-04 10:21:46'),
(1420, '2019-02-04', 154, '2019-02-04 08:26:37', '2019-02-04 11:36:01'),
(1421, '2019-02-04', 178, '2019-02-04 08:30:16', '2019-02-04 10:22:57'),
(1422, '2019-02-04', 98, '2019-02-04 08:30:40', NULL),
(1423, '2019-02-04', 140, '2019-02-04 08:31:18', '2019-02-04 11:36:11'),
(1424, '2019-02-04', 142, '2019-02-04 08:31:23', '2019-02-04 11:36:07'),
(1425, '2019-02-04', 6, '2019-02-04 08:31:28', '2019-02-04 12:09:08'),
(1426, '2019-02-04', 182, '2019-02-04 08:31:32', '2019-02-04 12:10:24'),
(1427, '2019-02-04', 61, '2019-02-04 08:31:38', NULL),
(1428, '2019-02-04', 56, '2019-02-04 08:31:43', '2019-02-04 12:47:50'),
(1429, '2019-02-04', 13, '2019-02-04 08:31:48', NULL),
(1430, '2019-02-04', 20, '2019-02-04 08:31:54', '2019-02-04 12:08:25'),
(1431, '2019-02-04', 54, '2019-02-04 08:32:00', '2019-02-04 12:49:30'),
(1432, '2019-02-04', 45, '2019-02-04 08:32:05', '2019-02-04 12:49:55'),
(1433, '2019-02-04', 179, '2019-02-04 08:32:10', '2019-02-04 12:49:15'),
(1434, '2019-02-04', 79, '2019-02-04 08:32:15', '2019-02-04 10:33:43'),
(1435, '2019-02-04', 80, '2019-02-04 08:32:20', '2019-02-04 10:33:54'),
(1436, '2019-02-04', 180, '2019-02-04 08:32:24', '2019-02-04 11:36:17'),
(1437, '2019-02-04', 63, '2019-02-04 08:32:29', '2019-02-04 12:47:59'),
(1438, '2019-02-04', 148, '2019-02-04 08:32:34', '2019-02-04 11:36:28'),
(1439, '2019-02-04', 121, '2019-02-04 08:32:39', NULL),
(1440, '2019-02-04', 92, '2019-02-04 08:32:44', '2019-02-04 10:33:10'),
(1441, '2019-02-04', 177, '2019-02-04 08:32:51', '2019-02-04 12:48:47'),
(1442, '2019-02-04', 10, '2019-02-04 08:32:58', NULL),
(1443, '2019-02-04', 71, '2019-02-04 08:33:02', '2019-02-04 12:49:07'),
(1444, '2019-02-04', 94, '2019-02-04 08:33:09', '2019-02-04 10:33:17'),
(1445, '2019-02-04', 66, '2019-02-04 08:33:14', '2019-02-04 12:48:20'),
(1446, '2019-02-04', 7, '2019-02-04 08:33:18', '2019-02-04 12:08:22'),
(1447, '2019-02-04', 52, '2019-02-04 08:33:25', '2019-02-04 12:48:43'),
(1448, '2019-02-04', 58, '2019-02-04 08:33:30', '2019-02-04 12:48:13'),
(1449, '2019-02-04', 110, '2019-02-04 08:33:36', '2019-02-04 09:58:16'),
(1450, '2019-02-04', 160, '2019-02-04 08:33:42', '2019-02-04 10:34:00'),
(1451, '2019-02-04', 153, '2019-02-04 08:33:52', '2019-02-04 11:34:58'),
(1452, '2019-02-04', 43, '2019-02-04 08:34:36', '2019-02-04 12:49:34'),
(1453, '2019-02-04', 88, '2019-02-04 08:34:49', '2019-02-04 10:34:40'),
(1454, '2019-02-04', 113, '2019-02-04 08:35:47', '2019-02-04 10:22:29'),
(1455, '2019-02-04', 135, '2019-02-04 08:35:59', '2019-02-04 11:35:36'),
(1456, '2019-02-04', 128, '2019-02-04 08:36:04', '2019-02-04 11:35:41'),
(1457, '2019-02-04', 75, '2019-02-04 08:36:21', NULL),
(1458, '2019-02-04', 60, '2019-02-04 08:38:14', '2019-02-04 12:48:32'),
(1459, '2019-02-04', 151, '2019-02-04 08:38:20', '2019-02-04 11:39:17'),
(1460, '2019-02-04', 117, '2019-02-04 08:38:53', NULL),
(1461, '2019-02-04', 48, '2019-02-04 08:38:57', '2019-02-04 12:49:38'),
(1462, '2019-02-04', 130, '2019-02-04 08:40:14', '2019-02-04 11:36:41'),
(1463, '2019-02-04', 105, '2019-02-04 10:23:53', '2019-02-04 13:02:36'),
(1464, '2019-02-04', 40, '2019-02-04 10:24:38', '2019-02-04 12:47:35'),
(1465, '2019-02-04', 109, '2019-02-04 10:24:51', '2019-02-04 12:58:58'),
(1466, '2019-02-04', 30, '2019-02-04 10:28:02', '2019-02-04 12:47:56'),
(1467, '2019-02-04', 111, '2019-02-04 10:28:17', '2019-02-04 12:58:40'),
(1468, '2019-02-04', 33, '2019-02-04 10:28:24', '2019-02-04 12:47:45'),
(1469, '2019-02-04', 42, '2019-02-04 10:28:36', '2019-02-04 12:48:57'),
(1470, '2019-02-04', 175, '2019-02-04 10:30:27', '2019-02-04 12:52:54'),
(1471, '2019-02-04', 149, '2019-02-04 10:30:30', '2019-02-04 12:49:02'),
(1472, '2019-02-04', 104, '2019-02-04 10:34:57', '2019-02-04 12:59:58'),
(1473, '2019-02-04', 103, '2019-02-04 10:35:02', '2019-02-04 13:00:08'),
(1474, '2019-02-04', 108, '2019-02-04 10:35:48', '2019-02-04 12:58:52'),
(1475, '2019-02-04', 106, '2019-02-04 10:35:58', '2019-02-04 12:59:03'),
(1476, '2019-02-04', 35, '2019-02-04 10:38:31', NULL),
(1477, '2019-02-04', 36, '2019-02-04 10:38:49', '2019-02-04 12:49:04'),
(1478, '2019-02-04', 28, '2019-02-04 10:39:53', NULL),
(1479, '2019-02-04', 107, '2019-02-04 10:43:53', '2019-02-04 13:01:03'),
(1480, '2019-02-04', 41, '2019-02-04 10:46:42', '2019-02-04 12:48:24'),
(1481, '2019-02-04', 102, '2019-02-04 10:48:35', '2019-02-04 12:59:09'),
(1482, '2019-02-04', 132, '2019-02-04 11:36:55', NULL),
(1483, '2019-02-04', 123, '2019-02-04 11:38:04', NULL),
(1484, '2019-02-04', 164, '2019-02-04 12:10:54', NULL),
(1485, '2019-02-04', 183, '2019-02-04 12:59:11', NULL),
(1486, '2019-02-04', 174, '2019-02-04 12:59:25', NULL),
(1487, '2019-02-05', 114, '2019-02-05 07:52:24', '2019-02-05 10:29:28'),
(1488, '2019-02-05', 55, '2019-02-05 07:52:52', '2019-02-05 12:49:09'),
(1489, '2019-02-05', 18, '2019-02-05 07:53:02', '2019-02-05 12:08:14'),
(1490, '2019-02-05', 147, '2019-02-05 07:53:08', '2019-02-05 11:37:05'),
(1491, '2019-02-05', 34, '2019-02-05 07:53:19', '2019-02-05 10:31:07'),
(1492, '2019-02-05', 155, '2019-02-05 07:58:32', '2019-02-05 11:36:29'),
(1493, '2019-02-05', 95, '2019-02-05 07:58:37', '2019-02-05 10:31:16'),
(1494, '2019-02-05', 118, '2019-02-05 08:00:53', '2019-02-05 10:28:37'),
(1495, '2019-02-05', 141, '2019-02-05 08:01:58', '2019-02-05 11:35:51'),
(1496, '2019-02-05', 157, '2019-02-05 08:02:47', '2019-02-05 11:36:44'),
(1497, '2019-02-05', 62, '2019-02-05 08:02:53', NULL),
(1498, '2019-02-05', 98, '2019-02-05 08:03:37', NULL),
(1499, '2019-02-05', 168, '2019-02-05 08:04:41', '2019-02-05 12:49:31'),
(1500, '2019-02-05', 91, '2019-02-05 08:05:54', '2019-02-05 10:32:12'),
(1501, '2019-02-05', 144, '2019-02-05 08:05:59', '2019-02-05 11:35:39'),
(1502, '2019-02-05', 90, '2019-02-05 08:06:03', '2019-02-05 10:32:20'),
(1503, '2019-02-05', 64, '2019-02-05 08:06:06', NULL),
(1504, '2019-02-05', 69, '2019-02-05 08:06:12', NULL),
(1505, '2019-02-05', 54, '2019-02-05 08:06:17', '2019-02-05 12:52:34'),
(1506, '2019-02-05', 99, '2019-02-05 08:06:29', '2019-02-05 10:32:03'),
(1507, '2019-02-05', 136, '2019-02-05 08:06:32', '2019-02-05 11:36:57'),
(1508, '2019-02-05', 125, '2019-02-05 08:06:37', '2019-02-05 11:36:01'),
(1509, '2019-02-05', 176, '2019-02-05 08:06:43', '2019-02-05 13:00:26'),
(1510, '2019-02-05', 22, '2019-02-05 08:06:54', '2019-02-05 10:32:08'),
(1511, '2019-02-05', 23, '2019-02-05 08:07:17', '2019-02-05 12:08:33'),
(1512, '2019-02-05', 57, '2019-02-05 08:07:31', '2019-02-05 12:49:35'),
(1513, '2019-02-05', 48, '2019-02-05 08:07:35', NULL),
(1514, '2019-02-05', 169, '2019-02-05 08:08:25', '2019-02-05 12:50:57'),
(1515, '2019-02-05', 163, '2019-02-05 08:08:33', '2019-02-05 12:08:44'),
(1516, '2019-02-05', 89, '2019-02-05 08:10:23', '2019-02-05 10:10:52'),
(1517, '2019-02-05', 165, '2019-02-05 08:10:28', '2019-02-05 12:08:37'),
(1518, '2019-02-05', 154, '2019-02-05 08:11:00', '2019-02-05 11:37:00'),
(1519, '2019-02-05', 126, '2019-02-05 08:11:06', '2019-02-05 11:35:33'),
(1520, '2019-02-05', 156, '2019-02-05 08:11:09', '2019-02-05 11:36:18'),
(1521, '2019-02-05', 96, '2019-02-05 08:11:43', '2019-02-05 10:32:37'),
(1522, '2019-02-05', 85, '2019-02-05 08:11:55', NULL),
(1523, '2019-02-05', 172, '2019-02-05 08:12:02', '2019-02-05 12:49:23'),
(1524, '2019-02-05', 86, '2019-02-05 08:12:05', '2019-02-05 10:31:30'),
(1525, '2019-02-05', 9, '2019-02-05 08:12:26', NULL),
(1526, '2019-02-05', 161, '2019-02-05 08:12:32', '2019-02-05 12:08:04'),
(1527, '2019-02-05', 25, '2019-02-05 08:12:44', '2019-02-05 12:08:07'),
(1528, '2019-02-05', 138, '2019-02-05 08:13:40', '2019-02-05 11:36:32'),
(1529, '2019-02-05', 159, '2019-02-05 08:14:40', '2019-02-05 10:31:57'),
(1530, '2019-02-05', 123, '2019-02-05 08:14:45', NULL),
(1531, '2019-02-05', 116, '2019-02-05 08:14:58', '2019-02-05 10:29:54'),
(1532, '2019-02-05', 63, '2019-02-05 08:15:04', '2019-02-05 12:49:39'),
(1533, '2019-02-05', 29, '2019-02-05 08:16:38', '2019-02-05 10:30:42'),
(1534, '2019-02-05', 39, '2019-02-05 08:16:44', '2019-02-05 10:30:17'),
(1535, '2019-02-05', 17, '2019-02-05 08:18:05', '2019-02-05 10:29:03'),
(1536, '2019-02-05', 11, '2019-02-05 08:19:09', NULL),
(1537, '2019-02-05', 143, '2019-02-05 08:19:13', '2019-02-05 11:35:56'),
(1538, '2019-02-05', 142, '2019-02-05 08:21:07', '2019-02-05 11:37:19'),
(1539, '2019-02-05', 115, '2019-02-05 08:29:44', '2019-02-05 10:29:46'),
(1540, '2019-02-05', 97, '2019-02-05 08:30:05', '2019-02-05 10:32:27'),
(1541, '2019-02-05', 145, '2019-02-05 08:30:12', '2019-02-05 11:36:23'),
(1542, '2019-02-05', 94, '2019-02-05 08:30:20', '2019-02-05 10:31:13'),
(1543, '2019-02-05', 84, '2019-02-05 08:30:25', '2019-02-05 10:32:47'),
(1544, '2019-02-05', 92, '2019-02-05 08:30:34', '2019-02-05 10:31:02'),
(1545, '2019-02-05', 38, '2019-02-05 08:30:38', '2019-02-05 10:29:40'),
(1546, '2019-02-05', 140, '2019-02-05 08:30:47', '2019-02-05 11:36:39'),
(1547, '2019-02-05', 182, '2019-02-05 08:30:52', NULL),
(1548, '2019-02-05', 14, '2019-02-05 08:30:56', '2019-02-05 12:08:19'),
(1549, '2019-02-05', 139, '2019-02-05 08:31:01', '2019-02-05 11:36:14'),
(1550, '2019-02-05', 20, '2019-02-05 08:31:06', NULL),
(1551, '2019-02-05', 59, '2019-02-05 08:31:11', '2019-02-05 13:19:38'),
(1552, '2019-02-05', 6, '2019-02-05 08:31:19', '2019-02-05 12:07:46'),
(1553, '2019-02-05', 56, '2019-02-05 08:31:24', '2019-02-05 12:50:29'),
(1554, '2019-02-05', 5, '2019-02-05 08:31:28', '2019-02-05 12:07:56'),
(1555, '2019-02-05', 46, '2019-02-05 08:31:41', '2019-02-05 12:52:45'),
(1556, '2019-02-05', 181, '2019-02-05 08:31:50', '2019-02-05 12:59:44'),
(1557, '2019-02-05', 70, '2019-02-05 08:31:55', '2019-02-05 12:51:14'),
(1558, '2019-02-05', 43, '2019-02-05 08:32:00', '2019-02-05 12:52:30'),
(1559, '2019-02-05', 179, '2019-02-05 08:32:05', '2019-02-05 12:51:03'),
(1560, '2019-02-05', 170, '2019-02-05 08:32:10', NULL),
(1561, '2019-02-05', 45, '2019-02-05 08:32:16', '2019-02-05 12:59:11'),
(1562, '2019-02-05', 51, '2019-02-05 08:32:22', NULL),
(1563, '2019-02-05', 61, '2019-02-05 08:32:28', NULL),
(1564, '2019-02-05', 58, '2019-02-05 08:32:32', NULL),
(1565, '2019-02-05', 87, '2019-02-05 08:32:37', '2019-02-05 10:31:47'),
(1566, '2019-02-05', 166, '2019-02-05 08:32:43', '2019-02-05 12:07:36'),
(1567, '2019-02-05', 177, '2019-02-05 08:32:48', '2019-02-05 12:49:13'),
(1568, '2019-02-05', 68, '2019-02-05 08:32:52', NULL),
(1569, '2019-02-05', 130, '2019-02-05 08:32:56', '2019-02-05 11:37:10'),
(1570, '2019-02-05', 79, '2019-02-05 08:33:02', NULL),
(1571, '2019-02-05', 158, '2019-02-05 08:33:07', '2019-02-05 10:31:25'),
(1572, '2019-02-05', 7, '2019-02-05 08:33:12', '2019-02-05 12:07:41'),
(1573, '2019-02-05', 27, '2019-02-05 08:33:18', '2019-02-05 10:28:48'),
(1574, '2019-02-05', 164, '2019-02-05 08:33:29', '2019-02-05 12:08:30'),
(1575, '2019-02-05', 10, '2019-02-05 08:33:34', '2019-02-05 12:07:51'),
(1576, '2019-02-05', 150, '2019-02-05 08:33:40', '2019-02-05 11:36:07'),
(1577, '2019-02-05', 93, '2019-02-05 08:33:48', '2019-02-05 10:33:00'),
(1578, '2019-02-05', 128, '2019-02-05 08:33:53', '2019-02-05 11:36:51'),
(1579, '2019-02-05', 88, '2019-02-05 08:33:59', '2019-02-05 10:32:55'),
(1580, '2019-02-05', 135, '2019-02-05 08:34:03', '2019-02-05 11:35:25'),
(1581, '2019-02-05', 44, '2019-02-05 08:34:08', '2019-02-05 13:01:23'),
(1582, '2019-02-05', 8, '2019-02-05 08:34:14', '2019-02-05 12:08:22'),
(1583, '2019-02-05', 52, '2019-02-05 08:34:19', '2019-02-05 13:00:12'),
(1584, '2019-02-05', 71, '2019-02-05 08:34:34', '2019-02-05 12:49:18'),
(1585, '2019-02-05', 113, '2019-02-05 08:34:41', '2019-02-05 10:29:57'),
(1586, '2019-02-05', 77, '2019-02-05 08:34:49', '2019-02-05 10:31:41'),
(1587, '2019-02-05', 110, '2019-02-05 08:34:59', NULL),
(1588, '2019-02-05', 153, '2019-02-05 08:35:04', '2019-02-05 11:39:09'),
(1589, '2019-02-05', 60, '2019-02-05 08:36:30', '2019-02-05 12:50:27'),
(1590, '2019-02-05', 151, '2019-02-05 08:39:47', '2019-02-05 11:37:14'),
(1591, '2019-02-05', 117, '2019-02-05 08:39:56', '2019-02-05 10:30:03'),
(1592, '2019-02-05', 15, '2019-02-05 08:42:28', '2019-02-05 12:09:02'),
(1593, '2019-02-05', 80, '2019-02-05 08:42:32', '2019-02-05 10:31:52'),
(1594, '2019-02-05', 66, '2019-02-05 08:42:37', '2019-02-05 12:50:36'),
(1595, '2019-02-05', 121, '2019-02-05 08:46:42', NULL),
(1596, '2019-02-05', 133, '2019-02-05 08:47:46', '2019-02-05 11:35:44'),
(1597, '2019-02-05', 105, '2019-02-05 10:12:30', '2019-02-05 13:07:38'),
(1598, '2019-02-05', 40, '2019-02-05 10:26:30', '2019-02-05 12:50:44'),
(1599, '2019-02-05', 30, '2019-02-05 10:28:57', '2019-02-05 12:50:50'),
(1600, '2019-02-05', 112, '2019-02-05 10:29:36', NULL),
(1601, '2019-02-05', 160, '2019-02-05 10:32:32', NULL),
(1602, '2019-02-05', 111, '2019-02-05 10:33:08', '2019-02-05 13:03:00'),
(1603, '2019-02-05', 33, '2019-02-05 10:33:14', '2019-02-05 12:50:32'),
(1604, '2019-02-05', 42, '2019-02-05 10:33:22', '2019-02-05 12:51:07'),
(1605, '2019-02-05', 104, '2019-02-05 10:33:26', '2019-02-05 13:05:13'),
(1606, '2019-02-05', 109, '2019-02-05 10:37:08', '2019-02-05 13:04:33'),
(1607, '2019-02-05', 103, '2019-02-05 10:37:23', '2019-02-05 13:05:08'),
(1608, '2019-02-05', 106, '2019-02-05 10:39:03', '2019-02-05 13:04:51'),
(1609, '2019-02-05', 108, '2019-02-05 10:39:28', '2019-02-05 13:04:08'),
(1610, '2019-02-05', 28, '2019-02-05 10:41:18', '2019-02-05 12:50:07'),
(1611, '2019-02-05', 175, '2019-02-05 10:48:11', '2019-02-05 13:07:29'),
(1612, '2019-02-05', 102, '2019-02-05 10:49:35', NULL),
(1613, '2019-02-05', 183, '2019-02-05 10:49:40', '2019-02-05 13:06:32'),
(1614, '2019-02-05', 35, '2019-02-05 10:49:52', '2019-02-05 12:50:12'),
(1615, '2019-02-05', 107, '2019-02-05 10:50:08', '2019-02-05 13:04:26'),
(1616, '2019-02-05', 36, '2019-02-05 10:50:16', NULL),
(1617, '2019-02-05', 67, '2019-02-05 12:49:50', NULL),
(1618, '2019-02-05', 149, '2019-02-05 12:51:23', NULL),
(1619, '2019-02-05', 174, '2019-02-05 13:06:48', NULL),
(1620, '2019-02-06', 34, '2019-02-06 07:52:38', '2019-02-06 10:59:30'),
(1621, '2019-02-06', 55, '2019-02-06 07:52:41', '2019-02-06 12:49:27'),
(1622, '2019-02-06', 147, '2019-02-06 07:52:50', NULL),
(1623, '2019-02-06', 114, '2019-02-06 07:52:57', '2019-02-06 11:04:46'),
(1624, '2019-02-06', 18, '2019-02-06 07:53:37', NULL),
(1625, '2019-02-06', 96, '2019-02-06 07:55:38', NULL),
(1626, '2019-02-06', 99, '2019-02-06 07:59:00', '2019-02-06 11:05:40'),
(1627, '2019-02-06', 95, '2019-02-06 07:59:14', '2019-02-06 11:04:25'),
(1628, '2019-02-06', 118, '2019-02-06 08:00:50', '2019-02-06 10:57:53'),
(1629, '2019-02-06', 48, '2019-02-06 08:01:10', '2019-02-06 12:52:03'),
(1630, '2019-02-06', 157, '2019-02-06 08:01:26', NULL),
(1631, '2019-02-06', 155, '2019-02-06 08:02:24', '2019-02-06 11:34:26'),
(1632, '2019-02-06', 159, '2019-02-06 08:04:02', NULL),
(1633, '2019-02-06', 144, '2019-02-06 08:04:16', '2019-02-06 11:32:48'),
(1634, '2019-02-06', 168, '2019-02-06 08:04:21', '2019-02-06 12:51:19'),
(1635, '2019-02-06', 64, '2019-02-06 08:04:25', '2019-02-06 12:49:11'),
(1636, '2019-02-06', 54, '2019-02-06 08:05:11', '2019-02-06 12:52:18'),
(1637, '2019-02-06', 139, '2019-02-06 08:05:17', '2019-02-06 11:33:28'),
(1638, '2019-02-06', 57, '2019-02-06 08:08:22', '2019-02-06 12:49:05'),
(1639, '2019-02-06', 91, '2019-02-06 08:08:35', '2019-02-06 11:05:45'),
(1640, '2019-02-06', 90, '2019-02-06 08:08:41', '2019-02-06 11:05:47'),
(1641, '2019-02-06', 125, '2019-02-06 08:08:51', '2019-02-06 11:34:35'),
(1642, '2019-02-06', 98, '2019-02-06 08:08:56', NULL),
(1643, '2019-02-06', 62, '2019-02-06 08:08:58', NULL),
(1644, '2019-02-06', 119, '2019-02-06 08:09:01', '2019-02-06 11:05:21'),
(1645, '2019-02-06', 22, '2019-02-06 08:09:15', '2019-02-06 11:05:57'),
(1646, '2019-02-06', 23, '2019-02-06 08:09:22', '2019-02-06 12:09:14'),
(1647, '2019-02-06', 51, '2019-02-06 08:09:45', NULL),
(1648, '2019-02-06', 93, '2019-02-06 08:10:36', '2019-02-06 11:05:17'),
(1649, '2019-02-06', 169, '2019-02-06 08:10:42', NULL),
(1650, '2019-02-06', 165, '2019-02-06 08:10:59', '2019-02-06 12:10:41'),
(1651, '2019-02-06', 46, '2019-02-06 08:11:25', NULL),
(1652, '2019-02-06', 154, '2019-02-06 08:11:45', '2019-02-06 11:34:21'),
(1653, '2019-02-06', 176, '2019-02-06 08:11:56', '2019-02-06 12:52:37'),
(1654, '2019-02-06', 14, '2019-02-06 08:13:33', NULL),
(1655, '2019-02-06', 92, '2019-02-06 08:14:05', '2019-02-06 10:57:57'),
(1656, '2019-02-06', 143, '2019-02-06 08:14:10', '2019-02-06 11:32:36'),
(1657, '2019-02-06', 141, '2019-02-06 08:14:14', '2019-02-06 11:33:32'),
(1658, '2019-02-06', 87, '2019-02-06 08:15:40', '2019-02-06 10:39:11'),
(1659, '2019-02-06', 94, '2019-02-06 08:16:09', NULL),
(1660, '2019-02-06', 25, '2019-02-06 08:16:20', '2019-02-06 12:08:11'),
(1661, '2019-02-06', 44, '2019-02-06 08:16:28', '2019-02-06 12:51:36'),
(1662, '2019-02-06', 84, '2019-02-06 08:16:40', '2019-02-06 11:02:12'),
(1663, '2019-02-06', 45, '2019-02-06 08:17:13', '2019-02-06 12:52:13'),
(1664, '2019-02-06', 181, '2019-02-06 08:17:23', '2019-02-06 12:52:24');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(1665, '2019-02-06', 145, '2019-02-06 08:17:26', '2019-02-06 11:32:51'),
(1666, '2019-02-06', 70, '2019-02-06 08:17:34', '2019-02-06 12:49:45'),
(1667, '2019-02-06', 116, '2019-02-06 08:17:44', '2019-02-06 10:56:19'),
(1668, '2019-02-06', 142, '2019-02-06 08:18:15', '2019-02-06 11:34:41'),
(1669, '2019-02-06', 129, '2019-02-06 08:18:52', NULL),
(1670, '2019-02-06', 172, '2019-02-06 08:19:45', '2019-02-06 12:51:24'),
(1671, '2019-02-06', 85, '2019-02-06 08:19:50', '2019-02-06 11:13:51'),
(1672, '2019-02-06', 138, '2019-02-06 08:21:31', '2019-02-06 11:34:02'),
(1673, '2019-02-06', 80, '2019-02-06 08:26:43', '2019-02-06 10:31:51'),
(1674, '2019-02-06', 117, '2019-02-06 08:26:55', '2019-02-06 11:03:45'),
(1675, '2019-02-06', 29, '2019-02-06 08:30:32', '2019-02-06 10:02:55'),
(1676, '2019-02-06', 137, '2019-02-06 08:30:41', NULL),
(1677, '2019-02-06', 97, '2019-02-06 08:30:45', '2019-02-06 10:31:48'),
(1678, '2019-02-06', 39, '2019-02-06 08:30:50', '2019-02-06 10:03:03'),
(1679, '2019-02-06', 146, '2019-02-06 08:31:22', '2019-02-06 11:32:42'),
(1680, '2019-02-06', 150, '2019-02-06 08:31:27', '2019-02-06 11:34:07'),
(1681, '2019-02-06', 156, '2019-02-06 08:31:31', '2019-02-06 11:33:35'),
(1682, '2019-02-06', 126, '2019-02-06 08:31:37', '2019-02-06 11:33:40'),
(1683, '2019-02-06', 161, '2019-02-06 08:31:41', '2019-02-06 12:09:02'),
(1684, '2019-02-06', 9, '2019-02-06 08:31:45', '2019-02-06 12:09:09'),
(1685, '2019-02-06', 7, '2019-02-06 08:31:50', '2019-02-06 12:11:36'),
(1686, '2019-02-06', 166, '2019-02-06 08:31:56', '2019-02-06 12:08:14'),
(1687, '2019-02-06', 178, '2019-02-06 08:32:00', '2019-02-06 11:06:08'),
(1688, '2019-02-06', 13, '2019-02-06 08:32:06', NULL),
(1689, '2019-02-06', 182, '2019-02-06 08:32:11', '2019-02-06 12:10:44'),
(1690, '2019-02-06', 20, '2019-02-06 08:32:17', '2019-02-06 11:38:29'),
(1691, '2019-02-06', 163, '2019-02-06 08:32:21', '2019-02-06 12:09:25'),
(1692, '2019-02-06', 61, '2019-02-06 08:32:27', NULL),
(1693, '2019-02-06', 63, '2019-02-06 08:32:32', NULL),
(1694, '2019-02-06', 5, '2019-02-06 08:32:36', '2019-02-06 12:09:44'),
(1695, '2019-02-06', 148, '2019-02-06 08:32:40', '2019-02-06 11:46:21'),
(1696, '2019-02-06', 15, '2019-02-06 08:32:46', NULL),
(1697, '2019-02-06', 71, '2019-02-06 08:32:50', '2019-02-06 12:49:30'),
(1698, '2019-02-06', 6, '2019-02-06 08:32:54', '2019-02-06 12:09:38'),
(1699, '2019-02-06', 75, '2019-02-06 08:32:58', NULL),
(1700, '2019-02-06', 10, '2019-02-06 08:33:03', '2019-02-06 12:11:32'),
(1701, '2019-02-06', 179, '2019-02-06 08:33:07', '2019-02-06 12:51:27'),
(1702, '2019-02-06', 68, '2019-02-06 08:33:11', '2019-02-06 12:49:39'),
(1703, '2019-02-06', 43, '2019-02-06 08:33:16', '2019-02-06 12:52:09'),
(1704, '2019-02-06', 66, '2019-02-06 08:33:22', NULL),
(1705, '2019-02-06', 27, '2019-02-06 08:33:27', '2019-02-06 10:34:33'),
(1706, '2019-02-06', 180, '2019-02-06 08:33:31', '2019-02-06 11:49:21'),
(1707, '2019-02-06', 88, '2019-02-06 08:33:36', NULL),
(1708, '2019-02-06', 151, '2019-02-06 08:33:41', '2019-02-06 11:34:12'),
(1709, '2019-02-06', 113, '2019-02-06 08:34:10', '2019-02-06 10:03:08'),
(1710, '2019-02-06', 52, '2019-02-06 08:34:15', NULL),
(1711, '2019-02-06', 58, '2019-02-06 08:34:54', '2019-02-06 12:49:14'),
(1712, '2019-02-06', 60, '2019-02-06 08:34:58', '2019-02-06 12:49:20'),
(1713, '2019-02-06', 77, '2019-02-06 08:35:08', NULL),
(1714, '2019-02-06', 135, '2019-02-06 08:35:47', '2019-02-06 11:33:23'),
(1715, '2019-02-06', 128, '2019-02-06 08:36:02', '2019-02-06 11:33:58'),
(1716, '2019-02-06', 121, '2019-02-06 08:37:03', NULL),
(1717, '2019-02-06', 160, '2019-02-06 08:37:55', '2019-02-06 11:01:43'),
(1718, '2019-02-06', 133, '2019-02-06 08:39:04', '2019-02-06 11:32:29'),
(1719, '2019-02-06', 35, '2019-02-06 09:36:47', '2019-02-06 12:49:00'),
(1720, '2019-02-06', 36, '2019-02-06 09:36:58', '2019-02-06 12:49:56'),
(1721, '2019-02-06', 40, '2019-02-06 09:38:42', '2019-02-06 11:02:25'),
(1722, '2019-02-06', 30, '2019-02-06 09:39:06', '2019-02-06 11:02:51'),
(1723, '2019-02-06', 111, '2019-02-06 09:40:43', '2019-02-06 10:57:32'),
(1724, '2019-02-06', 33, '2019-02-06 09:40:47', NULL),
(1725, '2019-02-06', 42, '2019-02-06 09:40:56', '2019-02-06 10:58:36'),
(1726, '2019-02-06', 104, '2019-02-06 09:51:18', '2019-02-06 13:00:33'),
(1727, '2019-02-06', 103, '2019-02-06 09:51:31', '2019-02-06 13:00:18'),
(1728, '2019-02-06', 109, '2019-02-06 09:52:48', '2019-02-06 13:00:04'),
(1729, '2019-02-06', 108, '2019-02-06 09:57:15', '2019-02-06 12:59:42'),
(1730, '2019-02-06', 102, '2019-02-06 10:01:08', '2019-02-06 12:59:28'),
(1731, '2019-02-06', 107, '2019-02-06 10:01:14', '2019-02-06 12:59:51'),
(1732, '2019-02-06', 28, '2019-02-06 10:03:11', NULL),
(1733, '2019-02-06', 175, '2019-02-06 10:55:04', '2019-02-06 12:59:45'),
(1734, '2019-02-06', 38, '2019-02-06 10:57:37', NULL),
(1735, '2019-02-06', 105, '2019-02-06 11:02:41', '2019-02-06 13:02:35'),
(1736, '2019-02-06', 17, '2019-02-06 11:04:20', NULL),
(1737, '2019-02-06', 153, '2019-02-06 11:33:06', NULL),
(1738, '2019-02-06', 132, '2019-02-06 11:34:31', NULL),
(1739, '2019-02-06', 134, '2019-02-06 11:34:50', NULL),
(1740, '2019-02-06', 131, '2019-02-06 11:41:48', NULL),
(1741, '2019-02-06', 162, '2019-02-06 12:08:02', NULL),
(1742, '2019-02-06', 8, '2019-02-06 12:08:23', NULL),
(1743, '2019-02-06', 11, '2019-02-06 12:08:32', NULL),
(1744, '2019-02-06', 164, '2019-02-06 12:09:27', NULL),
(1745, '2019-02-06', 24, '2019-02-06 12:09:33', NULL),
(1746, '2019-02-06', 149, '2019-02-06 12:49:08', NULL),
(1747, '2019-02-06', 183, '2019-02-06 12:59:33', NULL),
(1748, '2019-02-09', 57, '2019-02-09 07:52:52', '2019-02-09 12:46:52'),
(1749, '2019-02-09', 119, '2019-02-09 07:53:04', '2019-02-09 10:34:06'),
(1750, '2019-02-09', 72, '2019-02-09 07:53:15', '2019-02-09 10:41:02'),
(1751, '2019-02-09', 98, '2019-02-09 07:53:27', '2019-02-09 10:35:58'),
(1752, '2019-02-09', 62, '2019-02-09 07:53:33', '2019-02-09 12:47:47'),
(1753, '2019-02-09', 176, '2019-02-09 07:53:41', '2019-02-09 12:47:29'),
(1754, '2019-02-09', 147, '2019-02-09 07:53:47', '2019-02-09 11:38:05'),
(1755, '2019-02-09', 114, '2019-02-09 07:56:09', NULL),
(1756, '2019-02-09', 48, '2019-02-09 07:58:17', NULL),
(1757, '2019-02-09', 89, '2019-02-09 08:00:10', '2019-02-09 10:04:12'),
(1758, '2019-02-09', 99, '2019-02-09 08:01:29', '2019-02-09 10:35:09'),
(1759, '2019-02-09', 14, '2019-02-09 08:03:30', '2019-02-09 12:05:52'),
(1760, '2019-02-09', 95, '2019-02-09 08:04:19', '2019-02-09 10:12:45'),
(1761, '2019-02-09', 141, '2019-02-09 08:04:24', '2019-02-09 11:38:00'),
(1762, '2019-02-09', 146, '2019-02-09 08:06:34', '2019-02-09 11:38:46'),
(1763, '2019-02-09', 170, '2019-02-09 08:06:39', '2019-02-09 12:47:21'),
(1764, '2019-02-09', 23, '2019-02-09 08:06:44', '2019-02-09 12:05:57'),
(1765, '2019-02-09', 150, '2019-02-09 08:06:49', '2019-02-09 11:37:50'),
(1766, '2019-02-09', 69, '2019-02-09 08:08:40', '2019-02-09 12:47:26'),
(1767, '2019-02-09', 161, '2019-02-09 08:08:50', '2019-02-09 12:06:44'),
(1768, '2019-02-09', 144, '2019-02-09 08:09:00', '2019-02-09 11:37:17'),
(1769, '2019-02-09', 59, '2019-02-09 08:09:35', NULL),
(1770, '2019-02-09', 118, '2019-02-09 08:10:41', '2019-02-09 10:31:54'),
(1771, '2019-02-09', 93, '2019-02-09 08:11:08', '2019-02-09 10:42:26'),
(1772, '2019-02-09', 38, '2019-02-09 08:11:42', '2019-02-09 10:33:00'),
(1773, '2019-02-09', 126, '2019-02-09 08:11:50', NULL),
(1774, '2019-02-09', 92, '2019-02-09 08:12:13', '2019-02-09 10:34:45'),
(1775, '2019-02-09', 64, '2019-02-09 08:12:38', NULL),
(1776, '2019-02-09', 145, '2019-02-09 08:13:01', '2019-02-09 11:37:22'),
(1777, '2019-02-09', 181, '2019-02-09 08:13:11', '2019-02-09 12:47:55'),
(1778, '2019-02-09', 173, '2019-02-09 08:13:16', '2019-02-09 12:48:08'),
(1779, '2019-02-09', 61, '2019-02-09 08:13:44', '2019-02-09 13:01:20'),
(1780, '2019-02-09', 101, '2019-02-09 08:14:52', '2019-02-09 10:35:44'),
(1781, '2019-02-09', 165, '2019-02-09 08:14:58', '2019-02-09 12:06:35'),
(1782, '2019-02-09', 125, '2019-02-09 08:15:10', '2019-02-09 11:38:39'),
(1783, '2019-02-09', 91, '2019-02-09 08:15:16', '2019-02-09 10:35:35'),
(1784, '2019-02-09', 90, '2019-02-09 08:15:24', '2019-02-09 10:35:51'),
(1785, '2019-02-09', 22, '2019-02-09 08:15:49', '2019-02-09 10:33:25'),
(1786, '2019-02-09', 129, '2019-02-09 08:16:13', '2019-02-09 11:37:41'),
(1787, '2019-02-09', 78, '2019-02-09 08:16:50', NULL),
(1788, '2019-02-09', 154, '2019-02-09 08:17:07', '2019-02-09 11:38:08'),
(1789, '2019-02-09', 39, '2019-02-09 08:17:13', '2019-02-09 10:32:46'),
(1790, '2019-02-09', 86, '2019-02-09 08:17:37', '2019-02-09 10:35:29'),
(1791, '2019-02-09', 68, '2019-02-09 08:17:43', '2019-02-09 12:47:32'),
(1792, '2019-02-09', 137, '2019-02-09 08:17:52', '2019-02-09 11:37:20'),
(1793, '2019-02-09', 20, '2019-02-09 08:18:56', '2019-02-09 12:07:39'),
(1794, '2019-02-09', 97, '2019-02-09 08:19:01', '2019-02-09 10:42:45'),
(1795, '2019-02-09', 44, '2019-02-09 08:19:51', NULL),
(1796, '2019-02-09', 8, '2019-02-09 08:19:54', '2019-02-09 12:05:47'),
(1797, '2019-02-09', 79, '2019-02-09 08:20:28', '2019-02-09 10:35:25'),
(1798, '2019-02-09', 7, '2019-02-09 08:20:35', '2019-02-09 12:07:45'),
(1799, '2019-02-09', 158, '2019-02-09 08:26:08', '2019-02-09 10:34:49'),
(1800, '2019-02-09', 94, '2019-02-09 08:29:31', '2019-02-09 10:35:00'),
(1801, '2019-02-09', 84, '2019-02-09 08:29:41', '2019-02-09 10:42:33'),
(1802, '2019-02-09', 139, '2019-02-09 08:30:05', '2019-02-09 11:37:27'),
(1803, '2019-02-09', 143, '2019-02-09 08:30:10', '2019-02-09 11:37:55'),
(1804, '2019-02-09', 123, '2019-02-09 08:30:14', NULL),
(1805, '2019-02-09', 112, '2019-02-09 08:30:19', '2019-02-09 10:33:33'),
(1806, '2019-02-09', 156, '2019-02-09 08:30:25', '2019-02-09 11:37:33'),
(1807, '2019-02-09', 133, '2019-02-09 08:30:29', '2019-02-09 11:37:45'),
(1808, '2019-02-09', 140, '2019-02-09 08:30:34', NULL),
(1809, '2019-02-09', 25, '2019-02-09 08:30:37', '2019-02-09 12:07:01'),
(1810, '2019-02-09', 13, '2019-02-09 08:30:42', NULL),
(1811, '2019-02-09', 142, '2019-02-09 08:30:47', '2019-02-09 11:39:08'),
(1812, '2019-02-09', 164, '2019-02-09 08:30:52', NULL),
(1813, '2019-02-09', 11, '2019-02-09 08:30:57', '2019-02-09 12:07:31'),
(1814, '2019-02-09', 70, '2019-02-09 08:31:02', '2019-02-09 12:47:52'),
(1815, '2019-02-09', 51, '2019-02-09 08:31:08', NULL),
(1816, '2019-02-09', 85, '2019-02-09 08:31:10', '2019-02-09 10:36:03'),
(1817, '2019-02-09', 172, '2019-02-09 08:31:16', '2019-02-09 12:47:15'),
(1818, '2019-02-09', 10, '2019-02-09 08:31:21', '2019-02-09 12:07:27'),
(1819, '2019-02-09', 116, '2019-02-09 08:31:28', '2019-02-09 10:32:51'),
(1820, '2019-02-09', 138, '2019-02-09 08:31:33', '2019-02-09 11:37:38'),
(1821, '2019-02-09', 131, '2019-02-09 08:31:45', '2019-02-09 11:38:16'),
(1822, '2019-02-09', 151, '2019-02-09 08:31:51', '2019-02-09 11:39:15'),
(1823, '2019-02-09', 71, '2019-02-09 08:32:21', '2019-02-09 12:47:58'),
(1824, '2019-02-09', 177, '2019-02-09 08:34:01', NULL),
(1825, '2019-02-09', 113, '2019-02-09 08:35:50', '2019-02-09 10:31:52'),
(1826, '2019-02-09', 58, '2019-02-09 08:35:54', '2019-02-09 12:47:05'),
(1827, '2019-02-09', 121, '2019-02-09 08:36:25', NULL),
(1828, '2019-02-09', 160, '2019-02-09 08:36:32', '2019-02-09 10:35:15'),
(1829, '2019-02-09', 27, '2019-02-09 08:37:40', '2019-02-09 10:32:16'),
(1830, '2019-02-09', 128, '2019-02-09 08:38:14', '2019-02-09 11:38:31'),
(1831, '2019-02-09', 80, '2019-02-09 08:38:40', '2019-02-09 10:34:53'),
(1832, '2019-02-09', 66, '2019-02-09 08:38:43', '2019-02-09 12:47:18'),
(1833, '2019-02-09', 110, '2019-02-09 08:44:01', '2019-02-09 10:13:16'),
(1834, '2019-02-09', 60, '2019-02-09 08:44:05', '2019-02-09 12:47:41'),
(1835, '2019-02-09', 88, '2019-02-09 08:47:59', '2019-02-09 10:37:44'),
(1836, '2019-02-09', 183, '2019-02-09 09:52:17', '2019-02-09 12:55:16'),
(1837, '2019-02-09', 105, '2019-02-09 10:11:21', '2019-02-09 12:59:32'),
(1838, '2019-02-09', 174, '2019-02-09 10:11:53', '2019-02-09 12:53:47'),
(1839, '2019-02-09', 111, '2019-02-09 10:26:02', '2019-02-09 12:53:56'),
(1840, '2019-02-09', 33, '2019-02-09 10:26:25', '2019-02-09 12:49:12'),
(1841, '2019-02-09', 42, '2019-02-09 10:26:31', '2019-02-09 12:49:04'),
(1842, '2019-02-09', 106, '2019-02-09 10:28:32', '2019-02-09 12:54:33'),
(1843, '2019-02-09', 115, '2019-02-09 10:32:10', NULL),
(1844, '2019-02-09', 103, '2019-02-09 10:32:33', '2019-02-09 12:55:05'),
(1845, '2019-02-09', 159, '2019-02-09 10:35:04', NULL),
(1846, '2019-02-09', 104, '2019-02-09 10:36:56', NULL),
(1847, '2019-02-09', 30, '2019-02-09 10:38:20', '2019-02-09 12:53:09'),
(1848, '2019-02-09', 175, '2019-02-09 10:38:40', '2019-02-09 12:54:46'),
(1849, '2019-02-09', 102, '2019-02-09 10:43:40', '2019-02-09 12:54:25'),
(1850, '2019-02-09', 149, '2019-02-09 10:45:18', '2019-02-09 12:54:54'),
(1851, '2019-02-09', 28, '2019-02-09 10:46:11', NULL),
(1852, '2019-02-09', 107, '2019-02-09 10:51:05', '2019-02-09 12:54:20'),
(1853, '2019-02-09', 36, '2019-02-09 10:51:24', NULL),
(1854, '2019-02-09', 108, '2019-02-09 10:58:29', '2019-02-09 12:54:38'),
(1855, '2019-02-09', 180, '2019-02-09 11:38:24', NULL),
(1856, '2019-02-09', 127, '2019-02-09 11:38:53', NULL),
(1857, '2019-02-09', 134, '2019-02-09 11:38:59', NULL),
(1858, '2019-02-09', 56, '2019-02-09 12:47:11', NULL),
(1859, '2019-02-11', 96, '2019-02-11 07:50:23', NULL),
(1860, '2019-02-11', 57, '2019-02-11 07:53:03', NULL),
(1861, '2019-02-11', 98, '2019-02-11 07:53:22', '2019-02-11 10:31:25'),
(1862, '2019-02-11', 23, '2019-02-11 07:53:26', NULL),
(1863, '2019-02-11', 62, '2019-02-11 07:53:30', '2019-02-11 12:52:14'),
(1864, '2019-02-11', 119, '2019-02-11 07:53:39', '2019-02-11 10:35:19'),
(1865, '2019-02-11', 176, '2019-02-11 07:53:44', '2019-02-11 12:54:03'),
(1866, '2019-02-11', 72, '2019-02-11 07:53:52', '2019-02-11 12:55:27'),
(1867, '2019-02-11', 24, '2019-02-11 07:55:37', NULL),
(1868, '2019-02-11', 147, '2019-02-11 07:58:56', '2019-02-11 11:39:21'),
(1869, '2019-02-11', 95, '2019-02-11 07:59:02', '2019-02-11 10:30:54'),
(1870, '2019-02-11', 168, '2019-02-11 07:59:45', '2019-02-11 12:52:33'),
(1871, '2019-02-11', 92, '2019-02-11 08:00:09', '2019-02-11 10:30:21'),
(1872, '2019-02-11', 155, '2019-02-11 08:02:50', '2019-02-11 11:39:49'),
(1873, '2019-02-11', 7, '2019-02-11 08:03:07', NULL),
(1874, '2019-02-11', 99, '2019-02-11 08:03:16', '2019-02-11 10:30:50'),
(1875, '2019-02-11', 94, '2019-02-11 08:03:28', '2019-02-11 10:31:48'),
(1876, '2019-02-11', 144, '2019-02-11 08:04:35', '2019-02-11 11:40:33'),
(1877, '2019-02-11', 64, '2019-02-11 08:04:41', '2019-02-11 12:53:30'),
(1878, '2019-02-11', 69, '2019-02-11 08:05:45', '2019-02-11 12:51:50'),
(1879, '2019-02-11', 46, '2019-02-11 08:06:32', '2019-02-11 12:52:37'),
(1880, '2019-02-11', 48, '2019-02-11 08:08:38', NULL),
(1881, '2019-02-11', 141, '2019-02-11 08:08:48', '2019-02-11 11:37:41'),
(1882, '2019-02-11', 124, '2019-02-11 08:08:57', '2019-02-11 11:39:32'),
(1883, '2019-02-11', 173, '2019-02-11 08:09:17', '2019-02-11 12:52:22'),
(1884, '2019-02-11', 89, '2019-02-11 08:09:29', '2019-02-11 10:31:07'),
(1885, '2019-02-11', 169, '2019-02-11 08:09:34', '2019-02-11 12:55:08'),
(1886, '2019-02-11', 101, '2019-02-11 08:10:15', '2019-02-11 10:31:45'),
(1887, '2019-02-11', 84, '2019-02-11 08:13:04', '2019-02-11 10:31:54'),
(1888, '2019-02-11', 138, '2019-02-11 08:13:43', '2019-02-11 11:38:40'),
(1889, '2019-02-11', 59, '2019-02-11 08:13:51', NULL),
(1890, '2019-02-11', 150, '2019-02-11 08:14:00', '2019-02-11 11:37:47'),
(1891, '2019-02-11', 139, '2019-02-11 08:14:06', '2019-02-11 11:39:10'),
(1892, '2019-02-11', 51, '2019-02-11 08:14:11', NULL),
(1893, '2019-02-11', 5, '2019-02-11 08:14:15', '2019-02-11 12:06:09'),
(1894, '2019-02-11', 143, '2019-02-11 08:14:21', '2019-02-11 11:37:57'),
(1895, '2019-02-11', 170, '2019-02-11 08:14:43', '2019-02-11 12:54:55'),
(1896, '2019-02-11', 78, '2019-02-11 08:14:47', '2019-02-11 10:31:14'),
(1897, '2019-02-11', 85, '2019-02-11 08:15:02', '2019-02-11 10:32:24'),
(1898, '2019-02-11', 172, '2019-02-11 08:15:12', '2019-02-11 12:49:29'),
(1899, '2019-02-11', 114, '2019-02-11 08:15:46', NULL),
(1900, '2019-02-11', 140, '2019-02-11 08:15:51', '2019-02-11 11:38:45'),
(1901, '2019-02-11', 14, '2019-02-11 08:16:12', '2019-02-11 12:46:42'),
(1902, '2019-02-11', 163, '2019-02-11 08:16:20', NULL),
(1903, '2019-02-11', 142, '2019-02-11 08:16:25', '2019-02-11 11:40:03'),
(1904, '2019-02-11', 44, '2019-02-11 08:17:04', '2019-02-11 12:52:40'),
(1905, '2019-02-11', 146, '2019-02-11 08:17:37', '2019-02-11 11:37:31'),
(1906, '2019-02-11', 76, '2019-02-11 08:18:05', '2019-02-11 10:30:35'),
(1907, '2019-02-11', 8, '2019-02-11 08:18:07', NULL),
(1908, '2019-02-11', 177, '2019-02-11 08:18:14', '2019-02-11 13:21:57'),
(1909, '2019-02-11', 25, '2019-02-11 08:19:44', '2019-02-11 12:05:52'),
(1910, '2019-02-11', 90, '2019-02-11 08:20:32', '2019-02-11 10:31:37'),
(1911, '2019-02-11', 22, '2019-02-11 08:20:39', '2019-02-11 10:34:29'),
(1912, '2019-02-11', 80, '2019-02-11 08:21:00', '2019-02-11 10:30:47'),
(1913, '2019-02-11', 112, '2019-02-11 08:21:09', NULL),
(1914, '2019-02-11', 79, '2019-02-11 08:21:16', '2019-02-11 10:30:26'),
(1915, '2019-02-11', 160, '2019-02-11 08:34:28', '2019-02-11 10:30:18'),
(1916, '2019-02-11', 115, '2019-02-11 08:34:37', '2019-02-11 10:32:10'),
(1917, '2019-02-11', 17, '2019-02-11 08:34:44', NULL),
(1918, '2019-02-11', 97, '2019-02-11 08:34:52', '2019-02-11 10:32:00'),
(1919, '2019-02-11', 131, '2019-02-11 08:35:03', '2019-02-11 11:38:55'),
(1920, '2019-02-11', 158, '2019-02-11 08:35:08', NULL),
(1921, '2019-02-11', 39, '2019-02-11 08:35:13', '2019-02-11 10:33:26'),
(1922, '2019-02-11', 29, '2019-02-11 08:35:27', '2019-02-11 10:33:19'),
(1923, '2019-02-11', 156, '2019-02-11 08:35:34', '2019-02-11 11:30:00'),
(1924, '2019-02-11', 123, '2019-02-11 08:35:53', '2019-02-11 11:39:55'),
(1925, '2019-02-11', 66, '2019-02-11 08:36:05', NULL),
(1926, '2019-02-11', 63, '2019-02-11 08:36:09', '2019-02-11 12:53:37'),
(1927, '2019-02-11', 70, '2019-02-11 08:36:13', '2019-02-11 12:52:04'),
(1928, '2019-02-11', 67, '2019-02-11 08:36:17', NULL),
(1929, '2019-02-11', 181, '2019-02-11 08:36:21', '2019-02-11 12:54:10'),
(1930, '2019-02-11', 171, '2019-02-11 08:36:25', '2019-02-11 12:55:13'),
(1931, '2019-02-11', 20, '2019-02-11 08:36:30', NULL),
(1932, '2019-02-11', 179, '2019-02-11 08:36:35', '2019-02-11 12:54:51'),
(1933, '2019-02-11', 43, '2019-02-11 08:36:39', NULL),
(1934, '2019-02-11', 135, '2019-02-11 08:36:44', '2019-02-11 11:38:11'),
(1935, '2019-02-11', 117, '2019-02-11 08:36:49', '2019-02-11 10:32:33'),
(1936, '2019-02-11', 56, '2019-02-11 08:36:56', '2019-02-11 12:51:29'),
(1937, '2019-02-11', 133, '2019-02-11 08:37:01', '2019-02-11 11:37:20'),
(1938, '2019-02-11', 164, '2019-02-11 08:37:07', NULL),
(1939, '2019-02-11', 162, '2019-02-11 08:37:12', '2019-02-11 12:05:25'),
(1940, '2019-02-11', 166, '2019-02-11 08:37:16', NULL),
(1941, '2019-02-11', 58, '2019-02-11 08:37:21', '2019-02-11 12:51:37'),
(1942, '2019-02-11', 38, '2019-02-11 08:37:23', '2019-02-11 10:32:30'),
(1943, '2019-02-11', 45, '2019-02-11 08:37:28', '2019-02-11 12:54:58'),
(1944, '2019-02-11', 11, '2019-02-11 08:37:34', NULL),
(1945, '2019-02-11', 154, '2019-02-11 08:37:43', '2019-02-11 11:38:31'),
(1946, '2019-02-11', 116, '2019-02-11 08:37:48', '2019-02-11 10:34:38'),
(1947, '2019-02-11', 10, '2019-02-11 08:37:57', '2019-02-11 12:06:16'),
(1948, '2019-02-11', 86, '2019-02-11 08:38:06', '2019-02-11 10:30:30'),
(1949, '2019-02-11', 27, '2019-02-11 08:38:16', '2019-02-11 10:32:04'),
(1950, '2019-02-11', 180, '2019-02-11 08:38:26', '2019-02-11 11:37:51'),
(1951, '2019-02-11', 87, '2019-02-11 08:38:31', NULL),
(1952, '2019-02-11', 52, '2019-02-11 08:38:35', '2019-02-11 12:54:19'),
(1953, '2019-02-11', 151, '2019-02-11 08:38:41', '2019-02-11 11:37:37'),
(1954, '2019-02-11', 157, '2019-02-11 08:38:47', '2019-02-11 11:39:25'),
(1955, '2019-02-11', 71, '2019-02-11 08:38:59', '2019-02-11 12:53:56'),
(1956, '2019-02-11', 153, '2019-02-11 08:39:07', '2019-02-11 11:39:05'),
(1957, '2019-02-11', 113, '2019-02-11 08:39:14', '2019-02-11 10:32:40'),
(1958, '2019-02-11', 120, '2019-02-11 08:39:19', NULL),
(1959, '2019-02-11', 60, '2019-02-11 08:39:57', '2019-02-11 12:52:07'),
(1960, '2019-02-11', 61, '2019-02-11 08:40:31', NULL),
(1961, '2019-02-11', 88, '2019-02-11 08:42:19', '2019-02-11 10:32:47'),
(1962, '2019-02-11', 9, '2019-02-11 08:46:02', NULL),
(1963, '2019-02-11', 40, '2019-02-11 10:08:27', '2019-02-11 12:50:15'),
(1964, '2019-02-11', 174, '2019-02-11 10:10:32', '2019-02-11 13:01:26'),
(1965, '2019-02-11', 105, '2019-02-11 10:10:41', '2019-02-11 13:01:35'),
(1966, '2019-02-11', 33, '2019-02-11 10:27:54', '2019-02-11 12:46:14'),
(1967, '2019-02-11', 42, '2019-02-11 10:28:00', '2019-02-11 12:49:21'),
(1968, '2019-02-11', 109, '2019-02-11 10:30:15', '2019-02-11 13:01:03'),
(1969, '2019-02-11', 159, '2019-02-11 10:30:40', NULL),
(1970, '2019-02-11', 93, '2019-02-11 10:30:59', NULL),
(1971, '2019-02-11', 91, '2019-02-11 10:31:30', NULL),
(1972, '2019-02-11', 106, '2019-02-11 10:33:40', '2019-02-11 13:01:21'),
(1973, '2019-02-11', 30, '2019-02-11 10:34:53', NULL),
(1974, '2019-02-11', 104, '2019-02-11 10:35:58', '2019-02-11 13:01:52'),
(1975, '2019-02-11', 103, '2019-02-11 10:39:33', '2019-02-11 13:01:42'),
(1976, '2019-02-11', 108, '2019-02-11 10:43:31', '2019-02-11 13:01:14'),
(1977, '2019-02-11', 102, '2019-02-11 10:44:32', '2019-02-11 13:01:49'),
(1978, '2019-02-11', 121, '2019-02-11 10:45:46', NULL),
(1979, '2019-02-11', 107, '2019-02-11 10:46:37', '2019-02-11 13:00:58'),
(1980, '2019-02-11', 28, '2019-02-11 10:48:30', NULL),
(1981, '2019-02-11', 35, '2019-02-11 10:49:20', '2019-02-11 12:52:17'),
(1982, '2019-02-11', 36, '2019-02-11 10:49:27', '2019-02-11 12:52:11'),
(1983, '2019-02-11', 183, '2019-02-11 10:50:32', '2019-02-11 13:01:07'),
(1984, '2019-02-11', 126, '2019-02-11 10:55:43', NULL),
(1985, '2019-02-11', 137, '2019-02-11 11:37:26', NULL),
(1986, '2019-02-11', 129, '2019-02-11 11:38:02', NULL),
(1987, '2019-02-11', 145, '2019-02-11 11:38:06', NULL),
(1988, '2019-02-11', 125, '2019-02-11 11:38:59', NULL),
(1989, '2019-02-11', 127, '2019-02-11 11:39:39', NULL),
(1990, '2019-02-11', 41, '2019-02-11 12:44:34', NULL),
(1991, '2019-02-11', 149, '2019-02-11 12:51:42', NULL),
(1992, '2019-02-11', 68, '2019-02-11 12:51:55', NULL),
(1993, '2019-02-12', 57, '2019-02-12 07:52:58', '2019-02-12 12:53:05'),
(1994, '2019-02-12', 98, '2019-02-12 07:53:07', NULL),
(1995, '2019-02-12', 119, '2019-02-12 07:53:13', '2019-02-12 10:25:29'),
(1996, '2019-02-12', 176, '2019-02-12 07:53:25', NULL),
(1997, '2019-02-12', 155, '2019-02-12 07:58:15', '2019-02-12 11:42:45'),
(1998, '2019-02-12', 147, '2019-02-12 07:58:29', '2019-02-12 11:44:22'),
(1999, '2019-02-12', 72, '2019-02-12 07:59:24', NULL),
(2000, '2019-02-12', 152, '2019-02-12 07:59:39', '2019-02-12 11:44:45'),
(2001, '2019-02-12', 48, '2019-02-12 08:01:19', '2019-02-12 12:52:34'),
(2002, '2019-02-12', 168, '2019-02-12 08:01:28', '2019-02-12 12:51:02'),
(2003, '2019-02-12', 124, '2019-02-12 08:01:37', '2019-02-12 11:42:22'),
(2004, '2019-02-12', 23, '2019-02-12 08:02:17', NULL),
(2005, '2019-02-12', 92, '2019-02-12 08:04:14', '2019-02-12 10:33:56'),
(2006, '2019-02-12', 118, '2019-02-12 08:04:22', '2019-02-12 10:23:56'),
(2007, '2019-02-12', 157, '2019-02-12 08:04:50', '2019-02-12 11:43:51'),
(2008, '2019-02-12', 95, '2019-02-12 08:05:13', '2019-02-12 10:35:02'),
(2009, '2019-02-12', 142, '2019-02-12 08:07:34', '2019-02-12 11:44:33'),
(2010, '2019-02-12', 46, '2019-02-12 08:07:48', '2019-02-12 12:51:13'),
(2011, '2019-02-12', 169, '2019-02-12 08:07:51', '2019-02-12 12:51:05'),
(2012, '2019-02-12', 38, '2019-02-12 08:08:14', '2019-02-12 10:24:26'),
(2013, '2019-02-12', 99, '2019-02-12 08:09:22', '2019-02-12 10:34:10'),
(2014, '2019-02-12', 141, '2019-02-12 08:10:31', '2019-02-12 11:44:02'),
(2015, '2019-02-12', 39, '2019-02-12 08:12:59', '2019-02-12 10:24:22'),
(2016, '2019-02-12', 173, '2019-02-12 08:13:03', NULL),
(2017, '2019-02-12', 44, '2019-02-12 08:13:19', '2019-02-12 12:51:23'),
(2018, '2019-02-12', 159, '2019-02-12 08:14:09', '2019-02-12 10:34:05'),
(2019, '2019-02-12', 87, '2019-02-12 08:14:15', '2019-02-12 10:35:30'),
(2020, '2019-02-12', 145, '2019-02-12 08:14:20', '2019-02-12 11:43:02'),
(2021, '2019-02-12', 181, '2019-02-12 08:14:25', '2019-02-12 12:54:50'),
(2022, '2019-02-12', 78, '2019-02-12 08:14:33', '2019-02-12 10:33:59'),
(2023, '2019-02-12', 112, '2019-02-12 08:14:43', NULL),
(2024, '2019-02-12', 135, '2019-02-12 08:15:13', '2019-02-12 11:44:55'),
(2025, '2019-02-12', 14, '2019-02-12 08:15:17', NULL),
(2026, '2019-02-12', 170, '2019-02-12 08:15:22', NULL),
(2027, '2019-02-12', 146, '2019-02-12 08:15:27', '2019-02-12 12:41:06'),
(2028, '2019-02-12', 5, '2019-02-12 08:15:33', '2019-02-12 12:10:26'),
(2029, '2019-02-12', 10, '2019-02-12 08:15:39', '2019-02-12 12:05:33'),
(2030, '2019-02-12', 86, '2019-02-12 08:16:19', '2019-02-12 10:34:14'),
(2031, '2019-02-12', 150, '2019-02-12 08:16:38', '2019-02-12 11:43:57'),
(2032, '2019-02-12', 116, '2019-02-12 08:17:26', '2019-02-12 10:25:13'),
(2033, '2019-02-12', 143, '2019-02-12 08:17:28', '2019-02-12 11:43:40'),
(2034, '2019-02-12', 123, '2019-02-12 08:17:32', '2019-02-12 11:42:25'),
(2035, '2019-02-12', 125, '2019-02-12 08:17:36', '2019-02-12 11:42:36'),
(2036, '2019-02-12', 22, '2019-02-12 08:18:01', NULL),
(2037, '2019-02-12', 91, '2019-02-12 08:18:13', '2019-02-12 10:35:08'),
(2038, '2019-02-12', 90, '2019-02-12 08:18:16', '2019-02-12 10:35:17'),
(2039, '2019-02-12', 93, '2019-02-12 08:18:19', '2019-02-12 10:36:36'),
(2040, '2019-02-12', 70, '2019-02-12 08:18:45', '2019-02-12 12:53:27'),
(2041, '2019-02-12', 144, '2019-02-12 08:18:49', '2019-02-12 11:43:31'),
(2042, '2019-02-12', 43, '2019-02-12 08:18:57', '2019-02-12 12:52:42'),
(2043, '2019-02-12', 8, '2019-02-12 08:19:30', NULL),
(2044, '2019-02-12', 69, '2019-02-12 08:19:49', '2019-02-12 12:53:13'),
(2045, '2019-02-12', 45, '2019-02-12 08:21:15', '2019-02-12 12:52:54'),
(2046, '2019-02-12', 84, '2019-02-12 08:21:34', '2019-02-12 10:34:42'),
(2047, '2019-02-12', 25, '2019-02-12 08:22:50', '2019-02-12 12:10:37'),
(2048, '2019-02-12', 11, '2019-02-12 08:22:59', NULL),
(2049, '2019-02-12', 80, '2019-02-12 08:33:13', '2019-02-12 10:34:31'),
(2050, '2019-02-12', 97, '2019-02-12 08:33:56', NULL),
(2051, '2019-02-12', 140, '2019-02-12 08:34:04', '2019-02-12 11:43:22'),
(2052, '2019-02-12', 138, '2019-02-12 08:34:08', '2019-02-12 11:44:41'),
(2053, '2019-02-12', 156, '2019-02-12 08:34:13', '2019-02-12 11:10:41'),
(2054, '2019-02-12', 160, '2019-02-12 08:34:18', '2019-02-12 10:35:25'),
(2055, '2019-02-12', 139, '2019-02-12 08:34:23', '2019-02-12 11:42:31'),
(2056, '2019-02-12', 20, '2019-02-12 08:34:36', NULL),
(2057, '2019-02-12', 161, '2019-02-12 08:34:41', '2019-02-12 12:09:19'),
(2058, '2019-02-12', 163, '2019-02-12 08:34:46', '2019-02-12 12:05:30'),
(2059, '2019-02-12', 182, '2019-02-12 08:34:50', '2019-02-12 12:07:37'),
(2060, '2019-02-12', 13, '2019-02-12 08:34:56', NULL),
(2061, '2019-02-12', 63, '2019-02-12 08:35:01', '2019-02-12 12:53:08'),
(2062, '2019-02-12', 54, '2019-02-12 08:35:05', '2019-02-12 12:52:59'),
(2063, '2019-02-12', 58, '2019-02-12 08:35:10', '2019-02-12 12:53:16'),
(2064, '2019-02-12', 148, '2019-02-12 08:35:14', '2019-02-12 11:43:46'),
(2065, '2019-02-12', 179, '2019-02-12 08:35:19', '2019-02-12 12:51:08'),
(2066, '2019-02-12', 172, '2019-02-12 08:35:26', '2019-02-12 12:50:57'),
(2067, '2019-02-12', 66, '2019-02-12 08:35:31', '2019-02-12 12:53:19'),
(2068, '2019-02-12', 117, '2019-02-12 08:35:36', '2019-02-12 10:23:53'),
(2069, '2019-02-12', 71, '2019-02-12 08:35:43', '2019-02-12 12:53:43'),
(2070, '2019-02-12', 89, '2019-02-12 08:35:48', '2019-02-12 10:34:51'),
(2071, '2019-02-12', 75, '2019-02-12 08:35:56', NULL),
(2072, '2019-02-12', 131, '2019-02-12 08:36:01', '2019-02-12 11:42:19'),
(2073, '2019-02-12', 94, '2019-02-12 08:36:06', '2019-02-12 10:34:37'),
(2074, '2019-02-12', 166, '2019-02-12 08:36:11', NULL),
(2075, '2019-02-12', 9, '2019-02-12 08:36:15', NULL),
(2076, '2019-02-12', 27, '2019-02-12 08:36:20', '2019-02-12 10:24:01'),
(2077, '2019-02-12', 7, '2019-02-12 08:36:25', NULL),
(2078, '2019-02-12', 114, '2019-02-12 08:36:39', '2019-02-12 10:24:14'),
(2079, '2019-02-12', 52, '2019-02-12 08:36:48', '2019-02-12 12:54:27'),
(2080, '2019-02-12', 120, '2019-02-12 08:36:53', NULL),
(2081, '2019-02-12', 113, '2019-02-12 08:37:02', '2019-02-12 10:25:03'),
(2082, '2019-02-12', 121, '2019-02-12 08:37:10', '2019-02-12 10:25:06'),
(2083, '2019-02-12', 153, '2019-02-12 08:37:19', '2019-02-12 11:42:57'),
(2084, '2019-02-12', 110, '2019-02-12 08:38:34', '2019-02-12 10:25:20'),
(2085, '2019-02-12', 151, '2019-02-12 08:38:58', '2019-02-12 11:44:25'),
(2086, '2019-02-12', 177, '2019-02-12 08:39:42', '2019-02-12 12:53:23'),
(2087, '2019-02-12', 127, '2019-02-12 08:43:28', '2019-02-12 11:44:50'),
(2088, '2019-02-12', 60, '2019-02-12 08:43:43', '2019-02-12 12:53:51'),
(2089, '2019-02-12', 88, '2019-02-12 08:49:20', '2019-02-12 10:35:34'),
(2090, '2019-02-12', 154, '2019-02-12 09:11:23', '2019-02-12 11:42:40'),
(2091, '2019-02-12', 77, '2019-02-12 09:12:18', '2019-02-12 10:34:22'),
(2092, '2019-02-12', 174, '2019-02-12 10:14:15', NULL),
(2093, '2019-02-12', 105, '2019-02-12 10:15:32', '2019-02-12 13:02:54'),
(2094, '2019-02-12', 40, '2019-02-12 10:19:29', '2019-02-12 12:48:54'),
(2095, '2019-02-12', 178, '2019-02-12 10:25:33', NULL),
(2096, '2019-02-12', 17, '2019-02-12 10:25:41', NULL),
(2097, '2019-02-12', 111, '2019-02-12 10:25:49', '2019-02-12 12:58:25'),
(2098, '2019-02-12', 42, '2019-02-12 10:26:00', '2019-02-12 12:48:41'),
(2099, '2019-02-12', 106, '2019-02-12 10:31:52', '2019-02-12 12:58:50'),
(2100, '2019-02-12', 109, '2019-02-12 10:33:27', '2019-02-12 12:58:37'),
(2101, '2019-02-12', 79, '2019-02-12 10:34:28', NULL),
(2102, '2019-02-12', 183, '2019-02-12 10:35:47', '2019-02-12 12:58:29'),
(2103, '2019-02-12', 85, '2019-02-12 10:35:54', NULL),
(2104, '2019-02-12', 103, '2019-02-12 10:36:42', '2019-02-12 12:59:35'),
(2105, '2019-02-12', 33, '2019-02-12 10:37:42', '2019-02-12 12:14:15'),
(2106, '2019-02-12', 30, '2019-02-12 10:40:09', '2019-02-12 12:49:08'),
(2107, '2019-02-12', 102, '2019-02-12 10:40:15', '2019-02-12 12:58:56'),
(2108, '2019-02-12', 108, '2019-02-12 10:42:02', '2019-02-12 12:58:42'),
(2109, '2019-02-12', 149, '2019-02-12 10:42:36', '2019-02-12 12:51:57'),
(2110, '2019-02-12', 175, '2019-02-12 10:44:41', '2019-02-12 12:58:34'),
(2111, '2019-02-12', 107, '2019-02-12 10:46:42', '2019-02-12 12:59:01'),
(2112, '2019-02-12', 36, '2019-02-12 10:52:44', '2019-02-12 12:51:52'),
(2113, '2019-02-12', 35, '2019-02-12 10:52:55', '2019-02-12 12:49:19'),
(2114, '2019-02-12', 180, '2019-02-12 11:43:26', NULL),
(2115, '2019-02-12', 137, '2019-02-12 11:43:35', NULL),
(2116, '2019-02-12', 126, '2019-02-12 11:44:18', NULL),
(2117, '2019-02-12', 162, '2019-02-12 12:05:44', NULL),
(2118, '2019-02-12', 41, '2019-02-12 12:14:10', NULL),
(2119, '2019-02-12', 51, '2019-02-12 12:51:26', NULL),
(2120, '2019-02-12', 104, '2019-02-12 12:59:38', NULL),
(2121, '2019-02-13', 24, '2019-02-13 07:52:32', '2019-02-13 12:07:07'),
(2122, '2019-02-13', 55, '2019-02-13 07:52:40', NULL),
(2123, '2019-02-13', 72, '2019-02-13 07:52:49', NULL),
(2124, '2019-02-13', 147, '2019-02-13 07:52:53', NULL),
(2125, '2019-02-13', 152, '2019-02-13 07:53:17', '2019-02-13 11:36:37'),
(2126, '2019-02-13', 96, '2019-02-13 07:56:32', '2019-02-13 10:32:28'),
(2127, '2019-02-13', 124, '2019-02-13 07:59:24', '2019-02-13 11:36:12'),
(2128, '2019-02-13', 99, '2019-02-13 08:01:09', '2019-02-13 10:29:50'),
(2129, '2019-02-13', 92, '2019-02-13 08:02:26', '2019-02-13 10:29:42'),
(2130, '2019-02-13', 70, '2019-02-13 08:04:11', NULL),
(2131, '2019-02-13', 155, '2019-02-13 08:04:15', '2019-02-13 11:35:49'),
(2132, '2019-02-13', 54, '2019-02-13 08:04:20', NULL),
(2133, '2019-02-13', 69, '2019-02-13 08:04:25', NULL),
(2134, '2019-02-13', 141, '2019-02-13 08:04:52', '2019-02-13 11:34:23'),
(2135, '2019-02-13', 169, '2019-02-13 08:05:32', NULL),
(2136, '2019-02-13', 163, '2019-02-13 08:05:38', NULL),
(2137, '2019-02-13', 23, '2019-02-13 08:05:43', '2019-02-13 12:06:51'),
(2138, '2019-02-13', 37, '2019-02-13 08:05:46', '2019-02-13 10:21:45'),
(2139, '2019-02-13', 118, '2019-02-13 08:05:51', '2019-02-13 10:22:07'),
(2140, '2019-02-13', 16, '2019-02-13 08:05:56', NULL),
(2141, '2019-02-13', 159, '2019-02-13 08:07:16', '2019-02-13 10:31:31'),
(2142, '2019-02-13', 46, '2019-02-13 08:07:42', NULL),
(2143, '2019-02-13', 68, '2019-02-13 08:08:08', NULL),
(2144, '2019-02-13', 91, '2019-02-13 08:09:26', '2019-02-13 10:32:14'),
(2145, '2019-02-13', 125, '2019-02-13 08:09:32', '2019-02-13 11:35:22'),
(2146, '2019-02-13', 57, '2019-02-13 08:09:41', '2019-02-13 12:44:41'),
(2147, '2019-02-13', 90, '2019-02-13 08:09:59', '2019-02-13 10:31:25'),
(2148, '2019-02-13', 22, '2019-02-13 08:10:02', '2019-02-13 10:22:19'),
(2149, '2019-02-13', 126, '2019-02-13 08:10:20', '2019-02-13 11:34:05'),
(2150, '2019-02-13', 98, '2019-02-13 08:10:28', '2019-02-13 10:31:06'),
(2151, '2019-02-13', 165, '2019-02-13 08:10:34', '2019-02-13 11:33:50'),
(2152, '2019-02-13', 142, '2019-02-13 08:11:01', '2019-02-13 11:35:46'),
(2153, '2019-02-13', 95, '2019-02-13 08:11:12', '2019-02-13 10:31:14'),
(2154, '2019-02-13', 119, '2019-02-13 08:11:27', '2019-02-13 10:22:02'),
(2155, '2019-02-13', 44, '2019-02-13 08:11:46', NULL),
(2156, '2019-02-13', 94, '2019-02-13 08:12:22', '2019-02-13 10:32:37'),
(2157, '2019-02-13', 146, '2019-02-13 08:12:39', '2019-02-13 11:35:28'),
(2158, '2019-02-13', 61, '2019-02-13 08:12:44', NULL),
(2159, '2019-02-13', 51, '2019-02-13 08:12:47', NULL),
(2160, '2019-02-13', 154, '2019-02-13 08:12:52', '2019-02-13 11:36:16'),
(2161, '2019-02-13', 139, '2019-02-13 08:13:01', '2019-02-13 11:34:53'),
(2162, '2019-02-13', 89, '2019-02-13 08:13:20', '2019-02-13 10:25:05'),
(2163, '2019-02-13', 86, '2019-02-13 08:13:28', '2019-02-13 10:32:00'),
(2164, '2019-02-13', 80, '2019-02-13 08:13:40', '2019-02-13 10:30:43'),
(2165, '2019-02-13', 45, '2019-02-13 08:14:08', NULL),
(2166, '2019-02-13', 116, '2019-02-13 08:14:49', '2019-02-13 10:23:12'),
(2167, '2019-02-13', 78, '2019-02-13 08:15:09', '2019-02-13 10:31:38'),
(2168, '2019-02-13', 156, '2019-02-13 08:15:21', '2019-02-13 11:34:47'),
(2169, '2019-02-13', 138, '2019-02-13 08:15:26', '2019-02-13 11:35:41'),
(2170, '2019-02-13', 7, '2019-02-13 08:15:45', '2019-02-13 12:07:19'),
(2171, '2019-02-13', 170, '2019-02-13 08:15:48', NULL),
(2172, '2019-02-13', 84, '2019-02-13 08:15:52', '2019-02-13 10:30:51'),
(2173, '2019-02-13', 101, '2019-02-13 08:16:11', '2019-02-13 10:32:24'),
(2174, '2019-02-13', 123, '2019-02-13 08:16:38', '2019-02-13 11:36:07'),
(2175, '2019-02-13', 143, '2019-02-13 08:16:49', '2019-02-13 11:34:27'),
(2176, '2019-02-13', 29, '2019-02-13 08:16:54', '2019-02-13 10:22:52'),
(2177, '2019-02-13', 85, '2019-02-13 08:17:42', '2019-02-13 10:30:30'),
(2178, '2019-02-13', 172, '2019-02-13 08:17:53', NULL),
(2179, '2019-02-13', 10, '2019-02-13 08:18:10', '2019-02-13 12:07:25'),
(2180, '2019-02-13', 112, '2019-02-13 08:18:36', '2019-02-13 10:22:48'),
(2181, '2019-02-13', 150, '2019-02-13 08:19:21', '2019-02-13 11:34:18'),
(2182, '2019-02-13', 97, '2019-02-13 08:30:21', '2019-02-13 10:31:44'),
(2183, '2019-02-13', 39, '2019-02-13 08:30:36', '2019-02-13 10:22:29'),
(2184, '2019-02-13', 87, '2019-02-13 08:30:51', '2019-02-13 10:32:19'),
(2185, '2019-02-13', 144, '2019-02-13 08:31:16', '2019-02-13 11:34:44'),
(2186, '2019-02-13', 145, '2019-02-13 08:31:26', '2019-02-13 11:34:58'),
(2187, '2019-02-13', 75, '2019-02-13 08:31:36', NULL),
(2188, '2019-02-13', 79, '2019-02-13 08:31:43', '2019-02-13 10:30:20'),
(2189, '2019-02-13', 59, '2019-02-13 08:31:50', NULL),
(2190, '2019-02-13', 8, '2019-02-13 08:31:56', NULL),
(2191, '2019-02-13', 17, '2019-02-13 08:32:11', '2019-02-13 10:22:59'),
(2192, '2019-02-13', 171, '2019-02-13 08:32:17', NULL),
(2193, '2019-02-13', 157, '2019-02-13 08:32:26', '2019-02-13 11:35:33'),
(2194, '2019-02-13', 76, '2019-02-13 08:32:32', '2019-02-13 10:32:03'),
(2195, '2019-02-13', 181, '2019-02-13 08:32:36', NULL),
(2196, '2019-02-13', 162, '2019-02-13 08:32:39', '2019-02-13 12:06:05'),
(2197, '2019-02-13', 135, '2019-02-13 08:32:44', '2019-02-13 11:33:56'),
(2198, '2019-02-13', 137, '2019-02-13 08:32:49', '2019-02-13 11:35:04'),
(2199, '2019-02-13', 71, '2019-02-13 08:32:54', NULL),
(2200, '2019-02-13', 77, '2019-02-13 08:33:00', '2019-02-13 10:31:55'),
(2201, '2019-02-13', 161, '2019-02-13 08:33:05', '2019-02-13 12:07:14'),
(2202, '2019-02-13', 11, '2019-02-13 08:33:10', '2019-02-13 12:07:22'),
(2203, '2019-02-13', 180, '2019-02-13 08:33:15', '2019-02-13 11:35:09'),
(2204, '2019-02-13', 131, '2019-02-13 08:33:20', '2019-02-13 11:35:14'),
(2205, '2019-02-13', 9, '2019-02-13 08:33:24', '2019-02-13 12:06:47'),
(2206, '2019-02-13', 38, '2019-02-13 08:33:29', '2019-02-13 10:22:12'),
(2207, '2019-02-13', 166, '2019-02-13 08:33:34', '2019-02-13 12:06:28'),
(2208, '2019-02-13', 88, '2019-02-13 08:33:39', '2019-02-13 10:21:18'),
(2209, '2019-02-13', 27, '2019-02-13 08:33:45', '2019-02-13 10:21:53'),
(2210, '2019-02-13', 19, '2019-02-13 08:33:49', NULL),
(2211, '2019-02-13', 52, '2019-02-13 08:34:03', NULL),
(2212, '2019-02-13', 117, '2019-02-13 08:34:07', '2019-02-13 10:21:58'),
(2213, '2019-02-13', 60, '2019-02-13 08:34:17', NULL),
(2214, '2019-02-13', 113, '2019-02-13 08:34:27', '2019-02-13 10:22:25'),
(2215, '2019-02-13', 128, '2019-02-13 08:34:38', '2019-02-13 11:33:47'),
(2216, '2019-02-13', 67, '2019-02-13 08:34:42', NULL),
(2217, '2019-02-13', 173, '2019-02-13 08:34:55', NULL),
(2218, '2019-02-13', 114, '2019-02-13 08:35:08', '2019-02-13 10:22:36'),
(2219, '2019-02-13', 110, '2019-02-13 08:35:28', NULL),
(2220, '2019-02-13', 151, '2019-02-13 08:36:57', '2019-02-13 11:35:17'),
(2221, '2019-02-13', 153, '2019-02-13 08:41:45', '2019-02-13 11:35:59'),
(2222, '2019-02-13', 58, '2019-02-13 08:42:03', NULL),
(2223, '2019-02-13', 160, '2019-02-13 08:42:21', '2019-02-13 09:54:43'),
(2224, '2019-02-13', 127, '2019-02-13 08:44:18', '2019-02-13 11:34:37'),
(2225, '2019-02-13', 133, '2019-02-13 08:45:38', '2019-02-13 11:34:08'),
(2226, '2019-02-13', 15, '2019-02-13 09:07:44', '2019-02-13 11:33:40'),
(2227, '2019-02-13', 174, '2019-02-13 10:08:03', NULL),
(2228, '2019-02-13', 175, '2019-02-13 10:17:50', NULL),
(2229, '2019-02-13', 178, '2019-02-13 10:23:18', NULL),
(2230, '2019-02-13', 40, '2019-02-13 10:23:43', NULL),
(2231, '2019-02-13', 103, '2019-02-13 10:24:56', NULL),
(2232, '2019-02-13', 105, '2019-02-13 10:25:19', NULL),
(2233, '2019-02-13', 183, '2019-02-13 10:25:30', NULL),
(2234, '2019-02-13', 111, '2019-02-13 10:26:24', NULL),
(2235, '2019-02-13', 42, '2019-02-13 10:26:29', NULL),
(2236, '2019-02-13', 109, '2019-02-13 10:31:00', NULL),
(2237, '2019-02-13', 106, '2019-02-13 10:37:32', NULL),
(2238, '2019-02-13', 104, '2019-02-13 10:39:18', NULL),
(2239, '2019-02-13', 30, '2019-02-13 10:40:41', NULL),
(2240, '2019-02-13', 108, '2019-02-13 10:41:20', NULL),
(2241, '2019-02-13', 102, '2019-02-13 10:42:17', NULL),
(2242, '2019-02-13', 149, '2019-02-13 10:44:05', NULL),
(2243, '2019-02-13', 28, '2019-02-13 10:45:44', NULL),
(2244, '2019-02-13', 36, '2019-02-13 10:45:51', NULL),
(2245, '2019-02-13', 35, '2019-02-13 10:46:09', NULL),
(2246, '2019-02-13', 107, '2019-02-13 10:47:37', NULL),
(2247, '2019-02-13', 41, '2019-02-13 10:51:15', NULL),
(2248, '2019-02-13', 33, '2019-02-13 10:51:43', NULL),
(2249, '2019-02-13', 129, '2019-02-13 11:33:44', NULL),
(2250, '2019-02-13', 134, '2019-02-13 11:35:54', NULL),
(2251, '2019-02-13', 132, '2019-02-13 11:36:02', NULL),
(2252, '2019-02-13', 20, '2019-02-13 12:07:02', NULL),
(2253, '2019-02-13', 5, '2019-02-13 12:08:03', NULL),
(2254, '2019-02-18', 57, '2019-02-18 07:48:36', '2019-02-18 12:52:15'),
(2255, '2019-02-18', 98, '2019-02-18 07:48:46', NULL),
(2256, '2019-02-18', 119, '2019-02-18 07:48:54', NULL),
(2257, '2019-02-18', 136, '2019-02-18 07:49:01', NULL),
(2258, '2019-02-18', 176, '2019-02-18 07:49:07', '2019-02-18 12:55:28'),
(2259, '2019-02-18', 157, '2019-02-18 07:52:14', '2019-02-18 11:39:33'),
(2260, '2019-02-18', 24, '2019-02-18 07:57:33', '2019-02-18 12:15:44'),
(2261, '2019-02-18', 55, '2019-02-18 07:57:40', NULL),
(2262, '2019-02-18', 147, '2019-02-18 07:58:24', NULL),
(2263, '2019-02-18', 152, '2019-02-18 07:58:29', '2019-02-18 11:40:50'),
(2264, '2019-02-18', 114, '2019-02-18 07:59:33', '2019-02-18 10:29:17'),
(2265, '2019-02-18', 96, '2019-02-18 08:02:28', '2019-02-18 10:39:28'),
(2266, '2019-02-18', 26, '2019-02-18 08:03:18', '2019-02-18 10:24:17'),
(2267, '2019-02-18', 101, '2019-02-18 08:03:26', '2019-02-18 10:38:21'),
(2268, '2019-02-18', 99, '2019-02-18 08:05:38', '2019-02-18 10:36:32'),
(2269, '2019-02-18', 154, '2019-02-18 08:05:45', '2019-02-18 11:27:55'),
(2270, '2019-02-18', 141, '2019-02-18 08:05:51', '2019-02-18 11:39:05'),
(2271, '2019-02-18', 155, '2019-02-18 08:05:55', '2019-02-18 11:28:03'),
(2272, '2019-02-18', 92, '2019-02-18 08:07:27', '2019-02-18 10:36:48'),
(2273, '2019-02-18', 159, '2019-02-18 08:10:15', '2019-02-18 10:37:55'),
(2274, '2019-02-18', 65, '2019-02-18 08:10:46', '2019-02-18 12:53:04'),
(2275, '2019-02-18', 46, '2019-02-18 08:11:46', '2019-02-18 12:53:37'),
(2276, '2019-02-18', 171, '2019-02-18 08:11:50', NULL),
(2277, '2019-02-18', 84, '2019-02-18 08:12:22', '2019-02-18 10:38:40'),
(2278, '2019-02-18', 80, '2019-02-18 08:12:32', '2019-02-18 10:36:38'),
(2279, '2019-02-18', 66, '2019-02-18 08:12:37', '2019-02-18 12:53:19'),
(2280, '2019-02-18', 118, '2019-02-18 08:13:04', '2019-02-18 10:31:44'),
(2281, '2019-02-18', 37, '2019-02-18 08:13:14', '2019-02-18 10:26:49'),
(2282, '2019-02-18', 133, '2019-02-18 08:13:24', '2019-02-18 11:39:00'),
(2283, '2019-02-18', 95, '2019-02-18 08:13:30', '2019-02-18 10:38:29'),
(2284, '2019-02-18', 117, '2019-02-18 08:13:59', '2019-02-18 10:28:59'),
(2285, '2019-02-18', 68, '2019-02-18 08:14:14', NULL),
(2286, '2019-02-18', 112, '2019-02-18 08:14:18', '2019-02-18 10:29:26'),
(2287, '2019-02-18', 126, '2019-02-18 08:14:41', '2019-02-18 11:40:27'),
(2288, '2019-02-18', 8, '2019-02-18 08:15:48', NULL),
(2289, '2019-02-18', 44, '2019-02-18 08:16:12', '2019-02-18 12:55:49'),
(2290, '2019-02-18', 5, '2019-02-18 08:16:21', '2019-02-18 12:12:04'),
(2291, '2019-02-18', 169, '2019-02-18 08:16:55', NULL),
(2292, '2019-02-18', 34, '2019-02-18 08:17:43', '2019-02-18 10:25:38'),
(2293, '2019-02-18', 61, '2019-02-18 08:17:48', '2019-02-18 13:16:35'),
(2294, '2019-02-18', 90, '2019-02-18 08:18:00', NULL),
(2295, '2019-02-18', 125, '2019-02-18 08:18:07', '2019-02-18 11:27:51'),
(2296, '2019-02-18', 39, '2019-02-18 08:18:10', NULL),
(2297, '2019-02-18', 91, '2019-02-18 08:18:18', '2019-02-18 10:37:37'),
(2298, '2019-02-18', 17, '2019-02-18 08:19:14', '2019-02-18 10:22:34'),
(2299, '2019-02-18', 132, '2019-02-18 08:19:25', '2019-02-18 11:39:40'),
(2300, '2019-02-18', 76, '2019-02-18 08:19:32', NULL),
(2301, '2019-02-18', 22, '2019-02-18 08:20:07', '2019-02-18 10:25:50'),
(2302, '2019-02-18', 123, '2019-02-18 08:20:40', '2019-02-18 11:40:09'),
(2303, '2019-02-18', 116, '2019-02-18 08:20:52', '2019-02-18 10:28:47'),
(2304, '2019-02-18', 70, '2019-02-18 08:20:58', '2019-02-18 12:53:33'),
(2305, '2019-02-18', 7, '2019-02-18 08:21:48', NULL),
(2306, '2019-02-18', 94, '2019-02-18 08:21:51', '2019-02-18 10:38:00'),
(2307, '2019-02-18', 144, '2019-02-18 08:22:16', '2019-02-18 11:39:11'),
(2308, '2019-02-18', 78, '2019-02-18 08:24:20', '2019-02-18 10:38:14'),
(2309, '2019-02-18', 100, '2019-02-18 08:25:05', '2019-02-18 10:36:53'),
(2310, '2019-02-18', 97, '2019-02-18 08:25:42', '2019-02-18 10:37:44'),
(2311, '2019-02-18', 150, '2019-02-18 08:30:39', '2019-02-18 11:40:35'),
(2312, '2019-02-18', 131, '2019-02-18 08:30:53', '2019-02-18 11:28:01'),
(2313, '2019-02-18', 15, '2019-02-18 08:30:58', NULL),
(2314, '2019-02-18', 18, '2019-02-18 08:31:02', '2019-02-18 12:15:54'),
(2315, '2019-02-18', 20, '2019-02-18 08:31:11', '2019-02-18 12:16:04'),
(2316, '2019-02-18', 9, '2019-02-18 08:31:17', '2019-02-18 12:14:40'),
(2317, '2019-02-18', 177, '2019-02-18 08:31:24', '2019-02-18 12:52:51'),
(2318, '2019-02-18', 54, '2019-02-18 08:31:29', '2019-02-18 12:55:22'),
(2319, '2019-02-18', 179, '2019-02-18 08:31:34', '2019-02-18 12:55:04'),
(2320, '2019-02-18', 43, '2019-02-18 08:31:39', '2019-02-18 12:54:14'),
(2321, '2019-02-18', 172, '2019-02-18 08:31:43', '2019-02-18 12:54:08'),
(2322, '2019-02-18', 178, '2019-02-18 08:31:47', '2019-02-18 10:28:14'),
(2323, '2019-02-18', 137, '2019-02-18 08:31:52', '2019-02-18 11:39:22'),
(2324, '2019-02-18', 156, '2019-02-18 08:31:57', '2019-02-18 11:26:10'),
(2325, '2019-02-18', 56, '2019-02-18 08:32:01', '2019-02-18 12:53:26'),
(2326, '2019-02-18', 140, '2019-02-18 08:32:05', '2019-02-18 11:40:46'),
(2327, '2019-02-18', 67, '2019-02-18 08:32:09', '2019-02-18 12:53:07'),
(2328, '2019-02-18', 25, '2019-02-18 08:32:16', '2019-02-18 12:12:01'),
(2329, '2019-02-18', 139, '2019-02-18 08:32:20', '2019-02-18 11:40:05'),
(2330, '2019-02-18', 135, '2019-02-18 08:32:26', '2019-02-18 11:25:52'),
(2331, '2019-02-18', 151, '2019-02-18 08:32:31', '2019-02-18 11:39:43'),
(2332, '2019-02-18', 51, '2019-02-18 08:32:37', NULL),
(2333, '2019-02-18', 128, '2019-02-18 08:32:42', '2019-02-18 11:39:17'),
(2334, '2019-02-18', 27, '2019-02-18 08:32:47', '2019-02-18 10:24:09'),
(2335, '2019-02-18', 88, '2019-02-18 08:32:53', '2019-02-18 10:39:16'),
(2336, '2019-02-18', 89, '2019-02-18 08:32:58', '2019-02-18 10:37:49'),
(2337, '2019-02-18', 170, '2019-02-18 08:33:04', '2019-02-18 12:55:01'),
(2338, '2019-02-18', 14, '2019-02-18 08:33:10', NULL),
(2339, '2019-02-18', 10, '2019-02-18 08:33:15', NULL),
(2340, '2019-02-18', 113, '2019-02-18 08:33:20', '2019-02-18 10:27:51'),
(2341, '2019-02-18', 121, '2019-02-18 08:33:27', '2019-02-18 10:29:30'),
(2342, '2019-02-18', 31, '2019-02-18 08:33:48', '2019-02-18 10:25:27'),
(2343, '2019-02-18', 110, '2019-02-18 08:35:21', '2019-02-18 10:38:49'),
(2344, '2019-02-18', 79, '2019-02-18 08:36:03', '2019-02-18 10:36:43'),
(2345, '2019-02-18', 11, '2019-02-18 08:36:35', '2019-02-18 12:15:58'),
(2346, '2019-02-18', 29, '2019-02-18 08:37:06', '2019-02-18 10:24:24'),
(2347, '2019-02-18', 45, '2019-02-18 08:40:24', '2019-02-18 12:56:30'),
(2348, '2019-02-18', 19, '2019-02-18 08:40:58', NULL),
(2349, '2019-02-18', 120, '2019-02-18 08:42:41', NULL),
(2350, '2019-02-18', 63, '2019-02-18 08:42:47', '2019-02-18 12:52:30'),
(2351, '2019-02-18', 71, '2019-02-18 08:43:03', '2019-02-18 12:52:44'),
(2352, '2019-02-18', 153, '2019-02-18 08:43:42', '2019-02-18 11:39:54'),
(2353, '2019-02-18', 160, '2019-02-18 08:47:16', '2019-02-18 10:37:22'),
(2354, '2019-02-18', 142, '2019-02-18 08:47:23', '2019-02-18 11:39:58'),
(2355, '2019-02-18', 58, '2019-02-18 08:47:38', '2019-02-18 12:53:22'),
(2356, '2019-02-18', 105, '2019-02-18 10:16:11', '2019-02-18 13:07:20'),
(2357, '2019-02-18', 174, '2019-02-18 10:16:40', '2019-02-18 13:02:34'),
(2358, '2019-02-18', 40, '2019-02-18 10:23:46', '2019-02-18 12:45:46'),
(2359, '2019-02-18', 42, '2019-02-18 10:26:13', '2019-02-18 12:46:05'),
(2360, '2019-02-18', 104, '2019-02-18 10:27:58', '2019-02-18 13:02:23'),
(2361, '2019-02-18', 33, '2019-02-18 10:28:22', '2019-02-18 12:46:00'),
(2362, '2019-02-18', 106, '2019-02-18 10:31:25', '2019-02-18 13:00:52'),
(2363, '2019-02-18', 109, '2019-02-18 10:36:10', '2019-02-18 13:01:04'),
(2364, '2019-02-18', 75, '2019-02-18 10:38:11', NULL),
(2365, '2019-02-18', 93, '2019-02-18 10:38:25', NULL),
(2366, '2019-02-18', 87, '2019-02-18 10:38:59', NULL),
(2367, '2019-02-18', 85, '2019-02-18 10:39:12', NULL),
(2368, '2019-02-18', 102, '2019-02-18 10:41:07', '2019-02-18 13:00:57'),
(2369, '2019-02-18', 103, '2019-02-18 10:43:24', '2019-02-18 13:06:52'),
(2370, '2019-02-18', 108, '2019-02-18 10:46:57', '2019-02-18 13:01:10'),
(2371, '2019-02-18', 149, '2019-02-18 10:47:13', '2019-02-18 12:46:35'),
(2372, '2019-02-18', 183, '2019-02-18 10:47:36', '2019-02-18 13:02:12'),
(2373, '2019-02-18', 175, '2019-02-18 10:48:14', '2019-02-18 13:02:18'),
(2374, '2019-02-18', 107, '2019-02-18 10:52:52', '2019-02-18 13:02:05'),
(2375, '2019-02-18', 35, '2019-02-18 10:54:35', '2019-02-18 12:45:15'),
(2376, '2019-02-18', 36, '2019-02-18 10:54:41', '2019-02-18 12:47:02'),
(2377, '2019-02-18', 129, '2019-02-18 11:38:54', NULL),
(2378, '2019-02-18', 6, '2019-02-18 12:16:01', NULL),
(2379, '2019-02-18', 13, '2019-02-18 12:18:04', NULL),
(2380, '2019-02-18', 28, '2019-02-18 12:45:50', NULL),
(2381, '2019-02-18', 30, '2019-02-18 12:46:53', NULL),
(2382, '2019-02-18', 69, '2019-02-18 12:53:17', NULL),
(2383, '2019-02-20', 95, '2019-02-20 07:57:11', '2019-02-20 10:35:37'),
(2384, '2019-02-20', 147, '2019-02-20 07:58:04', NULL),
(2385, '2019-02-20', 72, '2019-02-20 07:58:07', NULL),
(2386, '2019-02-20', 152, '2019-02-20 07:58:28', '2019-02-20 11:42:27'),
(2387, '2019-02-20', 62, '2019-02-20 07:58:31', NULL),
(2388, '2019-02-20', 55, '2019-02-20 07:58:41', '2019-02-20 12:49:29'),
(2389, '2019-02-20', 98, '2019-02-20 07:59:00', NULL),
(2390, '2019-02-20', 136, '2019-02-20 07:59:07', '2019-02-20 11:27:43'),
(2391, '2019-02-20', 176, '2019-02-20 07:59:12', '2019-02-20 12:04:04'),
(2392, '2019-02-20', 23, '2019-02-20 07:59:22', '2019-02-20 12:12:18'),
(2393, '2019-02-20', 57, '2019-02-20 07:59:26', NULL),
(2394, '2019-02-20', 18, '2019-02-20 07:59:40', '2019-02-20 12:12:23'),
(2395, '2019-02-20', 119, '2019-02-20 07:59:49', NULL),
(2396, '2019-02-20', 34, '2019-02-20 07:59:54', '2019-02-20 10:19:47'),
(2397, '2019-02-20', 168, '2019-02-20 08:01:41', '2019-02-20 12:52:20'),
(2398, '2019-02-20', 99, '2019-02-20 08:02:03', '2019-02-20 10:36:22'),
(2399, '2019-02-20', 141, '2019-02-20 08:04:14', '2019-02-20 11:21:50'),
(2400, '2019-02-20', 93, '2019-02-20 08:04:45', '2019-02-20 10:36:36'),
(2401, '2019-02-20', 64, '2019-02-20 08:04:59', NULL),
(2402, '2019-02-20', 144, '2019-02-20 08:05:02', '2019-02-20 11:40:34'),
(2403, '2019-02-20', 138, '2019-02-20 08:05:05', '2019-02-20 11:41:40'),
(2404, '2019-02-20', 69, '2019-02-20 08:05:22', '2019-02-20 12:49:13'),
(2405, '2019-02-20', 54, '2019-02-20 08:05:27', '2019-02-20 12:51:49'),
(2406, '2019-02-20', 92, '2019-02-20 08:05:35', '2019-02-20 10:35:53'),
(2407, '2019-02-20', 155, '2019-02-20 08:07:28', NULL),
(2408, '2019-02-20', 16, '2019-02-20 08:08:05', NULL),
(2409, '2019-02-20', 65, '2019-02-20 08:08:16', NULL),
(2410, '2019-02-20', 87, '2019-02-20 08:08:29', '2019-02-20 10:37:12'),
(2411, '2019-02-20', 101, '2019-02-20 08:08:46', '2019-02-20 10:36:04'),
(2412, '2019-02-20', 15, '2019-02-20 08:09:01', NULL),
(2413, '2019-02-20', 126, '2019-02-20 08:09:45', NULL),
(2414, '2019-02-20', 137, '2019-02-20 08:09:48', '2019-02-20 11:42:30'),
(2415, '2019-02-20', 157, '2019-02-20 08:11:19', '2019-02-20 11:41:18'),
(2416, '2019-02-20', 159, '2019-02-20 08:12:21', '2019-02-20 10:35:58'),
(2417, '2019-02-20', 182, '2019-02-20 08:13:04', '2019-02-20 12:13:07'),
(2418, '2019-02-20', 165, '2019-02-20 08:13:20', NULL),
(2419, '2019-02-20', 84, '2019-02-20 08:13:31', '2019-02-20 10:37:17'),
(2420, '2019-02-20', 61, '2019-02-20 08:13:45', '2019-02-20 12:48:47'),
(2421, '2019-02-20', 173, '2019-02-20 08:13:50', '2019-02-20 12:52:34'),
(2422, '2019-02-20', 68, '2019-02-20 08:14:10', '2019-02-20 12:49:25'),
(2423, '2019-02-20', 181, '2019-02-20 08:14:32', '2019-02-20 12:52:15'),
(2424, '2019-02-20', 145, '2019-02-20 08:14:41', '2019-02-20 11:42:41'),
(2425, '2019-02-20', 27, '2019-02-20 08:14:47', '2019-02-20 10:18:55');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(2426, '2019-02-20', 116, '2019-02-20 08:15:39', '2019-02-20 10:19:57'),
(2427, '2019-02-20', 146, '2019-02-20 08:15:49', '2019-02-20 12:37:32'),
(2428, '2019-02-20', 170, '2019-02-20 08:15:54', NULL),
(2429, '2019-02-20', 114, '2019-02-20 08:16:01', '2019-02-20 10:19:21'),
(2430, '2019-02-20', 5, '2019-02-20 08:16:08', '2019-02-20 12:12:43'),
(2431, '2019-02-20', 70, '2019-02-20 08:16:18', '2019-02-20 12:49:36'),
(2432, '2019-02-20', 80, '2019-02-20 08:16:56', '2019-02-20 10:35:41'),
(2433, '2019-02-20', 39, '2019-02-20 08:16:59', '2019-02-20 10:19:14'),
(2434, '2019-02-20', 25, '2019-02-20 08:17:13', '2019-02-20 12:12:37'),
(2435, '2019-02-20', 142, '2019-02-20 08:17:23', '2019-02-20 11:41:35'),
(2436, '2019-02-20', 8, '2019-02-20 08:17:26', NULL),
(2437, '2019-02-20', 177, '2019-02-20 08:17:41', '2019-02-20 12:48:57'),
(2438, '2019-02-20', 51, '2019-02-20 08:17:48', NULL),
(2439, '2019-02-20', 139, '2019-02-20 08:17:53', '2019-02-20 11:40:53'),
(2440, '2019-02-20', 154, '2019-02-20 08:17:59', '2019-02-20 11:40:48'),
(2441, '2019-02-20', 112, '2019-02-20 08:18:05', NULL),
(2442, '2019-02-20', 123, '2019-02-20 08:18:11', '2019-02-20 11:12:57'),
(2443, '2019-02-20', 46, '2019-02-20 08:18:21', '2019-02-20 12:52:03'),
(2444, '2019-02-20', 59, '2019-02-20 08:19:03', NULL),
(2445, '2019-02-20', 129, '2019-02-20 08:19:06', NULL),
(2446, '2019-02-20', 31, '2019-02-20 08:19:31', NULL),
(2447, '2019-02-20', 66, '2019-02-20 08:20:18', '2019-02-20 12:49:16'),
(2448, '2019-02-20', 44, '2019-02-20 08:21:02', '2019-02-20 12:51:55'),
(2449, '2019-02-20', 90, '2019-02-20 08:23:24', '2019-02-20 10:36:58'),
(2450, '2019-02-20', 91, '2019-02-20 08:23:31', '2019-02-20 10:36:42'),
(2451, '2019-02-20', 22, '2019-02-20 08:23:55', '2019-02-20 10:19:34'),
(2452, '2019-02-20', 94, '2019-02-20 08:28:07', '2019-02-20 10:36:13'),
(2453, '2019-02-20', 97, '2019-02-20 08:28:11', '2019-02-20 10:36:44'),
(2454, '2019-02-20', 29, '2019-02-20 08:28:19', '2019-02-20 10:19:05'),
(2455, '2019-02-20', 14, '2019-02-20 08:28:46', '2019-02-20 12:37:06'),
(2456, '2019-02-20', 162, '2019-02-20 08:28:49', NULL),
(2457, '2019-02-20', 20, '2019-02-20 08:28:56', NULL),
(2458, '2019-02-20', 11, '2019-02-20 08:29:01', NULL),
(2459, '2019-02-20', 7, '2019-02-20 08:29:06', NULL),
(2460, '2019-02-20', 179, '2019-02-20 08:29:21', NULL),
(2461, '2019-02-20', 6, '2019-02-20 08:29:27', NULL),
(2462, '2019-02-20', 63, '2019-02-20 08:29:31', '2019-02-20 12:49:03'),
(2463, '2019-02-20', 79, '2019-02-20 08:29:35', '2019-02-20 10:35:47'),
(2464, '2019-02-20', 150, '2019-02-20 08:29:46', '2019-02-20 11:42:59'),
(2465, '2019-02-20', 166, '2019-02-20 08:29:52', NULL),
(2466, '2019-02-20', 164, '2019-02-20 08:29:58', NULL),
(2467, '2019-02-20', 158, '2019-02-20 08:30:08', '2019-02-20 10:35:31'),
(2468, '2019-02-20', 169, '2019-02-20 08:30:13', NULL),
(2469, '2019-02-20', 131, '2019-02-20 08:30:30', NULL),
(2470, '2019-02-20', 151, '2019-02-20 08:30:36', '2019-02-20 11:41:44'),
(2471, '2019-02-20', 156, '2019-02-20 08:30:56', '2019-02-20 11:21:47'),
(2472, '2019-02-20', 89, '2019-02-20 08:31:06', '2019-02-20 10:35:19'),
(2473, '2019-02-20', 110, '2019-02-20 08:31:30', '2019-02-20 10:24:34'),
(2474, '2019-02-20', 9, '2019-02-20 08:32:00', '2019-02-20 12:12:29'),
(2475, '2019-02-20', 88, '2019-02-20 08:32:59', '2019-02-20 10:36:17'),
(2476, '2019-02-20', 71, '2019-02-20 08:33:17', '2019-02-20 12:49:00'),
(2477, '2019-02-20', 113, '2019-02-20 08:33:24', '2019-02-20 10:18:52'),
(2478, '2019-02-20', 117, '2019-02-20 08:33:49', '2019-02-20 10:19:10'),
(2479, '2019-02-20', 135, '2019-02-20 08:34:27', '2019-02-20 11:42:36'),
(2480, '2019-02-20', 45, '2019-02-20 08:35:05', '2019-02-20 12:52:29'),
(2481, '2019-02-20', 120, '2019-02-20 08:36:10', NULL),
(2482, '2019-02-20', 121, '2019-02-20 08:39:00', '2019-02-20 10:40:23'),
(2483, '2019-02-20', 153, '2019-02-20 08:40:36', '2019-02-20 11:41:52'),
(2484, '2019-02-20', 77, '2019-02-20 08:40:49', '2019-02-20 10:37:05'),
(2485, '2019-02-20', 128, '2019-02-20 08:44:41', '2019-02-20 11:42:01'),
(2486, '2019-02-20', 133, '2019-02-20 08:44:58', '2019-02-20 11:40:45'),
(2487, '2019-02-20', 160, '2019-02-20 08:45:29', '2019-02-20 10:36:29'),
(2488, '2019-02-20', 105, '2019-02-20 10:10:14', '2019-02-20 13:01:06'),
(2489, '2019-02-20', 174, '2019-02-20 10:17:47', '2019-02-20 13:02:15'),
(2490, '2019-02-20', 111, '2019-02-20 10:28:19', '2019-02-20 13:01:01'),
(2491, '2019-02-20', 42, '2019-02-20 10:28:24', '2019-02-20 12:43:27'),
(2492, '2019-02-20', 30, '2019-02-20 10:32:06', '2019-02-20 12:43:43'),
(2493, '2019-02-20', 109, '2019-02-20 10:37:38', '2019-02-20 13:00:58'),
(2494, '2019-02-20', 102, '2019-02-20 10:42:03', '2019-02-20 13:00:38'),
(2495, '2019-02-20', 108, '2019-02-20 10:43:09', '2019-02-20 13:01:47'),
(2496, '2019-02-20', 103, '2019-02-20 10:43:17', '2019-02-20 13:01:26'),
(2497, '2019-02-20', 104, '2019-02-20 10:43:26', '2019-02-20 13:02:37'),
(2498, '2019-02-20', 149, '2019-02-20 10:45:36', '2019-02-20 12:45:26'),
(2499, '2019-02-20', 106, '2019-02-20 10:47:01', '2019-02-20 13:00:44'),
(2500, '2019-02-20', 183, '2019-02-20 10:48:41', '2019-02-20 13:01:11'),
(2501, '2019-02-20', 35, '2019-02-20 10:58:27', '2019-02-20 12:44:53'),
(2502, '2019-02-20', 36, '2019-02-20 10:58:51', '2019-02-20 12:46:36'),
(2503, '2019-02-20', 132, '2019-02-20 11:14:07', NULL),
(2504, '2019-02-20', 140, '2019-02-20 11:28:54', NULL),
(2505, '2019-02-20', 134, '2019-02-20 11:43:05', NULL),
(2506, '2019-02-20', 48, '2019-02-20 12:04:01', NULL),
(2507, '2019-02-20', 161, '2019-02-20 12:12:49', NULL),
(2508, '2019-02-20', 56, '2019-02-20 12:49:10', NULL),
(2509, '2019-02-20', 107, '2019-02-20 13:01:41', NULL),
(2510, '2019-02-23', 157, '2019-02-23 08:03:00', NULL),
(2512, '2019-02-23', 137, '2019-02-23 08:03:08', NULL),
(2514, '2019-02-23', 155, '2019-02-23 08:04:00', NULL),
(2515, '2019-02-23', 168, '2019-02-23 08:04:18', NULL),
(2516, '2019-02-23', 44, '2019-02-23 08:06:53', NULL),
(2518, '2019-02-23', 95, '2019-02-23 08:07:51', NULL),
(2519, '2019-02-23', 169, '2019-02-23 08:09:12', '2019-02-23 11:40:43'),
(2521, '2019-02-23', 156, '2019-02-23 08:11:03', NULL),
(2522, '2019-02-23', 156, '2019-02-23 08:11:03', NULL),
(2523, '2019-02-23', 141, '2019-02-23 08:11:12', NULL),
(2524, '2019-02-23', 170, '2019-02-23 08:12:13', '2019-02-23 11:50:23'),
(2525, '2019-02-23', 70, '2019-02-23 08:13:19', NULL),
(2527, '2019-02-23', 86, '2019-02-23 08:16:21', NULL),
(2528, '2019-02-23', 92, '2019-02-23 08:19:36', NULL),
(2529, '2019-02-23', 64, '2019-02-23 08:21:12', NULL),
(2530, '2019-02-23', 72, '2019-02-23 08:24:53', '2019-02-23 10:44:04'),
(2532, '2019-02-23', 158, '2019-02-23 08:26:35', NULL),
(2534, '2019-02-23', 25, '2019-02-23 08:27:56', NULL),
(2536, '2019-02-23', 99, '2019-02-23 08:28:37', NULL),
(2538, '2019-02-23', 138, '2019-02-23 08:28:50', NULL),
(2539, '2019-02-23', 15, '2019-02-23 08:29:02', NULL),
(2540, '2019-02-23', 78, '2019-02-23 08:29:07', NULL),
(2541, '2019-02-23', 61, '2019-02-23 08:29:22', NULL),
(2543, '2019-02-23', 114, '2019-02-23 08:29:34', NULL),
(2544, '2019-02-23', 43, '2019-02-23 08:29:41', '2019-02-23 10:40:15'),
(2545, '2019-02-23', 135, '2019-02-23 08:29:47', NULL),
(2546, '2019-02-23', 75, '2019-02-23 08:31:40', NULL),
(2547, '2019-02-23', 75, '2019-02-23 08:31:40', NULL),
(2548, '2019-02-23', 150, '2019-02-23 08:35:30', '2019-02-23 10:07:56'),
(2550, '2019-02-23', 54, '2019-02-23 08:36:57', NULL),
(2552, '2019-02-23', 129, '2019-02-23 08:39:57', NULL),
(2554, '2019-02-23', 144, '2019-02-23 08:40:39', NULL),
(2555, '2019-02-23', 118, '2019-02-23 08:40:59', NULL),
(2557, '2019-02-23', 173, '2019-02-23 08:41:14', NULL),
(2558, '2019-02-23', 105, '2019-02-23 08:42:26', NULL),
(2559, '2019-02-23', 116, '2019-02-23 08:42:39', NULL),
(2560, '2019-02-23', 123, '2019-02-23 08:43:56', NULL),
(2562, '2019-02-23', 91, '2019-02-23 08:45:00', NULL),
(2563, '2019-02-23', 90, '2019-02-23 08:45:09', NULL),
(2564, '2019-02-23', 22, '2019-02-23 08:45:16', NULL),
(2566, '2019-02-23', 172, '2019-02-23 08:47:46', '2019-02-23 10:41:15'),
(2568, '2019-02-23', 71, '2019-02-23 08:54:11', NULL),
(2570, '2019-02-23', 57, '2019-02-23 08:56:21', NULL),
(2572, '2019-02-23', 68, '2019-02-23 09:12:30', NULL),
(2573, '2019-02-23', 10, '2019-02-23 10:11:08', NULL),
(2574, '2019-02-24', 23, '2019-02-24 07:47:51', NULL),
(2575, '2019-02-24', 147, '2019-02-24 07:55:19', '2019-02-24 11:40:46'),
(2576, '2019-02-24', 72, '2019-02-24 07:55:24', '2019-02-24 11:40:36'),
(2577, '2019-02-24', 24, '2019-02-24 07:55:50', NULL),
(2578, '2019-02-24', 18, '2019-02-24 07:56:05', '2019-02-24 12:10:29'),
(2579, '2019-02-24', 152, '2019-02-24 07:56:14', '2019-02-24 11:44:18'),
(2580, '2019-02-24', 55, '2019-02-24 07:56:19', NULL),
(2581, '2019-02-24', 114, '2019-02-24 07:56:28', '2019-02-24 10:28:35'),
(2582, '2019-02-24', 154, '2019-02-24 07:58:22', '2019-02-24 11:42:04'),
(2583, '2019-02-24', 99, '2019-02-24 08:01:21', '2019-02-24 10:36:40'),
(2584, '2019-02-24', 176, '2019-02-24 08:01:47', NULL),
(2585, '2019-02-24', 119, '2019-02-24 08:02:08', '2019-02-24 10:25:54'),
(2586, '2019-02-24', 62, '2019-02-24 08:02:13', NULL),
(2587, '2019-02-24', 98, '2019-02-24 08:02:18', '2019-02-24 10:35:57'),
(2588, '2019-02-24', 93, '2019-02-24 08:04:19', '2019-02-24 10:36:51'),
(2589, '2019-02-24', 124, '2019-02-24 08:05:03', '2019-02-24 11:40:27'),
(2590, '2019-02-24', 92, '2019-02-24 08:05:15', '2019-02-24 10:36:35'),
(2591, '2019-02-24', 46, '2019-02-24 08:05:43', NULL),
(2592, '2019-02-24', 48, '2019-02-24 08:06:48', NULL),
(2593, '2019-02-24', 168, '2019-02-24 08:08:35', NULL),
(2594, '2019-02-24', 70, '2019-02-24 08:09:10', NULL),
(2595, '2019-02-24', 69, '2019-02-24 08:10:10', NULL),
(2596, '2019-02-24', 169, '2019-02-24 08:10:25', NULL),
(2597, '2019-02-24', 84, '2019-02-24 08:10:32', NULL),
(2598, '2019-02-24', 165, '2019-02-24 08:10:41', NULL),
(2599, '2019-02-24', 144, '2019-02-24 08:11:17', '2019-02-24 11:42:19'),
(2600, '2019-02-24', 15, '2019-02-24 08:11:39', NULL),
(2601, '2019-02-24', 173, '2019-02-24 08:11:56', NULL),
(2602, '2019-02-24', 142, '2019-02-24 08:12:20', '2019-02-24 11:40:03'),
(2603, '2019-02-24', 16, '2019-02-24 08:13:36', NULL),
(2604, '2019-02-24', 138, '2019-02-24 08:13:44', '2019-02-24 11:40:32'),
(2605, '2019-02-24', 141, '2019-02-24 08:14:36', '2019-02-24 11:41:32'),
(2606, '2019-02-24', 159, '2019-02-24 08:14:42', '2019-02-24 10:37:28'),
(2607, '2019-02-24', 27, '2019-02-24 08:15:28', '2019-02-24 10:25:40'),
(2608, '2019-02-24', 118, '2019-02-24 08:15:35', '2019-02-24 10:25:47'),
(2609, '2019-02-24', 157, '2019-02-24 08:16:10', '2019-02-24 11:41:53'),
(2610, '2019-02-24', 110, '2019-02-24 08:16:21', NULL),
(2611, '2019-02-24', 5, '2019-02-24 08:16:41', '2019-02-24 12:11:32'),
(2612, '2019-02-24', 116, '2019-02-24 08:16:57', '2019-02-24 10:27:00'),
(2613, '2019-02-24', 150, '2019-02-24 08:17:06', '2019-02-24 11:42:22'),
(2614, '2019-02-24', 137, '2019-02-24 08:17:30', '2019-02-24 11:39:43'),
(2615, '2019-02-24', 145, '2019-02-24 08:17:38', '2019-02-24 11:40:09'),
(2616, '2019-02-24', 181, '2019-02-24 08:17:50', NULL),
(2617, '2019-02-24', 58, '2019-02-24 08:17:59', NULL),
(2618, '2019-02-24', 44, '2019-02-24 08:18:07', NULL),
(2619, '2019-02-24', 11, '2019-02-24 08:18:11', '2019-02-24 12:10:39'),
(2620, '2019-02-24', 10, '2019-02-24 08:18:19', '2019-02-24 12:11:41'),
(2621, '2019-02-24', 86, '2019-02-24 08:18:30', '2019-02-24 10:37:08'),
(2622, '2019-02-24', 31, '2019-02-24 08:18:40', '2019-02-24 10:27:11'),
(2623, '2019-02-24', 67, '2019-02-24 08:19:51', '2019-02-24 11:43:02'),
(2624, '2019-02-24', 68, '2019-02-24 08:21:19', NULL),
(2625, '2019-02-24', 43, '2019-02-24 08:22:47', '2019-02-24 12:52:13'),
(2626, '2019-02-24', 94, '2019-02-24 08:23:21', '2019-02-24 10:36:45'),
(2627, '2019-02-24', 7, '2019-02-24 08:23:30', NULL),
(2628, '2019-02-24', 6, '2019-02-24 08:23:36', NULL),
(2629, '2019-02-24', 14, '2019-02-24 08:23:48', NULL),
(2630, '2019-02-24', 13, '2019-02-24 08:23:54', NULL),
(2631, '2019-02-24', 164, '2019-02-24 08:23:57', NULL),
(2632, '2019-02-24', 91, '2019-02-24 08:24:54', '2019-02-24 10:36:59'),
(2633, '2019-02-24', 125, '2019-02-24 08:24:59', '2019-02-24 11:41:07'),
(2634, '2019-02-24', 22, '2019-02-24 08:25:05', '2019-02-24 10:26:37'),
(2635, '2019-02-24', 90, '2019-02-24 08:25:10', '2019-02-24 10:37:17'),
(2636, '2019-02-24', 20, '2019-02-24 08:31:35', NULL),
(2637, '2019-02-24', 25, '2019-02-24 08:31:43', '2019-02-24 12:10:33'),
(2638, '2019-02-24', 167, '2019-02-24 08:31:56', '2019-02-24 11:59:24'),
(2639, '2019-02-24', 179, '2019-02-24 08:32:03', NULL),
(2640, '2019-02-24', 178, '2019-02-24 08:32:08', NULL),
(2641, '2019-02-24', 170, '2019-02-24 08:32:10', NULL),
(2642, '2019-02-24', 61, '2019-02-24 08:32:17', NULL),
(2643, '2019-02-24', 63, '2019-02-24 08:32:23', NULL),
(2644, '2019-02-24', 64, '2019-02-24 08:32:29', NULL),
(2645, '2019-02-24', 129, '2019-02-24 08:32:34', NULL),
(2646, '2019-02-24', 29, '2019-02-24 08:32:40', '2019-02-24 10:27:06'),
(2647, '2019-02-24', 101, '2019-02-24 08:32:45', '2019-02-24 10:37:13'),
(2648, '2019-02-24', 75, '2019-02-24 08:32:51', NULL),
(2649, '2019-02-24', 51, '2019-02-24 08:32:56', NULL),
(2650, '2019-02-24', 139, '2019-02-24 08:33:01', '2019-02-24 11:41:58'),
(2651, '2019-02-24', 162, '2019-02-24 08:33:03', NULL),
(2652, '2019-02-24', 26, '2019-02-24 08:33:13', '2019-02-24 10:26:18'),
(2653, '2019-02-24', 128, '2019-02-24 08:33:18', '2019-02-24 11:41:47'),
(2654, '2019-02-24', 38, '2019-02-24 08:33:36', '2019-02-24 10:26:03'),
(2655, '2019-02-24', 80, '2019-02-24 08:34:52', '2019-02-24 10:35:36'),
(2656, '2019-02-24', 113, '2019-02-24 08:35:01', '2019-02-24 10:25:30'),
(2657, '2019-02-24', 120, '2019-02-24 08:35:06', NULL),
(2658, '2019-02-24', 66, '2019-02-24 08:35:11', NULL),
(2659, '2019-02-24', 96, '2019-02-24 08:35:19', '2019-02-24 10:37:33'),
(2660, '2019-02-24', 60, '2019-02-24 08:36:03', NULL),
(2661, '2019-02-24', 151, '2019-02-24 08:39:15', '2019-02-24 11:40:21'),
(2662, '2019-02-24', 100, '2019-02-24 08:40:24', '2019-02-24 10:36:09'),
(2663, '2019-02-24', 71, '2019-02-24 08:40:51', NULL),
(2664, '2019-02-24', 133, '2019-02-24 08:41:07', '2019-02-24 11:39:38'),
(2665, '2019-02-24', 153, '2019-02-24 08:42:38', '2019-02-24 11:40:14'),
(2666, '2019-02-24', 37, '2019-02-24 08:43:34', '2019-02-24 10:26:08'),
(2667, '2019-02-24', 9, '2019-02-24 08:43:55', NULL),
(2668, '2019-02-24', 148, '2019-02-24 08:45:39', '2019-02-24 11:42:25'),
(2669, '2019-02-24', 121, '2019-02-24 08:48:11', '2019-02-24 10:26:10'),
(2670, '2019-02-24', 174, '2019-02-24 10:19:30', NULL),
(2671, '2019-02-24', 106, '2019-02-24 10:23:10', NULL),
(2672, '2019-02-24', 17, '2019-02-24 10:26:46', NULL),
(2673, '2019-02-24', 39, '2019-02-24 10:26:48', NULL),
(2674, '2019-02-24', 126, '2019-02-24 10:27:16', NULL),
(2675, '2019-02-24', 112, '2019-02-24 10:28:41', NULL),
(2676, '2019-02-24', 103, '2019-02-24 10:29:45', NULL),
(2677, '2019-02-24', 111, '2019-02-24 10:29:58', NULL),
(2678, '2019-02-24', 104, '2019-02-24 10:30:30', NULL),
(2679, '2019-02-24', 30, '2019-02-24 10:31:07', NULL),
(2680, '2019-02-24', 95, '2019-02-24 10:36:15', NULL),
(2681, '2019-02-24', 76, '2019-02-24 10:36:25', NULL),
(2682, '2019-02-24', 88, '2019-02-24 10:38:07', NULL),
(2683, '2019-02-24', 149, '2019-02-24 10:38:39', NULL),
(2684, '2019-02-24', 102, '2019-02-24 10:38:47', NULL),
(2685, '2019-02-24', 108, '2019-02-24 10:39:43', NULL),
(2686, '2019-02-24', 109, '2019-02-24 10:40:08', NULL),
(2687, '2019-02-24', 41, '2019-02-24 10:41:07', NULL),
(2688, '2019-02-24', 28, '2019-02-24 10:41:22', NULL),
(2689, '2019-02-24', 183, '2019-02-24 10:45:46', NULL),
(2690, '2019-02-24', 175, '2019-02-24 10:47:06', NULL),
(2691, '2019-02-24', 35, '2019-02-24 10:54:03', NULL),
(2692, '2019-02-24', 36, '2019-02-24 10:54:18', NULL),
(2693, '2019-02-24', 107, '2019-02-24 10:54:31', NULL),
(2694, '2019-02-24', 134, '2019-02-24 11:40:55', NULL),
(2695, '2019-02-24', 143, '2019-02-24 11:42:09', NULL),
(2696, '2019-02-25', 96, '2019-02-25 07:51:56', NULL),
(2697, '2019-02-25', 54, '2019-02-25 07:54:18', NULL),
(2698, '2019-02-25', 69, '2019-02-25 07:54:25', NULL),
(2699, '2019-02-25', 155, '2019-02-25 07:55:25', '2019-02-25 11:33:03'),
(2700, '2019-02-25', 57, '2019-02-25 07:55:40', '2019-02-25 12:46:45'),
(2701, '2019-02-25', 176, '2019-02-25 07:56:06', '2019-02-25 12:46:55'),
(2702, '2019-02-25', 62, '2019-02-25 07:56:08', '2019-02-25 12:46:48'),
(2703, '2019-02-25', 98, '2019-02-25 07:56:16', NULL),
(2704, '2019-02-25', 119, '2019-02-25 07:56:20', NULL),
(2705, '2019-02-25', 152, '2019-02-25 07:57:42', NULL),
(2706, '2019-02-25', 72, '2019-02-25 07:57:59', '2019-02-25 12:47:19'),
(2707, '2019-02-25', 24, '2019-02-25 07:58:23', NULL),
(2708, '2019-02-25', 114, '2019-02-25 07:59:46', '2019-02-25 10:20:10'),
(2709, '2019-02-25', 92, '2019-02-25 08:02:26', '2019-02-25 10:33:23'),
(2710, '2019-02-25', 23, '2019-02-25 08:03:00', NULL),
(2711, '2019-02-25', 124, '2019-02-25 08:06:33', NULL),
(2712, '2019-02-25', 168, '2019-02-25 08:07:24', NULL),
(2713, '2019-02-25', 16, '2019-02-25 08:07:27', NULL),
(2714, '2019-02-25', 93, '2019-02-25 08:07:35', NULL),
(2715, '2019-02-25', 99, '2019-02-25 08:08:18', '2019-02-25 10:33:37'),
(2716, '2019-02-25', 138, '2019-02-25 08:08:28', '2019-02-25 11:32:24'),
(2717, '2019-02-25', 170, '2019-02-25 08:10:30', '2019-02-25 12:54:09'),
(2718, '2019-02-25', 169, '2019-02-25 08:10:35', NULL),
(2719, '2019-02-25', 15, '2019-02-25 08:11:14', '2019-02-25 11:58:44'),
(2720, '2019-02-25', 78, '2019-02-25 08:11:19', '2019-02-25 10:33:16'),
(2721, '2019-02-25', 141, '2019-02-25 08:11:24', '2019-02-25 11:32:03'),
(2722, '2019-02-25', 172, '2019-02-25 08:11:29', '2019-02-25 12:56:14'),
(2723, '2019-02-25', 85, '2019-02-25 08:11:39', NULL),
(2724, '2019-02-25', 142, '2019-02-25 08:12:25', '2019-02-25 11:32:54'),
(2725, '2019-02-25', 14, '2019-02-25 08:12:30', NULL),
(2726, '2019-02-25', 158, '2019-02-25 08:13:27', NULL),
(2727, '2019-02-25', 95, '2019-02-25 08:13:33', '2019-02-25 10:33:42'),
(2728, '2019-02-25', 87, '2019-02-25 08:13:38', NULL),
(2729, '2019-02-25', 130, '2019-02-25 08:13:46', NULL),
(2730, '2019-02-25', 145, '2019-02-25 08:14:09', '2019-02-25 11:32:35'),
(2731, '2019-02-25', 181, '2019-02-25 08:14:12', '2019-02-25 12:33:37'),
(2732, '2019-02-25', 154, '2019-02-25 08:14:46', '2019-02-25 11:32:30'),
(2733, '2019-02-25', 86, '2019-02-25 08:16:11', NULL),
(2734, '2019-02-25', 84, '2019-02-25 08:16:17', NULL),
(2735, '2019-02-25', 116, '2019-02-25 08:16:26', '2019-02-25 10:17:57'),
(2736, '2019-02-25', 65, '2019-02-25 08:17:04', '2019-02-25 12:47:39'),
(2737, '2019-02-25', 137, '2019-02-25 08:17:23', '2019-02-25 11:31:40'),
(2738, '2019-02-25', 157, '2019-02-25 08:18:28', '2019-02-25 11:32:47'),
(2739, '2019-02-25', 68, '2019-02-25 08:18:38', '2019-02-25 12:47:31'),
(2740, '2019-02-25', 43, '2019-02-25 08:18:46', '2019-02-25 12:37:58'),
(2741, '2019-02-25', 144, '2019-02-25 08:18:51', '2019-02-25 11:31:58'),
(2742, '2019-02-25', 27, '2019-02-25 08:19:13', '2019-02-25 10:18:04'),
(2743, '2019-02-25', 46, '2019-02-25 08:19:40', '2019-02-25 12:30:56'),
(2744, '2019-02-25', 39, '2019-02-25 08:19:45', NULL),
(2745, '2019-02-25', 26, '2019-02-25 08:21:27', NULL),
(2746, '2019-02-25', 17, '2019-02-25 08:21:53', NULL),
(2747, '2019-02-25', 31, '2019-02-25 08:21:59', '2019-02-25 10:18:45'),
(2748, '2019-02-25', 97, '2019-02-25 08:22:06', NULL),
(2749, '2019-02-25', 125, '2019-02-25 08:22:44', '2019-02-25 11:32:38'),
(2750, '2019-02-25', 90, '2019-02-25 08:24:05', NULL),
(2751, '2019-02-25', 143, '2019-02-25 08:24:14', NULL),
(2752, '2019-02-25', 91, '2019-02-25 08:24:19', NULL),
(2753, '2019-02-25', 94, '2019-02-25 08:26:59', NULL),
(2754, '2019-02-25', 101, '2019-02-25 08:27:52', NULL),
(2755, '2019-02-25', 118, '2019-02-25 08:28:26', '2019-02-25 10:19:47'),
(2756, '2019-02-25', 139, '2019-02-25 08:28:31', '2019-02-25 11:33:00'),
(2757, '2019-02-25', 140, '2019-02-25 08:28:36', NULL),
(2758, '2019-02-25', 165, '2019-02-25 08:28:40', NULL),
(2759, '2019-02-25', 5, '2019-02-25 08:28:44', NULL),
(2760, '2019-02-25', 20, '2019-02-25 08:28:50', NULL),
(2761, '2019-02-25', 150, '2019-02-25 08:28:56', '2019-02-25 11:33:06'),
(2762, '2019-02-25', 56, '2019-02-25 08:29:01', '2019-02-25 12:47:28'),
(2763, '2019-02-25', 161, '2019-02-25 08:29:05', NULL),
(2764, '2019-02-25', 7, '2019-02-25 08:29:13', NULL),
(2765, '2019-02-25', 10, '2019-02-25 08:29:18', NULL),
(2766, '2019-02-25', 66, '2019-02-25 08:29:23', NULL),
(2767, '2019-02-25', 51, '2019-02-25 08:29:28', NULL),
(2768, '2019-02-25', 123, '2019-02-25 08:29:33', NULL),
(2769, '2019-02-25', 110, '2019-02-25 08:30:18', NULL),
(2770, '2019-02-25', 156, '2019-02-25 08:30:24', '2019-02-25 10:56:40'),
(2771, '2019-02-25', 79, '2019-02-25 08:30:40', '2019-02-25 10:33:47'),
(2772, '2019-02-25', 117, '2019-02-25 08:30:48', '2019-02-25 10:20:20'),
(2773, '2019-02-25', 71, '2019-02-25 08:33:35', '2019-02-25 12:47:34'),
(2774, '2019-02-25', 166, '2019-02-25 08:34:00', NULL),
(2775, '2019-02-25', 60, '2019-02-25 08:34:47', NULL),
(2776, '2019-02-25', 45, '2019-02-25 08:36:48', '2019-02-25 12:54:06'),
(2777, '2019-02-25', 113, '2019-02-25 08:42:26', '2019-02-25 10:20:05'),
(2778, '2019-02-25', 58, '2019-02-25 08:47:35', '2019-02-25 12:47:11'),
(2779, '2019-02-25', 30, '2019-02-25 10:07:42', '2019-02-25 12:47:44'),
(2780, '2019-02-25', 37, '2019-02-25 10:18:14', NULL),
(2781, '2019-02-25', 115, '2019-02-25 10:20:01', NULL),
(2782, '2019-02-25', 22, '2019-02-25 10:20:14', NULL),
(2783, '2019-02-25', 75, '2019-02-25 10:33:30', NULL),
(2784, '2019-02-25', 178, '2019-02-25 10:37:45', NULL),
(2785, '2019-02-25', 105, '2019-02-25 10:38:06', NULL),
(2786, '2019-02-25', 42, '2019-02-25 10:42:03', '2019-02-25 12:01:40'),
(2787, '2019-02-25', 106, '2019-02-25 10:48:18', '2019-02-25 12:51:26'),
(2788, '2019-02-25', 107, '2019-02-25 10:50:55', '2019-02-25 12:51:36'),
(2789, '2019-02-25', 183, '2019-02-25 10:51:49', '2019-02-25 12:51:31'),
(2790, '2019-02-25', 109, '2019-02-25 10:54:39', '2019-02-25 12:57:54'),
(2791, '2019-02-25', 146, '2019-02-25 11:02:53', '2019-02-25 12:54:21'),
(2792, '2019-02-25', 129, '2019-02-25 11:31:37', NULL),
(2793, '2019-02-25', 63, '2019-02-25 12:46:58', NULL),
(2794, '2019-02-26', 147, '2019-02-26 07:50:06', NULL),
(2795, '2019-02-26', 18, '2019-02-26 07:50:20', NULL),
(2796, '2019-02-26', 55, '2019-02-26 07:50:28', '2019-02-26 12:46:17'),
(2797, '2019-02-26', 24, '2019-02-26 07:50:56', NULL),
(2798, '2019-02-26', 143, '2019-02-26 07:53:53', '2019-02-26 11:36:05'),
(2799, '2019-02-26', 96, '2019-02-26 08:00:28', '2019-02-26 10:32:15'),
(2800, '2019-02-26', 155, '2019-02-26 08:00:37', '2019-02-26 11:36:51'),
(2801, '2019-02-26', 65, '2019-02-26 08:01:23', '2019-02-26 12:46:25'),
(2802, '2019-02-26', 168, '2019-02-26 08:01:54', '2019-02-26 12:53:09'),
(2803, '2019-02-26', 154, '2019-02-26 08:02:07', '2019-02-26 11:36:22'),
(2804, '2019-02-26', 99, '2019-02-26 08:02:49', '2019-02-26 10:31:55'),
(2805, '2019-02-26', 59, '2019-02-26 08:05:42', '2019-02-26 11:44:40'),
(2806, '2019-02-26', 23, '2019-02-26 08:07:07', NULL),
(2807, '2019-02-26', 92, '2019-02-26 08:07:18', '2019-02-26 10:31:17'),
(2808, '2019-02-26', 142, '2019-02-26 08:10:13', '2019-02-26 11:37:04'),
(2809, '2019-02-26', 157, '2019-02-26 08:13:16', '2019-02-26 11:36:38'),
(2810, '2019-02-26', 173, '2019-02-26 08:13:46', '2019-02-26 12:28:41'),
(2811, '2019-02-26', 86, '2019-02-26 08:14:38', '2019-02-26 10:32:29'),
(2812, '2019-02-26', 159, '2019-02-26 08:16:12', '2019-02-26 10:33:24'),
(2813, '2019-02-26', 69, '2019-02-26 08:17:37', '2019-02-26 12:46:14'),
(2814, '2019-02-26', 84, '2019-02-26 08:17:57', '2019-02-26 10:32:45'),
(2815, '2019-02-26', 54, '2019-02-26 08:18:02', NULL),
(2816, '2019-02-26', 5, '2019-02-26 08:18:13', NULL),
(2817, '2019-02-26', 10, '2019-02-26 08:18:18', NULL),
(2818, '2019-02-26', 182, '2019-02-26 08:19:05', NULL),
(2819, '2019-02-26', 46, '2019-02-26 08:19:42', '2019-02-26 12:52:38'),
(2820, '2019-02-26', 93, '2019-02-26 08:20:01', '2019-02-26 10:32:02'),
(2821, '2019-02-26', 137, '2019-02-26 08:20:21', '2019-02-26 11:35:45'),
(2822, '2019-02-26', 68, '2019-02-26 08:20:30', '2019-02-26 12:47:14'),
(2823, '2019-02-26', 141, '2019-02-26 08:20:49', '2019-02-26 11:04:12'),
(2824, '2019-02-26', 156, '2019-02-26 08:22:48', '2019-02-26 11:04:07'),
(2825, '2019-02-26', 125, '2019-02-26 08:23:57', '2019-02-26 11:36:19'),
(2826, '2019-02-26', 62, '2019-02-26 08:24:13', NULL),
(2827, '2019-02-26', 57, '2019-02-26 08:24:16', '2019-02-26 12:46:11'),
(2828, '2019-02-26', 133, '2019-02-26 08:24:44', '2019-02-26 11:04:15'),
(2829, '2019-02-26', 144, '2019-02-26 08:24:48', '2019-02-26 11:35:49'),
(2830, '2019-02-26', 119, '2019-02-26 08:24:54', NULL),
(2831, '2019-02-26', 136, '2019-02-26 08:25:15', '2019-02-26 11:23:53'),
(2832, '2019-02-26', 78, '2019-02-26 08:25:35', '2019-02-26 10:31:25'),
(2833, '2019-02-26', 91, '2019-02-26 08:26:24', '2019-02-26 10:31:40'),
(2834, '2019-02-26', 14, '2019-02-26 08:26:37', '2019-02-26 12:25:11'),
(2835, '2019-02-26', 94, '2019-02-26 08:28:00', '2019-02-26 10:33:01'),
(2836, '2019-02-26', 123, '2019-02-26 08:30:23', NULL),
(2837, '2019-02-26', 97, '2019-02-26 08:30:41', '2019-02-26 10:32:56'),
(2838, '2019-02-26', 150, '2019-02-26 08:30:59', '2019-02-26 11:35:52'),
(2839, '2019-02-26', 135, '2019-02-26 08:32:06', '2019-02-26 11:35:57'),
(2840, '2019-02-26', 7, '2019-02-26 08:32:10', NULL),
(2841, '2019-02-26', 6, '2019-02-26 08:32:15', NULL),
(2842, '2019-02-26', 171, '2019-02-26 08:32:21', '2019-02-26 12:52:45'),
(2843, '2019-02-26', 45, '2019-02-26 08:32:25', NULL),
(2844, '2019-02-26', 179, '2019-02-26 08:32:30', '2019-02-26 13:00:04'),
(2845, '2019-02-26', 170, '2019-02-26 08:32:35', NULL),
(2846, '2019-02-26', 61, '2019-02-26 08:32:40', '2019-02-26 12:56:53'),
(2847, '2019-02-26', 56, '2019-02-26 08:32:45', '2019-02-26 12:46:51'),
(2848, '2019-02-26', 11, '2019-02-26 08:32:50', NULL),
(2849, '2019-02-26', 15, '2019-02-26 08:32:54', NULL),
(2850, '2019-02-26', 58, '2019-02-26 08:33:04', '2019-02-26 12:47:07'),
(2851, '2019-02-26', 160, '2019-02-26 08:33:10', '2019-02-26 10:34:52'),
(2852, '2019-02-26', 138, '2019-02-26 08:33:16', '2019-02-26 11:36:26'),
(2853, '2019-02-26', 110, '2019-02-26 08:33:29', '2019-02-26 10:31:46'),
(2854, '2019-02-26', 80, '2019-02-26 08:34:58', '2019-02-26 10:32:42'),
(2855, '2019-02-26', 71, '2019-02-26 08:38:25', '2019-02-26 12:47:04'),
(2856, '2019-02-26', 151, '2019-02-26 08:39:51', '2019-02-26 11:36:11'),
(2857, '2019-02-26', 48, '2019-02-26 08:42:38', '2019-02-26 12:51:43'),
(2858, '2019-02-26', 113, '2019-02-26 08:42:53', '2019-02-26 10:18:08'),
(2859, '2019-02-26', 60, '2019-02-26 08:48:47', '2019-02-26 12:46:58'),
(2860, '2019-02-26', 105, '2019-02-26 10:13:34', '2019-02-26 12:54:38'),
(2861, '2019-02-26', 22, '2019-02-26 10:18:05', NULL),
(2862, '2019-02-26', 178, '2019-02-26 10:18:30', NULL),
(2863, '2019-02-26', 174, '2019-02-26 10:26:43', '2019-02-26 12:53:16'),
(2864, '2019-02-26', 175, '2019-02-26 10:26:46', '2019-02-26 12:53:57'),
(2865, '2019-02-26', 17, '2019-02-26 10:27:02', NULL),
(2866, '2019-02-26', 111, '2019-02-26 10:31:04', '2019-02-26 12:53:13'),
(2867, '2019-02-26', 98, '2019-02-26 10:31:33', NULL),
(2868, '2019-02-26', 33, '2019-02-26 10:32:10', NULL),
(2869, '2019-02-26', 42, '2019-02-26 10:32:24', '2019-02-26 12:43:01'),
(2870, '2019-02-26', 108, '2019-02-26 10:32:36', '2019-02-26 12:53:53'),
(2871, '2019-02-26', 149, '2019-02-26 10:33:09', NULL),
(2872, '2019-02-26', 30, '2019-02-26 10:35:57', '2019-02-26 12:43:08'),
(2873, '2019-02-26', 106, '2019-02-26 10:36:19', '2019-02-26 12:54:07'),
(2874, '2019-02-26', 109, '2019-02-26 10:36:23', '2019-02-26 12:53:28'),
(2875, '2019-02-26', 41, '2019-02-26 10:37:44', '2019-02-26 12:43:39'),
(2876, '2019-02-26', 103, '2019-02-26 10:39:47', NULL),
(2877, '2019-02-26', 102, '2019-02-26 10:40:29', '2019-02-26 12:54:03'),
(2878, '2019-02-26', 28, '2019-02-26 10:47:23', '2019-02-26 12:43:12'),
(2879, '2019-02-26', 183, '2019-02-26 10:49:57', '2019-02-26 12:53:19'),
(2880, '2019-02-26', 107, '2019-02-26 10:50:03', '2019-02-26 12:54:12'),
(2881, '2019-02-26', 36, '2019-02-26 10:54:58', '2019-02-26 12:43:28'),
(2882, '2019-02-26', 140, '2019-02-26 11:36:48', NULL),
(2883, '2019-02-26', 134, '2019-02-26 11:37:09', NULL),
(2884, '2019-02-26', 63, '2019-02-26 12:46:22', NULL),
(2885, '2019-02-26', 66, '2019-02-26 12:47:20', NULL),
(2886, '2019-02-26', 104, '2019-02-26 12:54:33', NULL),
(2887, '2019-02-27', 155, '2019-02-27 07:53:39', '2019-02-27 11:33:08'),
(2888, '2019-02-27', 147, '2019-02-27 07:53:42', '2019-02-27 11:31:46'),
(2889, '2019-02-27', 114, '2019-02-27 07:54:25', '2019-02-27 10:20:00'),
(2890, '2019-02-27', 18, '2019-02-27 07:54:34', '2019-02-27 12:04:56'),
(2891, '2019-02-27', 55, '2019-02-27 07:54:39', NULL),
(2892, '2019-02-27', 157, '2019-02-27 07:54:44', '2019-02-27 11:32:50'),
(2893, '2019-02-27', 62, '2019-02-27 07:55:56', '2019-02-27 11:35:45'),
(2894, '2019-02-27', 57, '2019-02-27 07:55:59', '2019-02-27 12:45:52'),
(2895, '2019-02-27', 98, '2019-02-27 07:56:43', '2019-02-27 10:34:57'),
(2896, '2019-02-27', 124, '2019-02-27 07:58:40', '2019-02-27 11:33:33'),
(2897, '2019-02-27', 92, '2019-02-27 07:59:19', '2019-02-27 10:33:29'),
(2898, '2019-02-27', 53, '2019-02-27 08:03:39', '2019-02-27 12:54:48'),
(2899, '2019-02-27', 99, '2019-02-27 08:04:02', '2019-02-27 10:33:11'),
(2900, '2019-02-27', 168, '2019-02-27 08:06:07', NULL),
(2901, '2019-02-27', 37, '2019-02-27 08:06:13', NULL),
(2902, '2019-02-27', 46, '2019-02-27 08:06:20', '2019-02-27 12:46:46'),
(2903, '2019-02-27', 169, '2019-02-27 08:06:24', NULL),
(2904, '2019-02-27', 48, '2019-02-27 08:06:30', '2019-02-27 12:52:31'),
(2905, '2019-02-27', 93, '2019-02-27 08:07:20', '2019-02-27 10:33:48'),
(2906, '2019-02-27', 118, '2019-02-27 08:07:26', '2019-02-27 10:18:15'),
(2907, '2019-02-27', 95, '2019-02-27 08:07:39', '2019-02-27 10:32:35'),
(2908, '2019-02-27', 23, '2019-02-27 08:09:39', '2019-02-27 12:04:32'),
(2909, '2019-02-27', 167, '2019-02-27 08:11:10', '2019-02-27 12:48:42'),
(2910, '2019-02-27', 173, '2019-02-27 08:11:41', '2019-02-27 12:46:50'),
(2911, '2019-02-27', 145, '2019-02-27 08:12:08', '2019-02-27 11:32:22'),
(2912, '2019-02-27', 181, '2019-02-27 08:12:14', '2019-02-27 12:47:24'),
(2913, '2019-02-27', 138, '2019-02-27 08:12:25', '2019-02-27 11:32:59'),
(2914, '2019-02-27', 87, '2019-02-27 08:13:00', '2019-02-27 10:36:26'),
(2915, '2019-02-27', 158, '2019-02-27 08:13:45', '2019-02-27 10:34:51'),
(2916, '2019-02-27', 146, '2019-02-27 08:14:14', '2019-02-27 11:32:06'),
(2917, '2019-02-27', 172, '2019-02-27 08:14:27', '2019-02-27 12:46:57'),
(2918, '2019-02-27', 85, '2019-02-27 08:14:54', '2019-02-27 10:33:39'),
(2919, '2019-02-27', 141, '2019-02-27 08:15:07', '2019-02-27 11:31:58'),
(2920, '2019-02-27', 96, '2019-02-27 08:15:31', '2019-02-27 10:34:16'),
(2921, '2019-02-27', 61, '2019-02-27 08:15:37', '2019-02-27 12:47:19'),
(2922, '2019-02-27', 68, '2019-02-27 08:15:42', '2019-02-27 12:46:23'),
(2923, '2019-02-27', 38, '2019-02-27 08:16:05', '2019-02-27 10:18:22'),
(2924, '2019-02-27', 65, '2019-02-27 08:16:11', '2019-02-27 12:46:14'),
(2925, '2019-02-27', 112, '2019-02-27 08:16:15', NULL),
(2926, '2019-02-27', 116, '2019-02-27 08:16:25', '2019-02-27 10:20:27'),
(2927, '2019-02-27', 123, '2019-02-27 08:16:34', '2019-02-27 11:33:04'),
(2928, '2019-02-27', 17, '2019-02-27 08:17:44', NULL),
(2929, '2019-02-27', 84, '2019-02-27 08:18:08', '2019-02-27 10:32:41'),
(2930, '2019-02-27', 129, '2019-02-27 08:18:29', NULL),
(2931, '2019-02-27', 22, '2019-02-27 08:19:19', NULL),
(2932, '2019-02-27', 90, '2019-02-27 08:19:34', '2019-02-27 10:35:14'),
(2933, '2019-02-27', 91, '2019-02-27 08:19:52', '2019-02-27 10:35:10'),
(2934, '2019-02-27', 27, '2019-02-27 08:19:58', '2019-02-27 10:18:29'),
(2935, '2019-02-27', 159, '2019-02-27 08:20:08', '2019-02-27 10:33:16'),
(2936, '2019-02-27', 177, '2019-02-27 08:20:53', '2019-02-27 12:45:57'),
(2937, '2019-02-27', 144, '2019-02-27 08:21:00', '2019-02-27 11:32:16'),
(2938, '2019-02-27', 54, '2019-02-27 08:21:18', '2019-02-27 12:50:10'),
(2939, '2019-02-27', 69, '2019-02-27 08:21:23', '2019-02-27 12:49:59'),
(2940, '2019-02-27', 70, '2019-02-27 08:21:28', '2019-02-27 12:48:35'),
(2941, '2019-02-27', 86, '2019-02-27 08:21:35', '2019-02-27 10:32:59'),
(2942, '2019-02-27', 170, '2019-02-27 08:21:53', NULL),
(2943, '2019-02-27', 16, '2019-02-27 08:21:56', NULL),
(2944, '2019-02-27', 51, '2019-02-27 08:22:06', NULL),
(2945, '2019-02-27', 139, '2019-02-27 08:22:09', '2019-02-27 11:32:37'),
(2946, '2019-02-27', 5, '2019-02-27 08:22:30', '2019-02-27 12:05:39'),
(2947, '2019-02-27', 10, '2019-02-27 08:22:45', '2019-02-27 12:05:48'),
(2948, '2019-02-27', 101, '2019-02-27 08:25:01', '2019-02-27 10:34:11'),
(2949, '2019-02-27', 26, '2019-02-27 08:25:12', '2019-02-27 10:19:43'),
(2950, '2019-02-27', 150, '2019-02-27 08:25:23', '2019-02-27 11:32:42'),
(2951, '2019-02-27', 117, '2019-02-27 08:27:54', '2019-02-27 10:19:22'),
(2952, '2019-02-27', 156, '2019-02-27 08:27:59', '2019-02-27 11:32:11'),
(2953, '2019-02-27', 97, '2019-02-27 08:35:47', '2019-02-27 10:35:04'),
(2954, '2019-02-27', 137, '2019-02-27 08:36:09', '2019-02-27 11:31:56'),
(2955, '2019-02-27', 125, '2019-02-27 08:36:21', NULL),
(2956, '2019-02-27', 14, '2019-02-27 08:36:30', NULL),
(2957, '2019-02-27', 142, '2019-02-27 08:36:35', NULL),
(2958, '2019-02-27', 162, '2019-02-27 08:36:39', '2019-02-27 12:04:27'),
(2959, '2019-02-27', 20, '2019-02-27 08:36:46', '2019-02-27 12:05:01'),
(2960, '2019-02-27', 161, '2019-02-27 08:36:53', NULL),
(2961, '2019-02-27', 165, '2019-02-27 08:36:58', NULL),
(2962, '2019-02-27', 25, '2019-02-27 08:37:03', '2019-02-27 12:05:19'),
(2963, '2019-02-27', 43, '2019-02-27 08:37:09', '2019-02-27 12:59:41'),
(2964, '2019-02-27', 7, '2019-02-27 08:37:14', '2019-02-27 12:05:27'),
(2965, '2019-02-27', 67, '2019-02-27 08:37:27', '2019-02-27 11:35:57'),
(2966, '2019-02-27', 56, '2019-02-27 08:37:32', '2019-02-27 12:46:19'),
(2967, '2019-02-27', 133, '2019-02-27 08:37:37', '2019-02-27 11:31:52'),
(2968, '2019-02-27', 60, '2019-02-27 08:37:42', '2019-02-27 12:48:08'),
(2969, '2019-02-27', 80, '2019-02-27 08:37:47', '2019-02-27 10:32:53'),
(2970, '2019-02-27', 148, '2019-02-27 08:37:54', '2019-02-27 11:33:21'),
(2971, '2019-02-27', 66, '2019-02-27 08:37:58', '2019-02-27 12:48:44'),
(2972, '2019-02-27', 52, '2019-02-27 08:38:03', '2019-02-27 12:46:26'),
(2973, '2019-02-27', 128, '2019-02-27 08:38:08', '2019-02-27 11:32:54'),
(2974, '2019-02-27', 45, '2019-02-27 08:38:12', '2019-02-27 12:57:59'),
(2975, '2019-02-27', 160, '2019-02-27 08:38:22', '2019-02-27 10:34:04'),
(2976, '2019-02-27', 71, '2019-02-27 08:38:29', '2019-02-27 12:00:31'),
(2977, '2019-02-27', 113, '2019-02-27 08:38:41', '2019-02-27 10:18:45'),
(2978, '2019-02-27', 151, '2019-02-27 08:38:46', '2019-02-27 11:35:41'),
(2979, '2019-02-27', 110, '2019-02-27 08:39:20', '2019-02-27 10:45:00'),
(2980, '2019-02-27', 120, '2019-02-27 08:39:41', NULL),
(2981, '2019-02-27', 15, '2019-02-27 08:40:05', NULL),
(2982, '2019-02-27', 153, '2019-02-27 08:41:10', '2019-02-27 11:33:16'),
(2983, '2019-02-27', 135, '2019-02-27 08:41:28', '2019-02-27 11:31:49'),
(2984, '2019-02-27', 88, '2019-02-27 08:42:18', '2019-02-27 10:33:56'),
(2985, '2019-02-27', 77, '2019-02-27 08:45:32', '2019-02-27 10:32:30'),
(2986, '2019-02-27', 134, '2019-02-27 08:45:54', '2019-02-27 11:33:27'),
(2987, '2019-02-27', 183, '2019-02-27 10:16:21', '2019-02-27 12:47:28'),
(2988, '2019-02-27', 105, '2019-02-27 10:16:58', '2019-02-27 12:50:07'),
(2989, '2019-02-27', 39, '2019-02-27 10:18:35', NULL),
(2990, '2019-02-27', 29, '2019-02-27 10:20:06', NULL),
(2991, '2019-02-27', 31, '2019-02-27 10:20:12', NULL),
(2992, '2019-02-27', 40, '2019-02-27 10:26:47', '2019-02-27 12:44:59'),
(2993, '2019-02-27', 30, '2019-02-27 10:31:04', '2019-02-27 12:43:57'),
(2994, '2019-02-27', 76, '2019-02-27 10:32:46', NULL),
(2995, '2019-02-27', 79, '2019-02-27 10:33:24', NULL),
(2996, '2019-02-27', 94, '2019-02-27 10:33:33', NULL),
(2997, '2019-02-27', 111, '2019-02-27 10:34:37', '2019-02-27 12:47:52'),
(2998, '2019-02-27', 33, '2019-02-27 10:34:42', '2019-02-27 12:44:13'),
(2999, '2019-02-27', 42, '2019-02-27 10:35:29', '2019-02-27 12:43:45'),
(3000, '2019-02-27', 109, '2019-02-27 10:36:32', NULL),
(3001, '2019-02-27', 106, '2019-02-27 10:36:45', '2019-02-27 12:48:18'),
(3002, '2019-02-27', 102, '2019-02-27 10:37:12', '2019-02-27 12:48:24'),
(3003, '2019-02-27', 103, '2019-02-27 10:39:12', '2019-02-27 12:47:55'),
(3004, '2019-02-27', 104, '2019-02-27 10:40:11', '2019-02-27 12:48:01'),
(3005, '2019-02-27', 108, '2019-02-27 10:40:21', '2019-02-27 12:48:48'),
(3006, '2019-02-27', 41, '2019-02-27 10:45:05', NULL),
(3007, '2019-02-27', 36, '2019-02-27 10:50:04', '2019-02-27 12:44:05'),
(3008, '2019-02-27', 107, '2019-02-27 10:51:30', '2019-02-27 12:49:03'),
(3009, '2019-02-27', 149, '2019-02-27 10:53:11', '2019-02-27 12:44:52'),
(3010, '2019-02-27', 175, '2019-02-27 10:54:54', '2019-02-27 12:48:58'),
(3011, '2019-02-27', 143, '2019-02-27 11:32:01', NULL),
(3012, '2019-02-27', 132, '2019-02-27 11:32:32', NULL),
(3013, '2019-02-27', 164, '2019-02-27 12:04:48', NULL),
(3014, '2019-02-27', 24, '2019-02-27 12:05:16', NULL),
(3015, '2019-02-27', 28, '2019-02-27 12:44:09', NULL),
(3016, '2019-03-02', 96, '2019-03-02 07:56:14', '2019-03-02 10:48:00'),
(3017, '2019-03-02', 99, '2019-03-02 08:00:00', '2019-03-02 10:46:28'),
(3018, '2019-03-02', 72, '2019-03-02 08:02:51', NULL),
(3019, '2019-03-02', 168, '2019-03-02 08:02:58', '2019-03-02 12:39:34'),
(3020, '2019-03-02', 24, '2019-03-02 08:03:04', '2019-03-02 12:06:49'),
(3021, '2019-03-02', 5, '2019-03-02 08:03:13', NULL),
(3022, '2019-03-02', 16, '2019-03-02 08:03:18', NULL),
(3023, '2019-03-02', 101, '2019-03-02 08:03:21', '2019-03-02 10:48:08'),
(3024, '2019-03-02', 54, '2019-03-02 08:03:26', '2019-03-02 12:44:09'),
(3025, '2019-03-02', 46, '2019-03-02 08:03:31', NULL),
(3026, '2019-03-02', 69, '2019-03-02 08:03:38', NULL),
(3027, '2019-03-02', 70, '2019-03-02 08:03:43', '2019-03-02 12:47:36'),
(3028, '2019-03-02', 152, '2019-03-02 08:03:49', '2019-03-02 11:36:41'),
(3029, '2019-03-02', 114, '2019-03-02 08:05:49', '2019-03-02 10:40:07'),
(3030, '2019-03-02', 53, '2019-03-02 08:08:00', '2019-03-02 12:31:49'),
(3031, '2019-03-02', 92, '2019-03-02 08:09:45', '2019-03-02 10:47:06'),
(3032, '2019-03-02', 94, '2019-03-02 08:09:48', '2019-03-02 10:47:00'),
(3033, '2019-03-02', 143, '2019-03-02 08:12:30', NULL),
(3034, '2019-03-02', 91, '2019-03-02 08:12:37', '2019-03-02 10:47:23'),
(3035, '2019-03-02', 11, '2019-03-02 08:12:45', NULL),
(3036, '2019-03-02', 62, '2019-03-02 08:12:49', '2019-03-02 12:47:22'),
(3037, '2019-03-02', 22, '2019-03-02 08:12:59', NULL),
(3038, '2019-03-02', 173, '2019-03-02 08:13:04', '2019-03-02 12:31:12'),
(3039, '2019-03-02', 119, '2019-03-02 08:13:16', '2019-03-02 10:38:49'),
(3040, '2019-03-02', 90, '2019-03-02 08:13:19', '2019-03-02 10:47:51'),
(3041, '2019-03-02', 57, '2019-03-02 08:13:33', '2019-03-02 12:46:45'),
(3042, '2019-03-02', 128, '2019-03-02 08:13:42', '2019-03-02 11:35:55'),
(3043, '2019-03-02', 98, '2019-03-02 08:13:53', '2019-03-02 10:47:26'),
(3044, '2019-03-02', 165, '2019-03-02 08:14:03', NULL),
(3045, '2019-03-02', 182, '2019-03-02 08:14:07', '2019-03-02 12:05:11'),
(3046, '2019-03-02', 157, '2019-03-02 08:14:57', '2019-03-02 11:36:13'),
(3047, '2019-03-02', 133, '2019-03-02 08:15:28', '2019-03-02 11:35:23'),
(3048, '2019-03-02', 155, '2019-03-02 08:16:59', '2019-03-02 11:36:56'),
(3049, '2019-03-02', 93, '2019-03-02 08:17:08', '2019-03-02 10:46:46'),
(3050, '2019-03-02', 27, '2019-03-02 08:17:43', '2019-03-02 10:38:52'),
(3051, '2019-03-02', 115, '2019-03-02 08:20:06', '2019-03-02 10:39:14'),
(3052, '2019-03-02', 39, '2019-03-02 08:20:29', NULL),
(3053, '2019-03-02', 141, '2019-03-02 08:20:39', '2019-03-02 11:35:40'),
(3054, '2019-03-02', 135, '2019-03-02 08:22:09', '2019-03-02 11:35:49'),
(3055, '2019-03-02', 150, '2019-03-02 08:25:00', '2019-03-02 11:35:34'),
(3056, '2019-03-02', 85, '2019-03-02 08:25:25', '2019-03-02 11:18:48'),
(3057, '2019-03-02', 118, '2019-03-02 08:31:39', '2019-03-02 10:38:44'),
(3058, '2019-03-02', 84, '2019-03-02 08:31:48', '2019-03-02 10:47:56'),
(3059, '2019-03-02', 77, '2019-03-02 08:31:54', '2019-03-02 10:46:55'),
(3060, '2019-03-02', 9, '2019-03-02 08:32:17', NULL),
(3061, '2019-03-02', 15, '2019-03-02 08:32:32', NULL),
(3062, '2019-03-02', 25, '2019-03-02 08:32:38', '2019-03-02 12:09:44'),
(3063, '2019-03-02', 7, '2019-03-02 08:32:44', NULL),
(3064, '2019-03-02', 172, '2019-03-02 08:32:54', '2019-03-02 12:31:15'),
(3065, '2019-03-02', 43, '2019-03-02 08:32:59', NULL),
(3066, '2019-03-02', 68, '2019-03-02 08:33:11', NULL),
(3067, '2019-03-02', 38, '2019-03-02 08:33:20', NULL),
(3068, '2019-03-02', 20, '2019-03-02 08:33:27', NULL),
(3069, '2019-03-02', 97, '2019-03-02 08:33:42', '2019-03-02 10:48:14'),
(3070, '2019-03-02', 159, '2019-03-02 08:33:54', '2019-03-02 10:47:18'),
(3071, '2019-03-02', 142, '2019-03-02 08:34:00', '2019-03-02 11:36:08'),
(3072, '2019-03-02', 110, '2019-03-02 08:34:03', NULL),
(3073, '2019-03-02', 154, '2019-03-02 08:34:09', '2019-03-02 11:37:44'),
(3074, '2019-03-02', 66, '2019-03-02 08:34:21', '2019-03-02 12:47:38'),
(3075, '2019-03-02', 87, '2019-03-02 08:34:34', '2019-03-02 10:47:32'),
(3076, '2019-03-02', 120, '2019-03-02 08:34:54', NULL),
(3077, '2019-03-02', 95, '2019-03-02 08:34:58', '2019-03-02 10:46:38'),
(3078, '2019-03-02', 111, '2019-03-02 08:35:24', '2019-03-02 12:49:39'),
(3079, '2019-03-02', 75, '2019-03-02 08:36:09', NULL),
(3080, '2019-03-02', 31, '2019-03-02 08:36:30', '2019-03-02 10:39:35'),
(3081, '2019-03-02', 116, '2019-03-02 08:36:38', '2019-03-02 10:41:46'),
(3082, '2019-03-02', 123, '2019-03-02 08:36:42', '2019-03-02 11:36:49'),
(3083, '2019-03-02', 149, '2019-03-02 08:36:49', NULL),
(3084, '2019-03-02', 113, '2019-03-02 08:37:23', '2019-03-02 10:39:04'),
(3085, '2019-03-02', 71, '2019-03-02 08:38:58', '2019-03-02 12:47:54'),
(3086, '2019-03-02', 60, '2019-03-02 08:42:42', '2019-03-02 12:47:27'),
(3087, '2019-03-02', 140, '2019-03-02 08:43:23', NULL),
(3088, '2019-03-02', 134, '2019-03-02 08:48:49', '2019-03-02 11:37:10'),
(3089, '2019-03-02', 127, '2019-03-02 08:48:53', '2019-03-02 11:36:01'),
(3090, '2019-03-02', 174, '2019-03-02 09:11:55', '2019-03-02 11:03:18'),
(3091, '2019-03-02', 26, '2019-03-02 10:39:19', NULL),
(3092, '2019-03-02', 106, '2019-03-02 10:39:23', '2019-03-02 12:49:24'),
(3093, '2019-03-02', 30, '2019-03-02 10:39:57', NULL),
(3094, '2019-03-02', 112, '2019-03-02 10:40:16', NULL),
(3095, '2019-03-02', 40, '2019-03-02 10:40:23', NULL),
(3096, '2019-03-02', 175, '2019-03-02 10:40:43', '2019-03-02 12:50:03'),
(3097, '2019-03-02', 105, '2019-03-02 10:42:02', NULL),
(3098, '2019-03-02', 79, '2019-03-02 10:47:11', NULL),
(3099, '2019-03-02', 78, '2019-03-02 10:47:37', NULL),
(3100, '2019-03-02', 183, '2019-03-02 10:48:25', '2019-03-02 12:49:29'),
(3101, '2019-03-02', 107, '2019-03-02 10:51:41', '2019-03-02 12:50:16'),
(3102, '2019-03-02', 108, '2019-03-02 10:51:52', '2019-03-02 12:50:06'),
(3103, '2019-03-02', 35, '2019-03-02 10:58:00', '2019-03-02 12:36:55'),
(3104, '2019-03-02', 36, '2019-03-02 10:58:16', '2019-03-02 12:40:06'),
(3105, '2019-03-02', 104, '2019-03-02 11:00:43', '2019-03-02 12:49:47'),
(3106, '2019-03-02', 129, '2019-03-02 11:35:28', NULL),
(3107, '2019-03-02', 156, '2019-03-02 11:36:18', NULL),
(3108, '2019-03-02', 138, '2019-03-02 11:36:27', NULL),
(3109, '2019-03-02', 124, '2019-03-02 11:36:46', NULL),
(3110, '2019-03-02', 132, '2019-03-02 11:36:52', NULL),
(3111, '2019-03-02', 130, '2019-03-02 11:37:05', NULL),
(3112, '2019-03-02', 33, '2019-03-02 12:37:12', NULL),
(3113, '2019-03-02', 171, '2019-03-02 12:44:14', NULL),
(3114, '2019-03-02', 61, '2019-03-02 12:46:50', NULL),
(3115, '2019-03-02', 177, '2019-03-02 12:47:05', NULL),
(3116, '2019-03-02', 65, '2019-03-02 12:47:13', NULL),
(3117, '2019-03-02', 56, '2019-03-02 12:48:08', NULL),
(3118, '2019-03-03', 25, '2019-03-03 07:48:57', '2019-03-03 12:09:39'),
(3119, '2019-03-03', 65, '2019-03-03 07:49:08', '2019-03-03 12:51:21'),
(3120, '2019-03-03', 154, '2019-03-03 07:52:56', '2019-03-03 11:33:54'),
(3121, '2019-03-03', 147, '2019-03-03 07:55:14', NULL),
(3122, '2019-03-03', 55, '2019-03-03 07:55:19', '2019-03-03 12:52:16'),
(3123, '2019-03-03', 72, '2019-03-03 07:55:38', '2019-03-03 12:51:46'),
(3124, '2019-03-03', 152, '2019-03-03 07:56:00', '2019-03-03 11:35:06'),
(3125, '2019-03-03', 169, '2019-03-03 07:59:22', '2019-03-03 12:54:07'),
(3126, '2019-03-03', 176, '2019-03-03 07:59:35', '2019-03-03 12:51:42'),
(3127, '2019-03-03', 159, '2019-03-03 07:59:48', NULL),
(3128, '2019-03-03', 62, '2019-03-03 07:59:53', NULL),
(3129, '2019-03-03', 98, '2019-03-03 07:59:58', NULL),
(3130, '2019-03-03', 57, '2019-03-03 08:00:03', '2019-03-03 12:51:24'),
(3131, '2019-03-03', 96, '2019-03-03 08:00:10', '2019-03-03 10:37:03'),
(3132, '2019-03-03', 119, '2019-03-03 08:00:18', '2019-03-03 10:23:48'),
(3133, '2019-03-03', 141, '2019-03-03 08:01:25', '2019-03-03 11:33:50'),
(3134, '2019-03-03', 168, '2019-03-03 08:01:55', NULL),
(3135, '2019-03-03', 48, '2019-03-03 08:02:01', '2019-03-03 12:47:18'),
(3136, '2019-03-03', 124, '2019-03-03 08:02:07', '2019-03-03 11:35:31'),
(3137, '2019-03-03', 157, '2019-03-03 08:03:49', '2019-03-03 11:34:17'),
(3138, '2019-03-03', 99, '2019-03-03 08:04:12', NULL),
(3139, '2019-03-03', 92, '2019-03-03 08:05:49', NULL),
(3140, '2019-03-03', 95, '2019-03-03 08:07:11', '2019-03-03 10:37:54'),
(3141, '2019-03-03', 67, '2019-03-03 08:08:36', NULL),
(3142, '2019-03-03', 135, '2019-03-03 08:08:54', '2019-03-03 11:34:29'),
(3143, '2019-03-03', 78, '2019-03-03 08:08:58', '2019-03-03 10:38:58'),
(3144, '2019-03-03', 173, '2019-03-03 08:09:36', '2019-03-03 12:46:32'),
(3145, '2019-03-03', 37, '2019-03-03 08:09:50', '2019-03-03 10:23:11'),
(3146, '2019-03-03', 26, '2019-03-03 08:11:00', '2019-03-03 10:23:30'),
(3147, '2019-03-03', 86, '2019-03-03 08:11:11', '2019-03-03 10:38:20'),
(3148, '2019-03-03', 9, '2019-03-03 08:11:17', NULL),
(3149, '2019-03-03', 101, '2019-03-03 08:11:22', '2019-03-03 10:38:01'),
(3150, '2019-03-03', 126, '2019-03-03 08:11:27', NULL),
(3151, '2019-03-03', 138, '2019-03-03 08:11:32', '2019-03-03 11:34:45'),
(3152, '2019-03-03', 24, '2019-03-03 08:11:36', NULL),
(3153, '2019-03-03', 27, '2019-03-03 08:11:42', '2019-03-03 10:23:20'),
(3154, '2019-03-03', 100, '2019-03-03 08:11:56', '2019-03-03 10:39:22'),
(3155, '2019-03-03', 158, '2019-03-03 08:13:00', '2019-03-03 10:37:48'),
(3156, '2019-03-03', 145, '2019-03-03 08:13:51', '2019-03-03 11:33:56'),
(3157, '2019-03-03', 181, '2019-03-03 08:13:53', '2019-03-03 12:46:58'),
(3158, '2019-03-03', 93, '2019-03-03 08:13:58', '2019-03-03 10:38:36'),
(3159, '2019-03-03', 46, '2019-03-03 08:14:31', '2019-03-03 12:46:35'),
(3160, '2019-03-03', 84, '2019-03-03 08:14:39', NULL),
(3161, '2019-03-03', 171, '2019-03-03 08:14:52', '2019-03-03 12:46:40'),
(3162, '2019-03-03', 116, '2019-03-03 08:15:25', '2019-03-03 10:24:45'),
(3163, '2019-03-03', 123, '2019-03-03 08:17:02', '2019-03-03 11:35:26'),
(3164, '2019-03-03', 112, '2019-03-03 08:17:17', NULL),
(3165, '2019-03-03', 94, '2019-03-03 08:17:51', '2019-03-03 10:38:16'),
(3166, '2019-03-03', 51, '2019-03-03 08:19:07', NULL),
(3167, '2019-03-03', 17, '2019-03-03 08:22:36', '2019-03-03 10:23:08'),
(3168, '2019-03-03', 64, '2019-03-03 08:22:43', NULL),
(3169, '2019-03-03', 144, '2019-03-03 08:22:57', '2019-03-03 11:33:45'),
(3170, '2019-03-03', 178, '2019-03-03 08:23:06', '2019-03-03 10:25:05'),
(3171, '2019-03-03', 85, '2019-03-03 08:23:10', '2019-03-03 10:35:52'),
(3172, '2019-03-03', 97, '2019-03-03 08:23:18', '2019-03-03 10:39:28'),
(3173, '2019-03-03', 76, '2019-03-03 08:23:25', NULL),
(3174, '2019-03-03', 38, '2019-03-03 08:24:19', '2019-03-03 10:24:29'),
(3175, '2019-03-03', 146, '2019-03-03 08:27:10', '2019-03-03 11:34:22'),
(3176, '2019-03-03', 29, '2019-03-03 08:35:42', '2019-03-03 10:24:22'),
(3177, '2019-03-03', 87, '2019-03-03 08:35:47', NULL),
(3178, '2019-03-03', 118, '2019-03-03 08:35:58', '2019-03-03 10:23:27'),
(3179, '2019-03-03', 156, '2019-03-03 08:36:46', NULL),
(3180, '2019-03-03', 20, '2019-03-03 08:36:50', NULL),
(3181, '2019-03-03', 177, '2019-03-03 08:36:56', '2019-03-03 12:51:56'),
(3182, '2019-03-03', 139, '2019-03-03 08:37:10', '2019-03-03 11:35:21'),
(3183, '2019-03-03', 10, '2019-03-03 08:37:18', NULL),
(3184, '2019-03-03', 150, '2019-03-03 08:37:23', '2019-03-03 11:33:39'),
(3185, '2019-03-03', 66, '2019-03-03 08:37:28', '2019-03-03 12:51:35'),
(3186, '2019-03-03', 61, '2019-03-03 08:37:34', NULL),
(3187, '2019-03-03', 71, '2019-03-03 08:37:39', '2019-03-03 12:52:25'),
(3188, '2019-03-03', 69, '2019-03-03 08:37:45', '2019-03-03 12:52:20'),
(3189, '2019-03-03', 45, '2019-03-03 08:37:50', '2019-03-03 12:54:15'),
(3190, '2019-03-03', 70, '2019-03-03 08:37:58', '2019-03-03 12:52:39'),
(3191, '2019-03-03', 54, '2019-03-03 08:38:03', NULL),
(3192, '2019-03-03', 68, '2019-03-03 08:38:07', NULL),
(3193, '2019-03-03', 170, '2019-03-03 08:38:13', '2019-03-03 12:54:54'),
(3194, '2019-03-03', 179, '2019-03-03 08:38:17', '2019-03-03 12:54:02'),
(3195, '2019-03-03', 148, '2019-03-03 08:38:22', '2019-03-03 11:34:35'),
(3196, '2019-03-03', 162, '2019-03-03 08:38:26', NULL),
(3197, '2019-03-03', 5, '2019-03-03 08:38:30', NULL),
(3198, '2019-03-03', 133, '2019-03-03 08:38:36', '2019-03-03 11:33:36'),
(3199, '2019-03-03', 11, '2019-03-03 08:38:41', NULL),
(3200, '2019-03-03', 128, '2019-03-03 08:38:46', '2019-03-03 11:34:08'),
(3201, '2019-03-03', 161, '2019-03-03 08:38:50', '2019-03-03 12:09:21'),
(3202, '2019-03-03', 180, '2019-03-03 08:38:58', '2019-03-03 11:35:10'),
(3203, '2019-03-03', 88, '2019-03-03 08:39:03', '2019-03-03 10:39:09'),
(3204, '2019-03-03', 121, '2019-03-03 08:39:09', '2019-03-03 10:23:38'),
(3205, '2019-03-03', 60, '2019-03-03 08:39:17', '2019-03-03 12:52:44'),
(3206, '2019-03-03', 113, '2019-03-03 08:39:33', '2019-03-03 10:23:14'),
(3207, '2019-03-03', 115, '2019-03-03 08:39:45', '2019-03-03 10:24:08'),
(3208, '2019-03-03', 122, '2019-03-03 08:41:31', '2019-03-03 10:24:37'),
(3209, '2019-03-03', 134, '2019-03-03 08:48:54', '2019-03-03 11:35:15'),
(3210, '2019-03-03', 58, '2019-03-03 08:51:01', '2019-03-03 12:52:06'),
(3211, '2019-03-03', 77, '2019-03-03 08:51:28', '2019-03-03 10:38:10'),
(3212, '2019-03-03', 160, '2019-03-03 08:51:34', '2019-03-03 10:38:05'),
(3213, '2019-03-03', 105, '2019-03-03 10:11:24', NULL),
(3214, '2019-03-03', 22, '2019-03-03 10:23:59', NULL),
(3215, '2019-03-03', 39, '2019-03-03 10:24:54', NULL),
(3216, '2019-03-03', 114, '2019-03-03 10:25:10', NULL),
(3217, '2019-03-03', 40, '2019-03-03 10:25:43', '2019-03-03 12:48:36'),
(3218, '2019-03-03', 104, '2019-03-03 10:29:16', '2019-03-03 12:54:44'),
(3219, '2019-03-03', 111, '2019-03-03 10:31:05', '2019-03-03 12:54:23'),
(3220, '2019-03-03', 33, '2019-03-03 10:31:43', NULL),
(3221, '2019-03-03', 42, '2019-03-03 10:31:52', '2019-03-03 12:48:22'),
(3222, '2019-03-03', 106, '2019-03-03 10:33:25', '2019-03-03 12:55:21'),
(3223, '2019-03-03', 30, '2019-03-03 10:34:27', NULL),
(3224, '2019-03-03', 109, '2019-03-03 10:36:33', '2019-03-03 12:54:27'),
(3225, '2019-03-03', 102, '2019-03-03 10:39:05', '2019-03-03 12:55:16'),
(3226, '2019-03-03', 28, '2019-03-03 10:39:45', NULL),
(3227, '2019-03-03', 149, '2019-03-03 10:44:02', '2019-03-03 12:49:46'),
(3228, '2019-03-03', 183, '2019-03-03 10:45:09', '2019-03-03 12:54:31');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(3229, '2019-03-03', 103, '2019-03-03 10:47:21', '2019-03-03 12:55:37'),
(3230, '2019-03-03', 107, '2019-03-03 10:49:25', '2019-03-03 12:55:56'),
(3231, '2019-03-03', 36, '2019-03-03 11:06:42', NULL),
(3232, '2019-03-03', 35, '2019-03-03 11:06:55', '2019-03-03 12:48:30'),
(3233, '2019-03-03', 143, '2019-03-03 11:34:01', NULL),
(3234, '2019-03-03', 137, '2019-03-03 11:34:40', NULL),
(3235, '2019-03-03', 132, '2019-03-03 11:34:50', NULL),
(3236, '2019-03-03', 130, '2019-03-03 11:34:55', NULL),
(3237, '2019-03-03', 125, '2019-03-03 11:35:00', NULL),
(3238, '2019-03-03', 166, '2019-03-03 12:08:50', NULL),
(3239, '2019-03-03', 59, '2019-03-03 13:24:57', NULL),
(3240, '2019-03-04', 154, '2019-03-04 07:44:34', '2019-03-04 11:36:20'),
(3241, '2019-03-04', 24, '2019-03-04 07:50:32', '2019-03-04 12:09:23'),
(3242, '2019-03-04', 55, '2019-03-04 07:50:53', NULL),
(3243, '2019-03-04', 18, '2019-03-04 07:50:58', '2019-03-04 12:09:32'),
(3244, '2019-03-04', 114, '2019-03-04 07:51:07', NULL),
(3245, '2019-03-04', 72, '2019-03-04 07:52:34', NULL),
(3246, '2019-03-04', 152, '2019-03-04 07:53:03', '2019-03-04 11:38:45'),
(3247, '2019-03-04', 31, '2019-03-04 07:54:52', '2019-03-04 10:27:02'),
(3248, '2019-03-04', 96, '2019-03-04 07:56:47', '2019-03-04 10:39:41'),
(3249, '2019-03-04', 157, '2019-03-04 07:59:15', '2019-03-04 11:36:40'),
(3250, '2019-03-04', 57, '2019-03-04 07:59:21', '2019-03-04 12:54:12'),
(3251, '2019-03-04', 98, '2019-03-04 07:59:24', '2019-03-04 10:38:34'),
(3252, '2019-03-04', 62, '2019-03-04 07:59:28', '2019-03-04 12:55:15'),
(3253, '2019-03-04', 176, '2019-03-04 08:00:10', '2019-03-04 12:48:29'),
(3254, '2019-03-04', 168, '2019-03-04 08:00:55', '2019-03-04 12:54:58'),
(3255, '2019-03-04', 65, '2019-03-04 08:01:14', '2019-03-04 12:55:18'),
(3256, '2019-03-04', 99, '2019-03-04 08:01:44', '2019-03-04 10:38:20'),
(3257, '2019-03-04', 92, '2019-03-04 08:03:40', '2019-03-04 10:38:58'),
(3258, '2019-03-04', 141, '2019-03-04 08:03:54', '2019-03-04 11:35:41'),
(3259, '2019-03-04', 155, '2019-03-04 08:03:59', '2019-03-04 11:37:18'),
(3260, '2019-03-04', 169, '2019-03-04 08:05:48', NULL),
(3261, '2019-03-04', 25, '2019-03-04 08:06:04', '2019-03-04 12:09:29'),
(3262, '2019-03-04', 124, '2019-03-04 08:06:17', NULL),
(3263, '2019-03-04', 173, '2019-03-04 08:07:48', '2019-03-04 12:55:06'),
(3264, '2019-03-04', 95, '2019-03-04 08:08:16', '2019-03-04 10:38:39'),
(3265, '2019-03-04', 48, '2019-03-04 08:08:35', '2019-03-04 12:48:32'),
(3266, '2019-03-04', 86, '2019-03-04 08:09:04', '2019-03-04 10:38:55'),
(3267, '2019-03-04', 38, '2019-03-04 08:09:25', NULL),
(3268, '2019-03-04', 101, '2019-03-04 08:09:54', '2019-03-04 10:39:22'),
(3269, '2019-03-04', 126, '2019-03-04 08:10:03', NULL),
(3270, '2019-03-04', 118, '2019-03-04 08:10:13', '2019-03-04 10:25:43'),
(3271, '2019-03-04', 142, '2019-03-04 08:10:22', '2019-03-04 11:37:03'),
(3272, '2019-03-04', 80, '2019-03-04 08:11:30', NULL),
(3273, '2019-03-04', 145, '2019-03-04 08:11:55', '2019-03-04 11:36:25'),
(3274, '2019-03-04', 181, '2019-03-04 08:12:00', '2019-03-04 12:55:50'),
(3275, '2019-03-04', 46, '2019-03-04 08:12:11', '2019-03-04 12:55:00'),
(3276, '2019-03-04', 143, '2019-03-04 08:12:47', '2019-03-04 11:35:50'),
(3277, '2019-03-04', 93, '2019-03-04 08:13:04', '2019-03-04 10:39:56'),
(3278, '2019-03-04', 144, '2019-03-04 08:13:15', '2019-03-04 11:35:44'),
(3279, '2019-03-04', 159, '2019-03-04 08:13:42', '2019-03-04 10:39:07'),
(3280, '2019-03-04', 54, '2019-03-04 08:13:48', '2019-03-04 12:55:45'),
(3281, '2019-03-04', 69, '2019-03-04 08:13:54', NULL),
(3282, '2019-03-04', 63, '2019-03-04 08:14:22', '2019-03-04 12:53:54'),
(3283, '2019-03-04', 66, '2019-03-04 08:14:25', NULL),
(3284, '2019-03-04', 45, '2019-03-04 08:14:40', '2019-03-04 12:48:10'),
(3285, '2019-03-04', 70, '2019-03-04 08:15:05', '2019-03-04 12:55:40'),
(3286, '2019-03-04', 23, '2019-03-04 08:15:23', '2019-03-04 12:09:53'),
(3287, '2019-03-04', 34, '2019-03-04 08:15:28', '2019-03-04 10:27:10'),
(3288, '2019-03-04', 9, '2019-03-04 08:15:43', '2019-03-04 12:10:34'),
(3289, '2019-03-04', 5, '2019-03-04 08:15:54', '2019-03-04 12:10:27'),
(3290, '2019-03-04', 16, '2019-03-04 08:16:01', '2019-03-04 12:09:44'),
(3291, '2019-03-04', 150, '2019-03-04 08:16:28', '2019-03-04 11:36:51'),
(3292, '2019-03-04', 59, '2019-03-04 08:16:33', NULL),
(3293, '2019-03-04', 116, '2019-03-04 08:17:39', NULL),
(3294, '2019-03-04', 177, '2019-03-04 08:18:23', NULL),
(3295, '2019-03-04', 135, '2019-03-04 08:18:59', '2019-03-04 11:36:13'),
(3296, '2019-03-04', 139, '2019-03-04 08:19:42', '2019-03-04 11:37:08'),
(3297, '2019-03-04', 172, '2019-03-04 08:19:48', '2019-03-04 12:53:59'),
(3298, '2019-03-04', 133, '2019-03-04 08:19:51', '2019-03-04 11:35:55'),
(3299, '2019-03-04', 171, '2019-03-04 08:19:54', '2019-03-04 12:55:55'),
(3300, '2019-03-04', 94, '2019-03-04 08:20:33', '2019-03-04 10:40:13'),
(3301, '2019-03-04', 138, '2019-03-04 08:21:15', '2019-03-04 11:36:33'),
(3302, '2019-03-04', 68, '2019-03-04 08:21:53', '2019-03-04 12:55:23'),
(3303, '2019-03-04', 100, '2019-03-04 08:22:08', '2019-03-04 10:38:31'),
(3304, '2019-03-04', 148, '2019-03-04 08:27:10', '2019-03-04 11:36:00'),
(3305, '2019-03-04', 75, '2019-03-04 08:27:15', NULL),
(3306, '2019-03-04', 178, '2019-03-04 08:27:41', NULL),
(3307, '2019-03-04', 97, '2019-03-04 08:27:46', '2019-03-04 10:40:36'),
(3308, '2019-03-04', 87, '2019-03-04 08:31:49', '2019-03-04 10:39:17'),
(3309, '2019-03-04', 26, '2019-03-04 08:32:15', NULL),
(3310, '2019-03-04', 29, '2019-03-04 08:32:27', '2019-03-04 10:27:15'),
(3311, '2019-03-04', 37, '2019-03-04 08:32:33', NULL),
(3312, '2019-03-04', 84, '2019-03-04 08:32:37', '2019-03-04 10:39:36'),
(3313, '2019-03-04', 125, '2019-03-04 08:32:42', '2019-03-04 11:36:54'),
(3314, '2019-03-04', 22, '2019-03-04 08:33:08', '2019-03-04 10:27:32'),
(3315, '2019-03-04', 180, '2019-03-04 08:33:22', '2019-03-04 11:37:15'),
(3316, '2019-03-04', 91, '2019-03-04 08:33:26', '2019-03-04 10:40:58'),
(3317, '2019-03-04', 11, '2019-03-04 08:33:30', '2019-03-04 12:09:39'),
(3318, '2019-03-04', 15, '2019-03-04 08:33:36', NULL),
(3319, '2019-03-04', 128, '2019-03-04 08:33:44', '2019-03-04 11:36:05'),
(3320, '2019-03-04', 43, '2019-03-04 08:33:49', '2019-03-04 12:48:13'),
(3321, '2019-03-04', 179, '2019-03-04 08:33:53', NULL),
(3322, '2019-03-04', 71, '2019-03-04 08:33:59', '2019-03-04 12:55:27'),
(3323, '2019-03-04', 61, '2019-03-04 08:34:04', NULL),
(3324, '2019-03-04', 130, '2019-03-04 08:34:20', '2019-03-04 11:39:59'),
(3325, '2019-03-04', 27, '2019-03-04 08:34:26', '2019-03-04 10:25:18'),
(3326, '2019-03-04', 10, '2019-03-04 08:34:32', NULL),
(3327, '2019-03-04', 58, '2019-03-04 08:34:48', '2019-03-04 12:50:40'),
(3328, '2019-03-04', 182, '2019-03-04 08:34:51', '2019-03-04 12:09:17'),
(3329, '2019-03-04', 113, '2019-03-04 08:35:39', '2019-03-04 10:25:14'),
(3330, '2019-03-04', 52, '2019-03-04 08:35:59', '2019-03-04 12:55:09'),
(3331, '2019-03-04', 76, '2019-03-04 08:36:08', '2019-03-04 10:38:45'),
(3332, '2019-03-04', 77, '2019-03-04 08:40:35', '2019-03-04 10:38:25'),
(3333, '2019-03-04', 121, '2019-03-04 08:43:37', '2019-03-04 10:26:02'),
(3334, '2019-03-04', 134, '2019-03-04 08:48:12', '2019-03-04 11:37:25'),
(3335, '2019-03-04', 174, '2019-03-04 10:21:59', '2019-03-04 11:29:12'),
(3336, '2019-03-04', 39, '2019-03-04 10:27:21', NULL),
(3337, '2019-03-04', 119, '2019-03-04 10:27:36', NULL),
(3338, '2019-03-04', 30, '2019-03-04 10:28:33', '2019-03-04 12:42:54'),
(3339, '2019-03-04', 111, '2019-03-04 10:28:40', '2019-03-04 12:52:19'),
(3340, '2019-03-04', 33, '2019-03-04 10:28:44', '2019-03-04 12:45:27'),
(3341, '2019-03-04', 42, '2019-03-04 10:28:51', '2019-03-04 12:43:19'),
(3342, '2019-03-04', 40, '2019-03-04 10:28:55', '2019-03-04 12:43:06'),
(3343, '2019-03-04', 105, '2019-03-04 10:29:59', '2019-03-04 12:53:08'),
(3344, '2019-03-04', 17, '2019-03-04 10:31:50', NULL),
(3345, '2019-03-04', 109, '2019-03-04 10:33:33', '2019-03-04 12:52:08'),
(3346, '2019-03-04', 160, '2019-03-04 10:39:12', NULL),
(3347, '2019-03-04', 90, '2019-03-04 10:39:29', NULL),
(3348, '2019-03-04', 85, '2019-03-04 10:40:03', NULL),
(3349, '2019-03-04', 149, '2019-03-04 10:41:09', '2019-03-04 12:43:28'),
(3350, '2019-03-04', 104, '2019-03-04 10:41:58', '2019-03-04 12:52:28'),
(3351, '2019-03-04', 106, '2019-03-04 10:42:10', '2019-03-04 12:52:42'),
(3352, '2019-03-04', 28, '2019-03-04 10:42:32', '2019-03-04 12:43:03'),
(3353, '2019-03-04', 102, '2019-03-04 10:42:46', '2019-03-04 12:53:03'),
(3354, '2019-03-04', 107, '2019-03-04 10:44:58', '2019-03-04 12:53:20'),
(3355, '2019-03-04', 183, '2019-03-04 10:46:38', '2019-03-04 12:52:11'),
(3356, '2019-03-04', 108, '2019-03-04 10:46:51', '2019-03-04 12:53:16'),
(3357, '2019-03-04', 175, '2019-03-04 10:54:40', '2019-03-04 12:52:01'),
(3358, '2019-03-04', 35, '2019-03-04 11:00:18', '2019-03-04 12:42:57'),
(3359, '2019-03-04', 36, '2019-03-04 11:00:25', '2019-03-04 12:43:44'),
(3360, '2019-03-04', 129, '2019-03-04 11:35:37', NULL),
(3361, '2019-03-04', 156, '2019-03-04 11:36:46', NULL),
(3362, '2019-03-04', 146, '2019-03-04 11:42:41', NULL),
(3363, '2019-03-04', 164, '2019-03-04 12:09:56', NULL),
(3364, '2019-03-04', 56, '2019-03-04 12:55:34', NULL),
(3365, '2019-03-05', 72, '2019-03-05 07:57:10', '2019-03-05 12:46:23'),
(3366, '2019-03-05', 99, '2019-03-05 07:57:30', '2019-03-05 10:34:04'),
(3367, '2019-03-05', 18, '2019-03-05 07:57:35', '2019-03-05 12:06:29'),
(3368, '2019-03-05', 62, '2019-03-05 07:57:46', '2019-03-05 12:46:52'),
(3369, '2019-03-05', 98, '2019-03-05 07:57:49', '2019-03-05 10:34:06'),
(3370, '2019-03-05', 152, '2019-03-05 07:58:00', '2019-03-05 11:35:39'),
(3371, '2019-03-05', 57, '2019-03-05 07:58:13', NULL),
(3372, '2019-03-05', 176, '2019-03-05 07:58:15', '2019-03-05 13:04:57'),
(3373, '2019-03-05', 119, '2019-03-05 07:58:23', '2019-03-05 10:26:14'),
(3374, '2019-03-05', 65, '2019-03-05 08:01:08', NULL),
(3375, '2019-03-05', 96, '2019-03-05 08:01:29', '2019-03-05 10:35:01'),
(3376, '2019-03-05', 157, '2019-03-05 08:01:53', '2019-03-05 11:34:45'),
(3377, '2019-03-05', 155, '2019-03-05 08:02:02', '2019-03-05 11:35:13'),
(3378, '2019-03-05', 168, '2019-03-05 08:02:42', '2019-03-05 12:50:30'),
(3379, '2019-03-05', 169, '2019-03-05 08:03:02', NULL),
(3380, '2019-03-05', 92, '2019-03-05 08:05:04', '2019-03-05 10:33:33'),
(3381, '2019-03-05', 31, '2019-03-05 08:06:49', '2019-03-05 10:25:42'),
(3382, '2019-03-05', 39, '2019-03-05 08:09:40', NULL),
(3383, '2019-03-05', 137, '2019-03-05 08:11:49', '2019-03-05 11:33:48'),
(3384, '2019-03-05', 126, '2019-03-05 08:11:57', '2019-03-05 11:34:28'),
(3385, '2019-03-05', 143, '2019-03-05 08:12:13', '2019-03-05 11:34:13'),
(3386, '2019-03-05', 150, '2019-03-05 08:12:19', '2019-03-05 11:34:34'),
(3387, '2019-03-05', 34, '2019-03-05 08:13:09', '2019-03-05 10:25:02'),
(3388, '2019-03-05', 78, '2019-03-05 08:14:27', '2019-03-05 10:34:19'),
(3389, '2019-03-05', 172, '2019-03-05 08:14:51', '2019-03-05 12:50:21'),
(3390, '2019-03-05', 95, '2019-03-05 08:16:07', '2019-03-05 10:35:17'),
(3391, '2019-03-05', 142, '2019-03-05 08:16:16', '2019-03-05 11:35:18'),
(3392, '2019-03-05', 158, '2019-03-05 08:16:21', '2019-03-05 10:35:32'),
(3393, '2019-03-05', 26, '2019-03-05 08:16:37', '2019-03-05 10:24:47'),
(3394, '2019-03-05', 159, '2019-03-05 08:16:50', '2019-03-05 10:34:40'),
(3395, '2019-03-05', 93, '2019-03-05 08:16:58', '2019-03-05 10:34:36'),
(3396, '2019-03-05', 173, '2019-03-05 08:17:03', '2019-03-05 12:51:04'),
(3397, '2019-03-05', 141, '2019-03-05 08:17:09', '2019-03-05 11:35:04'),
(3398, '2019-03-05', 85, '2019-03-05 08:17:45', '2019-03-05 10:36:11'),
(3399, '2019-03-05', 84, '2019-03-05 08:18:10', '2019-03-05 10:34:45'),
(3400, '2019-03-05', 48, '2019-03-05 08:18:17', NULL),
(3401, '2019-03-05', 27, '2019-03-05 08:18:33', '2019-03-05 10:25:27'),
(3402, '2019-03-05', 145, '2019-03-05 08:19:21', '2019-03-05 11:34:10'),
(3403, '2019-03-05', 181, '2019-03-05 08:19:25', '2019-03-05 12:47:02'),
(3404, '2019-03-05', 116, '2019-03-05 08:19:35', '2019-03-05 10:25:53'),
(3405, '2019-03-05', 67, '2019-03-05 08:19:57', '2019-03-05 12:45:49'),
(3406, '2019-03-05', 100, '2019-03-05 08:20:32', '2019-03-05 10:33:54'),
(3407, '2019-03-05', 86, '2019-03-05 08:21:02', '2019-03-05 10:34:22'),
(3408, '2019-03-05', 46, '2019-03-05 08:21:06', NULL),
(3409, '2019-03-05', 123, '2019-03-05 08:21:17', '2019-03-05 11:35:42'),
(3410, '2019-03-05', 144, '2019-03-05 08:21:31', '2019-03-05 11:34:03'),
(3411, '2019-03-05', 54, '2019-03-05 08:21:44', '2019-03-05 12:47:08'),
(3412, '2019-03-05', 17, '2019-03-05 08:22:08', '2019-03-05 10:25:21'),
(3413, '2019-03-05', 76, '2019-03-05 08:22:14', '2019-03-05 10:34:14'),
(3414, '2019-03-05', 77, '2019-03-05 08:23:17', '2019-03-05 10:34:09'),
(3415, '2019-03-05', 29, '2019-03-05 08:23:26', '2019-03-05 10:25:31'),
(3416, '2019-03-05', 15, '2019-03-05 08:24:23', NULL),
(3417, '2019-03-05', 14, '2019-03-05 08:25:08', '2019-03-05 12:20:42'),
(3418, '2019-03-05', 9, '2019-03-05 08:25:43', '2019-03-05 12:10:23'),
(3419, '2019-03-05', 177, '2019-03-05 08:25:46', '2019-03-05 12:45:55'),
(3420, '2019-03-05', 146, '2019-03-05 08:33:16', '2019-03-05 11:34:51'),
(3421, '2019-03-05', 125, '2019-03-05 08:33:20', '2019-03-05 11:35:25'),
(3422, '2019-03-05', 91, '2019-03-05 08:33:29', '2019-03-05 10:34:26'),
(3423, '2019-03-05', 22, '2019-03-05 08:33:35', '2019-03-05 10:24:55'),
(3424, '2019-03-05', 97, '2019-03-05 08:33:44', '2019-03-05 10:36:15'),
(3425, '2019-03-05', 94, '2019-03-05 08:33:48', '2019-03-05 10:36:03'),
(3426, '2019-03-05', 118, '2019-03-05 08:34:01', '2019-03-05 10:24:32'),
(3427, '2019-03-05', 140, '2019-03-05 08:34:09', NULL),
(3428, '2019-03-05', 6, '2019-03-05 08:34:33', NULL),
(3429, '2019-03-05', 66, '2019-03-05 08:34:36', NULL),
(3430, '2019-03-05', 10, '2019-03-05 08:34:44', NULL),
(3431, '2019-03-05', 25, '2019-03-05 08:34:49', '2019-03-05 12:07:02'),
(3432, '2019-03-05', 75, '2019-03-05 08:34:54', NULL),
(3433, '2019-03-05', 70, '2019-03-05 08:34:58', '2019-03-05 12:46:00'),
(3434, '2019-03-05', 171, '2019-03-05 08:35:04', '2019-03-05 12:50:35'),
(3435, '2019-03-05', 179, '2019-03-05 08:35:08', NULL),
(3436, '2019-03-05', 139, '2019-03-05 08:35:13', '2019-03-05 11:34:25'),
(3437, '2019-03-05', 51, '2019-03-05 08:35:18', NULL),
(3438, '2019-03-05', 170, '2019-03-05 08:35:23', '2019-03-05 12:51:11'),
(3439, '2019-03-05', 60, '2019-03-05 08:35:26', '2019-03-05 12:46:47'),
(3440, '2019-03-05', 71, '2019-03-05 08:35:35', '2019-03-05 12:46:57'),
(3441, '2019-03-05', 11, '2019-03-05 08:35:40', NULL),
(3442, '2019-03-05', 45, '2019-03-05 08:35:44', NULL),
(3443, '2019-03-05', 180, '2019-03-05 08:35:49', '2019-03-05 11:34:42'),
(3444, '2019-03-05', 166, '2019-03-05 08:35:53', '2019-03-05 12:06:33'),
(3445, '2019-03-05', 56, '2019-03-05 08:35:58', NULL),
(3446, '2019-03-05', 80, '2019-03-05 08:36:07', '2019-03-05 10:33:19'),
(3447, '2019-03-05', 160, '2019-03-05 08:36:20', '2019-03-05 10:34:31'),
(3448, '2019-03-05', 68, '2019-03-05 08:36:33', '2019-03-05 11:21:09'),
(3449, '2019-03-05', 88, '2019-03-05 08:36:45', '2019-03-05 10:35:27'),
(3450, '2019-03-05', 133, '2019-03-05 08:37:03', '2019-03-05 11:33:55'),
(3451, '2019-03-05', 61, '2019-03-05 08:37:46', '2019-03-05 12:58:46'),
(3452, '2019-03-05', 52, '2019-03-05 08:38:22', '2019-03-05 12:45:39'),
(3453, '2019-03-05', 79, '2019-03-05 08:40:10', '2019-03-05 10:35:41'),
(3454, '2019-03-05', 162, '2019-03-05 08:40:48', NULL),
(3455, '2019-03-05', 113, '2019-03-05 08:40:52', '2019-03-05 10:24:40'),
(3456, '2019-03-05', 151, '2019-03-05 08:42:22', '2019-03-05 11:35:00'),
(3457, '2019-03-05', 121, '2019-03-05 08:45:49', '2019-03-05 10:25:39'),
(3458, '2019-03-05', 135, '2019-03-05 08:45:56', '2019-03-05 11:34:20'),
(3459, '2019-03-05', 156, '2019-03-05 08:47:41', NULL),
(3460, '2019-03-05', 105, '2019-03-05 10:12:41', NULL),
(3461, '2019-03-05', 30, '2019-03-05 10:24:13', '2019-03-05 12:43:48'),
(3462, '2019-03-05', 109, '2019-03-05 10:29:40', '2019-03-05 12:51:44'),
(3463, '2019-03-05', 40, '2019-03-05 10:31:55', '2019-03-05 12:43:43'),
(3464, '2019-03-05', 90, '2019-03-05 10:34:50', NULL),
(3465, '2019-03-05', 101, '2019-03-05 10:35:22', NULL),
(3466, '2019-03-05', 102, '2019-03-05 10:35:47', '2019-03-05 12:51:34'),
(3467, '2019-03-05', 108, '2019-03-05 10:37:28', '2019-03-05 12:51:52'),
(3468, '2019-03-05', 111, '2019-03-05 10:38:27', '2019-03-05 12:51:26'),
(3469, '2019-03-05', 149, '2019-03-05 10:38:31', '2019-03-05 12:44:11'),
(3470, '2019-03-05', 106, '2019-03-05 10:38:35', '2019-03-05 12:51:41'),
(3471, '2019-03-05', 33, '2019-03-05 10:39:09', '2019-03-05 12:45:00'),
(3472, '2019-03-05', 42, '2019-03-05 10:39:19', NULL),
(3473, '2019-03-05', 103, '2019-03-05 10:40:50', '2019-03-05 12:52:04'),
(3474, '2019-03-05', 104, '2019-03-05 10:40:55', '2019-03-05 12:51:58'),
(3475, '2019-03-05', 183, '2019-03-05 10:43:10', '2019-03-05 12:51:49'),
(3476, '2019-03-05', 35, '2019-03-05 10:57:45', NULL),
(3477, '2019-03-05', 36, '2019-03-05 10:57:56', NULL),
(3478, '2019-03-05', 132, '2019-03-05 11:34:37', NULL),
(3479, '2019-03-05', 129, '2019-03-05 11:34:54', NULL),
(3480, '2019-03-05', 136, '2019-03-05 11:35:09', NULL),
(3481, '2019-03-05', 23, '2019-03-05 12:12:33', NULL),
(3482, '2019-03-05', 28, '2019-03-05 12:46:04', NULL),
(3483, '2019-03-05', 59, '2019-03-05 13:34:14', NULL),
(3484, '2019-03-06', 72, '2019-03-06 07:52:16', '2019-03-06 12:37:57'),
(3485, '2019-03-06', 18, '2019-03-06 07:52:26', '2019-03-06 12:05:51'),
(3486, '2019-03-06', 55, '2019-03-06 07:52:37', '2019-03-06 12:36:40'),
(3487, '2019-03-06', 152, '2019-03-06 07:52:54', '2019-03-06 11:30:44'),
(3488, '2019-03-06', 57, '2019-03-06 07:56:29', '2019-03-06 12:37:04'),
(3489, '2019-03-06', 119, '2019-03-06 07:56:41', '2019-03-06 10:22:12'),
(3490, '2019-03-06', 96, '2019-03-06 07:57:48', '2019-03-06 10:35:45'),
(3491, '2019-03-06', 99, '2019-03-06 08:00:24', '2019-03-06 10:33:32'),
(3492, '2019-03-06', 168, '2019-03-06 08:00:34', '2019-03-06 12:50:28'),
(3493, '2019-03-06', 157, '2019-03-06 08:00:51', '2019-03-06 11:29:46'),
(3494, '2019-03-06', 62, '2019-03-06 08:01:29', '2019-03-06 12:36:32'),
(3495, '2019-03-06', 98, '2019-03-06 08:01:35', '2019-03-06 10:34:19'),
(3496, '2019-03-06', 155, '2019-03-06 08:02:55', NULL),
(3497, '2019-03-06', 167, '2019-03-06 08:04:59', NULL),
(3498, '2019-03-06', 169, '2019-03-06 08:05:04', '2019-03-06 12:50:35'),
(3499, '2019-03-06', 92, '2019-03-06 08:05:21', '2019-03-06 10:33:22'),
(3500, '2019-03-06', 95, '2019-03-06 08:07:48', '2019-03-06 10:33:55'),
(3501, '2019-03-06', 31, '2019-03-06 08:09:36', '2019-03-06 10:22:25'),
(3502, '2019-03-06', 159, '2019-03-06 08:09:57', '2019-03-06 10:33:50'),
(3503, '2019-03-06', 173, '2019-03-06 08:10:49', '2019-03-06 12:50:22'),
(3504, '2019-03-06', 150, '2019-03-06 08:10:55', '2019-03-06 11:29:50'),
(3505, '2019-03-06', 86, '2019-03-06 08:14:11', '2019-03-06 10:34:00'),
(3506, '2019-03-06', 142, '2019-03-06 08:14:44', NULL),
(3507, '2019-03-06', 141, '2019-03-06 08:14:57', '2019-03-06 11:29:14'),
(3508, '2019-03-06', 27, '2019-03-06 08:15:04', '2019-03-06 10:21:14'),
(3509, '2019-03-06', 29, '2019-03-06 08:15:44', '2019-03-06 10:21:41'),
(3510, '2019-03-06', 140, '2019-03-06 08:15:46', '2019-03-06 11:30:22'),
(3511, '2019-03-06', 154, '2019-03-06 08:15:57', '2019-03-06 11:30:03'),
(3512, '2019-03-06', 158, '2019-03-06 08:16:13', '2019-03-06 10:33:45'),
(3513, '2019-03-06', 85, '2019-03-06 08:17:20', '2019-03-06 10:34:07'),
(3514, '2019-03-06', 172, '2019-03-06 08:17:25', '2019-03-06 12:49:56'),
(3515, '2019-03-06', 67, '2019-03-06 08:17:57', NULL),
(3516, '2019-03-06', 145, '2019-03-06 08:18:03', '2019-03-06 11:29:28'),
(3517, '2019-03-06', 181, '2019-03-06 08:18:08', '2019-03-06 12:48:33'),
(3518, '2019-03-06', 9, '2019-03-06 08:18:16', '2019-03-06 12:06:19'),
(3519, '2019-03-06', 101, '2019-03-06 08:18:21', '2019-03-06 10:35:40'),
(3520, '2019-03-06', 34, '2019-03-06 08:18:42', '2019-03-06 10:23:33'),
(3521, '2019-03-06', 137, '2019-03-06 08:19:22', '2019-03-06 11:29:59'),
(3522, '2019-03-06', 93, '2019-03-06 08:19:43', '2019-03-06 10:34:35'),
(3523, '2019-03-06', 170, '2019-03-06 08:19:53', '2019-03-06 12:51:21'),
(3524, '2019-03-06', 132, '2019-03-06 08:20:03', NULL),
(3525, '2019-03-06', 133, '2019-03-06 08:20:06', '2019-03-06 11:29:53'),
(3526, '2019-03-06', 78, '2019-03-06 08:20:11', NULL),
(3527, '2019-03-06', 146, '2019-03-06 08:20:22', NULL),
(3528, '2019-03-06', 94, '2019-03-06 08:21:19', '2019-03-06 10:35:17'),
(3529, '2019-03-06', 129, '2019-03-06 08:21:36', NULL),
(3530, '2019-03-06', 84, '2019-03-06 08:21:42', '2019-03-06 10:34:52'),
(3531, '2019-03-06', 17, '2019-03-06 08:22:15', NULL),
(3532, '2019-03-06', 116, '2019-03-06 08:22:20', '2019-03-06 10:27:39'),
(3533, '2019-03-06', 123, '2019-03-06 08:22:25', NULL),
(3534, '2019-03-06', 25, '2019-03-06 08:22:39', '2019-03-06 12:05:53'),
(3535, '2019-03-06', 54, '2019-03-06 08:23:07', '2019-03-06 13:00:04'),
(3536, '2019-03-06', 70, '2019-03-06 08:23:14', '2019-03-06 12:37:20'),
(3537, '2019-03-06', 5, '2019-03-06 08:23:17', '2019-03-06 12:06:28'),
(3538, '2019-03-06', 144, '2019-03-06 08:23:20', NULL),
(3539, '2019-03-06', 16, '2019-03-06 08:23:26', '2019-03-06 12:06:30'),
(3540, '2019-03-06', 176, '2019-03-06 08:24:02', NULL),
(3541, '2019-03-06', 91, '2019-03-06 08:25:48', '2019-03-06 10:34:12'),
(3542, '2019-03-06', 90, '2019-03-06 08:25:52', '2019-03-06 10:34:23'),
(3543, '2019-03-06', 68, '2019-03-06 08:29:24', '2019-03-06 12:36:58'),
(3544, '2019-03-06', 77, '2019-03-06 08:29:59', '2019-03-06 10:34:30'),
(3545, '2019-03-06', 10, '2019-03-06 08:30:05', NULL),
(3546, '2019-03-06', 22, '2019-03-06 08:35:30', '2019-03-06 10:21:30'),
(3547, '2019-03-06', 126, '2019-03-06 08:36:00', '2019-03-06 11:30:33'),
(3548, '2019-03-06', 139, '2019-03-06 08:36:19', '2019-03-06 11:30:10'),
(3549, '2019-03-06', 66, '2019-03-06 08:36:23', '2019-03-06 12:53:29'),
(3550, '2019-03-06', 11, '2019-03-06 08:36:32', '2019-03-06 12:06:14'),
(3551, '2019-03-06', 69, '2019-03-06 08:36:34', '2019-03-06 12:36:37'),
(3552, '2019-03-06', 125, '2019-03-06 08:36:46', '2019-03-06 11:30:38'),
(3553, '2019-03-06', 45, '2019-03-06 08:36:52', '2019-03-06 12:29:38'),
(3554, '2019-03-06', 71, '2019-03-06 08:36:56', '2019-03-06 12:37:12'),
(3555, '2019-03-06', 61, '2019-03-06 08:37:09', '2019-03-06 12:44:48'),
(3556, '2019-03-06', 156, '2019-03-06 08:37:14', '2019-03-06 11:30:18'),
(3557, '2019-03-06', 56, '2019-03-06 08:37:21', '2019-03-06 12:36:48'),
(3558, '2019-03-06', 20, '2019-03-06 08:37:27', '2019-03-06 12:05:56'),
(3559, '2019-03-06', 178, '2019-03-06 08:37:35', NULL),
(3560, '2019-03-06', 179, '2019-03-06 08:37:40', '2019-03-06 12:50:31'),
(3561, '2019-03-06', 97, '2019-03-06 08:37:45', '2019-03-06 10:35:22'),
(3562, '2019-03-06', 6, '2019-03-06 08:37:51', '2019-03-06 12:06:04'),
(3563, '2019-03-06', 177, '2019-03-06 08:37:55', '2019-03-06 12:37:17'),
(3564, '2019-03-06', 130, '2019-03-06 08:38:01', '2019-03-06 11:30:50'),
(3565, '2019-03-06', 151, '2019-03-06 08:38:06', '2019-03-06 11:29:25'),
(3566, '2019-03-06', 80, '2019-03-06 08:38:11', '2019-03-06 10:32:59'),
(3567, '2019-03-06', 180, '2019-03-06 08:38:44', '2019-03-06 11:30:27'),
(3568, '2019-03-06', 166, '2019-03-06 08:38:50', '2019-03-06 12:05:35'),
(3569, '2019-03-06', 15, '2019-03-06 08:39:14', NULL),
(3570, '2019-03-06', 128, '2019-03-06 08:40:47', '2019-03-06 11:29:11'),
(3571, '2019-03-06', 48, '2019-03-06 08:41:37', NULL),
(3572, '2019-03-06', 160, '2019-03-06 08:42:53', '2019-03-06 10:34:43'),
(3573, '2019-03-06', 58, '2019-03-06 08:43:01', '2019-03-06 12:36:54'),
(3574, '2019-03-06', 113, '2019-03-06 08:44:57', '2019-03-06 10:21:51'),
(3575, '2019-03-06', 134, '2019-03-06 08:55:13', '2019-03-06 11:31:00'),
(3576, '2019-03-06', 105, '2019-03-06 10:11:37', '2019-03-06 12:51:12'),
(3577, '2019-03-06', 114, '2019-03-06 10:21:11', NULL),
(3578, '2019-03-06', 120, '2019-03-06 10:22:05', NULL),
(3579, '2019-03-06', 40, '2019-03-06 10:22:29', '2019-03-06 12:29:49'),
(3580, '2019-03-06', 111, '2019-03-06 10:30:00', '2019-03-06 12:49:28'),
(3581, '2019-03-06', 109, '2019-03-06 10:30:03', '2019-03-06 12:50:05'),
(3582, '2019-03-06', 33, '2019-03-06 10:30:06', NULL),
(3583, '2019-03-06', 42, '2019-03-06 10:30:18', '2019-03-06 12:32:10'),
(3584, '2019-03-06', 76, '2019-03-06 10:33:28', NULL),
(3585, '2019-03-06', 88, '2019-03-06 10:34:57', NULL),
(3586, '2019-03-06', 106, '2019-03-06 10:35:12', '2019-03-06 12:50:02'),
(3587, '2019-03-06', 102, '2019-03-06 10:40:03', '2019-03-06 12:50:10'),
(3588, '2019-03-06', 149, '2019-03-06 10:41:48', NULL),
(3589, '2019-03-06', 175, '2019-03-06 10:42:15', NULL),
(3590, '2019-03-06', 28, '2019-03-06 10:45:42', NULL),
(3591, '2019-03-06', 104, '2019-03-06 10:46:18', '2019-03-06 13:02:18'),
(3592, '2019-03-06', 107, '2019-03-06 10:47:07', '2019-03-06 12:51:03'),
(3593, '2019-03-06', 183, '2019-03-06 10:51:28', '2019-03-06 12:50:13'),
(3594, '2019-03-06', 35, '2019-03-06 10:52:03', '2019-03-06 12:31:35'),
(3595, '2019-03-06', 36, '2019-03-06 10:52:29', '2019-03-06 12:33:18'),
(3596, '2019-03-06', 7, '2019-03-06 11:35:43', NULL),
(3597, '2019-03-06', 162, '2019-03-06 12:05:16', NULL),
(3598, '2019-03-06', 165, '2019-03-06 12:11:51', NULL),
(3599, '2019-03-06', 65, '2019-03-06 12:36:51', NULL),
(3600, '2019-03-06', 174, '2019-03-06 12:49:59', NULL),
(3601, '2019-03-06', 103, '2019-03-06 12:50:38', NULL),
(3602, '2019-03-06', 14, '2019-03-06 12:52:16', NULL),
(3603, '2019-03-06', 46, '2019-03-06 12:54:56', NULL),
(3604, '2019-03-09', 96, '2019-03-09 07:42:39', '2019-03-09 10:34:47'),
(3605, '2019-03-09', 31, '2019-03-09 07:48:05', '2019-03-09 10:19:37'),
(3606, '2019-03-09', 147, '2019-03-09 07:55:02', NULL),
(3607, '2019-03-09', 18, '2019-03-09 07:55:12', '2019-03-09 12:13:03'),
(3608, '2019-03-09', 154, '2019-03-09 07:56:05', NULL),
(3609, '2019-03-09', 57, '2019-03-09 07:56:21', '2019-03-09 12:50:15'),
(3610, '2019-03-09', 34, '2019-03-09 07:56:33', '2019-03-09 10:19:29'),
(3611, '2019-03-09', 119, '2019-03-09 07:56:44', '2019-03-09 10:19:43'),
(3612, '2019-03-09', 155, '2019-03-09 07:59:40', '2019-03-09 11:42:39'),
(3613, '2019-03-09', 95, '2019-03-09 08:00:16', '2019-03-09 10:33:25'),
(3614, '2019-03-09', 169, '2019-03-09 08:02:02', '2019-03-09 12:53:48'),
(3615, '2019-03-09', 99, '2019-03-09 08:02:18', '2019-03-09 10:33:02'),
(3616, '2019-03-09', 168, '2019-03-09 08:02:25', '2019-03-09 12:48:28'),
(3617, '2019-03-09', 118, '2019-03-09 08:02:34', '2019-03-09 10:18:24'),
(3618, '2019-03-09', 25, '2019-03-09 08:06:13', '2019-03-09 12:09:29'),
(3619, '2019-03-09', 46, '2019-03-09 08:06:22', '2019-03-09 12:46:38'),
(3620, '2019-03-09', 110, '2019-03-09 08:06:27', '2019-03-09 10:31:47'),
(3621, '2019-03-09', 92, '2019-03-09 08:07:01', '2019-03-09 10:32:58'),
(3622, '2019-03-09', 159, '2019-03-09 08:08:47', NULL),
(3623, '2019-03-09', 173, '2019-03-09 08:09:06', '2019-03-09 12:48:07'),
(3624, '2019-03-09', 101, '2019-03-09 08:09:26', '2019-03-09 10:34:57'),
(3625, '2019-03-09', 48, '2019-03-09 08:09:31', NULL),
(3626, '2019-03-09', 7, '2019-03-09 08:09:59', NULL),
(3627, '2019-03-09', 94, '2019-03-09 08:10:12', '2019-03-09 10:33:56'),
(3628, '2019-03-09', 9, '2019-03-09 08:11:18', NULL),
(3629, '2019-03-09', 165, '2019-03-09 08:11:50', NULL),
(3630, '2019-03-09', 138, '2019-03-09 08:12:08', '2019-03-09 11:36:41'),
(3631, '2019-03-09', 157, '2019-03-09 08:12:13', '2019-03-09 11:37:00'),
(3632, '2019-03-09', 172, '2019-03-09 08:12:21', '2019-03-09 12:47:17'),
(3633, '2019-03-09', 53, '2019-03-09 08:12:38', '2019-03-09 12:47:46'),
(3634, '2019-03-09', 115, '2019-03-09 08:12:55', '2019-03-09 10:18:11'),
(3635, '2019-03-09', 44, '2019-03-09 08:13:27', '2019-03-09 12:46:43'),
(3636, '2019-03-09', 10, '2019-03-09 08:14:05', '2019-03-09 12:14:57'),
(3637, '2019-03-09', 86, '2019-03-09 08:14:42', '2019-03-09 10:33:15'),
(3638, '2019-03-09', 93, '2019-03-09 08:16:17', '2019-03-09 10:33:44'),
(3639, '2019-03-09', 130, '2019-03-09 08:16:46', NULL),
(3640, '2019-03-09', 141, '2019-03-09 08:17:21', '2019-03-09 11:36:00'),
(3641, '2019-03-09', 144, '2019-03-09 08:18:01', '2019-03-09 11:39:37'),
(3642, '2019-03-09', 64, '2019-03-09 08:18:42', NULL),
(3643, '2019-03-09', 143, '2019-03-09 08:18:47', NULL),
(3644, '2019-03-09', 133, '2019-03-09 08:18:50', '2019-03-09 11:36:45'),
(3645, '2019-03-09', 8, '2019-03-09 08:19:19', NULL),
(3646, '2019-03-09', 13, '2019-03-09 08:19:27', NULL),
(3647, '2019-03-09', 150, '2019-03-09 08:21:45', '2019-03-09 11:36:24'),
(3648, '2019-03-09', 38, '2019-03-09 08:23:32', '2019-03-09 10:18:27'),
(3649, '2019-03-09', 91, '2019-03-09 08:24:34', '2019-03-09 10:34:52'),
(3650, '2019-03-09', 90, '2019-03-09 08:24:51', '2019-03-09 10:34:40'),
(3651, '2019-03-09', 29, '2019-03-09 08:33:03', '2019-03-09 10:18:45'),
(3652, '2019-03-09', 87, '2019-03-09 08:33:16', '2019-03-09 10:33:31'),
(3653, '2019-03-09', 97, '2019-03-09 08:33:28', '2019-03-09 10:39:49'),
(3654, '2019-03-09', 20, '2019-03-09 08:34:12', NULL),
(3655, '2019-03-09', 23, '2019-03-09 08:34:16', '2019-03-09 12:09:55'),
(3656, '2019-03-09', 182, '2019-03-09 08:34:20', '2019-03-09 12:09:58'),
(3657, '2019-03-09', 128, '2019-03-09 08:34:25', '2019-03-09 11:36:14'),
(3658, '2019-03-09', 70, '2019-03-09 08:34:31', '2019-03-09 12:51:13'),
(3659, '2019-03-09', 176, '2019-03-09 08:34:49', '2019-03-09 12:48:12'),
(3660, '2019-03-09', 181, '2019-03-09 08:34:54', '2019-03-09 12:47:25'),
(3661, '2019-03-09', 179, '2019-03-09 08:34:59', '2019-03-09 12:53:44'),
(3662, '2019-03-09', 43, '2019-03-09 08:35:03', NULL),
(3663, '2019-03-09', 162, '2019-03-09 08:35:09', NULL),
(3664, '2019-03-09', 135, '2019-03-09 08:35:15', '2019-03-09 11:36:29'),
(3665, '2019-03-09', 26, '2019-03-09 08:35:21', '2019-03-09 10:18:17'),
(3666, '2019-03-09', 156, '2019-03-09 08:35:26', '2019-03-09 11:36:32'),
(3667, '2019-03-09', 27, '2019-03-09 08:35:31', '2019-03-09 10:18:30'),
(3668, '2019-03-09', 79, '2019-03-09 08:35:36', '2019-03-09 10:33:52'),
(3669, '2019-03-09', 116, '2019-03-09 08:35:48', '2019-03-09 10:19:40'),
(3670, '2019-03-09', 56, '2019-03-09 08:36:04', '2019-03-09 12:51:29'),
(3671, '2019-03-09', 52, '2019-03-09 08:36:13', '2019-03-09 12:47:37'),
(3672, '2019-03-09', 15, '2019-03-09 08:36:18', NULL),
(3673, '2019-03-09', 180, '2019-03-09 08:38:30', '2019-03-09 11:37:21'),
(3674, '2019-03-09', 66, '2019-03-09 08:39:01', '2019-03-09 12:51:08'),
(3675, '2019-03-09', 80, '2019-03-09 08:39:07', '2019-03-09 10:05:06'),
(3676, '2019-03-09', 151, '2019-03-09 08:39:12', '2019-03-09 11:37:05'),
(3677, '2019-03-09', 61, '2019-03-09 08:39:17', '2019-03-09 12:59:30'),
(3678, '2019-03-09', 113, '2019-03-09 08:39:51', '2019-03-09 10:18:33'),
(3679, '2019-03-09', 77, '2019-03-09 08:42:49', '2019-03-09 10:33:09'),
(3680, '2019-03-09', 58, '2019-03-09 08:42:54', '2019-03-09 12:50:55'),
(3681, '2019-03-09', 160, '2019-03-09 08:43:06', '2019-03-09 10:34:14'),
(3682, '2019-03-09', 121, '2019-03-09 08:43:18', '2019-03-09 10:19:51'),
(3683, '2019-03-09', 153, '2019-03-09 08:43:56', '2019-03-09 11:37:15'),
(3684, '2019-03-09', 134, '2019-03-09 08:50:05', '2019-03-09 11:37:10'),
(3685, '2019-03-09', 112, '2019-03-09 10:05:03', NULL),
(3686, '2019-03-09', 105, '2019-03-09 10:12:49', '2019-03-09 12:55:33'),
(3687, '2019-03-09', 174, '2019-03-09 10:14:38', '2019-03-09 12:54:16'),
(3688, '2019-03-09', 22, '2019-03-09 10:18:49', NULL),
(3689, '2019-03-09', 17, '2019-03-09 10:18:54', NULL),
(3690, '2019-03-09', 30, '2019-03-09 10:29:51', NULL),
(3691, '2019-03-09', 42, '2019-03-09 10:31:13', '2019-03-09 12:43:27'),
(3692, '2019-03-09', 111, '2019-03-09 10:31:17', '2019-03-09 12:54:37'),
(3693, '2019-03-09', 85, '2019-03-09 10:32:53', NULL),
(3694, '2019-03-09', 158, '2019-03-09 10:33:20', NULL),
(3695, '2019-03-09', 78, '2019-03-09 10:33:37', NULL),
(3696, '2019-03-09', 106, '2019-03-09 10:37:06', '2019-03-09 12:54:18'),
(3697, '2019-03-09', 103, '2019-03-09 10:37:16', '2019-03-09 12:54:40'),
(3698, '2019-03-09', 107, '2019-03-09 10:39:35', '2019-03-09 12:55:08'),
(3699, '2019-03-09', 104, '2019-03-09 10:40:45', '2019-03-09 12:54:47'),
(3700, '2019-03-09', 102, '2019-03-09 10:42:12', '2019-03-09 12:54:12'),
(3701, '2019-03-09', 183, '2019-03-09 10:46:03', '2019-03-09 12:54:26'),
(3702, '2019-03-09', 175, '2019-03-09 10:47:59', '2019-03-09 12:55:14'),
(3703, '2019-03-09', 33, '2019-03-09 10:52:46', NULL),
(3704, '2019-03-09', 36, '2019-03-09 10:56:06', NULL),
(3705, '2019-03-09', 149, '2019-03-09 10:56:09', '2019-03-09 12:43:54'),
(3706, '2019-03-09', 35, '2019-03-09 10:57:15', '2019-03-09 12:44:06'),
(3707, '2019-03-09', 129, '2019-03-09 11:35:57', NULL),
(3708, '2019-03-09', 145, '2019-03-09 11:36:07', NULL),
(3709, '2019-03-09', 126, '2019-03-09 11:36:19', NULL),
(3710, '2019-03-09', 140, '2019-03-09 11:36:37', NULL),
(3711, '2019-03-09', 137, '2019-03-09 11:36:49', NULL),
(3712, '2019-03-09', 146, '2019-03-09 11:36:55', NULL),
(3713, '2019-03-09', 148, '2019-03-09 11:48:20', NULL),
(3714, '2019-03-09', 54, '2019-03-09 12:43:20', NULL),
(3715, '2019-03-09', 171, '2019-03-09 12:43:23', NULL),
(3716, '2019-03-09', 167, '2019-03-09 12:47:29', NULL),
(3717, '2019-03-09', 65, '2019-03-09 12:50:53', NULL),
(3718, '2019-03-10', 57, '2019-03-10 07:48:46', NULL),
(3719, '2019-03-10', 98, '2019-03-10 07:49:11', '2019-03-10 10:36:16'),
(3720, '2019-03-10', 119, '2019-03-10 07:49:17', '2019-03-10 10:21:33'),
(3721, '2019-03-10', 46, '2019-03-10 07:54:31', '2019-03-10 12:52:33'),
(3722, '2019-03-10', 155, '2019-03-10 07:55:23', '2019-03-10 11:43:28'),
(3723, '2019-03-10', 67, '2019-03-10 07:56:05', NULL),
(3724, '2019-03-10', 55, '2019-03-10 07:56:08', NULL),
(3725, '2019-03-10', 18, '2019-03-10 07:56:14', '2019-03-10 11:55:05'),
(3726, '2019-03-10', 95, '2019-03-10 07:56:22', '2019-03-10 10:35:45'),
(3727, '2019-03-10', 34, '2019-03-10 07:56:27', '2019-03-10 10:20:36'),
(3728, '2019-03-10', 152, '2019-03-10 07:57:01', '2019-03-10 11:39:59'),
(3729, '2019-03-10', 147, '2019-03-10 07:57:15', NULL),
(3730, '2019-03-10', 96, '2019-03-10 07:59:00', '2019-03-10 10:37:10'),
(3731, '2019-03-10', 25, '2019-03-10 07:59:06', '2019-03-10 11:55:27'),
(3732, '2019-03-10', 154, '2019-03-10 07:59:21', '2019-03-10 11:40:33'),
(3733, '2019-03-10', 168, '2019-03-10 08:00:30', '2019-03-10 12:48:08'),
(3734, '2019-03-10', 23, '2019-03-10 08:02:26', NULL),
(3735, '2019-03-10', 99, '2019-03-10 08:02:50', '2019-03-10 10:36:40'),
(3736, '2019-03-10', 31, '2019-03-10 08:04:59', '2019-03-10 10:21:48'),
(3737, '2019-03-10', 141, '2019-03-10 08:05:12', '2019-03-10 11:39:01'),
(3738, '2019-03-10', 92, '2019-03-10 08:05:44', '2019-03-10 10:36:29'),
(3739, '2019-03-10', 130, '2019-03-10 08:06:32', '2019-03-10 11:40:19'),
(3740, '2019-03-10', 65, '2019-03-10 08:08:34', NULL),
(3741, '2019-03-10', 126, '2019-03-10 08:09:43', NULL),
(3742, '2019-03-10', 7, '2019-03-10 08:09:48', NULL),
(3743, '2019-03-10', 94, '2019-03-10 08:09:55', '2019-03-10 10:36:59'),
(3744, '2019-03-10', 45, '2019-03-10 08:11:22', '2019-03-10 12:51:36'),
(3745, '2019-03-10', 173, '2019-03-10 08:11:47', '2019-03-10 12:48:18'),
(3746, '2019-03-10', 118, '2019-03-10 08:12:24', '2019-03-10 10:20:11'),
(3747, '2019-03-10', 137, '2019-03-10 08:12:30', NULL),
(3748, '2019-03-10', 128, '2019-03-10 08:12:54', NULL),
(3749, '2019-03-10', 142, '2019-03-10 08:13:16', NULL),
(3750, '2019-03-10', 167, '2019-03-10 08:13:23', NULL),
(3751, '2019-03-10', 101, '2019-03-10 08:13:51', '2019-03-10 10:37:24'),
(3752, '2019-03-10', 100, '2019-03-10 08:14:09', '2019-03-10 10:35:54'),
(3753, '2019-03-10', 84, '2019-03-10 08:14:45', '2019-03-10 10:35:35'),
(3754, '2019-03-10', 165, '2019-03-10 08:15:19', NULL),
(3755, '2019-03-10', 115, '2019-03-10 08:15:45', '2019-03-10 10:21:08'),
(3756, '2019-03-10', 93, '2019-03-10 08:15:53', '2019-03-10 10:37:34'),
(3757, '2019-03-10', 86, '2019-03-10 08:16:13', '2019-03-10 10:36:50'),
(3758, '2019-03-10', 68, '2019-03-10 08:16:49', '2019-03-10 12:49:19'),
(3759, '2019-03-10', 145, '2019-03-10 08:17:04', NULL),
(3760, '2019-03-10', 70, '2019-03-10 08:17:09', NULL),
(3761, '2019-03-10', 181, '2019-03-10 08:17:13', '2019-03-10 12:51:46'),
(3762, '2019-03-10', 176, '2019-03-10 08:17:18', '2019-03-10 12:51:54'),
(3763, '2019-03-10', 54, '2019-03-10 08:17:23', '2019-03-10 12:51:16'),
(3764, '2019-03-10', 138, '2019-03-10 08:17:29', '2019-03-10 11:40:12'),
(3765, '2019-03-10', 9, '2019-03-10 08:17:33', NULL),
(3766, '2019-03-10', 69, '2019-03-10 08:17:44', NULL),
(3767, '2019-03-10', 16, '2019-03-10 08:17:51', NULL),
(3768, '2019-03-10', 27, '2019-03-10 08:17:58', '2019-03-10 10:20:08'),
(3769, '2019-03-10', 61, '2019-03-10 08:18:37', '2019-03-10 12:54:08'),
(3770, '2019-03-10', 144, '2019-03-10 08:19:10', NULL),
(3771, '2019-03-10', 143, '2019-03-10 08:19:23', '2019-03-10 11:40:03'),
(3772, '2019-03-10', 38, '2019-03-10 08:19:45', '2019-03-10 10:20:23'),
(3773, '2019-03-10', 177, '2019-03-10 08:19:50', '2019-03-10 12:48:43'),
(3774, '2019-03-10', 78, '2019-03-10 08:20:32', '2019-03-10 10:36:44'),
(3775, '2019-03-10', 157, '2019-03-10 08:21:05', '2019-03-10 11:40:31'),
(3776, '2019-03-10', 8, '2019-03-10 08:21:42', NULL),
(3777, '2019-03-10', 91, '2019-03-10 08:23:01', '2019-03-10 10:36:09'),
(3778, '2019-03-10', 90, '2019-03-10 08:23:06', '2019-03-10 10:36:23'),
(3779, '2019-03-10', 22, '2019-03-10 08:32:18', '2019-03-10 10:20:28'),
(3780, '2019-03-10', 133, '2019-03-10 08:32:20', NULL),
(3781, '2019-03-10', 29, '2019-03-10 08:32:26', '2019-03-10 10:20:39'),
(3782, '2019-03-10', 97, '2019-03-10 08:32:31', '2019-03-10 10:37:45'),
(3783, '2019-03-10', 180, '2019-03-10 08:33:04', '2019-03-10 11:39:48'),
(3784, '2019-03-10', 135, '2019-03-10 08:33:11', NULL),
(3785, '2019-03-10', 75, '2019-03-10 08:33:15', NULL),
(3786, '2019-03-10', 182, '2019-03-10 08:33:25', '2019-03-10 12:02:24'),
(3787, '2019-03-10', 164, '2019-03-10 08:33:31', NULL),
(3788, '2019-03-10', 15, '2019-03-10 08:33:40', NULL),
(3789, '2019-03-10', 20, '2019-03-10 08:33:45', NULL),
(3790, '2019-03-10', 11, '2019-03-10 08:33:50', NULL),
(3791, '2019-03-10', 172, '2019-03-10 08:33:55', '2019-03-10 12:48:13'),
(3792, '2019-03-10', 44, '2019-03-10 08:34:00', '2019-03-10 12:51:06'),
(3793, '2019-03-10', 56, '2019-03-10 08:34:05', '2019-03-10 12:49:46'),
(3794, '2019-03-10', 53, '2019-03-10 08:34:10', '2019-03-10 12:51:49'),
(3795, '2019-03-10', 171, '2019-03-10 08:34:13', '2019-03-10 12:47:59'),
(3796, '2019-03-10', 179, '2019-03-10 08:34:23', '2019-03-10 12:48:02'),
(3797, '2019-03-10', 148, '2019-03-10 08:34:28', NULL),
(3798, '2019-03-10', 48, '2019-03-10 08:34:32', '2019-03-10 12:51:33'),
(3799, '2019-03-10', 71, '2019-03-10 08:34:36', '2019-03-10 12:48:59'),
(3800, '2019-03-10', 156, '2019-03-10 08:34:41', '2019-03-10 11:39:36'),
(3801, '2019-03-10', 43, '2019-03-10 08:34:46', '2019-03-10 11:12:26'),
(3802, '2019-03-10', 160, '2019-03-10 08:34:50', '2019-03-10 10:37:53'),
(3803, '2019-03-10', 66, '2019-03-10 08:34:56', '2019-03-10 12:49:36'),
(3804, '2019-03-10', 26, '2019-03-10 08:35:00', '2019-03-10 10:20:53'),
(3805, '2019-03-10', 58, '2019-03-10 08:35:05', '2019-03-10 12:49:26'),
(3806, '2019-03-10', 121, '2019-03-10 08:35:10', '2019-03-10 10:20:58'),
(3807, '2019-03-10', 80, '2019-03-10 08:35:30', '2019-03-10 10:35:29'),
(3808, '2019-03-10', 52, '2019-03-10 08:35:34', '2019-03-10 12:51:11'),
(3809, '2019-03-10', 120, '2019-03-10 08:36:21', NULL),
(3810, '2019-03-10', 60, '2019-03-10 08:36:37', '2019-03-10 12:49:16'),
(3811, '2019-03-10', 151, '2019-03-10 08:37:21', NULL),
(3812, '2019-03-10', 77, '2019-03-10 08:38:26', '2019-03-10 10:37:05'),
(3813, '2019-03-10', 10, '2019-03-10 08:38:36', NULL),
(3814, '2019-03-10', 153, '2019-03-10 08:40:22', '2019-03-10 11:41:30'),
(3815, '2019-03-10', 113, '2019-03-10 08:42:50', NULL),
(3816, '2019-03-10', 110, '2019-03-10 08:45:07', '2019-03-10 10:23:44'),
(3817, '2019-03-10', 158, '2019-03-10 08:45:17', '2019-03-10 10:36:55'),
(3818, '2019-03-10', 134, '2019-03-10 08:48:36', '2019-03-10 11:40:23'),
(3819, '2019-03-10', 105, '2019-03-10 10:13:05', '2019-03-10 12:56:34'),
(3820, '2019-03-10', 17, '2019-03-10 10:20:48', NULL),
(3821, '2019-03-10', 116, '2019-03-10 10:21:30', NULL),
(3822, '2019-03-10', 114, '2019-03-10 10:21:39', NULL),
(3823, '2019-03-10', 174, '2019-03-10 10:26:00', '2019-03-10 12:53:29'),
(3824, '2019-03-10', 40, '2019-03-10 10:28:33', '2019-03-10 12:37:20'),
(3825, '2019-03-10', 111, '2019-03-10 10:29:04', NULL),
(3826, '2019-03-10', 33, '2019-03-10 10:29:12', '2019-03-10 12:42:08'),
(3827, '2019-03-10', 42, '2019-03-10 10:29:21', NULL),
(3828, '2019-03-10', 102, '2019-03-10 10:32:22', '2019-03-10 12:53:47'),
(3829, '2019-03-10', 106, '2019-03-10 10:32:25', '2019-03-10 12:53:44'),
(3830, '2019-03-10', 79, '2019-03-10 10:36:34', NULL),
(3831, '2019-03-10', 159, '2019-03-10 10:37:19', NULL),
(3832, '2019-03-10', 85, '2019-03-10 10:37:29', NULL),
(3833, '2019-03-10', 88, '2019-03-10 10:37:40', NULL),
(3834, '2019-03-10', 87, '2019-03-10 10:37:58', NULL),
(3835, '2019-03-10', 30, '2019-03-10 10:38:12', '2019-03-10 12:42:24'),
(3836, '2019-03-10', 104, '2019-03-10 10:39:40', NULL),
(3837, '2019-03-10', 103, '2019-03-10 10:39:47', '2019-03-10 12:58:39'),
(3838, '2019-03-10', 108, '2019-03-10 10:40:01', NULL),
(3839, '2019-03-10', 107, '2019-03-10 10:42:08', '2019-03-10 12:54:20'),
(3840, '2019-03-10', 149, '2019-03-10 10:42:35', '2019-03-10 12:42:17'),
(3841, '2019-03-10', 35, '2019-03-10 10:45:56', '2019-03-10 12:36:59'),
(3842, '2019-03-10', 36, '2019-03-10 10:46:33', '2019-03-10 12:39:37'),
(3843, '2019-03-10', 183, '2019-03-10 10:47:29', '2019-03-10 12:53:15'),
(3844, '2019-03-10', 175, '2019-03-10 10:56:03', '2019-03-10 12:54:00'),
(3845, '2019-03-10', 150, '2019-03-10 11:39:54', NULL),
(3846, '2019-03-10', 139, '2019-03-10 11:40:08', NULL),
(3847, '2019-03-11', 26, '2019-03-11 07:40:31', NULL),
(3848, '2019-03-11', 154, '2019-03-11 07:41:43', NULL),
(3849, '2019-03-11', 25, '2019-03-11 07:51:42', NULL),
(3850, '2019-03-11', 147, '2019-03-11 07:53:03', NULL),
(3851, '2019-03-11', 18, '2019-03-11 07:53:07', NULL),
(3852, '2019-03-11', 34, '2019-03-11 07:53:11', NULL),
(3853, '2019-03-11', 55, '2019-03-11 07:53:16', NULL),
(3854, '2019-03-11', 152, '2019-03-11 07:54:25', NULL),
(3855, '2019-03-11', 72, '2019-03-11 07:56:37', NULL),
(3856, '2019-03-11', 173, '2019-03-11 07:57:40', NULL),
(3857, '2019-03-11', 101, '2019-03-11 07:58:25', NULL),
(3858, '2019-03-11', 65, '2019-03-11 07:59:20', NULL),
(3859, '2019-03-11', 159, '2019-03-11 08:01:56', NULL),
(3860, '2019-03-11', 168, '2019-03-11 08:03:21', NULL),
(3861, '2019-03-11', 99, '2019-03-11 08:03:26', NULL),
(3862, '2019-03-11', 114, '2019-03-11 08:03:41', '2019-03-11 10:23:31'),
(3863, '2019-03-11', 110, '2019-03-11 08:03:56', NULL),
(3864, '2019-03-11', 100, '2019-03-11 08:04:52', NULL),
(3865, '2019-03-11', 61, '2019-03-11 08:05:17', NULL),
(3866, '2019-03-11', 15, '2019-03-11 08:05:29', NULL),
(3867, '2019-03-11', 46, '2019-03-11 08:06:55', NULL),
(3868, '2019-03-11', 115, '2019-03-11 08:07:39', '2019-03-11 10:15:16'),
(3869, '2019-03-11', 170, '2019-03-11 08:08:31', NULL),
(3870, '2019-03-11', 141, '2019-03-11 08:08:54', NULL),
(3871, '2019-03-11', 78, '2019-03-11 08:09:17', NULL),
(3872, '2019-03-11', 14, '2019-03-11 08:09:43', NULL),
(3873, '2019-03-11', 67, '2019-03-11 08:11:21', NULL),
(3874, '2019-03-11', 89, '2019-03-11 08:12:12', '2019-03-11 10:12:54'),
(3875, '2019-03-11', 53, '2019-03-11 08:12:17', NULL),
(3876, '2019-03-11', 84, '2019-03-11 08:12:34', NULL),
(3877, '2019-03-11', 162, '2019-03-11 08:12:48', NULL),
(3878, '2019-03-11', 7, '2019-03-11 08:12:54', NULL),
(3879, '2019-03-11', 13, '2019-03-11 08:12:57', NULL),
(3880, '2019-03-11', 94, '2019-03-11 08:13:14', NULL),
(3881, '2019-03-11', 155, '2019-03-11 08:13:19', NULL),
(3882, '2019-03-11', 142, '2019-03-11 08:13:33', NULL),
(3883, '2019-03-11', 23, '2019-03-11 08:13:40', NULL),
(3884, '2019-03-11', 17, '2019-03-11 08:14:07', '2019-03-11 10:18:50'),
(3885, '2019-03-11', 139, '2019-03-11 08:14:39', NULL),
(3886, '2019-03-11', 118, '2019-03-11 08:15:12', '2019-03-11 10:18:36'),
(3887, '2019-03-11', 37, '2019-03-11 08:15:16', NULL),
(3888, '2019-03-11', 95, '2019-03-11 08:15:40', NULL),
(3889, '2019-03-11', 169, '2019-03-11 08:15:46', NULL),
(3890, '2019-03-11', 43, '2019-03-11 08:16:15', NULL),
(3891, '2019-03-11', 135, '2019-03-11 08:16:24', NULL),
(3892, '2019-03-11', 92, '2019-03-11 08:16:36', NULL),
(3893, '2019-03-11', 177, '2019-03-11 08:16:45', NULL),
(3894, '2019-03-11', 22, '2019-03-11 08:17:07', NULL),
(3895, '2019-03-11', 11, '2019-03-11 08:17:14', NULL),
(3896, '2019-03-11', 44, '2019-03-11 08:17:31', NULL),
(3897, '2019-03-11', 91, '2019-03-11 08:17:36', NULL),
(3898, '2019-03-11', 70, '2019-03-11 08:17:42', NULL),
(3899, '2019-03-11', 90, '2019-03-11 08:17:45', NULL),
(3900, '2019-03-11', 93, '2019-03-11 08:17:56', NULL),
(3901, '2019-03-11', 172, '2019-03-11 08:18:01', NULL),
(3902, '2019-03-11', 85, '2019-03-11 08:18:06', NULL),
(3903, '2019-03-11', 69, '2019-03-11 08:18:16', NULL),
(3904, '2019-03-11', 143, '2019-03-11 08:18:42', NULL),
(3905, '2019-03-11', 145, '2019-03-11 08:18:54', NULL),
(3906, '2019-03-11', 181, '2019-03-11 08:18:59', NULL),
(3907, '2019-03-11', 116, '2019-03-11 08:19:06', NULL),
(3908, '2019-03-11', 182, '2019-03-11 08:19:46', NULL),
(3909, '2019-03-11', 144, '2019-03-11 08:20:11', NULL),
(3910, '2019-03-11', 45, '2019-03-11 08:20:52', NULL),
(3911, '2019-03-11', 54, '2019-03-11 08:20:57', NULL),
(3912, '2019-03-11', 137, '2019-03-11 08:21:40', NULL),
(3913, '2019-03-11', 86, '2019-03-11 08:22:09', NULL),
(3914, '2019-03-11', 133, '2019-03-11 08:22:33', NULL),
(3915, '2019-03-11', 68, '2019-03-11 08:22:45', NULL),
(3916, '2019-03-11', 158, '2019-03-11 08:23:49', NULL),
(3917, '2019-03-11', 112, '2019-03-11 08:32:48', NULL),
(3918, '2019-03-11', 157, '2019-03-11 08:33:57', NULL),
(3919, '2019-03-11', 128, '2019-03-11 08:34:03', NULL),
(3920, '2019-03-11', 156, '2019-03-11 08:34:07', NULL),
(3921, '2019-03-11', 10, '2019-03-11 08:34:16', NULL),
(3922, '2019-03-11', 5, '2019-03-11 08:34:26', NULL),
(3923, '2019-03-11', 130, '2019-03-11 08:34:30', NULL),
(3924, '2019-03-11', 9, '2019-03-11 08:34:39', NULL),
(3925, '2019-03-11', 66, '2019-03-11 08:34:47', NULL),
(3926, '2019-03-11', 48, '2019-03-11 08:34:56', NULL),
(3927, '2019-03-11', 179, '2019-03-11 08:35:01', NULL),
(3928, '2019-03-11', 171, '2019-03-11 08:35:06', NULL),
(3929, '2019-03-11', 71, '2019-03-11 08:35:10', NULL),
(3930, '2019-03-11', 148, '2019-03-11 08:35:15', NULL),
(3931, '2019-03-11', 56, '2019-03-11 08:35:18', NULL),
(3932, '2019-03-11', 150, '2019-03-11 08:35:24', NULL),
(3933, '2019-03-11', 52, '2019-03-11 08:35:31', NULL),
(3934, '2019-03-11', 27, '2019-03-11 08:35:36', NULL),
(3935, '2019-03-11', 151, '2019-03-11 08:35:40', NULL),
(3936, '2019-03-11', 180, '2019-03-11 08:35:50', NULL),
(3937, '2019-03-11', 166, '2019-03-11 08:35:55', NULL),
(3938, '2019-03-11', 121, '2019-03-11 08:36:00', '2019-03-11 10:16:23'),
(3939, '2019-03-11', 131, '2019-03-11 08:36:06', NULL),
(3940, '2019-03-11', 113, '2019-03-11 08:36:53', NULL),
(3941, '2019-03-11', 58, '2019-03-11 08:40:34', NULL),
(3942, '2019-03-11', 134, '2019-03-11 08:42:42', NULL),
(3943, '2019-03-11', 77, '2019-03-11 08:43:09', NULL),
(3944, '2019-03-11', 105, '2019-03-11 10:11:31', NULL),
(3945, '2019-03-11', 29, '2019-03-11 10:14:54', NULL),
(3946, '2019-03-11', 40, '2019-03-11 10:15:55', NULL),
(3947, '2019-03-11', 30, '2019-03-11 10:18:56', NULL),
(3948, '2019-03-11', 36, '2019-03-11 10:25:06', NULL),
(3949, '2019-03-12', 176, '2019-03-12 07:52:11', NULL),
(3950, '2019-03-12', 167, '2019-03-12 07:52:23', NULL),
(3951, '2019-03-12', 99, '2019-03-12 07:52:26', NULL),
(3952, '2019-03-12', 147, '2019-03-12 07:52:29', NULL),
(3953, '2019-03-12', 18, '2019-03-12 07:52:39', NULL),
(3954, '2019-03-12', 34, '2019-03-12 07:52:51', '2019-03-12 10:06:17'),
(3955, '2019-03-12', 72, '2019-03-12 07:53:14', NULL),
(3956, '2019-03-12', 152, '2019-03-12 07:53:25', NULL),
(3957, '2019-03-12', 114, '2019-03-12 07:53:31', NULL),
(3958, '2019-03-12', 55, '2019-03-12 07:53:37', NULL),
(3959, '2019-03-12', 46, '2019-03-12 07:56:49', NULL),
(3960, '2019-03-12', 25, '2019-03-12 07:56:54', NULL),
(3961, '2019-03-12', 95, '2019-03-12 07:58:47', NULL),
(3962, '2019-03-12', 168, '2019-03-12 08:00:57', NULL),
(3963, '2019-03-12', 159, '2019-03-12 08:03:38', '2019-03-12 10:30:33'),
(3964, '2019-03-12', 101, '2019-03-12 08:05:18', NULL),
(3965, '2019-03-12', 23, '2019-03-12 08:06:00', NULL),
(3966, '2019-03-12', 61, '2019-03-12 08:06:06', NULL),
(3967, '2019-03-12', 110, '2019-03-12 08:06:32', '2019-03-12 09:26:43'),
(3968, '2019-03-12', 67, '2019-03-12 08:06:54', NULL),
(3969, '2019-03-12', 155, '2019-03-12 08:07:00', NULL),
(3970, '2019-03-12', 31, '2019-03-12 08:07:19', '2019-03-12 10:01:04'),
(3971, '2019-03-12', 118, '2019-03-12 08:08:18', '2019-03-12 10:04:04'),
(3972, '2019-03-12', 157, '2019-03-12 08:09:11', NULL),
(3973, '2019-03-12', 94, '2019-03-12 08:09:46', NULL),
(3974, '2019-03-12', 173, '2019-03-12 08:10:26', NULL),
(3975, '2019-03-12', 170, '2019-03-12 08:10:51', NULL),
(3976, '2019-03-12', 138, '2019-03-12 08:12:05', NULL),
(3977, '2019-03-12', 7, '2019-03-12 08:12:23', NULL),
(3978, '2019-03-12', 54, '2019-03-12 08:13:55', NULL),
(3979, '2019-03-12', 5, '2019-03-12 08:14:04', NULL),
(3980, '2019-03-12', 38, '2019-03-12 08:14:07', '2019-03-12 10:24:25'),
(3981, '2019-03-12', 144, '2019-03-12 08:14:10', NULL),
(3982, '2019-03-12', 69, '2019-03-12 08:14:14', NULL),
(3983, '2019-03-12', 70, '2019-03-12 08:14:20', NULL),
(3984, '2019-03-12', 16, '2019-03-12 08:14:25', NULL),
(3985, '2019-03-12', 43, '2019-03-12 08:14:50', NULL),
(3986, '2019-03-12', 92, '2019-03-12 08:15:23', NULL),
(3987, '2019-03-12', 93, '2019-03-12 08:15:36', NULL),
(3988, '2019-03-12', 64, '2019-03-12 08:15:44', NULL),
(3989, '2019-03-12', 181, '2019-03-12 08:16:10', NULL),
(3990, '2019-03-12', 145, '2019-03-12 08:16:15', NULL),
(3991, '2019-03-12', 142, '2019-03-12 08:16:23', NULL),
(3992, '2019-03-12', 112, '2019-03-12 08:16:34', NULL),
(3993, '2019-03-12', 156, '2019-03-12 08:17:04', NULL),
(3994, '2019-03-12', 84, '2019-03-12 08:17:47', NULL),
(3995, '2019-03-12', 150, '2019-03-12 08:19:05', NULL),
(3996, '2019-03-12', 137, '2019-03-12 08:19:09', NULL),
(3997, '2019-03-12', 85, '2019-03-12 08:19:19', NULL),
(3998, '2019-03-12', 172, '2019-03-12 08:19:25', NULL),
(3999, '2019-03-12', 78, '2019-03-12 08:19:28', NULL),
(4000, '2019-03-12', 27, '2019-03-12 08:19:32', NULL),
(4001, '2019-03-12', 91, '2019-03-12 08:20:14', NULL),
(4002, '2019-03-12', 90, '2019-03-12 08:20:17', NULL),
(4003, '2019-03-12', 125, '2019-03-12 08:20:21', NULL),
(4004, '2019-03-12', 158, '2019-03-12 08:20:24', NULL),
(4005, '2019-03-12', 22, '2019-03-12 08:20:35', '2019-03-12 10:24:29'),
(4006, '2019-03-12', 116, '2019-03-12 08:20:42', '2019-03-12 10:05:01'),
(4007, '2019-03-12', 115, '2019-03-12 08:20:52', '2019-03-12 10:04:30'),
(4008, '2019-03-12', 79, '2019-03-12 08:21:07', NULL),
(4009, '2019-03-12', 98, '2019-03-12 08:21:13', NULL),
(4010, '2019-03-12', 182, '2019-03-12 08:21:19', NULL),
(4011, '2019-03-12', 86, '2019-03-12 08:21:38', NULL),
(4012, '2019-03-12', 123, '2019-03-12 08:23:38', NULL),
(4013, '2019-03-12', 10, '2019-03-12 08:23:45', NULL),
(4014, '2019-03-12', 26, '2019-03-12 08:32:21', '2019-03-12 10:05:18'),
(4015, '2019-03-12', 29, '2019-03-12 08:32:45', NULL),
(4016, '2019-03-12', 97, '2019-03-12 08:32:58', NULL),
(4017, '2019-03-12', 20, '2019-03-12 08:33:20', NULL),
(4018, '2019-03-12', 139, '2019-03-12 08:33:32', NULL);
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(4019, '2019-03-12', 180, '2019-03-12 08:33:45', NULL),
(4020, '2019-03-12', 11, '2019-03-12 08:33:49', NULL),
(4021, '2019-03-12', 9, '2019-03-12 08:34:04', NULL),
(4022, '2019-03-12', 58, '2019-03-12 08:34:09', NULL),
(4023, '2019-03-12', 66, '2019-03-12 08:34:19', NULL),
(4024, '2019-03-12', 44, '2019-03-12 08:34:28', NULL),
(4025, '2019-03-12', 53, '2019-03-12 08:34:33', NULL),
(4026, '2019-03-12', 48, '2019-03-12 08:34:38', NULL),
(4027, '2019-03-12', 179, '2019-03-12 08:34:43', NULL),
(4028, '2019-03-12', 15, '2019-03-12 08:34:48', NULL),
(4029, '2019-03-12', 128, '2019-03-12 08:34:53', NULL),
(4030, '2019-03-12', 171, '2019-03-12 08:34:58', NULL),
(4031, '2019-03-12', 162, '2019-03-12 08:35:03', NULL),
(4032, '2019-03-12', 133, '2019-03-12 08:35:08', NULL),
(4033, '2019-03-12', 45, '2019-03-12 08:35:13', NULL),
(4034, '2019-03-12', 177, '2019-03-12 08:35:17', NULL),
(4035, '2019-03-12', 130, '2019-03-12 08:35:22', NULL),
(4036, '2019-03-12', 148, '2019-03-12 08:35:27', NULL),
(4037, '2019-03-12', 121, '2019-03-12 08:35:30', '2019-03-12 10:12:23'),
(4038, '2019-03-12', 17, '2019-03-12 08:35:38', '2019-03-12 10:01:15'),
(4039, '2019-03-12', 77, '2019-03-12 08:35:43', NULL),
(4040, '2019-03-12', 153, '2019-03-12 08:35:49', NULL),
(4041, '2019-03-12', 151, '2019-03-12 08:35:53', NULL),
(4042, '2019-03-12', 71, '2019-03-12 08:35:57', NULL),
(4043, '2019-03-12', 68, '2019-03-12 08:36:02', NULL),
(4044, '2019-03-12', 113, '2019-03-12 08:36:07', '2019-03-12 10:24:32'),
(4045, '2019-03-12', 56, '2019-03-12 08:36:13', NULL),
(4046, '2019-03-12', 89, '2019-03-12 08:38:54', NULL),
(4047, '2019-03-12', 60, '2019-03-12 08:39:02', NULL),
(4048, '2019-03-12', 37, '2019-03-12 08:39:34', NULL),
(4049, '2019-03-12', 88, '2019-03-12 08:42:04', NULL),
(4050, '2019-03-12', 134, '2019-03-12 08:42:20', NULL),
(4051, '2019-03-12', 105, '2019-03-12 10:12:08', NULL),
(4052, '2019-03-12', 120, '2019-03-12 10:25:45', NULL),
(4053, '2019-03-12', 80, '2019-03-12 10:30:23', NULL),
(4054, '2019-03-13', 154, '2019-03-13 07:51:46', NULL),
(4055, '2019-03-13', 114, '2019-03-13 07:52:43', NULL),
(4056, '2019-03-13', 55, '2019-03-13 07:52:50', NULL),
(4057, '2019-03-13', 147, '2019-03-13 07:52:53', NULL),
(4058, '2019-03-13', 152, '2019-03-13 07:53:02', NULL),
(4059, '2019-03-13', 72, '2019-03-13 07:53:14', NULL),
(4060, '2019-03-13', 57, '2019-03-13 07:55:01', NULL),
(4061, '2019-03-13', 176, '2019-03-13 07:55:08', NULL),
(4062, '2019-03-16', 173, '2019-03-16 07:37:07', '2019-03-16 12:13:34'),
(4063, '2019-03-16', 156, '2019-03-16 12:06:21', NULL),
(4064, '2019-03-16', 45, '2019-03-16 12:12:29', NULL),
(4065, '2019-03-16', 71, '2019-03-16 12:12:46', NULL),
(4066, '2019-03-16', 23, '2019-03-16 12:12:55', NULL),
(4067, '2019-03-16', 8, '2019-03-16 12:13:11', NULL),
(4068, '2019-03-16', 25, '2019-03-16 12:13:16', NULL),
(4069, '2019-03-16', 18, '2019-03-16 12:13:30', NULL),
(4070, '2019-03-16', 165, '2019-03-16 12:13:40', NULL),
(4071, '2019-03-16', 10, '2019-03-16 12:13:54', NULL),
(4072, '2019-03-16', 5, '2019-03-16 12:14:00', NULL),
(4073, '2019-03-16', 182, '2019-03-16 12:16:08', NULL),
(4074, '2019-03-16', 43, '2019-03-16 12:44:55', NULL),
(4075, '2019-03-16', 57, '2019-03-16 12:48:35', NULL),
(4076, '2019-03-16', 68, '2019-03-16 12:48:39', NULL),
(4077, '2019-03-16', 65, '2019-03-16 12:48:42', NULL),
(4078, '2019-03-16', 69, '2019-03-16 12:48:53', NULL),
(4079, '2019-03-16', 66, '2019-03-16 12:48:56', NULL),
(4080, '2019-03-16', 70, '2019-03-16 12:49:03', NULL),
(4081, '2019-03-16', 44, '2019-03-16 12:50:16', NULL),
(4082, '2019-03-16', 46, '2019-03-16 12:50:21', NULL),
(4083, '2019-03-16', 172, '2019-03-16 12:50:26', NULL),
(4084, '2019-03-16', 52, '2019-03-16 12:50:31', NULL),
(4085, '2019-03-16', 168, '2019-03-16 12:50:43', NULL),
(4086, '2019-03-16', 54, '2019-03-16 12:50:49', NULL),
(4087, '2019-03-16', 181, '2019-03-16 12:51:02', NULL),
(4088, '2019-03-16', 102, '2019-03-16 12:51:41', NULL),
(4089, '2019-03-16', 175, '2019-03-16 12:51:46', NULL),
(4090, '2019-03-16', 106, '2019-03-16 12:51:53', NULL),
(4091, '2019-03-16', 103, '2019-03-16 12:51:56', NULL),
(4092, '2019-03-16', 183, '2019-03-16 12:52:02', NULL),
(4093, '2019-03-16', 108, '2019-03-16 12:52:09', NULL),
(4094, '2019-03-16', 107, '2019-03-16 12:52:12', NULL),
(4095, '2019-03-16', 105, '2019-03-16 12:53:06', NULL),
(4096, '2019-03-18', 141, '2019-03-18 07:51:17', NULL),
(4097, '2019-03-18', 57, '2019-03-18 07:54:57', NULL),
(4098, '2019-03-18', 98, '2019-03-18 07:55:11', NULL),
(4099, '2019-03-18', 157, '2019-03-18 07:55:42', NULL),
(4100, '2019-03-18', 168, '2019-03-18 07:57:12', NULL),
(4101, '2019-03-18', 154, '2019-03-18 07:57:32', NULL),
(4102, '2019-03-18', 155, '2019-03-18 08:02:02', NULL),
(4103, '2019-03-18', 99, '2019-03-18 08:03:43', NULL),
(4104, '2019-03-18', 143, '2019-03-18 08:03:48', NULL),
(4105, '2019-03-18', 137, '2019-03-18 08:03:50', NULL),
(4106, '2019-03-18', 114, '2019-03-18 08:03:54', NULL),
(4107, '2019-03-18', 152, '2019-03-18 08:04:00', NULL),
(4108, '2019-03-18', 72, '2019-03-18 08:04:05', NULL),
(4109, '2019-03-18', 55, '2019-03-18 08:04:10', NULL),
(4110, '2019-03-18', 159, '2019-03-18 08:04:21', NULL),
(4111, '2019-03-18', 165, '2019-03-18 08:04:54', NULL),
(4112, '2019-03-18', 161, '2019-03-18 08:05:00', NULL),
(4113, '2019-03-18', 100, '2019-03-18 08:05:15', NULL),
(4114, '2019-03-18', 118, '2019-03-18 08:06:23', NULL),
(4115, '2019-03-18', 138, '2019-03-18 08:07:24', NULL),
(4116, '2019-03-18', 46, '2019-03-18 08:07:47', NULL),
(4117, '2019-03-18', 67, '2019-03-18 08:07:57', NULL),
(4118, '2019-03-18', 92, '2019-03-18 08:08:09', NULL),
(4119, '2019-03-18', 173, '2019-03-18 08:08:27', NULL),
(4120, '2019-03-18', 146, '2019-03-18 08:09:01', NULL),
(4121, '2019-03-18', 14, '2019-03-18 08:09:27', NULL),
(4122, '2019-03-18', 169, '2019-03-18 08:09:53', NULL),
(4123, '2019-03-18', 142, '2019-03-18 08:10:05', NULL),
(4124, '2019-03-18', 95, '2019-03-18 08:10:17', NULL),
(4125, '2019-03-18', 26, '2019-03-18 08:10:23', NULL),
(4126, '2019-03-18', 89, '2019-03-18 08:10:40', NULL),
(4127, '2019-03-18', 25, '2019-03-18 08:11:13', NULL),
(4128, '2019-03-18', 139, '2019-03-18 08:12:03', NULL),
(4129, '2019-03-18', 10, '2019-03-18 08:12:44', NULL),
(4130, '2019-03-18', 182, '2019-03-18 08:13:32', NULL),
(4131, '2019-03-18', 44, '2019-03-18 08:13:40', NULL),
(4132, '2019-03-18', 27, '2019-03-18 08:14:45', NULL),
(4133, '2019-03-18', 37, '2019-03-18 08:15:47', NULL),
(4134, '2019-03-18', 70, '2019-03-18 08:15:57', NULL),
(4135, '2019-03-18', 129, '2019-03-18 08:15:59', NULL),
(4136, '2019-03-18', 144, '2019-03-18 08:16:13', NULL),
(4137, '2019-03-18', 87, '2019-03-18 08:16:50', NULL),
(4138, '2019-03-18', 93, '2019-03-18 08:17:07', NULL),
(4139, '2019-03-18', 101, '2019-03-18 08:17:23', NULL),
(4140, '2019-03-18', 86, '2019-03-18 08:17:36', NULL),
(4141, '2019-03-18', 69, '2019-03-18 08:17:50', NULL),
(4142, '2019-03-18', 145, '2019-03-18 08:18:22', NULL),
(4143, '2019-03-18', 181, '2019-03-18 08:18:26', NULL),
(4144, '2019-03-18', 123, '2019-03-18 08:18:31', NULL),
(4145, '2019-03-18', 116, '2019-03-18 08:18:51', NULL),
(4146, '2019-03-18', 54, '2019-03-18 08:19:01', NULL),
(4147, '2019-03-18', 5, '2019-03-18 08:19:48', NULL),
(4148, '2019-03-18', 162, '2019-03-18 08:20:09', NULL),
(4149, '2019-03-18', 84, '2019-03-18 08:20:22', NULL),
(4150, '2019-03-18', 68, '2019-03-18 08:20:27', NULL),
(4151, '2019-03-18', 130, '2019-03-18 08:21:38', NULL),
(4152, '2019-03-18', 15, '2019-03-18 08:23:19', NULL),
(4153, '2019-03-18', 75, '2019-03-18 08:24:17', NULL),
(4154, '2019-03-18', 140, '2019-03-18 08:25:39', NULL),
(4155, '2019-03-18', 9, '2019-03-18 08:25:45', NULL),
(4156, '2019-03-18', 7, '2019-03-18 08:26:22', NULL),
(4157, '2019-03-18', 88, '2019-03-18 08:26:33', NULL),
(4158, '2019-03-18', 91, '2019-03-18 08:29:00', NULL),
(4159, '2019-03-18', 90, '2019-03-18 08:29:11', NULL),
(4160, '2019-03-18', 11, '2019-03-18 08:29:16', NULL),
(4161, '2019-03-18', 22, '2019-03-18 08:29:20', NULL),
(4162, '2019-03-18', 85, '2019-03-18 08:31:54', NULL),
(4163, '2019-03-18', 94, '2019-03-18 08:32:08', NULL),
(4164, '2019-03-18', 125, '2019-03-18 08:32:30', NULL),
(4165, '2019-03-18', 150, '2019-03-18 08:32:52', NULL),
(4166, '2019-03-18', 66, '2019-03-18 08:33:19', NULL),
(4167, '2019-03-18', 71, '2019-03-18 08:33:25', NULL),
(4168, '2019-03-18', 156, '2019-03-18 08:33:39', NULL),
(4169, '2019-03-18', 128, '2019-03-18 08:33:44', NULL),
(4170, '2019-03-18', 97, '2019-03-18 08:33:50', NULL),
(4171, '2019-03-18', 52, '2019-03-18 08:33:57', NULL),
(4172, '2019-03-18', 79, '2019-03-18 08:34:48', NULL),
(4173, '2019-03-18', 120, '2019-03-18 08:34:54', NULL),
(4174, '2019-03-18', 135, '2019-03-18 08:35:06', NULL),
(4175, '2019-03-18', 58, '2019-03-18 08:35:48', NULL),
(4176, '2019-03-18', 160, '2019-03-18 08:35:55', NULL),
(4177, '2019-03-18', 110, '2019-03-18 08:36:15', NULL),
(4178, '2019-03-18', 151, '2019-03-18 08:39:52', NULL),
(4179, '2019-03-18', 121, '2019-03-18 08:40:53', NULL),
(4180, '2019-03-18', 77, '2019-03-18 08:41:29', NULL),
(4181, '2019-03-18', 45, '2019-03-18 08:46:16', NULL),
(4182, '2019-03-18', 105, '2019-03-18 10:13:10', NULL),
(4183, '2019-03-18', 42, '2019-03-18 10:37:34', NULL),
(4184, '2019-03-19', 57, '2019-03-19 07:52:18', NULL),
(4185, '2019-03-19', 98, '2019-03-19 07:52:21', NULL),
(4186, '2019-03-19', 155, '2019-03-19 07:53:35', NULL),
(4187, '2019-03-19', 154, '2019-03-19 07:53:43', '2019-03-19 11:32:40'),
(4188, '2019-03-19', 168, '2019-03-19 07:57:33', '2019-03-19 12:52:51'),
(4189, '2019-03-19', 34, '2019-03-19 07:58:03', NULL),
(4190, '2019-03-19', 18, '2019-03-19 07:58:08', NULL),
(4191, '2019-03-19', 152, '2019-03-19 07:58:38', '2019-03-19 11:36:58'),
(4192, '2019-03-19', 114, '2019-03-19 07:59:37', NULL),
(4193, '2019-03-19', 67, '2019-03-19 08:00:28', NULL),
(4194, '2019-03-19', 96, '2019-03-19 08:01:19', NULL),
(4195, '2019-03-19', 99, '2019-03-19 08:03:16', NULL),
(4196, '2019-03-19', 165, '2019-03-19 08:04:30', '2019-03-19 12:15:05'),
(4197, '2019-03-19', 163, '2019-03-19 08:06:40', NULL),
(4198, '2019-03-19', 23, '2019-03-19 08:06:44', NULL),
(4199, '2019-03-19', 169, '2019-03-19 08:07:00', NULL),
(4200, '2019-03-19', 131, '2019-03-19 08:09:15', '2019-03-19 11:31:42'),
(4201, '2019-03-19', 92, '2019-03-19 08:09:29', NULL),
(4202, '2019-03-19', 14, '2019-03-19 08:10:05', NULL),
(4203, '2019-03-19', 126, '2019-03-19 08:10:11', NULL),
(4204, '2019-03-19', 138, '2019-03-19 08:10:15', '2019-03-19 11:32:10'),
(4205, '2019-03-19', 141, '2019-03-19 08:10:46', '2019-03-19 11:31:58'),
(4206, '2019-03-19', 173, '2019-03-19 08:10:51', '2019-03-19 12:53:04'),
(4207, '2019-03-19', 84, '2019-03-19 08:10:59', NULL),
(4208, '2019-03-19', 115, '2019-03-19 08:11:16', NULL),
(4209, '2019-03-19', 167, '2019-03-19 08:11:57', '2019-03-19 13:00:03'),
(4210, '2019-03-19', 157, '2019-03-19 08:12:06', '2019-03-19 11:32:13'),
(4211, '2019-03-19', 145, '2019-03-19 08:12:53', '2019-03-19 11:32:37'),
(4212, '2019-03-19', 161, '2019-03-19 08:13:02', NULL),
(4213, '2019-03-19', 89, '2019-03-19 08:13:40', NULL),
(4214, '2019-03-19', 65, '2019-03-19 08:13:48', NULL),
(4215, '2019-03-19', 101, '2019-03-19 08:14:13', NULL),
(4216, '2019-03-19', 38, '2019-03-19 08:15:50', NULL),
(4217, '2019-03-19', 177, '2019-03-19 08:15:56', NULL),
(4218, '2019-03-19', 29, '2019-03-19 08:16:21', NULL),
(4219, '2019-03-19', 140, '2019-03-19 08:16:32', NULL),
(4220, '2019-03-19', 31, '2019-03-19 08:16:38', NULL),
(4221, '2019-03-19', 130, '2019-03-19 08:17:36', '2019-03-19 11:32:52'),
(4222, '2019-03-19', 86, '2019-03-19 08:18:27', NULL),
(4223, '2019-03-19', 44, '2019-03-19 08:18:34', NULL),
(4224, '2019-03-19', 95, '2019-03-19 08:18:39', NULL),
(4225, '2019-03-19', 7, '2019-03-19 08:19:03', NULL),
(4226, '2019-03-19', 13, '2019-03-19 08:19:23', NULL),
(4227, '2019-03-19', 123, '2019-03-19 08:20:03', '2019-03-19 11:34:26'),
(4228, '2019-03-19', 116, '2019-03-19 08:20:08', NULL),
(4229, '2019-03-19', 118, '2019-03-19 08:20:36', NULL),
(4230, '2019-03-19', 39, '2019-03-19 08:20:53', NULL),
(4231, '2019-03-19', 156, '2019-03-19 08:21:05', NULL),
(4232, '2019-03-19', 17, '2019-03-19 08:21:07', NULL),
(4233, '2019-03-19', 93, '2019-03-19 08:21:45', NULL),
(4234, '2019-03-19', 112, '2019-03-19 08:21:53', NULL),
(4235, '2019-03-19', 45, '2019-03-19 08:22:07', '2019-03-19 12:51:36'),
(4236, '2019-03-19', 132, '2019-03-19 08:22:53', NULL),
(4237, '2019-03-19', 27, '2019-03-19 08:23:01', NULL),
(4238, '2019-03-19', 37, '2019-03-19 08:23:17', NULL),
(4239, '2019-03-19', 91, '2019-03-19 08:23:35', NULL),
(4240, '2019-03-19', 90, '2019-03-19 08:23:37', NULL),
(4241, '2019-03-19', 68, '2019-03-19 08:23:43', '2019-03-19 12:54:12'),
(4242, '2019-03-19', 22, '2019-03-19 08:23:49', NULL),
(4243, '2019-03-19', 11, '2019-03-19 08:23:53', NULL),
(4244, '2019-03-19', 5, '2019-03-19 08:26:38', NULL),
(4245, '2019-03-19', 144, '2019-03-19 08:26:41', '2019-03-19 11:32:17'),
(4246, '2019-03-19', 97, '2019-03-19 08:32:04', NULL),
(4247, '2019-03-19', 10, '2019-03-19 08:32:26', NULL),
(4248, '2019-03-19', 142, '2019-03-19 08:32:55', NULL),
(4249, '2019-03-19', 180, '2019-03-19 08:33:00', '2019-03-19 11:32:05'),
(4250, '2019-03-19', 70, '2019-03-19 08:33:12', '2019-03-19 12:54:17'),
(4251, '2019-03-19', 170, '2019-03-19 08:33:20', '2019-03-19 12:52:58'),
(4252, '2019-03-19', 179, '2019-03-19 08:33:25', '2019-03-19 12:52:30'),
(4253, '2019-03-19', 51, '2019-03-19 08:33:30', NULL),
(4254, '2019-03-19', 54, '2019-03-19 08:33:35', '2019-03-19 11:54:22'),
(4255, '2019-03-19', 66, '2019-03-19 08:33:43', NULL),
(4256, '2019-03-19', 128, '2019-03-19 08:34:13', '2019-03-19 11:31:47'),
(4257, '2019-03-19', 71, '2019-03-19 08:34:20', '2019-03-19 12:54:22'),
(4258, '2019-03-19', 52, '2019-03-19 08:34:25', '2019-03-19 13:00:09'),
(4259, '2019-03-19', 80, '2019-03-19 08:34:33', NULL),
(4260, '2019-03-19', 166, '2019-03-19 08:34:39', NULL),
(4261, '2019-03-19', 9, '2019-03-19 08:35:52', NULL),
(4262, '2019-03-19', 77, '2019-03-19 08:36:27', NULL),
(4263, '2019-03-19', 151, '2019-03-19 08:37:54', '2019-03-19 11:31:53'),
(4264, '2019-03-19', 113, '2019-03-19 08:40:19', NULL),
(4265, '2019-03-19', 153, '2019-03-19 08:41:00', '2019-03-19 11:33:00'),
(4266, '2019-03-19', 56, '2019-03-19 08:41:31', '2019-03-19 12:54:09'),
(4267, '2019-03-19', 58, '2019-03-19 08:42:28', '2019-03-19 12:54:27'),
(4268, '2019-03-19', 160, '2019-03-19 08:42:34', NULL),
(4269, '2019-03-19', 79, '2019-03-19 08:48:36', NULL),
(4270, '2019-03-19', 137, '2019-03-19 11:32:01', NULL),
(4271, '2019-03-19', 139, '2019-03-19 11:32:47', NULL),
(4272, '2019-03-19', 146, '2019-03-19 12:20:51', NULL),
(4273, '2019-03-19', 46, '2019-03-19 12:51:40', NULL),
(4274, '2019-03-19', 69, '2019-03-19 12:54:37', NULL),
(4275, '2019-03-20', 136, '2019-03-20 07:47:13', NULL),
(4276, '2019-03-20', 57, '2019-03-20 07:47:16', NULL),
(4277, '2019-03-20', 98, '2019-03-20 07:47:19', NULL),
(4278, '2019-03-20', 176, '2019-03-20 07:47:26', NULL),
(4279, '2019-03-20', 114, '2019-03-20 07:51:01', NULL),
(4280, '2019-03-20', 34, '2019-03-20 07:51:10', NULL),
(4281, '2019-03-20', 18, '2019-03-20 07:51:13', NULL),
(4282, '2019-03-20', 55, '2019-03-20 07:51:17', NULL),
(4283, '2019-03-20', 72, '2019-03-20 07:52:00', NULL),
(4284, '2019-03-20', 152, '2019-03-20 07:52:23', NULL),
(4285, '2019-03-20', 155, '2019-03-20 07:55:31', NULL),
(4286, '2019-03-20', 46, '2019-03-20 07:58:10', NULL),
(4287, '2019-03-20', 61, '2019-03-20 08:01:20', NULL),
(4288, '2019-03-20', 168, '2019-03-20 08:01:27', NULL),
(4289, '2019-03-20', 99, '2019-03-20 08:02:14', NULL),
(4290, '2019-03-20', 67, '2019-03-20 08:03:16', NULL),
(4291, '2019-03-20', 141, '2019-03-20 08:03:32', NULL),
(4292, '2019-03-20', 157, '2019-03-20 08:05:48', NULL),
(4293, '2019-03-20', 92, '2019-03-20 08:06:02', NULL),
(4294, '2019-03-23', 57, '2019-03-23 07:49:04', NULL),
(4295, '2019-03-23', 57, '2019-03-23 07:49:04', NULL),
(4296, '2019-03-23', 119, '2019-03-23 07:49:08', NULL),
(4297, '2019-03-23', 18, '2019-03-23 07:50:17', NULL),
(4298, '2019-03-23', 18, '2019-03-23 07:50:17', NULL),
(4299, '2019-03-23', 147, '2019-03-23 07:50:34', NULL),
(4300, '2019-03-23', 147, '2019-03-23 07:50:34', NULL),
(4301, '2019-03-23', 34, '2019-03-23 07:51:00', '2019-03-23 10:02:13'),
(4302, '2019-03-23', 34, '2019-03-23 07:51:00', NULL),
(4303, '2019-03-23', 152, '2019-03-23 07:51:14', NULL),
(4304, '2019-03-23', 152, '2019-03-23 07:51:14', NULL),
(4305, '2019-03-23', 72, '2019-03-23 07:51:21', NULL),
(4306, '2019-03-23', 72, '2019-03-23 07:51:21', NULL),
(4307, '2019-03-23', 154, '2019-03-23 07:52:37', NULL),
(4308, '2019-03-23', 176, '2019-03-23 07:53:05', NULL),
(4309, '2019-03-23', 176, '2019-03-23 07:53:05', NULL),
(4310, '2019-03-23', 155, '2019-03-23 07:55:39', NULL),
(4311, '2019-03-23', 155, '2019-03-23 07:55:39', NULL),
(4312, '2019-03-23', 96, '2019-03-23 07:57:13', '2019-03-23 10:29:32'),
(4313, '2019-03-23', 99, '2019-03-23 08:00:16', NULL),
(4314, '2019-03-23', 167, '2019-03-23 08:00:23', NULL),
(4315, '2019-03-23', 167, '2019-03-23 08:00:23', NULL),
(4316, '2019-03-23', 168, '2019-03-23 08:00:26', NULL),
(4317, '2019-03-23', 141, '2019-03-23 08:05:16', NULL),
(4318, '2019-03-23', 141, '2019-03-23 08:05:16', NULL),
(4319, '2019-03-23', 100, '2019-03-23 08:05:30', NULL),
(4320, '2019-03-23', 100, '2019-03-23 08:05:30', NULL),
(4321, '2019-03-23', 159, '2019-03-23 08:05:52', NULL),
(4322, '2019-03-23', 159, '2019-03-23 08:05:52', NULL),
(4323, '2019-03-23', 170, '2019-03-23 08:07:55', NULL),
(4324, '2019-03-23', 170, '2019-03-23 08:07:55', NULL),
(4325, '2019-03-23', 84, '2019-03-23 08:08:38', NULL),
(4326, '2019-03-23', 84, '2019-03-23 08:08:38', NULL),
(4327, '2019-03-23', 95, '2019-03-23 08:09:00', '2019-03-23 10:28:16'),
(4328, '2019-03-23', 95, '2019-03-23 08:09:00', NULL),
(4329, '2019-03-23', 169, '2019-03-23 08:09:06', NULL),
(4330, '2019-03-23', 169, '2019-03-23 08:09:06', NULL),
(4331, '2019-03-23', 61, '2019-03-23 08:10:26', NULL),
(4332, '2019-03-23', 61, '2019-03-23 08:10:26', NULL),
(4333, '2019-03-23', 68, '2019-03-23 08:10:35', NULL),
(4334, '2019-03-23', 68, '2019-03-23 08:10:35', NULL),
(4335, '2019-03-23', 67, '2019-03-23 08:11:48', NULL),
(4336, '2019-03-23', 67, '2019-03-23 08:11:48', NULL),
(4337, '2019-03-23', 37, '2019-03-23 08:12:03', '2019-03-23 10:26:07'),
(4338, '2019-03-23', 37, '2019-03-23 08:12:03', NULL),
(4339, '2019-03-23', 171, '2019-03-23 08:13:45', NULL),
(4340, '2019-03-23', 180, '2019-03-23 08:13:56', NULL),
(4341, '2019-03-23', 172, '2019-03-23 08:14:20', NULL),
(4342, '2019-03-23', 172, '2019-03-23 08:14:20', NULL),
(4343, '2019-03-23', 44, '2019-03-23 08:14:34', NULL),
(4344, '2019-03-23', 44, '2019-03-23 08:14:34', NULL),
(4345, '2019-03-23', 157, '2019-03-23 08:14:39', '2019-03-23 10:43:06'),
(4346, '2019-03-23', 157, '2019-03-23 08:14:39', NULL),
(4347, '2019-03-23', 110, '2019-03-23 08:14:48', NULL),
(4348, '2019-03-23', 85, '2019-03-23 08:15:06', NULL),
(4349, '2019-03-23', 85, '2019-03-23 08:15:06', NULL),
(4350, '2019-03-23', 92, '2019-03-23 08:15:30', NULL),
(4351, '2019-03-23', 92, '2019-03-23 08:15:30', NULL),
(4352, '2019-03-23', 86, '2019-03-23 08:16:00', '2019-03-23 10:28:52'),
(4353, '2019-03-23', 86, '2019-03-23 08:16:00', NULL),
(4354, '2019-03-23', 101, '2019-03-23 08:17:41', NULL),
(4355, '2019-03-23', 101, '2019-03-23 08:17:41', NULL),
(4356, '2019-03-23', 89, '2019-03-23 08:17:58', '2019-03-23 10:29:06'),
(4357, '2019-03-23', 89, '2019-03-23 08:17:58', NULL),
(4358, '2019-03-23', 5, '2019-03-23 08:18:39', NULL),
(4359, '2019-03-23', 70, '2019-03-23 08:18:42', NULL),
(4360, '2019-03-23', 70, '2019-03-23 08:18:42', NULL),
(4361, '2019-03-23', 138, '2019-03-23 08:18:46', NULL),
(4362, '2019-03-23', 25, '2019-03-23 08:20:08', NULL),
(4363, '2019-03-23', 25, '2019-03-23 08:20:08', NULL),
(4364, '2019-03-23', 133, '2019-03-23 08:20:17', NULL),
(4365, '2019-03-23', 91, '2019-03-23 08:20:37', '2019-03-23 10:31:50'),
(4366, '2019-03-23', 91, '2019-03-23 08:20:37', NULL),
(4367, '2019-03-23', 90, '2019-03-23 08:20:47', NULL),
(4368, '2019-03-23', 90, '2019-03-23 08:20:47', NULL),
(4369, '2019-03-23', 22, '2019-03-23 08:20:58', '2019-03-23 10:27:15'),
(4370, '2019-03-23', 22, '2019-03-23 08:20:58', NULL),
(4371, '2019-03-23', 11, '2019-03-23 08:21:13', NULL),
(4372, '2019-03-23', 125, '2019-03-23 08:21:18', '2019-03-23 10:43:01'),
(4373, '2019-03-23', 130, '2019-03-23 08:21:20', NULL),
(4374, '2019-03-23', 118, '2019-03-23 08:28:15', '2019-03-23 10:01:29'),
(4375, '2019-03-23', 118, '2019-03-23 08:28:15', NULL),
(4376, '2019-03-23', 26, '2019-03-23 08:28:19', '2019-03-23 10:31:39'),
(4377, '2019-03-23', 75, '2019-03-23 08:28:29', NULL),
(4378, '2019-03-23', 75, '2019-03-23 08:28:29', NULL),
(4379, '2019-03-23', 131, '2019-03-23 08:29:16', '2019-03-23 10:46:10'),
(4380, '2019-03-23', 148, '2019-03-23 08:29:21', NULL),
(4381, '2019-03-23', 8, '2019-03-23 08:29:25', NULL),
(4382, '2019-03-23', 9, '2019-03-23 08:29:30', NULL),
(4383, '2019-03-23', 163, '2019-03-23 08:29:36', NULL),
(4384, '2019-03-23', 163, '2019-03-23 08:29:36', NULL),
(4385, '2019-03-23', 10, '2019-03-23 08:29:40', NULL),
(4386, '2019-03-23', 53, '2019-03-23 08:29:53', NULL),
(4387, '2019-03-23', 15, '2019-03-23 08:30:04', NULL),
(4388, '2019-03-23', 15, '2019-03-23 08:30:04', NULL),
(4389, '2019-03-23', 88, '2019-03-23 08:30:17', NULL),
(4390, '2019-03-23', 88, '2019-03-23 08:30:17', NULL),
(4391, '2019-03-23', 97, '2019-03-23 08:30:23', '2019-03-23 10:32:41'),
(4392, '2019-03-23', 27, '2019-03-23 08:30:29', NULL),
(4393, '2019-03-23', 27, '2019-03-23 08:30:29', NULL),
(4394, '2019-03-23', 137, '2019-03-23 08:30:38', NULL),
(4395, '2019-03-23', 137, '2019-03-23 08:30:38', NULL),
(4396, '2019-03-23', 114, '2019-03-23 08:30:42', NULL),
(4397, '2019-03-23', 114, '2019-03-23 08:30:42', NULL),
(4398, '2019-03-23', 78, '2019-03-23 08:30:46', '2019-03-23 10:28:38'),
(4399, '2019-03-23', 78, '2019-03-23 08:30:46', NULL),
(4400, '2019-03-23', 115, '2019-03-23 08:30:59', NULL),
(4401, '2019-03-23', 115, '2019-03-23 08:30:59', NULL),
(4402, '2019-03-23', 173, '2019-03-23 08:31:03', NULL),
(4403, '2019-03-23', 173, '2019-03-23 08:31:03', NULL),
(4404, '2019-03-23', 142, '2019-03-23 08:31:08', NULL),
(4405, '2019-03-23', 120, '2019-03-23 08:32:19', NULL),
(4406, '2019-03-23', 140, '2019-03-23 08:32:37', NULL),
(4407, '2019-03-23', 79, '2019-03-23 08:33:13', NULL),
(4408, '2019-03-23', 52, '2019-03-23 08:33:32', NULL),
(4409, '2019-03-23', 30, '2019-03-23 08:34:45', NULL),
(4410, '2019-03-23', 116, '2019-03-23 08:34:56', '2019-03-23 10:30:34'),
(4411, '2019-03-23', 116, '2019-03-23 08:34:56', NULL),
(4412, '2019-03-23', 135, '2019-03-23 08:35:12', NULL),
(4413, '2019-03-23', 43, '2019-03-23 08:35:57', NULL),
(4414, '2019-03-23', 112, '2019-03-23 08:37:05', '2019-03-23 10:28:28'),
(4415, '2019-03-23', 113, '2019-03-23 08:37:17', '2019-03-23 10:24:47'),
(4416, '2019-03-23', 113, '2019-03-23 08:37:17', NULL),
(4417, '2019-03-23', 151, '2019-03-23 08:37:22', NULL),
(4418, '2019-03-23', 151, '2019-03-23 08:37:22', NULL),
(4419, '2019-03-23', 71, '2019-03-23 08:38:20', NULL),
(4420, '2019-03-23', 153, '2019-03-23 08:39:11', '2019-03-23 10:42:52'),
(4421, '2019-03-23', 153, '2019-03-23 08:39:11', NULL),
(4422, '2019-03-23', 66, '2019-03-23 08:39:31', NULL),
(4423, '2019-03-23', 66, '2019-03-23 08:39:31', NULL),
(4424, '2019-03-23', 80, '2019-03-23 08:39:52', '2019-03-23 10:28:47'),
(4425, '2019-03-23', 149, '2019-03-23 08:45:05', '2019-03-23 10:25:06'),
(4426, '2019-03-23', 149, '2019-03-23 08:45:05', NULL),
(4427, '2019-03-23', 134, '2019-03-23 08:47:18', NULL),
(4428, '2019-03-23', 134, '2019-03-23 08:47:18', NULL),
(4429, '2019-03-23', 105, '2019-03-23 10:10:29', NULL),
(4430, '2019-03-23', 105, '2019-03-23 10:10:29', NULL),
(4431, '2019-03-23', 174, '2019-03-23 10:24:15', NULL),
(4432, '2019-03-23', 174, '2019-03-23 10:24:15', NULL),
(4433, '2019-03-23', 38, '2019-03-23 10:24:42', NULL),
(4434, '2019-03-23', 38, '2019-03-23 10:24:42', NULL),
(4435, '2019-03-23', 87, '2019-03-23 10:28:55', NULL),
(4436, '2019-03-23', 111, '2019-03-23 10:29:24', NULL),
(4437, '2019-03-23', 111, '2019-03-23 10:29:24', NULL),
(4438, '2019-03-23', 28, '2019-03-23 10:32:08', NULL),
(4439, '2019-03-23', 183, '2019-03-23 10:36:37', NULL),
(4440, '2019-03-23', 183, '2019-03-23 10:36:37', NULL),
(4441, '2019-03-23', 108, '2019-03-23 10:36:45', NULL),
(4442, '2019-03-23', 108, '2019-03-23 10:36:45', NULL),
(4443, '2019-03-23', 106, '2019-03-23 10:37:32', NULL),
(4444, '2019-03-23', 106, '2019-03-23 10:37:32', NULL),
(4445, '2019-03-23', 104, '2019-03-23 10:38:37', NULL),
(4446, '2019-03-23', 103, '2019-03-23 10:41:22', NULL),
(4447, '2019-03-23', 103, '2019-03-23 10:41:22', NULL),
(4448, '2019-03-23', 175, '2019-03-23 10:42:44', NULL),
(4449, '2019-03-23', 175, '2019-03-23 10:42:44', NULL),
(4450, '2019-03-23', 126, '2019-03-23 10:42:47', NULL),
(4451, '2019-03-23', 107, '2019-03-23 10:43:10', NULL),
(4452, '2019-03-23', 107, '2019-03-23 10:43:10', NULL),
(4453, '2019-03-23', 36, '2019-03-23 10:49:30', NULL),
(4454, '2019-03-23', 36, '2019-03-23 10:49:30', NULL),
(4455, '2019-03-23', 35, '2019-03-23 10:49:34', NULL),
(4456, '2019-03-23', 35, '2019-03-23 10:49:35', NULL),
(4457, '2019-03-24', 72, '2019-03-24 07:51:26', NULL),
(4458, '2019-03-24', 114, '2019-03-24 07:51:33', NULL),
(4459, '2019-03-24', 18, '2019-03-24 07:51:37', NULL),
(4460, '2019-03-24', 147, '2019-03-24 07:51:45', NULL),
(4461, '2019-03-24', 34, '2019-03-24 07:52:03', NULL),
(4462, '2019-03-24', 152, '2019-03-24 07:52:16', NULL),
(4463, '2019-03-24', 57, '2019-03-24 07:54:40', NULL),
(4464, '2019-03-24', 155, '2019-03-24 07:57:02', NULL),
(4465, '2019-03-24', 96, '2019-03-24 07:57:20', NULL),
(4466, '2019-03-24', 168, '2019-03-24 08:00:04', NULL),
(4467, '2019-03-24', 95, '2019-03-24 08:01:42', NULL),
(4468, '2019-03-24', 172, '2019-03-24 08:02:32', NULL),
(4469, '2019-03-24', 167, '2019-03-24 08:02:40', NULL),
(4470, '2019-03-24', 85, '2019-03-24 08:02:48', NULL),
(4471, '2019-03-24', 99, '2019-03-24 08:03:07', NULL),
(4472, '2019-03-24', 94, '2019-03-24 08:06:38', NULL),
(4473, '2019-03-24', 7, '2019-03-24 08:06:43', NULL),
(4474, '2019-03-24', 163, '2019-03-24 08:06:51', NULL),
(4475, '2019-03-24', 169, '2019-03-24 08:06:57', NULL),
(4476, '2019-03-24', 100, '2019-03-24 08:07:21', NULL),
(4477, '2019-03-24', 92, '2019-03-24 08:07:24', NULL),
(4478, '2019-03-24', 173, '2019-03-24 08:08:40', NULL),
(4479, '2019-03-24', 31, '2019-03-24 08:09:25', NULL),
(4480, '2019-03-24', 161, '2019-03-24 08:09:45', NULL),
(4481, '2019-03-24', 46, '2019-03-24 08:09:55', NULL),
(4482, '2019-03-24', 165, '2019-03-24 08:09:58', NULL),
(4483, '2019-03-24', 148, '2019-03-24 08:10:29', NULL),
(4484, '2019-03-24', 118, '2019-03-24 08:11:11', NULL),
(4485, '2019-03-24', 159, '2019-03-24 08:11:21', NULL),
(4486, '2019-03-24', 131, '2019-03-24 08:11:28', NULL),
(4487, '2019-03-24', 37, '2019-03-24 08:13:27', NULL),
(4488, '2019-03-24', 88, '2019-03-24 08:13:44', NULL),
(4489, '2019-03-24', 38, '2019-03-24 08:14:06', NULL),
(4490, '2019-03-24', 67, '2019-03-24 08:14:22', NULL),
(4491, '2019-03-24', 182, '2019-03-24 08:15:13', NULL),
(4492, '2019-03-24', 144, '2019-03-24 08:15:33', NULL),
(4493, '2019-03-24', 78, '2019-03-24 08:15:50', NULL),
(4494, '2019-03-24', 70, '2019-03-24 08:16:00', NULL),
(4495, '2019-03-24', 54, '2019-03-24 08:16:06', NULL),
(4496, '2019-03-24', 5, '2019-03-24 08:16:18', NULL),
(4497, '2019-03-24', 69, '2019-03-24 08:17:02', NULL),
(4498, '2019-03-24', 171, '2019-03-24 08:17:21', NULL),
(4499, '2019-03-24', 115, '2019-03-24 08:17:56', NULL),
(4500, '2019-03-24', 84, '2019-03-24 08:18:19', NULL),
(4501, '2019-03-24', 93, '2019-03-24 08:18:27', NULL),
(4502, '2019-03-24', 15, '2019-03-24 08:18:45', NULL),
(4503, '2019-03-24', 141, '2019-03-24 08:18:56', NULL),
(4504, '2019-03-24', 25, '2019-03-24 08:19:32', NULL),
(4505, '2019-03-24', 138, '2019-03-24 08:19:46', NULL),
(4506, '2019-03-24', 65, '2019-03-24 08:19:49', NULL),
(4507, '2019-03-24', 146, '2019-03-24 08:19:53', NULL),
(4508, '2019-03-24', 86, '2019-03-24 08:20:00', NULL),
(4509, '2019-03-24', 14, '2019-03-24 08:20:07', NULL),
(4510, '2019-03-24', 157, '2019-03-24 08:23:39', NULL),
(4511, '2019-03-24', 8, '2019-03-24 08:24:11', NULL),
(4512, '2019-03-24', 91, '2019-03-24 08:24:40', NULL),
(4513, '2019-03-24', 11, '2019-03-24 08:24:48', NULL),
(4514, '2019-03-24', 90, '2019-03-24 08:27:17', NULL),
(4515, '2019-03-24', 112, '2019-03-24 08:28:19', NULL),
(4516, '2019-03-24', 97, '2019-03-24 08:28:32', NULL),
(4517, '2019-03-24', 9, '2019-03-24 08:29:29', NULL),
(4518, '2019-03-24', 20, '2019-03-24 08:29:35', NULL),
(4519, '2019-03-24', 177, '2019-03-24 08:29:51', NULL),
(4520, '2019-03-24', 53, '2019-03-24 08:29:59', NULL),
(4521, '2019-03-24', 44, '2019-03-24 08:30:03', NULL),
(4522, '2019-03-24', 178, '2019-03-24 08:30:08', NULL),
(4523, '2019-03-24', 181, '2019-03-24 08:30:13', NULL),
(4524, '2019-03-24', 179, '2019-03-24 08:30:18', NULL),
(4525, '2019-03-24', 150, '2019-03-24 08:30:24', NULL),
(4526, '2019-03-24', 71, '2019-03-24 08:30:29', NULL),
(4527, '2019-03-24', 45, '2019-03-24 08:30:34', NULL),
(4528, '2019-03-24', 180, '2019-03-24 08:30:39', NULL),
(4529, '2019-03-24', 27, '2019-03-24 08:30:44', NULL),
(4530, '2019-03-24', 166, '2019-03-24 08:30:47', NULL),
(4531, '2019-03-24', 58, '2019-03-24 08:31:04', NULL),
(4532, '2019-03-24', 43, '2019-03-24 08:31:10', NULL),
(4533, '2019-03-24', 160, '2019-03-24 08:31:17', NULL),
(4534, '2019-03-24', 89, '2019-03-24 08:31:24', NULL),
(4535, '2019-03-24', 17, '2019-03-24 08:32:05', NULL),
(4536, '2019-03-24', 52, '2019-03-24 08:32:31', NULL),
(4537, '2019-03-24', 60, '2019-03-24 08:33:03', NULL),
(4538, '2019-03-24', 130, '2019-03-24 08:33:09', NULL),
(4539, '2019-03-24', 133, '2019-03-24 08:33:43', NULL),
(4540, '2019-03-24', 29, '2019-03-24 08:34:16', NULL),
(4541, '2019-03-24', 66, '2019-03-24 08:34:28', NULL),
(4542, '2019-03-24', 80, '2019-03-24 08:34:37', NULL),
(4543, '2019-03-24', 61, '2019-03-24 08:38:15', NULL),
(4544, '2019-03-24', 121, '2019-03-24 08:39:09', NULL),
(4545, '2019-03-24', 135, '2019-03-24 08:39:41', NULL),
(4546, '2019-03-24', 79, '2019-03-24 08:39:51', NULL),
(4547, '2019-03-24', 128, '2019-03-24 08:41:14', NULL),
(4548, '2019-03-24', 151, '2019-03-24 08:42:25', NULL),
(4549, '2019-03-24', 134, '2019-03-24 08:43:53', NULL),
(4550, '2019-03-24', 113, '2019-03-24 08:49:03', NULL),
(4551, '2019-03-25', 59, '2019-03-25 07:49:43', NULL),
(4552, '2019-03-25', 65, '2019-03-25 07:54:22', NULL),
(4553, '2019-03-25', 34, '2019-03-25 07:55:16', '2019-03-25 10:20:57'),
(4554, '2019-03-25', 55, '2019-03-25 07:55:19', NULL),
(4555, '2019-03-25', 18, '2019-03-25 07:55:22', '2019-03-25 12:09:03'),
(4556, '2019-03-25', 147, '2019-03-25 07:55:46', NULL),
(4557, '2019-03-25', 72, '2019-03-25 07:56:41', NULL),
(4558, '2019-03-25', 152, '2019-03-25 07:57:10', '2019-03-25 11:34:13'),
(4559, '2019-03-25', 99, '2019-03-25 07:59:19', '2019-03-25 10:35:56'),
(4560, '2019-03-25', 159, '2019-03-25 08:00:41', '2019-03-25 10:36:07'),
(4561, '2019-03-25', 100, '2019-03-25 08:02:32', '2019-03-25 10:37:25'),
(4562, '2019-03-25', 77, '2019-03-25 08:03:17', '2019-03-25 10:36:54'),
(4563, '2019-03-25', 46, '2019-03-25 08:03:47', '2019-03-25 12:44:02'),
(4564, '2019-03-25', 92, '2019-03-25 08:05:10', NULL),
(4565, '2019-03-25', 124, '2019-03-25 08:07:08', '2019-03-25 11:34:23'),
(4566, '2019-03-25', 25, '2019-03-25 08:07:21', '2019-03-25 12:09:38'),
(4567, '2019-03-25', 29, '2019-03-25 08:30:04', NULL),
(4568, '2019-03-25', 131, '2019-03-25 08:30:07', '2019-03-25 11:33:50'),
(4569, '2019-03-25', 136, '2019-03-25 08:30:19', NULL),
(4570, '2019-03-25', 76, '2019-03-25 08:30:24', NULL),
(4571, '2019-03-25', 118, '2019-03-25 08:30:29', '2019-03-25 10:21:01'),
(4572, '2019-03-25', 17, '2019-03-25 08:30:36', '2019-03-25 10:21:19'),
(4573, '2019-03-25', 80, '2019-03-25 08:30:40', '2019-03-25 10:36:41'),
(4574, '2019-03-25', 128, '2019-03-25 08:30:46', NULL),
(4575, '2019-03-25', 156, '2019-03-25 08:30:51', '2019-03-25 11:33:53'),
(4576, '2019-03-25', 148, '2019-03-25 08:31:04', '2019-03-25 11:33:18'),
(4577, '2019-03-25', 9, '2019-03-25 08:31:10', NULL),
(4578, '2019-03-25', 5, '2019-03-25 08:31:14', '2019-03-25 12:09:20'),
(4579, '2019-03-25', 61, '2019-03-25 08:31:20', NULL),
(4580, '2019-03-25', 56, '2019-03-25 08:31:23', NULL),
(4581, '2019-03-25', 71, '2019-03-25 08:31:41', NULL),
(4582, '2019-03-25', 44, '2019-03-25 08:31:47', '2019-03-25 12:44:07'),
(4583, '2019-03-25', 8, '2019-03-25 08:31:51', '2019-03-25 12:12:10'),
(4584, '2019-03-25', 20, '2019-03-25 08:31:56', NULL),
(4585, '2019-03-25', 179, '2019-03-25 08:32:01', NULL),
(4586, '2019-03-25', 178, '2019-03-25 08:32:06', NULL),
(4587, '2019-03-25', 180, '2019-03-25 08:32:13', '2019-03-25 11:32:42'),
(4588, '2019-03-25', 97, '2019-03-25 08:32:19', NULL),
(4589, '2019-03-25', 68, '2019-03-25 08:32:34', NULL),
(4590, '2019-03-25', 27, '2019-03-25 08:33:05', NULL),
(4591, '2019-03-25', 153, '2019-03-25 08:33:16', '2019-03-25 11:33:59'),
(4592, '2019-03-25', 117, '2019-03-25 08:33:50', '2019-03-25 10:36:01'),
(4593, '2019-03-25', 67, '2019-03-25 08:34:39', NULL),
(4594, '2019-03-25', 110, '2019-03-25 08:35:43', NULL),
(4595, '2019-03-25', 135, '2019-03-25 08:35:49', '2019-03-25 11:32:53'),
(4596, '2019-03-25', 52, '2019-03-25 08:36:31', '2019-03-25 12:09:09'),
(4597, '2019-03-25', 160, '2019-03-25 08:37:04', NULL),
(4598, '2019-03-25', 58, '2019-03-25 08:37:09', NULL),
(4599, '2019-03-25', 151, '2019-03-25 08:37:14', '2019-03-25 11:33:26'),
(4600, '2019-03-25', 113, '2019-03-25 08:45:16', '2019-03-25 10:21:13'),
(4601, '2019-03-25', 134, '2019-03-25 08:50:58', '2019-03-25 11:34:04'),
(4602, '2019-03-25', 37, '2019-03-25 10:20:42', NULL),
(4603, '2019-03-25', 31, '2019-03-25 10:21:25', NULL),
(4604, '2019-03-25', 116, '2019-03-25 10:21:34', NULL),
(4605, '2019-03-25', 30, '2019-03-25 10:24:11', NULL),
(4606, '2019-03-25', 40, '2019-03-25 10:26:57', NULL),
(4607, '2019-03-25', 111, '2019-03-25 10:32:53', NULL),
(4608, '2019-03-25', 33, '2019-03-25 10:32:56', NULL),
(4609, '2019-03-25', 42, '2019-03-25 10:33:46', NULL),
(4610, '2019-03-25', 78, '2019-03-25 10:35:43', NULL),
(4611, '2019-03-25', 95, '2019-03-25 10:35:48', NULL),
(4612, '2019-03-25', 91, '2019-03-25 10:36:15', NULL),
(4613, '2019-03-25', 89, '2019-03-25 10:36:22', NULL),
(4614, '2019-03-25', 79, '2019-03-25 10:36:29', NULL),
(4615, '2019-03-25', 93, '2019-03-25 10:36:35', NULL),
(4616, '2019-03-25', 84, '2019-03-25 10:36:48', NULL),
(4617, '2019-03-25', 86, '2019-03-25 10:36:58', NULL),
(4618, '2019-03-25', 102, '2019-03-25 10:37:03', '2019-03-25 12:49:48'),
(4619, '2019-03-25', 96, '2019-03-25 10:37:17', NULL),
(4620, '2019-03-25', 87, '2019-03-25 10:37:29', NULL),
(4621, '2019-03-25', 75, '2019-03-25 10:37:35', NULL),
(4622, '2019-03-25', 94, '2019-03-25 10:37:41', NULL),
(4623, '2019-03-25', 101, '2019-03-25 10:37:45', NULL),
(4624, '2019-03-25', 85, '2019-03-25 10:38:04', NULL),
(4625, '2019-03-25', 149, '2019-03-25 10:38:15', NULL),
(4626, '2019-03-25', 174, '2019-03-25 10:40:50', NULL),
(4627, '2019-03-25', 108, '2019-03-25 10:42:15', NULL),
(4628, '2019-03-25', 106, '2019-03-25 10:42:42', NULL),
(4629, '2019-03-25', 183, '2019-03-25 10:44:44', NULL),
(4630, '2019-03-25', 104, '2019-03-25 10:45:21', NULL),
(4631, '2019-03-25', 107, '2019-03-25 10:57:08', NULL),
(4632, '2019-03-25', 36, '2019-03-25 11:02:55', NULL),
(4633, '2019-03-25', 137, '2019-03-25 11:32:36', NULL),
(4634, '2019-03-25', 141, '2019-03-25 11:32:47', NULL),
(4635, '2019-03-25', 142, '2019-03-25 11:33:00', NULL),
(4636, '2019-03-25', 126, '2019-03-25 11:33:06', NULL),
(4637, '2019-03-25', 150, '2019-03-25 11:33:10', NULL),
(4638, '2019-03-25', 157, '2019-03-25 11:33:13', NULL),
(4639, '2019-03-25', 143, '2019-03-25 11:33:32', NULL),
(4640, '2019-03-25', 145, '2019-03-25 11:33:36', NULL),
(4641, '2019-03-25', 146, '2019-03-25 11:33:41', '2019-03-25 12:35:20'),
(4642, '2019-03-25', 123, '2019-03-25 11:34:08', NULL),
(4643, '2019-03-25', 132, '2019-03-25 11:34:18', NULL),
(4644, '2019-03-25', 45, '2019-03-25 12:09:06', NULL),
(4645, '2019-03-25', 7, '2019-03-25 12:11:30', NULL),
(4646, '2019-03-25', 182, '2019-03-25 12:12:06', NULL),
(4647, '2019-03-25', 10, '2019-03-25 12:13:09', NULL),
(4648, '2019-03-25', 169, '2019-03-25 12:13:15', NULL),
(4649, '2019-03-25', 173, '2019-03-25 12:30:50', NULL),
(4650, '2019-03-25', 171, '2019-03-25 12:33:04', NULL),
(4651, '2019-03-25', 170, '2019-03-25 12:37:53', NULL),
(4652, '2019-03-25', 53, '2019-03-25 12:44:15', NULL),
(4653, '2019-03-25', 181, '2019-03-25 12:44:50', NULL),
(4654, '2019-03-27', 72, '2019-03-27 07:56:12', '2019-03-27 12:47:45'),
(4655, '2019-03-27', 114, '2019-03-27 07:56:15', '2019-03-27 10:38:53'),
(4656, '2019-03-27', 147, '2019-03-27 07:56:24', '2019-03-27 11:34:49'),
(4657, '2019-03-27', 55, '2019-03-27 07:56:30', NULL),
(4658, '2019-03-27', 168, '2019-03-27 07:56:35', NULL),
(4659, '2019-03-27', 18, '2019-03-27 07:56:50', NULL),
(4660, '2019-03-27', 152, '2019-03-27 07:57:32', '2019-03-27 11:35:15'),
(4661, '2019-03-27', 99, '2019-03-27 08:01:18', NULL),
(4662, '2019-03-27', 96, '2019-03-27 08:01:24', '2019-03-27 10:22:08'),
(4663, '2019-03-27', 135, '2019-03-27 08:01:45', NULL),
(4664, '2019-03-27', 124, '2019-03-27 08:05:56', NULL),
(4665, '2019-03-27', 141, '2019-03-27 08:06:46', NULL),
(4666, '2019-03-27', 154, '2019-03-27 08:08:47', NULL),
(4667, '2019-03-27', 94, '2019-03-27 08:08:59', '2019-03-27 10:22:22'),
(4668, '2019-03-27', 163, '2019-03-27 08:09:10', '2019-03-27 12:11:28'),
(4669, '2019-03-27', 169, '2019-03-27 08:09:21', '2019-03-27 12:55:00'),
(4670, '2019-03-27', 159, '2019-03-27 08:10:00', '2019-03-27 10:22:13'),
(4671, '2019-03-27', 7, '2019-03-27 08:10:39', '2019-03-27 11:38:05'),
(4672, '2019-03-27', 165, '2019-03-27 08:11:22', '2019-03-27 12:10:16'),
(4673, '2019-03-27', 64, '2019-03-27 08:12:26', '2019-03-27 12:46:22'),
(4674, '2019-03-27', 100, '2019-03-27 08:12:31', NULL),
(4675, '2019-03-27', 54, '2019-03-27 08:12:44', '2019-03-27 12:50:58'),
(4676, '2019-03-27', 70, '2019-03-27 08:12:48', NULL),
(4677, '2019-03-27', 16, '2019-03-27 08:12:54', '2019-03-27 12:09:56'),
(4678, '2019-03-27', 5, '2019-03-27 08:13:00', '2019-03-27 12:10:37'),
(4679, '2019-03-27', 46, '2019-03-27 08:13:03', NULL),
(4680, '2019-03-27', 92, '2019-03-27 08:13:49', NULL),
(4681, '2019-03-27', 131, '2019-03-27 08:14:25', '2019-03-27 10:49:45'),
(4682, '2019-03-27', 67, '2019-03-27 08:14:31', '2019-03-27 12:44:51'),
(4683, '2019-03-27', 76, '2019-03-27 08:14:40', NULL),
(4684, '2019-03-27', 17, '2019-03-27 08:14:44', NULL),
(4685, '2019-03-27', 68, '2019-03-27 08:14:50', '2019-03-27 12:55:53'),
(4686, '2019-03-27', 150, '2019-03-27 08:15:29', '2019-03-27 11:35:33'),
(4687, '2019-03-27', 89, '2019-03-27 08:15:50', '2019-03-27 10:21:38'),
(4688, '2019-03-27', 38, '2019-03-27 08:16:04', '2019-03-27 10:36:16'),
(4689, '2019-03-27', 69, '2019-03-27 08:16:34', NULL),
(4690, '2019-03-27', 173, '2019-03-27 08:16:46', '2019-03-27 12:57:18'),
(4691, '2019-03-27', 118, '2019-03-27 08:17:03', '2019-03-27 10:30:19'),
(4692, '2019-03-27', 26, '2019-03-27 08:17:28', '2019-03-27 10:20:06'),
(4693, '2019-03-27', 171, '2019-03-27 08:17:34', '2019-03-27 12:57:04'),
(4694, '2019-03-27', 182, '2019-03-27 08:17:44', '2019-03-27 12:09:40'),
(4695, '2019-03-27', 101, '2019-03-27 08:18:36', '2019-03-27 10:21:10'),
(4696, '2019-03-27', 90, '2019-03-27 08:19:11', NULL),
(4697, '2019-03-27', 145, '2019-03-27 08:19:38', '2019-03-27 11:35:05'),
(4698, '2019-03-27', 181, '2019-03-27 08:19:42', '2019-03-27 12:50:29'),
(4699, '2019-03-27', 25, '2019-03-27 08:19:47', '2019-03-27 12:10:07'),
(4700, '2019-03-27', 11, '2019-03-27 08:19:52', '2019-03-27 12:10:20'),
(4701, '2019-03-27', 161, '2019-03-27 08:19:55', '2019-03-27 12:10:11'),
(4702, '2019-03-27', 125, '2019-03-27 08:20:00', NULL),
(4703, '2019-03-27', 34, '2019-03-27 08:20:05', '2019-03-27 10:35:19'),
(4704, '2019-03-27', 91, '2019-03-27 08:20:10', NULL),
(4705, '2019-03-27', 45, '2019-03-27 08:21:01', '2019-03-27 12:51:28'),
(4706, '2019-03-27', 84, '2019-03-27 08:21:04', '2019-03-27 10:21:17'),
(4707, '2019-03-27', 79, '2019-03-27 08:22:51', NULL),
(4708, '2019-03-27', 37, '2019-03-27 08:29:38', '2019-03-27 10:19:54'),
(4709, '2019-03-27', 116, '2019-03-27 08:29:56', '2019-03-27 10:36:38'),
(4710, '2019-03-27', 146, '2019-03-27 08:30:02', '2019-03-27 11:34:44'),
(4711, '2019-03-27', 80, '2019-03-27 08:30:14', '2019-03-27 10:21:58'),
(4712, '2019-03-27', 75, '2019-03-27 08:30:20', NULL),
(4713, '2019-03-27', 10, '2019-03-27 08:30:44', '2019-03-27 12:10:44'),
(4714, '2019-03-27', 66, '2019-03-27 08:30:53', NULL),
(4715, '2019-03-27', 63, '2019-03-27 08:30:59', NULL),
(4716, '2019-03-27', 15, '2019-03-27 08:31:02', '2019-03-27 12:09:15'),
(4717, '2019-03-27', 71, '2019-03-27 08:31:08', '2019-03-27 12:45:55'),
(4718, '2019-03-27', 29, '2019-03-27 08:31:13', NULL),
(4719, '2019-03-27', 43, '2019-03-27 08:31:27', '2019-03-27 12:51:23'),
(4720, '2019-03-27', 170, '2019-03-27 08:31:30', '2019-03-27 12:55:14'),
(4721, '2019-03-27', 166, '2019-03-27 08:31:34', '2019-03-27 12:09:45'),
(4722, '2019-03-27', 9, '2019-03-27 08:31:40', '2019-03-27 12:10:24'),
(4723, '2019-03-27', 44, '2019-03-27 08:33:02', '2019-03-27 12:49:46'),
(4724, '2019-03-27', 61, '2019-03-27 08:33:42', '2019-03-27 13:10:30'),
(4725, '2019-03-27', 95, '2019-03-27 08:34:08', NULL),
(4726, '2019-03-27', 148, '2019-03-27 08:34:46', '2019-03-27 11:35:28'),
(4727, '2019-03-27', 20, '2019-03-27 08:35:26', NULL),
(4728, '2019-03-27', 77, '2019-03-27 08:35:41', '2019-03-27 10:30:15'),
(4729, '2019-03-27', 52, '2019-03-27 08:35:45', '2019-03-27 12:49:14'),
(4730, '2019-03-27', 93, '2019-03-27 08:35:59', '2019-03-27 10:22:48'),
(4731, '2019-03-27', 97, '2019-03-27 08:36:05', NULL),
(4732, '2019-03-27', 130, '2019-03-27 08:36:23', '2019-03-27 11:34:55'),
(4733, '2019-03-27', 153, '2019-03-27 08:36:28', '2019-03-27 11:35:22'),
(4734, '2019-03-27', 86, '2019-03-27 08:36:33', '2019-03-27 10:21:42'),
(4735, '2019-03-27', 53, '2019-03-27 08:38:33', '2019-03-27 12:50:17'),
(4736, '2019-03-27', 128, '2019-03-27 08:38:39', NULL),
(4737, '2019-03-27', 31, '2019-03-27 08:39:03', '2019-03-27 10:31:35'),
(4738, '2019-03-27', 121, '2019-03-27 08:40:00', '2019-03-27 10:30:52'),
(4739, '2019-03-27', 180, '2019-03-27 08:43:00', '2019-03-27 11:34:32'),
(4740, '2019-03-27', 113, '2019-03-27 08:43:11', '2019-03-27 10:30:35'),
(4741, '2019-03-27', 134, '2019-03-27 08:55:43', '2019-03-27 11:34:35'),
(4742, '2019-03-27', 30, '2019-03-27 10:20:48', '2019-03-27 12:23:31'),
(4743, '2019-03-27', 40, '2019-03-27 10:20:56', '2019-03-27 12:28:54'),
(4744, '2019-03-27', 87, '2019-03-27 10:21:05', NULL),
(4745, '2019-03-27', 78, '2019-03-27 10:21:50', NULL),
(4746, '2019-03-27', 174, '2019-03-27 10:24:13', '2019-03-27 12:55:10'),
(4747, '2019-03-27', 108, '2019-03-27 10:27:52', '2019-03-27 12:54:51'),
(4748, '2019-03-27', 140, '2019-03-27 10:30:05', NULL),
(4749, '2019-03-27', 178, '2019-03-27 10:31:47', NULL),
(4750, '2019-03-27', 28, '2019-03-27 10:34:51', '2019-03-27 12:23:12'),
(4751, '2019-03-27', 115, '2019-03-27 10:36:51', NULL),
(4752, '2019-03-27', 117, '2019-03-27 10:37:40', NULL),
(4753, '2019-03-27', 42, '2019-03-27 10:38:10', '2019-03-27 12:22:53'),
(4754, '2019-03-27', 33, '2019-03-27 10:38:38', NULL),
(4755, '2019-03-27', 103, '2019-03-27 10:38:44', '2019-03-27 12:53:57'),
(4756, '2019-03-27', 111, '2019-03-27 10:38:57', '2019-03-27 12:53:50'),
(4757, '2019-03-27', 104, '2019-03-27 10:39:11', '2019-03-27 12:53:47'),
(4758, '2019-03-27', 102, '2019-03-27 10:42:14', '2019-03-27 12:54:02'),
(4759, '2019-03-27', 149, '2019-03-27 10:42:41', '2019-03-27 12:23:22'),
(4760, '2019-03-27', 106, '2019-03-27 10:45:36', '2019-03-27 12:54:07'),
(4761, '2019-03-27', 183, '2019-03-27 10:46:42', '2019-03-27 12:53:23'),
(4762, '2019-03-27', 36, '2019-03-27 10:46:54', '2019-03-27 12:23:45'),
(4763, '2019-03-27', 126, '2019-03-27 10:49:59', NULL),
(4764, '2019-03-27', 143, '2019-03-27 11:34:39', NULL),
(4765, '2019-03-27', 156, '2019-03-27 11:35:02', NULL),
(4766, '2019-03-27', 162, '2019-03-27 12:09:12', NULL),
(4767, '2019-03-27', 164, '2019-03-27 12:09:21', NULL),
(4768, '2019-03-27', 13, '2019-03-27 12:09:29', NULL),
(4769, '2019-03-27', 8, '2019-03-27 12:09:50', NULL),
(4770, '2019-03-27', 57, '2019-03-27 12:45:48', NULL),
(4771, '2019-03-27', 56, '2019-03-27 12:46:29', NULL),
(4772, '2019-03-27', 14, '2019-03-27 12:52:51', NULL),
(4773, '2019-03-27', 107, '2019-03-27 12:54:46', NULL),
(4774, '2019-03-27', 175, '2019-03-27 12:55:06', NULL),
(4775, '2019-04-01', 61, '2019-04-01 08:00:28', NULL),
(4776, '2019-04-01', 157, '2019-04-01 08:04:03', '2019-04-01 11:37:55'),
(4777, '2019-04-01', 39, '2019-04-01 08:21:58', NULL),
(4778, '2019-04-01', 91, '2019-04-01 08:22:27', '2019-04-01 10:41:41'),
(4779, '2019-04-01', 90, '2019-04-01 08:22:33', '2019-04-01 10:41:50'),
(4780, '2019-04-01', 125, '2019-04-01 08:22:44', '2019-04-01 11:38:18'),
(4781, '2019-04-01', 150, '2019-04-01 08:24:46', '2019-04-01 11:38:00'),
(4782, '2019-04-01', 128, '2019-04-01 08:25:23', '2019-04-01 11:37:42'),
(4783, '2019-04-01', 141, '2019-04-01 08:25:52', '2019-04-01 11:38:25'),
(4784, '2019-04-01', 10, '2019-04-01 08:26:06', NULL),
(4785, '2019-04-01', 181, '2019-04-01 08:27:42', NULL),
(4786, '2019-04-01', 145, '2019-04-01 08:27:51', '2019-04-01 11:37:13'),
(4787, '2019-04-01', 78, '2019-04-01 08:29:21', '2019-04-01 10:35:47'),
(4788, '2019-04-01', 116, '2019-04-01 08:30:16', '2019-04-01 10:27:01'),
(4789, '2019-04-01', 5, '2019-04-01 08:30:36', NULL),
(4790, '2019-04-01', 70, '2019-04-01 08:30:43', NULL),
(4791, '2019-04-01', 89, '2019-04-01 08:30:49', '2019-04-01 10:36:43'),
(4792, '2019-04-01', 144, '2019-04-01 08:31:02', '2019-04-01 11:37:16'),
(4793, '2019-04-01', 77, '2019-04-01 08:31:20', '2019-04-01 10:36:08'),
(4794, '2019-04-01', 123, '2019-04-01 08:32:32', '2019-04-01 11:16:51'),
(4795, '2019-04-01', 133, '2019-04-01 08:33:01', '2019-04-01 11:37:36'),
(4796, '2019-04-01', 166, '2019-04-01 08:33:25', NULL),
(4797, '2019-04-01', 65, '2019-04-01 08:33:30', NULL),
(4798, '2019-04-01', 7, '2019-04-01 08:39:14', NULL),
(4799, '2019-04-01', 63, '2019-04-01 08:39:45', NULL),
(4800, '2019-04-01', 140, '2019-04-01 08:39:50', '2019-04-01 11:38:20'),
(4801, '2019-04-01', 29, '2019-04-01 08:39:54', '2019-04-01 10:27:10'),
(4802, '2019-04-01', 71, '2019-04-01 08:40:53', NULL),
(4803, '2019-04-01', 27, '2019-04-01 08:42:45', '2019-04-01 10:26:06'),
(4804, '2019-04-01', 151, '2019-04-01 08:43:36', '2019-04-01 11:37:51'),
(4805, '2019-04-01', 84, '2019-04-01 08:43:47', '2019-04-01 10:36:17'),
(4806, '2019-04-01', 79, '2019-04-01 08:46:13', '2019-04-01 10:36:04'),
(4807, '2019-04-01', 30, '2019-04-01 10:31:13', NULL),
(4808, '2019-04-01', 104, '2019-04-01 10:35:11', NULL),
(4809, '2019-04-01', 42, '2019-04-01 10:35:26', NULL),
(4810, '2019-04-01', 149, '2019-04-01 10:35:51', NULL),
(4811, '2019-04-01', 40, '2019-04-01 10:36:34', NULL),
(4812, '2019-04-01', 106, '2019-04-01 10:38:29', NULL),
(4813, '2019-04-01', 102, '2019-04-01 10:39:50', NULL),
(4814, '2019-04-01', 103, '2019-04-01 10:40:44', NULL),
(4815, '2019-04-01', 28, '2019-04-01 10:42:09', NULL),
(4816, '2019-04-01', 174, '2019-04-01 10:46:12', NULL),
(4817, '2019-04-01', 107, '2019-04-01 10:48:49', NULL),
(4818, '2019-04-01', 33, '2019-04-01 10:49:47', NULL),
(4819, '2019-04-01', 35, '2019-04-01 10:51:06', NULL),
(4820, '2019-04-01', 36, '2019-04-01 10:51:25', NULL),
(4821, '2019-04-01', 183, '2019-04-01 10:51:46', NULL),
(4822, '2019-04-01', 146, '2019-04-01 11:37:47', NULL),
(4823, '2019-04-01', 137, '2019-04-01 11:38:08', NULL),
(4824, '2019-04-01', 139, '2019-04-01 11:38:13', NULL),
(4825, '2019-04-02', 18, '2019-04-02 07:47:33', NULL),
(4826, '2019-04-02', 34, '2019-04-02 07:47:57', '2019-04-02 10:22:38'),
(4827, '2019-04-02', 114, '2019-04-02 07:48:14', '2019-04-02 10:22:57'),
(4828, '2019-04-02', 95, '2019-04-02 07:53:06', NULL),
(4829, '2019-04-02', 157, '2019-04-02 07:53:42', NULL),
(4830, '2019-04-02', 31, '2019-04-02 08:00:05', '2019-04-02 10:23:11'),
(4831, '2019-04-02', 15, '2019-04-02 08:03:15', NULL),
(4832, '2019-04-02', 46, '2019-04-02 08:05:11', '2019-04-02 12:53:32'),
(4833, '2019-04-02', 168, '2019-04-02 08:05:41', '2019-04-02 12:54:28'),
(4834, '2019-04-02', 173, '2019-04-02 08:06:34', '2019-04-02 12:54:23'),
(4835, '2019-04-02', 92, '2019-04-02 08:06:38', NULL),
(4836, '2019-04-02', 131, '2019-04-02 08:06:43', NULL),
(4837, '2019-04-02', 99, '2019-04-02 08:07:12', NULL),
(4838, '2019-04-02', 154, '2019-04-02 08:08:19', NULL),
(4839, '2019-04-02', 87, '2019-04-02 08:08:34', NULL),
(4840, '2019-04-02', 124, '2019-04-02 08:08:42', NULL),
(4841, '2019-04-02', 68, '2019-04-02 08:09:24', '2019-04-02 12:53:58'),
(4842, '2019-04-02', 169, '2019-04-02 08:10:16', '2019-04-02 12:55:43'),
(4843, '2019-04-02', 61, '2019-04-02 08:10:48', NULL),
(4844, '2019-04-02', 182, '2019-04-02 08:13:00', NULL),
(4845, '2019-04-02', 138, '2019-04-02 08:13:08', NULL),
(4846, '2019-04-02', 142, '2019-04-02 08:13:20', NULL),
(4847, '2019-04-02', 7, '2019-04-02 08:13:35', NULL),
(4848, '2019-04-02', 101, '2019-04-02 08:14:03', NULL),
(4849, '2019-04-02', 150, '2019-04-02 08:14:32', NULL),
(4850, '2019-04-02', 135, '2019-04-02 08:15:07', NULL),
(4851, '2019-04-02', 159, '2019-04-02 08:16:33', NULL),
(4852, '2019-04-02', 130, '2019-04-02 08:17:20', NULL),
(4853, '2019-04-02', 171, '2019-04-02 08:18:12', '2019-04-02 12:55:24'),
(4854, '2019-04-02', 133, '2019-04-02 08:18:57', NULL),
(4855, '2019-04-02', 84, '2019-04-02 08:19:16', NULL),
(4856, '2019-04-02', 181, '2019-04-02 08:19:24', '2019-04-02 12:53:26'),
(4857, '2019-04-02', 145, '2019-04-02 08:19:29', NULL),
(4858, '2019-04-02', 67, '2019-04-02 08:20:52', '2019-04-02 12:50:01'),
(4859, '2019-04-02', 144, '2019-04-02 08:21:02', NULL),
(4860, '2019-04-02', 118, '2019-04-02 08:21:17', '2019-04-02 10:22:05'),
(4861, '2019-04-02', 91, '2019-04-02 08:21:50', NULL),
(4862, '2019-04-02', 90, '2019-04-02 08:21:56', NULL),
(4863, '2019-04-02', 11, '2019-04-02 08:22:04', NULL),
(4864, '2019-04-02', 64, '2019-04-02 08:22:36', '2019-04-02 12:49:51'),
(4865, '2019-04-02', 57, '2019-04-02 08:22:38', NULL),
(4866, '2019-04-02', 125, '2019-04-02 08:23:35', NULL),
(4867, '2019-04-02', 17, '2019-04-02 08:24:46', '2019-04-02 10:22:23'),
(4868, '2019-04-02', 76, '2019-04-02 08:24:50', NULL),
(4869, '2019-04-02', 14, '2019-04-02 08:24:57', NULL),
(4870, '2019-04-02', 26, '2019-04-02 08:28:43', '2019-04-02 10:22:18'),
(4871, '2019-04-02', 38, '2019-04-02 08:28:59', '2019-04-02 10:22:30'),
(4872, '2019-04-02', 146, '2019-04-02 08:29:03', NULL),
(4873, '2019-04-02', 88, '2019-04-02 08:29:16', NULL),
(4874, '2019-04-02', 5, '2019-04-02 08:29:43', NULL),
(4875, '2019-04-02', 70, '2019-04-02 08:29:59', '2019-04-02 12:49:31'),
(4876, '2019-04-02', 167, '2019-04-02 08:30:06', NULL),
(4877, '2019-04-02', 53, '2019-04-02 08:30:09', '2019-04-02 12:53:15'),
(4878, '2019-04-02', 179, '2019-04-02 08:30:14', '2019-04-02 12:55:27'),
(4879, '2019-04-02', 170, '2019-04-02 08:30:19', '2019-04-02 12:55:38'),
(4880, '2019-04-02', 54, '2019-04-02 08:30:24', '2019-04-02 12:53:53'),
(4881, '2019-04-02', 43, '2019-04-02 08:30:28', '2019-04-02 12:52:55'),
(4882, '2019-04-02', 63, '2019-04-02 08:30:33', '2019-04-02 12:49:12'),
(4883, '2019-04-02', 176, '2019-04-02 08:30:37', '2019-04-02 12:54:03'),
(4884, '2019-04-02', 51, '2019-04-02 08:30:42', NULL),
(4885, '2019-04-02', 137, '2019-04-02 08:30:47', NULL),
(4886, '2019-04-02', 71, '2019-04-02 08:30:52', NULL),
(4887, '2019-04-02', 75, '2019-04-02 08:30:57', NULL);
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(4888, '2019-04-02', 45, '2019-04-02 08:31:09', NULL),
(4889, '2019-04-02', 37, '2019-04-02 08:31:11', '2019-04-02 10:22:16'),
(4890, '2019-04-02', 121, '2019-04-02 08:31:16', NULL),
(4891, '2019-04-02', 123, '2019-04-02 08:31:19', NULL),
(4892, '2019-04-02', 9, '2019-04-02 08:31:23', NULL),
(4893, '2019-04-02', 39, '2019-04-02 08:31:30', NULL),
(4894, '2019-04-02', 44, '2019-04-02 08:31:35', '2019-04-02 12:53:21'),
(4895, '2019-04-02', 52, '2019-04-02 08:31:40', '2019-04-02 12:53:10'),
(4896, '2019-04-02', 8, '2019-04-02 08:31:44', NULL),
(4897, '2019-04-02', 116, '2019-04-02 08:31:53', '2019-04-02 10:24:59'),
(4898, '2019-04-02', 143, '2019-04-02 08:31:58', NULL),
(4899, '2019-04-02', 10, '2019-04-02 08:32:05', NULL),
(4900, '2019-04-02', 89, '2019-04-02 08:32:11', NULL),
(4901, '2019-04-02', 141, '2019-04-02 08:34:06', NULL),
(4902, '2019-04-02', 27, '2019-04-02 08:35:52', '2019-04-02 10:21:56'),
(4903, '2019-04-02', 80, '2019-04-02 08:36:27', NULL),
(4904, '2019-04-02', 117, '2019-04-02 08:37:02', '2019-04-02 10:22:13'),
(4905, '2019-04-02', 134, '2019-04-02 08:40:31', NULL),
(4906, '2019-04-02', 151, '2019-04-02 08:41:48', NULL),
(4907, '2019-04-02', 153, '2019-04-02 08:41:57', NULL),
(4908, '2019-04-02', 58, '2019-04-02 08:42:40', '2019-04-02 12:51:46'),
(4909, '2019-04-02', 160, '2019-04-02 08:42:47', NULL),
(4910, '2019-04-02', 113, '2019-04-02 08:46:05', '2019-04-02 10:23:27'),
(4911, '2019-04-02', 156, '2019-04-02 09:01:17', NULL),
(4912, '2019-04-02', 93, '2019-04-02 09:56:38', NULL),
(4913, '2019-04-02', 96, '2019-04-02 10:14:32', NULL),
(4914, '2019-04-02', 178, '2019-04-02 10:23:01', NULL),
(4915, '2019-04-02', 174, '2019-04-02 10:24:40', '2019-04-02 12:59:47'),
(4916, '2019-04-02', 29, '2019-04-02 10:26:26', NULL),
(4917, '2019-04-02', 42, '2019-04-02 10:28:49', '2019-04-02 12:43:03'),
(4918, '2019-04-02', 35, '2019-04-02 12:42:45', NULL),
(4919, '2019-04-02', 41, '2019-04-02 12:42:59', NULL),
(4920, '2019-04-02', 149, '2019-04-02 12:44:53', NULL),
(4921, '2019-04-02', 56, '2019-04-02 12:49:57', NULL),
(4922, '2019-04-02', 102, '2019-04-02 12:59:15', NULL),
(4923, '2019-04-02', 183, '2019-04-02 12:59:23', NULL),
(4924, '2019-04-02', 108, '2019-04-02 12:59:42', NULL),
(4925, '2019-04-02', 104, '2019-04-02 13:00:21', NULL),
(4926, '2019-04-02', 103, '2019-04-02 13:00:24', NULL),
(4927, '2019-04-02', 107, '2019-04-02 13:00:31', NULL),
(4928, '2019-04-03', 18, '2019-04-03 07:42:39', '2019-04-03 12:08:00'),
(4929, '2019-04-03', 34, '2019-04-03 07:42:42', '2019-04-03 10:22:26'),
(4930, '2019-04-03', 157, '2019-04-03 07:58:23', '2019-04-03 11:30:24'),
(4931, '2019-04-03', 155, '2019-04-03 07:59:55', NULL),
(4932, '2019-04-03', 99, '2019-04-03 08:01:02', '2019-04-03 10:31:46'),
(4933, '2019-04-03', 168, '2019-04-03 08:02:26', NULL),
(4934, '2019-04-03', 48, '2019-04-03 08:02:36', NULL),
(4935, '2019-04-03', 124, '2019-04-03 08:02:59', NULL),
(4936, '2019-04-03', 135, '2019-04-03 08:03:39', '2019-04-03 11:30:18'),
(4937, '2019-04-03', 96, '2019-04-03 08:04:09', '2019-04-03 10:33:19'),
(4938, '2019-04-03', 141, '2019-04-03 08:05:24', '2019-04-03 11:30:29'),
(4939, '2019-04-03', 131, '2019-04-03 08:07:34', '2019-04-03 11:31:02'),
(4940, '2019-04-03', 92, '2019-04-03 08:08:07', '2019-04-03 10:31:29'),
(4941, '2019-04-03', 65, '2019-04-03 08:10:44', '2019-04-03 12:55:27'),
(4942, '2019-04-03', 26, '2019-04-03 08:11:27', '2019-04-03 10:22:04'),
(4943, '2019-04-03', 95, '2019-04-03 08:11:35', '2019-04-03 10:31:50'),
(4944, '2019-04-03', 165, '2019-04-03 08:11:41', NULL),
(4945, '2019-04-03', 45, '2019-04-03 08:12:05', '2019-04-03 12:58:53'),
(4946, '2019-04-03', 172, '2019-04-03 08:12:44', '2019-04-03 12:54:59'),
(4947, '2019-04-03', 169, '2019-04-03 08:12:57', NULL),
(4948, '2019-04-03', 150, '2019-04-03 08:13:38', '2019-04-03 11:29:26'),
(4949, '2019-04-03', 142, '2019-04-03 08:14:02', '2019-04-03 11:29:54'),
(4950, '2019-04-03', 133, '2019-04-03 08:14:25', '2019-04-03 11:31:15'),
(4951, '2019-04-03', 145, '2019-04-03 08:14:32', '2019-04-03 11:30:01'),
(4952, '2019-04-03', 181, '2019-04-03 08:14:37', '2019-04-03 12:56:26'),
(4953, '2019-04-03', 53, '2019-04-03 08:15:09', '2019-04-03 12:57:22'),
(4954, '2019-04-03', 46, '2019-04-03 08:16:17', NULL),
(4955, '2019-04-03', 84, '2019-04-03 08:16:42', '2019-04-03 10:32:03'),
(4956, '2019-04-03', 159, '2019-04-03 08:18:13', '2019-04-03 10:31:36'),
(4957, '2019-04-03', 138, '2019-04-03 08:18:37', '2019-04-03 11:31:06'),
(4958, '2019-04-03', 15, '2019-04-03 08:19:09', NULL),
(4959, '2019-04-03', 85, '2019-04-03 08:19:43', '2019-04-03 10:32:35'),
(4960, '2019-04-03', 43, '2019-04-03 08:19:49', '2019-04-03 12:56:33'),
(4961, '2019-04-03', 64, '2019-04-03 08:20:13', NULL),
(4962, '2019-04-03', 144, '2019-04-03 08:20:18', '2019-04-03 11:29:42'),
(4963, '2019-04-03', 54, '2019-04-03 08:20:27', '2019-04-03 12:58:46'),
(4964, '2019-04-03', 162, '2019-04-03 08:20:32', '2019-04-03 12:07:06'),
(4965, '2019-04-03', 5, '2019-04-03 08:20:39', '2019-04-03 12:20:59'),
(4966, '2019-04-03', 70, '2019-04-03 08:20:50', '2019-04-03 12:54:52'),
(4967, '2019-04-03', 182, '2019-04-03 08:21:24', '2019-04-03 12:07:32'),
(4968, '2019-04-03', 61, '2019-04-03 08:21:37', '2019-04-03 13:07:56'),
(4969, '2019-04-03', 97, '2019-04-03 08:22:00', '2019-04-03 10:32:42'),
(4970, '2019-04-03', 68, '2019-04-03 08:22:26', '2019-04-03 12:57:32'),
(4971, '2019-04-03', 178, '2019-04-03 08:22:33', NULL),
(4972, '2019-04-03', 91, '2019-04-03 08:23:29', '2019-04-03 10:31:24'),
(4973, '2019-04-03', 140, '2019-04-03 08:23:36', NULL),
(4974, '2019-04-03', 101, '2019-04-03 08:24:04', '2019-04-03 10:33:24'),
(4975, '2019-04-03', 14, '2019-04-03 08:24:20', NULL),
(4976, '2019-04-03', 146, '2019-04-03 08:24:57', '2019-04-03 12:19:37'),
(4977, '2019-04-03', 79, '2019-04-03 08:25:02', '2019-04-03 10:31:54'),
(4978, '2019-04-03', 8, '2019-04-03 08:26:13', NULL),
(4979, '2019-04-03', 118, '2019-04-03 08:30:31', '2019-04-03 10:21:30'),
(4980, '2019-04-03', 38, '2019-04-03 08:30:48', '2019-04-03 10:22:18'),
(4981, '2019-04-03', 75, '2019-04-03 08:30:56', '2019-04-03 10:32:52'),
(4982, '2019-04-03', 125, '2019-04-03 08:31:04', '2019-04-03 11:30:41'),
(4983, '2019-04-03', 156, '2019-04-03 08:31:21', '2019-04-03 11:30:15'),
(4984, '2019-04-03', 116, '2019-04-03 08:31:26', '2019-04-03 10:24:15'),
(4985, '2019-04-03', 137, '2019-04-03 08:31:33', '2019-04-03 11:29:31'),
(4986, '2019-04-03', 123, '2019-04-03 08:31:43', '2019-04-03 11:31:30'),
(4987, '2019-04-03', 9, '2019-04-03 08:31:49', '2019-04-03 12:20:25'),
(4988, '2019-04-03', 11, '2019-04-03 08:31:54', NULL),
(4989, '2019-04-03', 66, '2019-04-03 08:31:58', NULL),
(4990, '2019-04-03', 180, '2019-04-03 08:32:03', '2019-04-03 11:30:35'),
(4991, '2019-04-03', 63, '2019-04-03 08:32:07', '2019-04-03 12:54:13'),
(4992, '2019-04-03', 139, '2019-04-03 08:32:13', '2019-04-03 11:30:46'),
(4993, '2019-04-03', 67, '2019-04-03 08:32:17', '2019-04-03 12:57:15'),
(4994, '2019-04-03', 51, '2019-04-03 08:32:23', NULL),
(4995, '2019-04-03', 44, '2019-04-03 08:32:28', '2019-04-03 12:56:15'),
(4996, '2019-04-03', 170, '2019-04-03 08:32:44', '2019-04-03 12:57:06'),
(4997, '2019-04-03', 171, '2019-04-03 08:32:49', '2019-04-03 12:57:10'),
(4998, '2019-04-03', 179, '2019-04-03 08:32:55', '2019-04-03 12:57:00'),
(4999, '2019-04-03', 148, '2019-04-03 08:33:00', '2019-04-03 11:30:05'),
(5000, '2019-04-03', 37, '2019-04-03 08:33:05', '2019-04-03 10:21:33'),
(5001, '2019-04-03', 71, '2019-04-03 08:33:10', '2019-04-03 12:55:36'),
(5002, '2019-04-03', 89, '2019-04-03 08:33:15', '2019-04-03 10:33:33'),
(5003, '2019-04-03', 56, '2019-04-03 08:33:22', NULL),
(5004, '2019-04-03', 52, '2019-04-03 08:33:26', '2019-04-03 12:56:37'),
(5005, '2019-04-03', 121, '2019-04-03 08:33:32', '2019-04-03 10:22:09'),
(5006, '2019-04-03', 60, '2019-04-03 08:33:37', '2019-04-03 12:57:55'),
(5007, '2019-04-03', 10, '2019-04-03 08:33:44', '2019-04-03 12:09:12'),
(5008, '2019-04-03', 17, '2019-04-03 08:33:56', '2019-04-03 10:22:37'),
(5009, '2019-04-03', 93, '2019-04-03 08:34:25', '2019-04-03 10:32:16'),
(5010, '2019-04-03', 153, '2019-04-03 08:34:53', '2019-04-03 11:31:21'),
(5011, '2019-04-03', 130, '2019-04-03 08:34:59', '2019-04-03 11:30:56'),
(5012, '2019-04-03', 151, '2019-04-03 08:35:39', '2019-04-03 11:30:10'),
(5013, '2019-04-03', 113, '2019-04-03 08:38:37', '2019-04-03 10:22:16'),
(5014, '2019-04-03', 127, '2019-04-03 08:42:18', NULL),
(5015, '2019-04-03', 160, '2019-04-03 08:42:42', '2019-04-03 10:33:02'),
(5016, '2019-04-03', 27, '2019-04-03 08:45:47', '2019-04-03 10:21:27'),
(5017, '2019-04-03', 177, '2019-04-03 08:45:52', '2019-04-03 12:55:40'),
(5018, '2019-04-03', 117, '2019-04-03 08:47:39', '2019-04-03 10:21:49'),
(5019, '2019-04-03', 134, '2019-04-03 08:47:50', '2019-04-03 11:30:49'),
(5020, '2019-04-03', 105, '2019-04-03 10:13:12', '2019-04-03 12:57:28'),
(5021, '2019-04-03', 40, '2019-04-03 10:17:41', '2019-04-03 12:40:17'),
(5022, '2019-04-03', 114, '2019-04-03 10:23:45', NULL),
(5023, '2019-04-03', 30, '2019-04-03 10:26:14', '2019-04-03 12:39:57'),
(5024, '2019-04-03', 174, '2019-04-03 10:26:45', '2019-04-03 12:54:18'),
(5025, '2019-04-03', 42, '2019-04-03 10:28:18', '2019-04-03 12:39:47'),
(5026, '2019-04-03', 80, '2019-04-03 10:32:12', NULL),
(5027, '2019-04-03', 77, '2019-04-03 10:32:26', NULL),
(5028, '2019-04-03', 78, '2019-04-03 10:32:56', NULL),
(5029, '2019-04-03', 87, '2019-04-03 10:33:07', NULL),
(5030, '2019-04-03', 106, '2019-04-03 10:33:46', '2019-04-03 12:54:03'),
(5031, '2019-04-03', 104, '2019-04-03 10:39:31', '2019-04-03 12:55:04'),
(5032, '2019-04-03', 103, '2019-04-03 10:39:34', '2019-04-03 12:55:11'),
(5033, '2019-04-03', 149, '2019-04-03 10:42:20', '2019-04-03 12:40:21'),
(5034, '2019-04-03', 108, '2019-04-03 10:44:29', '2019-04-03 12:54:07'),
(5035, '2019-04-03', 28, '2019-04-03 10:44:39', NULL),
(5036, '2019-04-03', 183, '2019-04-03 10:45:10', '2019-04-03 12:53:58'),
(5037, '2019-04-03', 35, '2019-04-03 10:47:56', '2019-04-03 12:41:35'),
(5038, '2019-04-03', 36, '2019-04-03 10:48:02', '2019-04-03 12:40:03'),
(5039, '2019-04-03', 107, '2019-04-03 10:54:48', '2019-04-03 12:54:10'),
(5040, '2019-04-03', 143, '2019-04-03 11:31:09', NULL),
(5041, '2019-04-03', 20, '2019-04-03 11:32:55', NULL),
(5042, '2019-04-03', 164, '2019-04-03 12:07:46', NULL),
(5043, '2019-04-03', 7, '2019-04-03 12:23:40', NULL),
(5044, '2019-04-03', 161, '2019-04-03 12:27:26', NULL),
(5045, '2019-04-03', 33, '2019-04-03 12:40:32', NULL),
(5046, '2019-04-06', 18, '2019-04-06 07:44:52', NULL),
(5047, '2019-04-06', 34, '2019-04-06 07:45:03', '2019-04-06 10:18:43'),
(5048, '2019-04-06', 176, '2019-04-06 07:52:50', NULL),
(5049, '2019-04-06', 119, '2019-04-06 07:53:03', NULL),
(5050, '2019-04-06', 78, '2019-04-06 07:58:19', NULL),
(5051, '2019-04-06', 61, '2019-04-06 08:03:13', NULL),
(5052, '2019-04-06', 124, '2019-04-06 08:05:44', '2019-04-06 11:34:45'),
(5053, '2019-04-06', 92, '2019-04-06 08:05:52', '2019-04-06 10:34:45'),
(5054, '2019-04-06', 144, '2019-04-06 08:06:59', '2019-04-06 11:33:33'),
(5055, '2019-04-06', 95, '2019-04-06 08:07:07', '2019-04-06 10:35:35'),
(5056, '2019-04-06', 168, '2019-04-06 08:07:16', NULL),
(5057, '2019-04-06', 48, '2019-04-06 08:07:24', NULL),
(5058, '2019-04-06', 89, '2019-04-06 08:08:11', '2019-04-06 10:35:09'),
(5059, '2019-04-06', 37, '2019-04-06 08:08:17', '2019-04-06 10:17:51'),
(5060, '2019-04-06', 156, '2019-04-06 08:08:39', '2019-04-06 11:34:07'),
(5061, '2019-04-06', 155, '2019-04-06 08:08:53', NULL),
(5062, '2019-04-06', 169, '2019-04-06 08:09:10', '2019-04-06 12:51:59'),
(5063, '2019-04-06', 161, '2019-04-06 08:09:36', NULL),
(5064, '2019-04-06', 182, '2019-04-06 08:11:44', '2019-04-06 12:12:31'),
(5065, '2019-04-06', 126, '2019-04-06 08:12:39', '2019-04-06 11:33:43'),
(5066, '2019-04-06', 131, '2019-04-06 08:12:53', '2019-04-06 11:34:30'),
(5067, '2019-04-06', 93, '2019-04-06 08:13:15', '2019-04-06 10:35:30'),
(5068, '2019-04-06', 53, '2019-04-06 08:13:46', '2019-04-06 12:53:21'),
(5069, '2019-04-06', 25, '2019-04-06 08:14:06', '2019-04-06 12:11:08'),
(5070, '2019-04-06', 68, '2019-04-06 08:15:51', '2019-04-06 12:50:11'),
(5071, '2019-04-06', 8, '2019-04-06 08:16:45', NULL),
(5072, '2019-04-06', 7, '2019-04-06 08:16:55', NULL),
(5073, '2019-04-06', 165, '2019-04-06 08:17:58', NULL),
(5074, '2019-04-06', 44, '2019-04-06 08:18:02', '2019-04-06 12:57:22'),
(5075, '2019-04-06', 150, '2019-04-06 08:18:16', '2019-04-06 11:33:49'),
(5076, '2019-04-06', 9, '2019-04-06 08:18:43', NULL),
(5077, '2019-04-06', 64, '2019-04-06 08:20:00', NULL),
(5078, '2019-04-06', 70, '2019-04-06 08:20:13', '2019-04-06 12:50:06'),
(5079, '2019-04-06', 145, '2019-04-06 08:20:47', '2019-04-06 11:35:43'),
(5080, '2019-04-06', 181, '2019-04-06 08:20:51', '2019-04-06 12:54:31'),
(5081, '2019-04-06', 146, '2019-04-06 08:21:00', '2019-04-06 11:35:13'),
(5082, '2019-04-06', 16, '2019-04-06 08:21:14', NULL),
(5083, '2019-04-06', 141, '2019-04-06 08:21:21', '2019-04-06 11:33:08'),
(5084, '2019-04-06', 112, '2019-04-06 08:22:40', '2019-04-06 10:18:23'),
(5085, '2019-04-06', 38, '2019-04-06 08:22:45', '2019-04-06 10:18:20'),
(5086, '2019-04-06', 125, '2019-04-06 08:24:21', '2019-04-06 11:34:51'),
(5087, '2019-04-06', 130, '2019-04-06 08:24:28', '2019-04-06 11:35:07'),
(5088, '2019-04-06', 157, '2019-04-06 08:24:34', '2019-04-06 11:34:00'),
(5089, '2019-04-06', 91, '2019-04-06 08:24:43', '2019-04-06 10:38:52'),
(5090, '2019-04-06', 43, '2019-04-06 08:24:54', '2019-04-06 12:56:14'),
(5091, '2019-04-06', 90, '2019-04-06 08:25:26', '2019-04-06 10:38:55'),
(5092, '2019-04-06', 15, '2019-04-06 08:25:52', NULL),
(5093, '2019-04-06', 17, '2019-04-06 08:27:17', '2019-04-06 10:19:02'),
(5094, '2019-04-06', 76, '2019-04-06 08:27:21', '2019-04-06 10:34:55'),
(5095, '2019-04-06', 5, '2019-04-06 08:33:40', NULL),
(5096, '2019-04-06', 139, '2019-04-06 08:33:45', '2019-04-06 11:34:40'),
(5097, '2019-04-06', 142, '2019-04-06 08:33:50', '2019-04-06 11:33:22'),
(5098, '2019-04-06', 66, '2019-04-06 08:33:53', NULL),
(5099, '2019-04-06', 46, '2019-04-06 08:34:02', '2019-04-06 12:57:57'),
(5100, '2019-04-06', 58, '2019-04-06 08:34:06', '2019-04-06 12:49:51'),
(5101, '2019-04-06', 51, '2019-04-06 08:34:12', NULL),
(5102, '2019-04-06', 171, '2019-04-06 08:34:17', NULL),
(5103, '2019-04-06', 10, '2019-04-06 08:34:22', NULL),
(5104, '2019-04-06', 162, '2019-04-06 08:34:27', NULL),
(5105, '2019-04-06', 56, '2019-04-06 08:34:31', '2019-04-06 12:49:48'),
(5106, '2019-04-06', 123, '2019-04-06 08:34:37', '2019-04-06 11:35:01'),
(5107, '2019-04-06', 52, '2019-04-06 08:34:43', '2019-04-06 12:57:07'),
(5108, '2019-04-06', 86, '2019-04-06 08:34:52', '2019-04-06 10:35:14'),
(5109, '2019-04-06', 27, '2019-04-06 08:34:56', '2019-04-06 10:17:55'),
(5110, '2019-04-06', 45, '2019-04-06 08:35:01', '2019-04-06 12:56:18'),
(5111, '2019-04-06', 128, '2019-04-06 08:35:06', '2019-04-06 11:33:12'),
(5112, '2019-04-06', 71, '2019-04-06 08:35:11', '2019-04-06 12:49:38'),
(5113, '2019-04-06', 110, '2019-04-06 08:35:49', '2019-04-06 10:25:18'),
(5114, '2019-04-06', 97, '2019-04-06 08:36:16', '2019-04-06 10:35:46'),
(5115, '2019-04-06', 96, '2019-04-06 08:37:11', '2019-04-06 10:35:41'),
(5116, '2019-04-06', 100, '2019-04-06 08:37:23', '2019-04-06 10:34:49'),
(5117, '2019-04-06', 151, '2019-04-06 08:39:04', '2019-04-06 11:33:37'),
(5118, '2019-04-06', 63, '2019-04-06 08:39:13', '2019-04-06 12:49:25'),
(5119, '2019-04-06', 113, '2019-04-06 08:40:29', '2019-04-06 10:18:12'),
(5120, '2019-04-06', 153, '2019-04-06 08:40:54', '2019-04-06 11:34:56'),
(5121, '2019-04-06', 60, '2019-04-06 08:41:33', '2019-04-06 12:49:55'),
(5122, '2019-04-06', 133, '2019-04-06 08:43:48', '2019-04-06 11:34:23'),
(5123, '2019-04-06', 117, '2019-04-06 08:45:11', '2019-04-06 10:18:28'),
(5124, '2019-04-06', 154, '2019-04-06 08:51:14', '2019-04-06 11:34:36'),
(5125, '2019-04-06', 40, '2019-04-06 10:12:52', NULL),
(5126, '2019-04-06', 105, '2019-04-06 10:14:36', '2019-04-06 12:50:14'),
(5127, '2019-04-06', 39, '2019-04-06 10:18:36', NULL),
(5128, '2019-04-06', 30, '2019-04-06 10:26:10', NULL),
(5129, '2019-04-06', 174, '2019-04-06 10:30:21', '2019-04-06 12:47:19'),
(5130, '2019-04-06', 159, '2019-04-06 10:34:59', NULL),
(5131, '2019-04-06', 160, '2019-04-06 10:35:52', NULL),
(5132, '2019-04-06', 102, '2019-04-06 10:36:39', '2019-04-06 12:47:45'),
(5133, '2019-04-06', 33, '2019-04-06 10:37:08', '2019-04-06 12:42:37'),
(5134, '2019-04-06', 111, '2019-04-06 10:37:12', '2019-04-06 12:47:16'),
(5135, '2019-04-06', 41, '2019-04-06 10:37:14', '2019-04-06 12:42:34'),
(5136, '2019-04-06', 106, '2019-04-06 10:38:04', NULL),
(5137, '2019-04-06', 108, '2019-04-06 10:42:07', NULL),
(5138, '2019-04-06', 28, '2019-04-06 10:45:40', '2019-04-06 12:42:40'),
(5139, '2019-04-06', 107, '2019-04-06 10:45:56', '2019-04-06 12:47:56'),
(5140, '2019-04-06', 36, '2019-04-06 10:54:09', '2019-04-06 12:42:31'),
(5141, '2019-04-06', 35, '2019-04-06 10:54:27', NULL),
(5142, '2019-04-06', 149, '2019-04-06 10:55:46', '2019-04-06 12:47:40'),
(5143, '2019-04-06', 135, '2019-04-06 11:33:18', NULL),
(5144, '2019-04-06', 137, '2019-04-06 11:33:54', NULL),
(5145, '2019-04-06', 138, '2019-04-06 11:34:12', NULL),
(5146, '2019-04-06', 180, '2019-04-06 11:34:18', NULL),
(5147, '2019-04-06', 109, '2019-04-06 12:47:31', NULL),
(5148, '2019-04-06', 177, '2019-04-06 12:49:31', NULL),
(5149, '2019-04-07', 147, '2019-04-07 07:47:04', '2019-04-07 11:37:24'),
(5150, '2019-04-07', 34, '2019-04-07 07:47:15', NULL),
(5151, '2019-04-07', 18, '2019-04-07 07:47:26', NULL),
(5152, '2019-04-07', 55, '2019-04-07 07:47:44', NULL),
(5153, '2019-04-07', 154, '2019-04-07 07:56:26', '2019-04-07 11:36:57'),
(5154, '2019-04-07', 99, '2019-04-07 07:58:41', NULL),
(5155, '2019-04-07', 95, '2019-04-07 08:00:51', '2019-04-07 10:34:10'),
(5156, '2019-04-07', 155, '2019-04-07 08:03:14', '2019-04-07 11:38:23'),
(5157, '2019-04-07', 96, '2019-04-07 08:04:22', '2019-04-07 10:35:19'),
(5158, '2019-04-07', 92, '2019-04-07 08:06:07', '2019-04-07 10:33:30'),
(5159, '2019-04-07', 169, '2019-04-07 08:07:18', NULL),
(5160, '2019-04-07', 66, '2019-04-07 08:07:40', NULL),
(5161, '2019-04-07', 157, '2019-04-07 08:08:18', '2019-04-07 11:37:38'),
(5162, '2019-04-07', 67, '2019-04-07 08:09:13', '2019-04-07 13:06:25'),
(5163, '2019-04-07', 48, '2019-04-07 08:09:30', '2019-04-07 12:53:03'),
(5164, '2019-04-07', 124, '2019-04-07 08:09:51', '2019-04-07 11:38:38'),
(5165, '2019-04-07', 150, '2019-04-07 08:10:19', '2019-04-07 11:38:01'),
(5166, '2019-04-07', 131, '2019-04-07 08:11:00', '2019-04-07 11:37:54'),
(5167, '2019-04-07', 46, '2019-04-07 08:11:59', NULL),
(5168, '2019-04-07', 171, '2019-04-07 08:12:21', '2019-04-07 12:56:41'),
(5169, '2019-04-07', 126, '2019-04-07 08:12:47', '2019-04-07 11:37:18'),
(5170, '2019-04-07', 118, '2019-04-07 08:14:01', '2019-04-07 10:19:30'),
(5171, '2019-04-07', 43, '2019-04-07 08:14:54', '2019-04-07 12:52:22'),
(5172, '2019-04-07', 142, '2019-04-07 08:15:17', '2019-04-07 11:36:36'),
(5173, '2019-04-07', 159, '2019-04-07 08:15:49', '2019-04-07 10:33:56'),
(5174, '2019-04-07', 84, '2019-04-07 08:15:55', '2019-04-07 10:35:46'),
(5175, '2019-04-07', 64, '2019-04-07 08:16:16', NULL),
(5176, '2019-04-07', 16, '2019-04-07 08:16:23', NULL),
(5177, '2019-04-07', 70, '2019-04-07 08:16:36', '2019-04-07 13:06:16'),
(5178, '2019-04-07', 139, '2019-04-07 08:17:10', NULL),
(5179, '2019-04-07', 37, '2019-04-07 08:17:13', '2019-04-07 10:18:56'),
(5180, '2019-04-07', 5, '2019-04-07 08:17:17', NULL),
(5181, '2019-04-07', 170, '2019-04-07 08:17:36', '2019-04-07 12:56:30'),
(5182, '2019-04-07', 133, '2019-04-07 08:17:46', '2019-04-07 11:36:41'),
(5183, '2019-04-07', 181, '2019-04-07 08:18:51', '2019-04-07 12:52:31'),
(5184, '2019-04-07', 145, '2019-04-07 08:18:56', NULL),
(5185, '2019-04-07', 75, '2019-04-07 08:20:30', NULL),
(5186, '2019-04-07', 15, '2019-04-07 08:21:18', NULL),
(5187, '2019-04-07', 132, '2019-04-07 08:21:20', '2019-04-07 11:38:33'),
(5188, '2019-04-07', 138, '2019-04-07 08:21:59', '2019-04-07 11:37:51'),
(5189, '2019-04-07', 68, '2019-04-07 08:23:20', '2019-04-07 13:06:50'),
(5190, '2019-04-07', 11, '2019-04-07 08:24:44', NULL),
(5191, '2019-04-07', 90, '2019-04-07 08:24:54', '2019-04-07 10:35:00'),
(5192, '2019-04-07', 91, '2019-04-07 08:24:57', '2019-04-07 10:35:04'),
(5193, '2019-04-07', 76, '2019-04-07 08:25:05', NULL),
(5194, '2019-04-07', 119, '2019-04-07 08:25:08', NULL),
(5195, '2019-04-07', 85, '2019-04-07 08:26:11', '2019-04-07 10:34:08'),
(5196, '2019-04-07', 17, '2019-04-07 08:27:50', '2019-04-07 10:19:17'),
(5197, '2019-04-07', 130, '2019-04-07 08:29:26', '2019-04-07 11:37:02'),
(5198, '2019-04-07', 146, '2019-04-07 08:29:35', '2019-04-07 11:36:31'),
(5199, '2019-04-07', 123, '2019-04-07 08:29:46', '2019-04-07 11:38:29'),
(5200, '2019-04-07', 71, '2019-04-07 08:30:00', '2019-04-07 13:07:04'),
(5201, '2019-04-07', 63, '2019-04-07 08:30:05', NULL),
(5202, '2019-04-07', 172, '2019-04-07 08:30:10', '2019-04-07 12:52:06'),
(5203, '2019-04-07', 179, '2019-04-07 08:30:17', '2019-04-07 12:56:33'),
(5204, '2019-04-07', 176, '2019-04-07 08:30:22', '2019-04-07 12:54:05'),
(5205, '2019-04-07', 156, '2019-04-07 08:30:27', '2019-04-07 11:37:41'),
(5206, '2019-04-07', 25, '2019-04-07 08:30:32', '2019-04-07 12:13:03'),
(5207, '2019-04-07', 128, '2019-04-07 08:30:37', '2019-04-07 11:37:29'),
(5208, '2019-04-07', 8, '2019-04-07 08:30:42', '2019-04-07 12:16:35'),
(5209, '2019-04-07', 9, '2019-04-07 08:30:50', NULL),
(5210, '2019-04-07', 44, '2019-04-07 08:30:55', '2019-04-07 12:53:08'),
(5211, '2019-04-07', 141, '2019-04-07 08:31:00', '2019-04-07 11:36:25'),
(5212, '2019-04-07', 79, '2019-04-07 08:31:04', NULL),
(5213, '2019-04-07', 29, '2019-04-07 08:31:10', '2019-04-07 10:19:34'),
(5214, '2019-04-07', 180, '2019-04-07 08:31:16', '2019-04-07 11:38:14'),
(5215, '2019-04-07', 117, '2019-04-07 08:31:23', '2019-04-07 10:19:05'),
(5216, '2019-04-07', 153, '2019-04-07 08:31:30', '2019-04-07 11:38:17'),
(5217, '2019-04-07', 61, '2019-04-07 08:31:49', NULL),
(5218, '2019-04-07', 166, '2019-04-07 08:32:00', NULL),
(5219, '2019-04-07', 52, '2019-04-07 08:32:13', '2019-04-07 12:52:12'),
(5220, '2019-04-07', 53, '2019-04-07 08:32:19', '2019-04-07 12:23:02'),
(5221, '2019-04-07', 10, '2019-04-07 08:32:33', '2019-04-07 12:12:52'),
(5222, '2019-04-07', 135, '2019-04-07 08:32:45', '2019-04-07 11:37:07'),
(5223, '2019-04-07', 110, '2019-04-07 08:33:04', NULL),
(5224, '2019-04-07', 116, '2019-04-07 08:33:16', NULL),
(5225, '2019-04-07', 151, '2019-04-07 08:33:31', '2019-04-07 11:37:34'),
(5226, '2019-04-07', 168, '2019-04-07 08:34:35', NULL),
(5227, '2019-04-07', 86, '2019-04-07 08:34:38', '2019-04-07 10:34:22'),
(5228, '2019-04-07', 121, '2019-04-07 08:34:43', '2019-04-07 10:47:04'),
(5229, '2019-04-07', 78, '2019-04-07 08:34:48', NULL),
(5230, '2019-04-07', 60, '2019-04-07 08:35:02', '2019-04-07 13:06:42'),
(5231, '2019-04-07', 100, '2019-04-07 08:35:12', '2019-04-07 10:33:27'),
(5232, '2019-04-07', 88, '2019-04-07 08:36:31', '2019-04-07 10:35:12'),
(5233, '2019-04-07', 77, '2019-04-07 08:37:06', '2019-04-07 10:33:50'),
(5234, '2019-04-07', 27, '2019-04-07 08:37:56', '2019-04-07 10:19:01'),
(5235, '2019-04-07', 113, '2019-04-07 08:43:18', '2019-04-07 10:19:14'),
(5236, '2019-04-07', 134, '2019-04-07 08:45:25', '2019-04-07 11:38:06'),
(5237, '2019-04-07', 177, '2019-04-07 08:46:24', '2019-04-07 13:06:56'),
(5238, '2019-04-07', 105, '2019-04-07 10:13:27', '2019-04-07 12:58:08'),
(5239, '2019-04-07', 39, '2019-04-07 10:19:53', NULL),
(5240, '2019-04-07', 93, '2019-04-07 10:20:40', NULL),
(5241, '2019-04-07', 174, '2019-04-07 10:27:06', '2019-04-07 12:54:19'),
(5242, '2019-04-07', 98, '2019-04-07 10:33:53', NULL),
(5243, '2019-04-07', 97, '2019-04-07 10:34:46', NULL),
(5244, '2019-04-07', 87, '2019-04-07 10:35:24', NULL),
(5245, '2019-04-07', 108, '2019-04-07 10:35:56', '2019-04-07 12:54:46'),
(5246, '2019-04-07', 109, '2019-04-07 10:36:04', '2019-04-07 12:54:51'),
(5247, '2019-04-07', 106, '2019-04-07 10:40:10', '2019-04-07 12:55:07'),
(5248, '2019-04-07', 28, '2019-04-07 10:40:29', '2019-04-07 12:38:51'),
(5249, '2019-04-07', 149, '2019-04-07 10:46:42', NULL),
(5250, '2019-04-07', 35, '2019-04-07 10:46:47', NULL),
(5251, '2019-04-07', 36, '2019-04-07 10:46:53', '2019-04-07 12:39:08'),
(5252, '2019-04-07', 107, '2019-04-07 10:55:52', '2019-04-07 12:54:56'),
(5253, '2019-04-07', 129, '2019-04-07 11:36:14', NULL),
(5254, '2019-04-07', 140, '2019-04-07 11:36:46', NULL),
(5255, '2019-04-07', 137, '2019-04-07 11:36:51', NULL),
(5256, '2019-04-07', 143, '2019-04-07 11:37:15', NULL),
(5257, '2019-04-07', 161, '2019-04-07 12:13:14', NULL),
(5258, '2019-04-07', 30, '2019-04-07 12:39:05', NULL),
(5259, '2019-04-07', 163, '2019-04-07 12:53:15', NULL),
(5260, '2019-04-07', 45, '2019-04-07 12:54:00', NULL),
(5261, '2019-04-07', 56, '2019-04-07 13:06:35', NULL),
(5262, '2019-04-07', 57, '2019-04-07 13:06:45', NULL),
(5263, '2019-04-08', 98, '2019-04-08 07:48:13', '2019-04-08 10:34:17'),
(5264, '2019-04-08', 176, '2019-04-08 07:48:31', NULL),
(5265, '2019-04-08', 57, '2019-04-08 07:48:34', '2019-04-08 12:42:09'),
(5266, '2019-04-08', 157, '2019-04-08 07:50:14', '2019-04-08 10:45:44'),
(5267, '2019-04-08', 18, '2019-04-08 07:52:45', '2019-04-08 11:54:31'),
(5268, '2019-04-08', 147, '2019-04-08 07:52:49', '2019-04-08 11:35:42'),
(5269, '2019-04-08', 34, '2019-04-08 07:52:58', '2019-04-08 10:23:51'),
(5270, '2019-04-08', 77, '2019-04-08 07:53:12', '2019-04-08 10:34:52'),
(5271, '2019-04-08', 99, '2019-04-08 07:58:25', '2019-04-08 10:35:50'),
(5272, '2019-04-08', 96, '2019-04-08 07:58:56', '2019-04-08 10:35:55'),
(5273, '2019-04-08', 53, '2019-04-08 08:03:09', '2019-04-08 12:42:57'),
(5274, '2019-04-08', 172, '2019-04-08 08:03:36', '2019-04-08 12:37:23'),
(5275, '2019-04-08', 141, '2019-04-08 08:05:57', '2019-04-08 11:34:35'),
(5276, '2019-04-08', 7, '2019-04-08 08:06:22', NULL),
(5277, '2019-04-08', 169, '2019-04-08 08:07:04', '2019-04-08 12:36:22'),
(5278, '2019-04-08', 145, '2019-04-08 08:07:11', '2019-04-08 11:35:57'),
(5279, '2019-04-08', 181, '2019-04-08 08:07:17', '2019-04-08 12:43:02'),
(5280, '2019-04-08', 89, '2019-04-08 08:08:14', '2019-04-08 10:34:41'),
(5281, '2019-04-08', 8, '2019-04-08 08:09:48', NULL),
(5282, '2019-04-08', 44, '2019-04-08 08:09:56', '2019-04-08 12:42:51'),
(5283, '2019-04-08', 126, '2019-04-08 08:11:18', '2019-04-08 11:08:53'),
(5284, '2019-04-08', 159, '2019-04-08 08:12:25', '2019-04-08 10:35:10'),
(5285, '2019-04-08', 142, '2019-04-08 08:12:58', '2019-04-08 11:34:11'),
(5286, '2019-04-08', 150, '2019-04-08 08:13:07', '2019-04-08 11:34:40'),
(5287, '2019-04-08', 88, '2019-04-08 08:13:52', '2019-04-08 10:36:08'),
(5288, '2019-04-08', 48, '2019-04-08 08:14:02', '2019-04-08 12:43:59'),
(5289, '2019-04-08', 124, '2019-04-08 08:14:23', '2019-04-08 11:36:17'),
(5290, '2019-04-08', 92, '2019-04-08 08:14:48', '2019-04-08 10:34:22'),
(5291, '2019-04-08', 182, '2019-04-08 08:15:11', '2019-04-08 12:06:15'),
(5292, '2019-04-08', 37, '2019-04-08 08:15:20', '2019-04-08 10:23:38'),
(5293, '2019-04-08', 101, '2019-04-08 08:16:34', '2019-04-08 10:35:16'),
(5294, '2019-04-08', 84, '2019-04-08 08:17:20', '2019-04-08 10:36:26'),
(5295, '2019-04-08', 118, '2019-04-08 08:17:36', '2019-04-08 10:23:48'),
(5296, '2019-04-08', 43, '2019-04-08 08:17:46', '2019-04-08 12:44:30'),
(5297, '2019-04-08', 168, '2019-04-08 08:18:53', '2019-04-08 12:37:28'),
(5298, '2019-04-08', 68, '2019-04-08 08:19:39', '2019-04-08 12:42:36'),
(5299, '2019-04-08', 64, '2019-04-08 08:20:03', NULL),
(5300, '2019-04-08', 144, '2019-04-08 08:20:10', '2019-04-08 11:34:29'),
(5301, '2019-04-08', 26, '2019-04-08 08:20:19', '2019-04-08 10:23:29'),
(5302, '2019-04-08', 148, '2019-04-08 08:23:10', '2019-04-08 11:35:03'),
(5303, '2019-04-08', 146, '2019-04-08 08:28:56', '2019-04-08 11:36:03'),
(5304, '2019-04-08', 78, '2019-04-08 08:29:01', '2019-04-08 10:34:27'),
(5305, '2019-04-08', 9, '2019-04-08 08:29:18', NULL),
(5306, '2019-04-08', 25, '2019-04-08 08:29:25', '2019-04-08 11:54:42'),
(5307, '2019-04-08', 10, '2019-04-08 08:29:30', '2019-04-08 11:54:37'),
(5308, '2019-04-08', 15, '2019-04-08 08:29:33', NULL),
(5309, '2019-04-08', 71, '2019-04-08 08:29:36', '2019-04-08 12:53:30'),
(5310, '2019-04-08', 70, '2019-04-08 08:29:42', '2019-04-08 12:42:22'),
(5311, '2019-04-08', 139, '2019-04-08 08:29:47', '2019-04-08 11:35:47'),
(5312, '2019-04-08', 56, '2019-04-08 08:29:52', '2019-04-08 12:42:30'),
(5313, '2019-04-08', 16, '2019-04-08 08:29:57', '2019-04-08 11:39:15'),
(5314, '2019-04-08', 5, '2019-04-08 08:30:02', NULL),
(5315, '2019-04-08', 46, '2019-04-08 08:30:07', '2019-04-08 12:42:54'),
(5316, '2019-04-08', 170, '2019-04-08 08:30:12', '2019-04-08 12:36:15'),
(5317, '2019-04-08', 54, '2019-04-08 08:30:17', '2019-04-08 12:45:05'),
(5318, '2019-04-08', 97, '2019-04-08 08:30:22', '2019-04-08 10:35:25'),
(5319, '2019-04-08', 125, '2019-04-08 08:30:27', '2019-04-08 11:34:57'),
(5320, '2019-04-08', 138, '2019-04-08 08:30:32', '2019-04-08 11:35:18'),
(5321, '2019-04-08', 67, '2019-04-08 08:30:37', '2019-04-08 12:53:45'),
(5322, '2019-04-08', 66, '2019-04-08 08:30:41', NULL),
(5323, '2019-04-08', 61, '2019-04-08 08:30:46', '2019-04-08 12:50:34'),
(5324, '2019-04-08', 11, '2019-04-08 08:30:52', NULL),
(5325, '2019-04-08', 63, '2019-04-08 08:30:57', NULL),
(5326, '2019-04-08', 90, '2019-04-08 08:31:02', '2019-04-08 10:37:55'),
(5327, '2019-04-08', 91, '2019-04-08 08:31:06', '2019-04-08 10:35:32'),
(5328, '2019-04-08', 79, '2019-04-08 08:31:11', NULL),
(5329, '2019-04-08', 27, '2019-04-08 08:31:16', '2019-04-08 10:26:21'),
(5330, '2019-04-08', 178, '2019-04-08 08:31:21', NULL),
(5331, '2019-04-08', 58, '2019-04-08 08:31:25', '2019-04-08 12:51:33'),
(5332, '2019-04-08', 160, '2019-04-08 08:31:30', '2019-04-08 10:36:31'),
(5333, '2019-04-08', 52, '2019-04-08 08:31:35', NULL),
(5334, '2019-04-08', 166, '2019-04-08 08:31:39', '2019-04-08 12:11:02'),
(5335, '2019-04-08', 86, '2019-04-08 08:31:44', '2019-04-08 10:35:00'),
(5336, '2019-04-08', 45, '2019-04-08 08:33:03', '2019-04-08 12:44:45'),
(5337, '2019-04-08', 110, '2019-04-08 08:33:22', NULL),
(5338, '2019-04-08', 60, '2019-04-08 08:33:28', '2019-04-08 12:44:24'),
(5339, '2019-04-08', 128, '2019-04-08 08:33:36', '2019-04-08 11:34:17'),
(5340, '2019-04-08', 153, '2019-04-08 08:33:40', '2019-04-08 11:36:21'),
(5341, '2019-04-08', 100, '2019-04-08 08:33:56', '2019-04-08 10:34:57'),
(5342, '2019-04-08', 135, '2019-04-08 08:34:07', '2019-04-08 11:34:23'),
(5343, '2019-04-08', 140, '2019-04-08 08:37:04', '2019-04-08 11:35:07'),
(5344, '2019-04-08', 112, '2019-04-08 08:37:31', '2019-04-08 10:24:12'),
(5345, '2019-04-08', 29, '2019-04-08 08:38:06', '2019-04-08 10:23:43'),
(5346, '2019-04-08', 113, '2019-04-08 08:38:11', '2019-04-08 10:23:35'),
(5347, '2019-04-08', 133, '2019-04-08 08:38:28', '2019-04-08 10:45:53'),
(5348, '2019-04-08', 121, '2019-04-08 08:39:05', '2019-04-08 10:24:07'),
(5349, '2019-04-08', 151, '2019-04-08 08:39:22', '2019-04-08 11:35:26'),
(5350, '2019-04-08', 117, '2019-04-08 08:39:42', '2019-04-08 10:23:17'),
(5351, '2019-04-08', 130, '2019-04-08 08:41:00', '2019-04-08 11:35:52'),
(5352, '2019-04-08', 134, '2019-04-08 08:46:20', '2019-04-08 11:35:37'),
(5353, '2019-04-08', 39, '2019-04-08 10:24:17', NULL),
(5354, '2019-04-08', 30, '2019-04-08 10:26:14', '2019-04-08 12:37:39'),
(5355, '2019-04-08', 174, '2019-04-08 10:31:39', '2019-04-08 12:44:40'),
(5356, '2019-04-08', 33, '2019-04-08 10:33:38', NULL),
(5357, '2019-04-08', 41, '2019-04-08 10:33:44', NULL),
(5358, '2019-04-08', 106, '2019-04-08 10:34:35', NULL),
(5359, '2019-04-08', 76, '2019-04-08 10:34:47', NULL),
(5360, '2019-04-08', 119, '2019-04-08 10:36:02', NULL),
(5361, '2019-04-08', 87, '2019-04-08 10:36:16', NULL),
(5362, '2019-04-08', 93, '2019-04-08 10:36:21', NULL),
(5363, '2019-04-08', 149, '2019-04-08 10:48:15', NULL),
(5364, '2019-04-08', 183, '2019-04-08 10:51:11', '2019-04-08 12:43:24'),
(5365, '2019-04-08', 107, '2019-04-08 10:51:51', '2019-04-08 12:44:50'),
(5366, '2019-04-08', 35, '2019-04-08 10:56:56', '2019-04-08 12:38:21'),
(5367, '2019-04-08', 36, '2019-04-08 10:57:03', NULL),
(5368, '2019-04-08', 131, '2019-04-08 11:08:24', NULL),
(5369, '2019-04-08', 180, '2019-04-08 11:35:12', NULL),
(5370, '2019-04-08', 137, '2019-04-08 11:35:31', NULL),
(5371, '2019-04-08', 143, '2019-04-08 11:36:12', NULL),
(5372, '2019-04-08', 155, '2019-04-08 11:36:33', NULL),
(5373, '2019-04-08', 20, '2019-04-08 11:54:27', NULL),
(5374, '2019-04-08', 14, '2019-04-08 12:30:45', NULL),
(5375, '2019-04-08', 108, '2019-04-08 12:44:17', NULL),
(5376, '2019-04-08', 177, '2019-04-08 12:53:38', NULL),
(5377, '2019-04-09', 18, '2019-04-09 07:44:03', NULL),
(5378, '2019-04-09', 147, '2019-04-09 07:44:15', NULL),
(5379, '2019-04-09', 34, '2019-04-09 07:44:23', '2019-04-09 10:19:44'),
(5380, '2019-04-09', 157, '2019-04-09 07:51:07', '2019-04-09 11:36:16'),
(5381, '2019-04-09', 57, '2019-04-09 07:55:53', '2019-04-09 12:52:17'),
(5382, '2019-04-09', 176, '2019-04-09 07:55:58', NULL),
(5383, '2019-04-09', 98, '2019-04-09 07:58:01', '2019-04-09 10:31:44'),
(5384, '2019-04-09', 155, '2019-04-09 07:59:47', '2019-04-09 11:38:14'),
(5385, '2019-04-09', 99, '2019-04-09 08:02:25', '2019-04-09 10:31:34'),
(5386, '2019-04-09', 154, '2019-04-09 08:04:08', '2019-04-09 11:35:40'),
(5387, '2019-04-09', 85, '2019-04-09 08:05:18', '2019-04-09 10:31:00'),
(5388, '2019-04-09', 89, '2019-04-09 08:06:39', '2019-04-09 10:31:21'),
(5389, '2019-04-09', 169, '2019-04-09 08:07:35', '2019-04-09 12:59:19'),
(5390, '2019-04-09', 23, '2019-04-09 08:08:02', '2019-04-09 12:17:39'),
(5391, '2019-04-09', 168, '2019-04-09 08:08:47', '2019-04-09 12:58:54'),
(5392, '2019-04-09', 150, '2019-04-09 08:09:08', '2019-04-09 11:35:46'),
(5393, '2019-04-09', 7, '2019-04-09 08:09:25', NULL),
(5394, '2019-04-09', 71, '2019-04-09 08:09:59', '2019-04-09 12:58:45'),
(5395, '2019-04-09', 92, '2019-04-09 08:10:40', '2019-04-09 10:30:44'),
(5396, '2019-04-09', 46, '2019-04-09 08:10:55', '2019-04-09 12:50:19'),
(5397, '2019-04-09', 43, '2019-04-09 08:12:22', '2019-04-09 12:54:03'),
(5398, '2019-04-09', 48, '2019-04-09 08:13:08', '2019-04-09 12:52:42'),
(5399, '2019-04-09', 96, '2019-04-09 08:14:15', '2019-04-09 10:31:09'),
(5400, '2019-04-09', 137, '2019-04-09 08:14:55', '2019-04-09 11:36:48'),
(5401, '2019-04-09', 124, '2019-04-09 08:15:35', '2019-04-09 11:37:16'),
(5402, '2019-04-09', 84, '2019-04-09 08:15:56', '2019-04-09 10:32:26'),
(5403, '2019-04-09', 161, '2019-04-09 08:16:03', NULL),
(5404, '2019-04-09', 141, '2019-04-09 08:16:28', NULL),
(5405, '2019-04-09', 78, '2019-04-09 08:17:22', NULL),
(5406, '2019-04-09', 70, '2019-04-09 08:17:32', '2019-04-09 12:52:14'),
(5407, '2019-04-09', 144, '2019-04-09 08:17:36', '2019-04-09 11:35:51'),
(5408, '2019-04-09', 15, '2019-04-09 08:17:57', NULL),
(5409, '2019-04-09', 64, '2019-04-09 08:18:03', NULL),
(5410, '2019-04-09', 159, '2019-04-09 08:18:08', '2019-04-09 10:31:30'),
(5411, '2019-04-09', 5, '2019-04-09 08:19:14', NULL),
(5412, '2019-04-09', 16, '2019-04-09 08:19:22', NULL),
(5413, '2019-04-09', 112, '2019-04-09 08:20:09', NULL),
(5414, '2019-04-09', 142, '2019-04-09 08:21:01', '2019-04-09 11:36:06'),
(5415, '2019-04-09', 14, '2019-04-09 08:21:21', NULL),
(5416, '2019-04-09', 146, '2019-04-09 08:21:27', '2019-04-09 11:36:12'),
(5417, '2019-04-09', 170, '2019-04-09 08:21:59', '2019-04-09 12:59:44'),
(5418, '2019-04-09', 145, '2019-04-09 08:22:02', '2019-04-09 11:36:26'),
(5419, '2019-04-09', 181, '2019-04-09 08:22:06', '2019-04-09 12:52:45'),
(5420, '2019-04-09', 68, '2019-04-09 08:22:29', '2019-04-09 12:52:39'),
(5421, '2019-04-09', 37, '2019-04-09 08:22:45', '2019-04-09 10:19:27'),
(5422, '2019-04-09', 29, '2019-04-09 08:23:02', '2019-04-09 10:20:56'),
(5423, '2019-04-09', 10, '2019-04-09 08:23:06', NULL),
(5424, '2019-04-09', 118, '2019-04-09 08:23:18', '2019-04-09 10:19:40'),
(5425, '2019-04-09', 88, '2019-04-09 08:23:23', '2019-04-09 10:31:42'),
(5426, '2019-04-09', 76, '2019-04-09 08:24:37', '2019-04-09 10:31:05'),
(5427, '2019-04-09', 17, '2019-04-09 08:24:42', '2019-04-09 10:19:55'),
(5428, '2019-04-09', 97, '2019-04-09 08:25:41', '2019-04-09 10:33:12'),
(5429, '2019-04-09', 178, '2019-04-09 08:25:45', '2019-04-09 10:20:03'),
(5430, '2019-04-09', 75, '2019-04-09 08:28:46', NULL),
(5431, '2019-04-09', 25, '2019-04-09 08:29:29', '2019-04-09 12:11:09'),
(5432, '2019-04-09', 61, '2019-04-09 08:29:50', '2019-04-09 13:17:34'),
(5433, '2019-04-09', 53, '2019-04-09 08:29:54', '2019-04-09 12:54:57'),
(5434, '2019-04-09', 45, '2019-04-09 08:29:59', '2019-04-09 12:54:08'),
(5435, '2019-04-09', 171, '2019-04-09 08:30:05', '2019-04-09 12:59:40'),
(5436, '2019-04-09', 179, '2019-04-09 08:30:10', NULL),
(5437, '2019-04-09', 79, '2019-04-09 08:30:14', '2019-04-09 10:32:20'),
(5438, '2019-04-09', 95, '2019-04-09 08:30:20', '2019-04-09 10:32:10'),
(5439, '2019-04-09', 128, '2019-04-09 08:30:24', '2019-04-09 11:35:29'),
(5440, '2019-04-09', 138, '2019-04-09 08:30:29', '2019-04-09 11:36:51'),
(5441, '2019-04-09', 56, '2019-04-09 08:30:34', '2019-04-09 12:52:32'),
(5442, '2019-04-09', 165, '2019-04-09 08:30:38', NULL),
(5443, '2019-04-09', 101, '2019-04-09 08:30:44', '2019-04-09 10:32:43'),
(5444, '2019-04-09', 39, '2019-04-09 08:30:49', '2019-04-09 10:20:17'),
(5445, '2019-04-09', 9, '2019-04-09 08:30:56', NULL),
(5446, '2019-04-09', 86, '2019-04-09 08:31:01', '2019-04-09 10:33:07'),
(5447, '2019-04-09', 148, '2019-04-09 08:31:05', '2019-04-09 11:35:19'),
(5448, '2019-04-09', 160, '2019-04-09 08:31:13', '2019-04-09 10:32:38'),
(5449, '2019-04-09', 11, '2019-04-09 08:31:29', NULL),
(5450, '2019-04-09', 125, '2019-04-09 08:31:33', '2019-04-09 11:35:12'),
(5451, '2019-04-09', 90, '2019-04-09 08:31:38', '2019-04-09 10:30:54'),
(5452, '2019-04-09', 91, '2019-04-09 08:31:43', '2019-04-09 10:31:14'),
(5453, '2019-04-09', 51, '2019-04-09 08:32:07', NULL),
(5454, '2019-04-09', 115, '2019-04-09 08:32:48', '2019-04-09 10:20:24'),
(5455, '2019-04-09', 60, '2019-04-09 08:33:53', '2019-04-09 12:52:35'),
(5456, '2019-04-09', 117, '2019-04-09 08:34:00', '2019-04-09 10:19:33'),
(5457, '2019-04-09', 77, '2019-04-09 08:34:05', '2019-04-09 10:32:06'),
(5458, '2019-04-09', 27, '2019-04-09 08:34:26', '2019-04-09 10:19:38'),
(5459, '2019-04-09', 8, '2019-04-09 08:34:29', NULL),
(5460, '2019-04-09', 44, '2019-04-09 08:35:42', '2019-04-09 12:50:29'),
(5461, '2019-04-09', 113, '2019-04-09 08:36:50', '2019-04-09 10:19:49'),
(5462, '2019-04-09', 121, '2019-04-09 08:37:33', '2019-04-09 10:19:52'),
(5463, '2019-04-09', 180, '2019-04-09 08:38:30', '2019-04-09 11:36:39'),
(5464, '2019-04-09', 63, '2019-04-09 08:38:46', '2019-04-09 12:54:54'),
(5465, '2019-04-09', 151, '2019-04-09 08:40:44', '2019-04-09 11:36:32'),
(5466, '2019-04-09', 100, '2019-04-09 08:41:35', '2019-04-09 10:30:48'),
(5467, '2019-04-09', 156, '2019-04-09 08:42:45', '2019-04-09 11:37:01'),
(5468, '2019-04-09', 127, '2019-04-09 08:45:32', '2019-04-09 11:36:01'),
(5469, '2019-04-09', 134, '2019-04-09 08:47:01', '2019-04-09 11:36:56'),
(5470, '2019-04-09', 133, '2019-04-09 08:52:35', NULL),
(5471, '2019-04-09', 174, '2019-04-09 10:17:11', '2019-04-09 12:58:18'),
(5472, '2019-04-09', 105, '2019-04-09 10:21:14', '2019-04-09 12:58:33'),
(5473, '2019-04-09', 28, '2019-04-09 10:31:54', NULL),
(5474, '2019-04-09', 93, '2019-04-09 10:32:03', NULL),
(5475, '2019-04-09', 87, '2019-04-09 10:32:32', NULL),
(5476, '2019-04-09', 102, '2019-04-09 10:32:51', '2019-04-09 12:57:28'),
(5477, '2019-04-09', 106, '2019-04-09 10:32:56', '2019-04-09 12:57:55'),
(5478, '2019-04-09', 30, '2019-04-09 10:33:20', NULL),
(5479, '2019-04-09', 42, '2019-04-09 10:35:26', NULL),
(5480, '2019-04-09', 111, '2019-04-09 10:35:42', NULL),
(5481, '2019-04-09', 33, '2019-04-09 10:35:51', '2019-04-09 12:39:45'),
(5482, '2019-04-09', 41, '2019-04-09 10:35:55', '2019-04-09 12:39:36'),
(5483, '2019-04-09', 149, '2019-04-09 10:40:45', NULL),
(5484, '2019-04-09', 107, '2019-04-09 10:42:28', '2019-04-09 12:58:40'),
(5485, '2019-04-09', 35, '2019-04-09 10:48:58', '2019-04-09 12:41:09'),
(5486, '2019-04-09', 183, '2019-04-09 10:56:05', '2019-04-09 12:57:13'),
(5487, '2019-04-09', 129, '2019-04-09 11:35:07', NULL),
(5488, '2019-04-09', 139, '2019-04-09 11:35:24', NULL),
(5489, '2019-04-09', 126, '2019-04-09 11:35:35', NULL),
(5490, '2019-04-09', 131, '2019-04-09 11:36:22', NULL),
(5491, '2019-04-09', 143, '2019-04-09 11:36:43', NULL),
(5492, '2019-04-09', 140, '2019-04-09 11:37:06', NULL),
(5493, '2019-04-09', 52, '2019-04-09 12:50:22', NULL),
(5494, '2019-04-09', 177, '2019-04-09 12:52:57', NULL),
(5495, '2019-04-09', 54, '2019-04-09 12:58:50', NULL),
(5496, '2019-04-09', 108, '2019-04-09 13:02:37', NULL),
(5497, '2019-04-10', 34, '2019-04-10 07:41:36', '2019-04-10 10:24:16'),
(5498, '2019-04-10', 18, '2019-04-10 07:41:40', NULL),
(5499, '2019-04-10', 55, '2019-04-10 07:41:44', '2019-04-10 12:45:49'),
(5500, '2019-04-10', 147, '2019-04-10 07:41:47', '2019-04-10 11:36:03'),
(5501, '2019-04-10', 96, '2019-04-10 07:52:29', '2019-04-10 10:30:59'),
(5502, '2019-04-10', 155, '2019-04-10 07:56:25', NULL),
(5503, '2019-04-10', 57, '2019-04-10 08:03:49', '2019-04-10 12:45:41'),
(5504, '2019-04-10', 168, '2019-04-10 08:04:25', '2019-04-10 12:51:23'),
(5505, '2019-04-10', 169, '2019-04-10 08:08:26', NULL),
(5506, '2019-04-10', 176, '2019-04-10 08:09:59', '2019-04-10 12:50:59'),
(5507, '2019-04-10', 119, '2019-04-10 08:10:06', NULL),
(5508, '2019-04-10', 89, '2019-04-10 08:10:14', '2019-04-10 10:30:09'),
(5509, '2019-04-10', 141, '2019-04-10 08:11:52', NULL),
(5510, '2019-04-10', 65, '2019-04-10 08:12:01', '2019-04-10 12:45:19'),
(5511, '2019-04-10', 68, '2019-04-10 08:12:06', '2019-04-10 12:46:05'),
(5512, '2019-04-10', 43, '2019-04-10 08:12:35', NULL),
(5513, '2019-04-10', 45, '2019-04-10 08:12:51', '2019-04-10 12:51:36'),
(5514, '2019-04-10', 84, '2019-04-10 08:13:08', NULL),
(5515, '2019-04-10', 138, '2019-04-10 08:13:17', '2019-04-10 11:36:35'),
(5516, '2019-04-10', 172, '2019-04-10 08:15:31', NULL),
(5517, '2019-04-10', 85, '2019-04-10 08:15:37', '2019-04-10 10:29:51'),
(5518, '2019-04-10', 64, '2019-04-10 08:16:09', '2019-04-10 12:50:35'),
(5519, '2019-04-10', 54, '2019-04-10 08:16:16', '2019-04-10 12:51:14'),
(5520, '2019-04-10', 70, '2019-04-10 08:16:23', '2019-04-10 12:45:51'),
(5521, '2019-04-10', 5, '2019-04-10 08:16:27', '2019-04-10 12:09:31'),
(5522, '2019-04-10', 144, '2019-04-10 08:16:34', '2019-04-10 11:35:23'),
(5523, '2019-04-10', 143, '2019-04-10 08:16:41', '2019-04-10 11:36:25'),
(5524, '2019-04-10', 117, '2019-04-10 08:16:51', '2019-04-10 10:24:10'),
(5525, '2019-04-10', 16, '2019-04-10 08:16:57', NULL),
(5526, '2019-04-10', 48, '2019-04-10 08:17:01', '2019-04-10 12:50:45'),
(5527, '2019-04-10', 93, '2019-04-10 08:17:04', '2019-04-10 10:31:17'),
(5528, '2019-04-10', 139, '2019-04-10 08:17:22', '2019-04-10 11:35:29'),
(5529, '2019-04-10', 159, '2019-04-10 08:17:28', '2019-04-10 10:30:44'),
(5530, '2019-04-10', 53, '2019-04-10 08:18:29', '2019-04-10 12:50:30'),
(5531, '2019-04-10', 145, '2019-04-10 08:19:08', '2019-04-10 11:35:00'),
(5532, '2019-04-10', 181, '2019-04-10 08:19:12', '2019-04-10 12:50:53'),
(5533, '2019-04-10', 67, '2019-04-10 08:19:26', NULL),
(5534, '2019-04-10', 7, '2019-04-10 08:20:12', NULL),
(5535, '2019-04-10', 9, '2019-04-10 08:20:32', NULL),
(5536, '2019-04-10', 46, '2019-04-10 08:21:07', '2019-04-10 12:50:15'),
(5537, '2019-04-10', 128, '2019-04-10 08:22:13', '2019-04-10 11:35:41'),
(5538, '2019-04-10', 88, '2019-04-10 08:23:06', '2019-04-10 10:31:06'),
(5539, '2019-04-10', 61, '2019-04-10 08:23:34', NULL),
(5540, '2019-04-10', 14, '2019-04-10 08:23:37', '2019-04-10 12:14:43'),
(5541, '2019-04-10', 86, '2019-04-10 08:23:50', '2019-04-10 10:29:56'),
(5542, '2019-04-10', 137, '2019-04-10 08:24:11', '2019-04-10 11:35:54'),
(5543, '2019-04-10', 170, '2019-04-10 08:24:22', '2019-04-10 12:50:49'),
(5544, '2019-04-10', 39, '2019-04-10 08:24:27', '2019-04-10 10:24:54'),
(5545, '2019-04-10', 29, '2019-04-10 08:31:44', '2019-04-10 10:24:57'),
(5546, '2019-04-10', 97, '2019-04-10 08:31:52', '2019-04-10 10:31:37'),
(5547, '2019-04-10', 146, '2019-04-10 08:32:04', '2019-04-10 11:35:15'),
(5548, '2019-04-10', 75, '2019-04-10 08:32:08', NULL),
(5549, '2019-04-10', 142, '2019-04-10 08:32:23', '2019-04-10 11:36:14'),
(5550, '2019-04-10', 135, '2019-04-10 08:32:29', '2019-04-10 11:34:29'),
(5551, '2019-04-10', 180, '2019-04-10 08:32:34', '2019-04-10 11:35:10'),
(5552, '2019-04-10', 8, '2019-04-10 08:32:39', NULL),
(5553, '2019-04-10', 166, '2019-04-10 08:32:44', NULL),
(5554, '2019-04-10', 44, '2019-04-10 08:32:53', '2019-04-10 12:51:30'),
(5555, '2019-04-10', 71, '2019-04-10 08:33:07', '2019-04-10 12:45:38'),
(5556, '2019-04-10', 10, '2019-04-10 08:33:13', NULL),
(5557, '2019-04-10', 15, '2019-04-10 08:33:18', NULL),
(5558, '2019-04-10', 78, '2019-04-10 08:33:23', NULL),
(5559, '2019-04-10', 156, '2019-04-10 08:33:30', '2019-04-10 11:36:20'),
(5560, '2019-04-10', 100, '2019-04-10 08:33:37', '2019-04-10 10:29:45'),
(5561, '2019-04-10', 11, '2019-04-10 08:33:42', NULL),
(5562, '2019-04-10', 63, '2019-04-10 08:33:46', '2019-04-10 12:45:25'),
(5563, '2019-04-10', 125, '2019-04-10 08:33:56', '2019-04-10 11:34:45'),
(5564, '2019-04-10', 148, '2019-04-10 08:34:01', '2019-04-10 11:35:46'),
(5565, '2019-04-10', 60, '2019-04-10 08:34:06', '2019-04-10 12:45:46'),
(5566, '2019-04-10', 131, '2019-04-10 08:34:18', '2019-04-10 11:34:55'),
(5567, '2019-04-10', 90, '2019-04-10 08:34:24', '2019-04-10 10:31:27'),
(5568, '2019-04-10', 79, '2019-04-10 08:34:28', NULL),
(5569, '2019-04-10', 66, '2019-04-10 08:34:33', NULL),
(5570, '2019-04-10', 91, '2019-04-10 08:34:38', '2019-04-10 10:31:32'),
(5571, '2019-04-10', 80, '2019-04-10 08:34:41', '2019-04-10 10:30:54'),
(5572, '2019-04-10', 153, '2019-04-10 08:34:52', '2019-04-10 11:37:21'),
(5573, '2019-04-10', 151, '2019-04-10 08:35:37', '2019-04-10 11:36:40'),
(5574, '2019-04-10', 110, '2019-04-10 08:35:59', '2019-04-10 10:25:17'),
(5575, '2019-04-10', 26, '2019-04-10 08:36:26', '2019-04-10 10:25:03'),
(5576, '2019-04-10', 52, '2019-04-10 08:36:50', '2019-04-10 12:50:18'),
(5577, '2019-04-10', 121, '2019-04-10 08:37:57', '2019-04-10 10:23:40'),
(5578, '2019-04-10', 113, '2019-04-10 08:39:37', '2019-04-10 10:24:04'),
(5579, '2019-04-10', 133, '2019-04-10 08:39:55', '2019-04-10 11:34:26'),
(5580, '2019-04-10', 27, '2019-04-10 08:40:41', '2019-04-10 10:23:32'),
(5581, '2019-04-10', 37, '2019-04-10 08:45:20', '2019-04-10 10:25:57'),
(5582, '2019-04-10', 134, '2019-04-10 08:48:45', '2019-04-10 11:36:30'),
(5583, '2019-04-10', 77, '2019-04-10 08:49:26', '2019-04-10 10:31:03'),
(5584, '2019-04-10', 105, '2019-04-10 10:11:09', '2019-04-10 12:55:48'),
(5585, '2019-04-10', 115, '2019-04-10 10:23:25', NULL),
(5586, '2019-04-10', 178, '2019-04-10 10:24:19', NULL),
(5587, '2019-04-10', 31, '2019-04-10 10:24:33', NULL),
(5588, '2019-04-10', 17, '2019-04-10 10:25:08', NULL),
(5589, '2019-04-10', 87, '2019-04-10 10:31:22', NULL),
(5590, '2019-04-10', 106, '2019-04-10 10:32:25', NULL),
(5591, '2019-04-10', 111, '2019-04-10 10:35:19', '2019-04-10 12:55:44'),
(5592, '2019-04-10', 33, '2019-04-10 10:35:25', '2019-04-10 12:34:05'),
(5593, '2019-04-10', 41, '2019-04-10 10:35:31', '2019-04-10 12:34:50'),
(5594, '2019-04-10', 42, '2019-04-10 10:35:38', '2019-04-10 12:35:05'),
(5595, '2019-04-10', 102, '2019-04-10 10:37:28', '2019-04-10 12:54:31'),
(5596, '2019-04-10', 28, '2019-04-10 10:41:06', NULL),
(5597, '2019-04-10', 35, '2019-04-10 10:45:01', '2019-04-10 12:37:50'),
(5598, '2019-04-10', 36, '2019-04-10 10:46:18', '2019-04-10 12:31:39'),
(5599, '2019-04-10', 107, '2019-04-10 10:46:26', NULL),
(5600, '2019-04-10', 183, '2019-04-10 10:47:04', '2019-04-10 12:54:39'),
(5601, '2019-04-10', 149, '2019-04-10 10:49:52', '2019-04-10 12:38:20'),
(5602, '2019-04-10', 129, '2019-04-10 11:35:05', NULL),
(5603, '2019-04-10', 126, '2019-04-10 11:35:35', NULL),
(5604, '2019-04-10', 150, '2019-04-10 11:36:00', NULL),
(5605, '2019-04-10', 140, '2019-04-10 11:40:08', NULL),
(5606, '2019-04-10', 177, '2019-04-10 12:45:22', NULL),
(5607, '2019-04-10', 179, '2019-04-10 12:51:38', NULL),
(5608, '2019-04-10', 174, '2019-04-10 12:54:52', NULL),
(5609, '2019-04-11', 185, '2019-04-11 07:35:01', NULL),
(5610, '2019-04-11', 189, '2019-04-11 07:35:07', '2019-04-11 10:40:45'),
(5611, '2019-04-11', 23, '2019-04-11 07:45:53', '2019-04-11 10:37:23'),
(5612, '2019-04-11', 18, '2019-04-11 07:47:11', NULL),
(5613, '2019-04-11', 147, '2019-04-11 07:47:13', '2019-04-11 11:29:55'),
(5614, '2019-04-11', 55, '2019-04-11 07:49:06', NULL),
(5615, '2019-04-11', 34, '2019-04-11 07:49:11', '2019-04-11 10:18:38'),
(5616, '2019-04-11', 177, '2019-04-11 07:58:33', '2019-04-11 10:40:41'),
(5617, '2019-04-11', 53, '2019-04-11 07:58:53', NULL),
(5618, '2019-04-11', 138, '2019-04-11 07:59:05', NULL),
(5619, '2019-04-11', 99, '2019-04-11 08:00:01', NULL),
(5620, '2019-04-11', 48, '2019-04-11 08:01:35', NULL),
(5621, '2019-04-11', 31, '2019-04-11 08:01:48', '2019-04-11 10:11:39'),
(5622, '2019-04-11', 124, '2019-04-11 08:01:58', '2019-04-11 11:30:53'),
(5623, '2019-04-11', 68, '2019-04-11 08:03:15', NULL),
(5624, '2019-04-11', 169, '2019-04-11 08:04:41', NULL),
(5625, '2019-04-11', 96, '2019-04-11 08:06:31', '2019-04-11 10:35:21'),
(5626, '2019-04-11', 145, '2019-04-11 08:06:41', '2019-04-11 11:29:36'),
(5627, '2019-04-11', 181, '2019-04-11 08:06:45', NULL),
(5628, '2019-04-11', 168, '2019-04-11 08:06:54', NULL),
(5629, '2019-04-11', 89, '2019-04-11 08:07:29', '2019-04-11 10:35:11'),
(5630, '2019-04-11', 8, '2019-04-11 08:12:05', '2019-04-11 10:37:38'),
(5631, '2019-04-11', 95, '2019-04-11 08:12:22', '2019-04-11 10:35:16'),
(5632, '2019-04-11', 44, '2019-04-11 08:12:30', NULL),
(5633, '2019-04-11', 131, '2019-04-11 08:12:48', '2019-04-11 11:29:40'),
(5634, '2019-04-11', 137, '2019-04-11 08:12:53', '2019-04-11 11:30:14'),
(5635, '2019-04-11', 128, '2019-04-11 08:15:31', '2019-04-11 11:30:11'),
(5636, '2019-04-11', 43, '2019-04-11 08:15:35', NULL),
(5637, '2019-04-11', 84, '2019-04-11 08:17:18', '2019-04-11 10:35:24'),
(5638, '2019-04-11', 182, '2019-04-11 08:17:39', NULL),
(5639, '2019-04-11', 45, '2019-04-11 08:18:22', NULL),
(5640, '2019-04-11', 71, '2019-04-11 08:19:08', '2019-04-11 10:41:31'),
(5641, '2019-04-11', 150, '2019-04-11 08:19:33', '2019-04-11 11:30:44'),
(5642, '2019-04-11', 146, '2019-04-11 08:19:44', NULL),
(5643, '2019-04-11', 26, '2019-04-11 08:19:51', '2019-04-11 10:10:47'),
(5644, '2019-04-11', 64, '2019-04-11 08:20:18', NULL),
(5645, '2019-04-11', 144, '2019-04-11 08:20:22', '2019-04-11 11:30:23'),
(5646, '2019-04-11', 78, '2019-04-11 08:20:27', NULL),
(5647, '2019-04-11', 54, '2019-04-11 08:20:32', NULL),
(5648, '2019-04-11', 76, '2019-04-11 08:21:30', '2019-04-11 10:34:49'),
(5649, '2019-04-11', 17, '2019-04-11 08:22:17', NULL),
(5650, '2019-04-11', 97, '2019-04-11 08:24:36', '2019-04-11 10:36:09'),
(5651, '2019-04-11', 178, '2019-04-11 08:24:40', NULL),
(5652, '2019-04-11', 130, '2019-04-11 08:30:12', NULL),
(5653, '2019-04-11', 180, '2019-04-11 08:30:26', '2019-04-11 11:30:34'),
(5654, '2019-04-11', 135, '2019-04-11 08:30:32', '2019-04-11 11:30:38'),
(5655, '2019-04-11', 20, '2019-04-11 08:30:36', NULL),
(5656, '2019-04-11', 10, '2019-04-11 08:30:41', NULL),
(5657, '2019-04-11', 16, '2019-04-11 08:30:47', '2019-04-11 10:36:30'),
(5658, '2019-04-11', 148, '2019-04-11 08:30:51', '2019-04-11 11:30:06'),
(5659, '2019-04-11', 61, '2019-04-11 08:30:56', '2019-04-11 10:56:17'),
(5660, '2019-04-11', 5, '2019-04-11 08:31:01', '2019-04-11 10:36:41'),
(5661, '2019-04-11', 70, '2019-04-11 08:31:08', NULL);
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(5662, '2019-04-11', 69, '2019-04-11 08:31:13', '2019-04-11 10:41:22'),
(5663, '2019-04-11', 179, '2019-04-11 08:31:17', NULL),
(5664, '2019-04-11', 90, '2019-04-11 08:31:27', '2019-04-11 10:35:41'),
(5665, '2019-04-11', 91, '2019-04-11 08:31:32', '2019-04-11 10:35:47'),
(5666, '2019-04-11', 176, '2019-04-11 08:31:37', NULL),
(5667, '2019-04-11', 140, '2019-04-11 08:31:41', NULL),
(5668, '2019-04-11', 85, '2019-04-11 08:31:45', '2019-04-11 10:35:59'),
(5669, '2019-04-11', 29, '2019-04-11 08:31:52', NULL),
(5670, '2019-04-11', 57, '2019-04-11 08:31:57', '2019-04-11 10:40:17'),
(5671, '2019-04-11', 25, '2019-04-11 08:32:08', '2019-04-11 10:34:57'),
(5672, '2019-04-11', 9, '2019-04-11 08:32:14', '2019-04-11 10:36:36'),
(5673, '2019-04-11', 11, '2019-04-11 08:32:19', NULL),
(5674, '2019-04-11', 37, '2019-04-11 08:32:24', '2019-04-11 10:17:09'),
(5675, '2019-04-11', 153, '2019-04-11 08:32:36', '2019-04-11 10:56:31'),
(5676, '2019-04-11', 38, '2019-04-11 08:32:42', '2019-04-11 10:19:34'),
(5677, '2019-04-11', 86, '2019-04-11 08:32:47', '2019-04-11 10:36:03'),
(5678, '2019-04-11', 52, '2019-04-11 08:32:52', NULL),
(5679, '2019-04-11', 39, '2019-04-11 08:33:44', NULL),
(5680, '2019-04-11', 60, '2019-04-11 08:34:40', '2019-04-11 10:41:35'),
(5681, '2019-04-11', 117, '2019-04-11 08:35:09', '2019-04-11 10:18:53'),
(5682, '2019-04-11', 63, '2019-04-11 08:35:32', '2019-04-11 10:40:15'),
(5683, '2019-04-11', 151, '2019-04-11 08:35:48', NULL),
(5684, '2019-04-11', 27, '2019-04-11 08:39:23', '2019-04-11 10:17:15'),
(5685, '2019-04-11', 113, '2019-04-11 08:44:52', '2019-04-11 10:18:43'),
(5686, '2019-04-11', 133, '2019-04-11 08:45:51', '2019-04-11 11:30:01'),
(5687, '2019-04-11', 46, '2019-04-11 08:46:30', NULL),
(5688, '2019-04-11', 127, '2019-04-11 08:48:42', NULL),
(5689, '2019-04-11', 134, '2019-04-11 08:48:48', '2019-04-11 11:30:28'),
(5690, '2019-04-11', 105, '2019-04-11 10:12:40', NULL),
(5691, '2019-04-11', 174, '2019-04-11 10:20:14', NULL),
(5692, '2019-04-11', 30, '2019-04-11 10:25:14', NULL),
(5693, '2019-04-11', 106, '2019-04-11 10:29:47', NULL),
(5694, '2019-04-11', 159, '2019-04-11 10:34:44', NULL),
(5695, '2019-04-11', 75, '2019-04-11 10:36:18', NULL),
(5696, '2019-04-11', 88, '2019-04-11 10:36:25', NULL),
(5697, '2019-04-11', 14, '2019-04-11 10:37:33', NULL),
(5698, '2019-04-11', 13, '2019-04-11 10:37:42', NULL),
(5699, '2019-04-11', 42, '2019-04-11 10:39:51', NULL),
(5700, '2019-04-11', 111, '2019-04-11 10:39:58', NULL),
(5701, '2019-04-11', 56, '2019-04-11 10:41:17', NULL),
(5702, '2019-04-11', 121, '2019-04-11 10:42:42', NULL),
(5703, '2019-04-11', 28, '2019-04-11 10:43:25', NULL),
(5704, '2019-04-11', 149, '2019-04-11 10:44:18', NULL),
(5705, '2019-04-11', 107, '2019-04-11 10:47:45', NULL),
(5706, '2019-04-11', 35, '2019-04-11 10:49:15', NULL),
(5707, '2019-04-11', 36, '2019-04-11 10:49:19', NULL),
(5708, '2019-04-11', 183, '2019-04-11 10:51:47', NULL),
(5709, '2019-04-11', 126, '2019-04-11 11:29:48', NULL),
(5710, '2019-04-11', 141, '2019-04-11 11:30:49', NULL),
(5711, '2019-04-15', 184, '2019-04-15 07:23:25', NULL),
(5712, '2019-04-15', 96, '2019-04-15 07:51:51', '2019-04-15 10:40:02'),
(5713, '2019-04-15', 18, '2019-04-15 07:52:01', '2019-04-15 12:04:13'),
(5714, '2019-04-15', 72, '2019-04-15 07:52:38', NULL),
(5715, '2019-04-15', 147, '2019-04-15 07:52:53', '2019-04-15 11:38:31'),
(5716, '2019-04-15', 152, '2019-04-15 07:53:02', '2019-04-15 11:40:01'),
(5717, '2019-04-15', 55, '2019-04-15 07:53:08', NULL),
(5718, '2019-04-15', 34, '2019-04-15 07:53:35', '2019-04-15 10:20:38'),
(5719, '2019-04-15', 23, '2019-04-15 07:55:00', NULL),
(5720, '2019-04-15', 176, '2019-04-15 07:58:42', NULL),
(5721, '2019-04-15', 100, '2019-04-15 08:00:40', '2019-04-15 10:38:31'),
(5722, '2019-04-15', 99, '2019-04-15 08:05:19', '2019-04-15 10:38:24'),
(5723, '2019-04-15', 168, '2019-04-15 08:07:28', '2019-04-15 12:44:32'),
(5724, '2019-04-15', 138, '2019-04-15 08:08:00', '2019-04-15 11:38:42'),
(5725, '2019-04-15', 155, '2019-04-15 08:08:12', '2019-04-15 11:40:07'),
(5726, '2019-04-15', 169, '2019-04-15 08:08:24', NULL),
(5727, '2019-04-15', 139, '2019-04-15 08:09:51', '2019-04-15 11:38:04'),
(5728, '2019-04-15', 50, '2019-04-15 08:10:05', NULL),
(5729, '2019-04-15', 78, '2019-04-15 08:10:22', '2019-04-15 10:38:16'),
(5730, '2019-04-15', 167, '2019-04-15 08:10:31', '2019-04-15 12:43:41'),
(5731, '2019-04-15', 150, '2019-04-15 08:11:38', '2019-04-15 11:38:47'),
(5732, '2019-04-15', 95, '2019-04-15 08:11:57', '2019-04-15 10:38:56'),
(5733, '2019-04-15', 157, '2019-04-15 08:12:31', '2019-04-15 11:39:07'),
(5734, '2019-04-15', 17, '2019-04-15 08:13:20', '2019-04-15 10:17:57'),
(5735, '2019-04-15', 126, '2019-04-15 08:13:53', '2019-04-15 11:38:13'),
(5736, '2019-04-15', 135, '2019-04-15 08:14:29', '2019-04-15 11:39:39'),
(5737, '2019-04-15', 171, '2019-04-15 08:14:32', NULL),
(5738, '2019-04-15', 118, '2019-04-15 08:14:43', NULL),
(5739, '2019-04-15', 131, '2019-04-15 08:14:52', '2019-04-15 11:37:52'),
(5740, '2019-04-15', 89, '2019-04-15 08:15:09', '2019-04-15 10:39:16'),
(5741, '2019-04-15', 5, '2019-04-15 08:15:15', '2019-04-15 12:04:20'),
(5742, '2019-04-15', 70, '2019-04-15 08:15:18', NULL),
(5743, '2019-04-15', 144, '2019-04-15 08:15:30', '2019-04-15 11:39:22'),
(5744, '2019-04-15', 54, '2019-04-15 08:15:35', '2019-04-15 12:44:15'),
(5745, '2019-04-15', 26, '2019-04-15 08:15:38', '2019-04-15 10:20:59'),
(5746, '2019-04-15', 16, '2019-04-15 08:15:41', '2019-04-15 12:04:33'),
(5747, '2019-04-15', 84, '2019-04-15 08:16:09', '2019-04-15 10:39:56'),
(5748, '2019-04-15', 64, '2019-04-15 08:16:28', NULL),
(5749, '2019-04-15', 101, '2019-04-15 08:17:57', '2019-04-15 10:39:44'),
(5750, '2019-04-15', 86, '2019-04-15 08:20:02', '2019-04-15 10:38:41'),
(5751, '2019-04-15', 181, '2019-04-15 08:20:41', '2019-04-15 12:44:26'),
(5752, '2019-04-15', 145, '2019-04-15 08:20:46', NULL),
(5753, '2019-04-15', 146, '2019-04-15 08:21:14', '2019-04-15 11:39:12'),
(5754, '2019-04-15', 14, '2019-04-15 08:21:21', '2019-04-15 11:40:31'),
(5755, '2019-04-15', 68, '2019-04-15 08:25:40', NULL),
(5756, '2019-04-15', 75, '2019-04-15 08:28:47', NULL),
(5757, '2019-04-15', 137, '2019-04-15 08:28:51', NULL),
(5758, '2019-04-15', 133, '2019-04-15 08:29:07', '2019-04-15 11:39:44'),
(5759, '2019-04-15', 8, '2019-04-15 08:29:16', '2019-04-15 12:02:04'),
(5760, '2019-04-15', 66, '2019-04-15 08:29:19', NULL),
(5761, '2019-04-15', 53, '2019-04-15 08:29:29', '2019-04-15 12:44:22'),
(5762, '2019-04-15', 43, '2019-04-15 08:29:34', NULL),
(5763, '2019-04-15', 44, '2019-04-15 08:29:42', '2019-04-15 12:43:52'),
(5764, '2019-04-15', 170, '2019-04-15 08:29:47', '2019-04-15 12:47:33'),
(5765, '2019-04-15', 165, '2019-04-15 08:29:54', NULL),
(5766, '2019-04-15', 189, '2019-04-15 08:29:57', NULL),
(5767, '2019-04-15', 15, '2019-04-15 08:29:59', '2019-04-15 12:01:14'),
(5768, '2019-04-15', 71, '2019-04-15 08:30:03', NULL),
(5769, '2019-04-15', 179, '2019-04-15 08:30:08', '2019-04-15 12:47:30'),
(5770, '2019-04-15', 25, '2019-04-15 08:30:12', '2019-04-15 12:04:40'),
(5771, '2019-04-15', 156, '2019-04-15 08:30:17', '2019-04-15 11:38:28'),
(5772, '2019-04-15', 186, '2019-04-15 08:30:22', '2019-04-15 11:38:36'),
(5773, '2019-04-15', 45, '2019-04-15 08:30:26', '2019-04-15 12:11:58'),
(5774, '2019-04-15', 10, '2019-04-15 08:30:31', '2019-04-15 12:05:02'),
(5775, '2019-04-15', 29, '2019-04-15 08:30:36', '2019-04-15 10:22:11'),
(5776, '2019-04-15', 115, '2019-04-15 08:30:43', NULL),
(5777, '2019-04-15', 141, '2019-04-15 08:30:48', '2019-04-15 11:39:28'),
(5778, '2019-04-15', 77, '2019-04-15 08:30:53', '2019-04-15 10:39:25'),
(5779, '2019-04-15', 166, '2019-04-15 08:30:57', '2019-04-15 12:11:04'),
(5780, '2019-04-15', 142, '2019-04-15 08:31:04', '2019-04-15 11:38:23'),
(5781, '2019-04-15', 153, '2019-04-15 08:31:44', '2019-04-15 11:38:57'),
(5782, '2019-04-15', 91, '2019-04-15 08:31:53', '2019-04-15 10:39:31'),
(5783, '2019-04-15', 90, '2019-04-15 08:31:58', '2019-04-15 10:39:38'),
(5784, '2019-04-15', 125, '2019-04-15 08:32:04', '2019-04-15 11:38:08'),
(5785, '2019-04-15', 22, '2019-04-15 08:32:15', '2019-04-15 10:22:02'),
(5786, '2019-04-15', 93, '2019-04-15 08:32:24', '2019-04-15 10:39:48'),
(5787, '2019-04-15', 130, '2019-04-15 08:32:30', '2019-04-15 11:39:03'),
(5788, '2019-04-15', 11, '2019-04-15 08:32:45', '2019-04-15 12:04:58'),
(5789, '2019-04-15', 113, '2019-04-15 08:34:25', '2019-04-15 10:22:16'),
(5790, '2019-04-15', 27, '2019-04-15 08:34:40', '2019-04-15 10:22:06'),
(5791, '2019-04-15', 180, '2019-04-15 08:34:47', NULL),
(5792, '2019-04-15', 128, '2019-04-15 08:35:24', '2019-04-15 11:38:19'),
(5793, '2019-04-15', 80, '2019-04-15 08:35:49', '2019-04-15 10:38:34'),
(5794, '2019-04-15', 61, '2019-04-15 08:36:39', NULL),
(5795, '2019-04-15', 52, '2019-04-15 08:36:57', '2019-04-15 12:43:55'),
(5796, '2019-04-15', 114, '2019-04-15 08:37:51', '2019-04-15 10:22:29'),
(5797, '2019-04-15', 39, '2019-04-15 08:38:11', NULL),
(5798, '2019-04-15', 60, '2019-04-15 08:40:40', NULL),
(5799, '2019-04-15', 134, '2019-04-15 08:47:52', '2019-04-15 11:38:52'),
(5800, '2019-04-15', 105, '2019-04-15 10:10:07', '2019-04-15 12:52:54'),
(5801, '2019-04-15', 178, '2019-04-15 10:21:45', NULL),
(5802, '2019-04-15', 40, '2019-04-15 10:26:52', NULL),
(5803, '2019-04-15', 174, '2019-04-15 10:29:16', NULL),
(5804, '2019-04-15', 112, '2019-04-15 10:29:22', NULL),
(5805, '2019-04-15', 104, '2019-04-15 10:32:54', '2019-04-15 12:52:37'),
(5806, '2019-04-15', 103, '2019-04-15 10:33:56', '2019-04-15 12:52:41'),
(5807, '2019-04-15', 107, '2019-04-15 10:35:37', '2019-04-15 12:51:35'),
(5808, '2019-04-15', 102, '2019-04-15 10:35:45', '2019-04-15 12:51:02'),
(5809, '2019-04-15', 187, '2019-04-15 10:37:54', '2019-04-15 12:51:19'),
(5810, '2019-04-15', 28, '2019-04-15 10:37:56', NULL),
(5811, '2019-04-15', 87, '2019-04-15 10:40:11', NULL),
(5812, '2019-04-15', 42, '2019-04-15 10:41:17', '2019-04-15 12:43:23'),
(5813, '2019-04-15', 111, '2019-04-15 10:41:35', '2019-04-15 12:52:46'),
(5814, '2019-04-15', 149, '2019-04-15 10:44:06', NULL),
(5815, '2019-04-15', 35, '2019-04-15 10:55:49', '2019-04-15 12:44:06'),
(5816, '2019-04-15', 36, '2019-04-15 10:55:55', NULL),
(5817, '2019-04-15', 183, '2019-04-15 10:58:19', '2019-04-15 12:51:10'),
(5818, '2019-04-15', 129, '2019-04-15 11:37:48', NULL),
(5819, '2019-04-15', 143, '2019-04-15 11:39:47', NULL),
(5820, '2019-04-15', 20, '2019-04-15 11:40:53', NULL),
(5821, '2019-04-15', 9, '2019-04-15 12:04:23', NULL),
(5822, '2019-04-15', 46, '2019-04-15 12:43:45', NULL),
(5823, '2019-04-15', 48, '2019-04-15 12:44:11', NULL),
(5824, '2019-04-15', 106, '2019-04-15 12:51:27', NULL),
(5825, '2019-04-16', 123, '2019-04-16 07:51:19', '2019-04-16 11:36:24'),
(5826, '2019-04-16', 23, '2019-04-16 07:56:37', '2019-04-16 12:10:53'),
(5827, '2019-04-16', 157, '2019-04-16 07:57:09', '2019-04-16 11:35:40'),
(5828, '2019-04-16', 155, '2019-04-16 08:01:48', NULL),
(5829, '2019-04-16', 137, '2019-04-16 08:03:44', '2019-04-16 11:35:02'),
(5830, '2019-04-16', 136, '2019-04-16 08:04:36', '2019-04-16 11:36:39'),
(5831, '2019-04-16', 98, '2019-04-16 08:04:40', '2019-04-16 10:28:58'),
(5832, '2019-04-16', 176, '2019-04-16 08:04:47', '2019-04-16 12:51:01'),
(5833, '2019-04-16', 138, '2019-04-16 08:04:52', '2019-04-16 11:36:11'),
(5834, '2019-04-16', 57, '2019-04-16 08:04:59', '2019-04-16 12:49:06'),
(5835, '2019-04-16', 114, '2019-04-16 08:05:58', NULL),
(5836, '2019-04-16', 18, '2019-04-16 08:06:01', '2019-04-16 12:10:38'),
(5837, '2019-04-16', 34, '2019-04-16 08:06:12', '2019-04-16 10:20:29'),
(5838, '2019-04-16', 152, '2019-04-16 08:06:43', '2019-04-16 11:42:47'),
(5839, '2019-04-16', 72, '2019-04-16 08:06:52', '2019-04-16 12:46:38'),
(5840, '2019-04-16', 10, '2019-04-16 08:07:18', '2019-04-16 12:11:20'),
(5841, '2019-04-16', 48, '2019-04-16 08:09:09', '2019-04-16 12:50:56'),
(5842, '2019-04-16', 70, '2019-04-16 08:10:43', '2019-04-16 12:45:25'),
(5843, '2019-04-16', 54, '2019-04-16 08:10:48', NULL),
(5844, '2019-04-16', 144, '2019-04-16 08:11:10', '2019-04-16 11:34:52'),
(5845, '2019-04-16', 16, '2019-04-16 08:11:16', '2019-04-16 12:10:42'),
(5846, '2019-04-16', 99, '2019-04-16 08:11:28', '2019-04-16 10:29:10'),
(5847, '2019-04-16', 118, '2019-04-16 08:11:34', '2019-04-16 10:20:32'),
(5848, '2019-04-16', 96, '2019-04-16 08:11:51', '2019-04-16 10:29:59'),
(5849, '2019-04-16', 5, '2019-04-16 08:12:31', '2019-04-16 12:10:59'),
(5850, '2019-04-16', 100, '2019-04-16 08:12:57', '2019-04-16 10:28:44'),
(5851, '2019-04-16', 169, '2019-04-16 08:13:05', NULL),
(5852, '2019-04-16', 147, '2019-04-16 08:14:00', '2019-04-16 11:34:47'),
(5853, '2019-04-16', 150, '2019-04-16 08:15:07', '2019-04-16 11:35:49'),
(5854, '2019-04-16', 139, '2019-04-16 08:15:25', NULL),
(5855, '2019-04-16', 31, '2019-04-16 08:16:39', '2019-04-16 10:21:20'),
(5856, '2019-04-16', 126, '2019-04-16 08:17:06', '2019-04-16 11:34:42'),
(5857, '2019-04-16', 101, '2019-04-16 08:17:33', '2019-04-16 10:33:41'),
(5858, '2019-04-16', 95, '2019-04-16 08:18:32', '2019-04-16 10:29:39'),
(5859, '2019-04-16', 112, '2019-04-16 08:18:39', NULL),
(5860, '2019-04-16', 86, '2019-04-16 08:20:15', '2019-04-16 10:30:30'),
(5861, '2019-04-16', 145, '2019-04-16 08:20:23', NULL),
(5862, '2019-04-16', 181, '2019-04-16 08:20:28', '2019-04-16 12:51:18'),
(5863, '2019-04-16', 8, '2019-04-16 08:21:05', NULL),
(5864, '2019-04-16', 84, '2019-04-16 08:21:58', '2019-04-16 10:29:52'),
(5865, '2019-04-16', 159, '2019-04-16 08:22:04', '2019-04-16 10:29:15'),
(5866, '2019-04-16', 59, '2019-04-16 08:26:50', NULL),
(5867, '2019-04-16', 146, '2019-04-16 08:29:42', '2019-04-16 11:36:06'),
(5868, '2019-04-16', 44, '2019-04-16 08:30:21', '2019-04-16 12:49:28'),
(5869, '2019-04-16', 189, '2019-04-16 08:30:26', '2019-04-16 12:46:06'),
(5870, '2019-04-16', 46, '2019-04-16 08:30:37', '2019-04-16 12:50:45'),
(5871, '2019-04-16', 71, '2019-04-16 08:30:44', NULL),
(5872, '2019-04-16', 45, '2019-04-16 08:30:48', '2019-04-16 12:54:02'),
(5873, '2019-04-16', 63, '2019-04-16 08:30:53', '2019-04-16 12:46:25'),
(5874, '2019-04-16', 170, '2019-04-16 08:30:57', NULL),
(5875, '2019-04-16', 186, '2019-04-16 08:31:01', '2019-04-16 11:35:12'),
(5876, '2019-04-16', 133, '2019-04-16 08:31:03', '2019-04-16 11:36:00'),
(5877, '2019-04-16', 38, '2019-04-16 08:31:10', '2019-04-16 10:20:41'),
(5878, '2019-04-16', 60, '2019-04-16 08:31:16', '2019-04-16 12:46:12'),
(5879, '2019-04-16', 27, '2019-04-16 08:31:21', '2019-04-16 10:21:32'),
(5880, '2019-04-16', 182, '2019-04-16 08:31:26', '2019-04-16 12:11:58'),
(5881, '2019-04-16', 117, '2019-04-16 08:31:43', '2019-04-16 10:21:27'),
(5882, '2019-04-16', 141, '2019-04-16 08:31:48', NULL),
(5883, '2019-04-16', 142, '2019-04-16 08:31:55', '2019-04-16 11:35:15'),
(5884, '2019-04-16', 29, '2019-04-16 08:32:01', '2019-04-16 10:20:56'),
(5885, '2019-04-16', 17, '2019-04-16 08:32:43', NULL),
(5886, '2019-04-16', 9, '2019-04-16 08:33:27', '2019-04-16 12:11:06'),
(5887, '2019-04-16', 115, '2019-04-16 08:34:26', NULL),
(5888, '2019-04-16', 91, '2019-04-16 08:34:33', '2019-04-16 10:29:46'),
(5889, '2019-04-16', 90, '2019-04-16 08:34:36', NULL),
(5890, '2019-04-16', 125, '2019-04-16 08:34:47', NULL),
(5891, '2019-04-16', 92, '2019-04-16 08:35:10', '2019-04-16 10:28:20'),
(5892, '2019-04-16', 128, '2019-04-16 08:35:15', '2019-04-16 11:34:36'),
(5893, '2019-04-16', 153, '2019-04-16 08:36:04', '2019-04-16 11:35:24'),
(5894, '2019-04-16', 80, '2019-04-16 08:36:14', '2019-04-16 10:28:48'),
(5895, '2019-04-16', 113, '2019-04-16 08:38:56', '2019-04-16 10:21:37'),
(5896, '2019-04-16', 180, '2019-04-16 08:39:31', '2019-04-16 11:35:46'),
(5897, '2019-04-16', 121, '2019-04-16 08:43:57', '2019-04-16 10:21:44'),
(5898, '2019-04-16', 134, '2019-04-16 08:54:02', '2019-04-16 11:35:29'),
(5899, '2019-04-16', 135, '2019-04-16 08:56:28', '2019-04-16 11:35:07'),
(5900, '2019-04-16', 15, '2019-04-16 09:03:11', NULL),
(5901, '2019-04-16', 175, '2019-04-16 10:06:51', '2019-04-16 12:51:59'),
(5902, '2019-04-16', 39, '2019-04-16 10:21:24', NULL),
(5903, '2019-04-16', 40, '2019-04-16 10:26:20', NULL),
(5904, '2019-04-16', 26, '2019-04-16 10:26:40', NULL),
(5905, '2019-04-16', 78, '2019-04-16 10:28:53', NULL),
(5906, '2019-04-16', 77, '2019-04-16 10:29:03', NULL),
(5907, '2019-04-16', 110, '2019-04-16 10:29:20', NULL),
(5908, '2019-04-16', 93, '2019-04-16 10:30:05', NULL),
(5909, '2019-04-16', 30, '2019-04-16 10:30:12', NULL),
(5910, '2019-04-16', 160, '2019-04-16 10:30:38', NULL),
(5911, '2019-04-16', 111, '2019-04-16 10:31:51', '2019-04-16 12:52:25'),
(5912, '2019-04-16', 42, '2019-04-16 10:32:00', '2019-04-16 12:28:47'),
(5913, '2019-04-16', 106, '2019-04-16 10:32:21', NULL),
(5914, '2019-04-16', 102, '2019-04-16 10:34:03', '2019-04-16 12:52:28'),
(5915, '2019-04-16', 174, '2019-04-16 10:36:49', NULL),
(5916, '2019-04-16', 104, '2019-04-16 10:41:06', '2019-04-16 12:52:22'),
(5917, '2019-04-16', 149, '2019-04-16 10:42:12', NULL),
(5918, '2019-04-16', 103, '2019-04-16 10:56:24', '2019-04-16 12:52:18'),
(5919, '2019-04-16', 183, '2019-04-16 10:59:34', '2019-04-16 12:51:21'),
(5920, '2019-04-16', 148, '2019-04-16 11:34:57', NULL),
(5921, '2019-04-16', 151, '2019-04-16 11:35:34', NULL),
(5922, '2019-04-16', 132, '2019-04-16 11:36:14', NULL),
(5923, '2019-04-16', 143, '2019-04-16 11:36:19', NULL),
(5924, '2019-04-16', 140, '2019-04-16 11:36:45', NULL),
(5925, '2019-04-16', 11, '2019-04-16 12:11:15', NULL),
(5926, '2019-04-16', 20, '2019-04-16 12:11:55', NULL),
(5927, '2019-04-16', 65, '2019-04-16 12:45:22', NULL),
(5928, '2019-04-16', 177, '2019-04-16 12:46:00', NULL),
(5929, '2019-04-16', 56, '2019-04-16 12:46:17', NULL),
(5930, '2019-04-16', 58, '2019-04-16 12:46:22', NULL),
(5931, '2019-04-16', 50, '2019-04-16 12:51:06', NULL),
(5932, '2019-04-16', 187, '2019-04-16 12:51:24', NULL),
(5933, '2019-04-16', 105, '2019-04-16 12:52:43', NULL),
(5934, '2019-04-17', 18, '2019-04-17 08:06:13', NULL),
(5935, '2019-04-17', 152, '2019-04-17 08:06:17', '2019-04-17 11:20:39'),
(5936, '2019-04-17', 34, '2019-04-17 08:06:27', '2019-04-17 09:22:08'),
(5937, '2019-04-17', 72, '2019-04-17 08:07:11', '2019-04-17 11:53:27'),
(5938, '2019-04-17', 101, '2019-04-17 08:07:53', NULL),
(5939, '2019-04-17', 141, '2019-04-17 08:11:56', '2019-04-17 11:19:47'),
(5940, '2019-04-17', 100, '2019-04-17 08:13:14', '2019-04-17 10:16:38'),
(5941, '2019-04-17', 157, '2019-04-17 08:17:15', '2019-04-17 11:18:58'),
(5942, '2019-04-17', 65, '2019-04-17 08:24:48', NULL),
(5943, '2019-04-17', 138, '2019-04-17 08:24:51', '2019-04-17 11:25:32'),
(5944, '2019-04-17', 133, '2019-04-17 08:25:38', '2019-04-17 11:20:08'),
(5945, '2019-04-17', 169, '2019-04-17 08:26:08', NULL),
(5946, '2019-04-17', 139, '2019-04-17 08:27:08', NULL),
(5947, '2019-04-17', 98, '2019-04-17 08:28:19', '2019-04-17 10:03:23'),
(5948, '2019-04-17', 57, '2019-04-17 08:28:28', '2019-04-17 10:52:42'),
(5949, '2019-04-17', 48, '2019-04-17 08:28:31', '2019-04-17 11:00:12'),
(5950, '2019-04-17', 85, '2019-04-17 08:32:39', '2019-04-17 10:36:44'),
(5951, '2019-04-17', 154, '2019-04-17 08:33:08', '2019-04-17 11:18:48'),
(5952, '2019-04-17', 77, '2019-04-17 08:34:39', '2019-04-17 10:34:06'),
(5953, '2019-04-17', 124, '2019-04-17 08:34:43', '2019-04-17 11:20:47'),
(5954, '2019-04-17', 31, '2019-04-17 08:36:16', NULL),
(5955, '2019-04-17', 153, '2019-04-17 08:36:26', '2019-04-17 11:20:43'),
(5956, '2019-04-17', 25, '2019-04-17 08:37:21', '2019-04-17 11:31:59'),
(5957, '2019-04-17', 155, '2019-04-17 08:38:43', NULL),
(5958, '2019-04-17', 20, '2019-04-17 08:39:11', '2019-04-17 11:28:51'),
(5959, '2019-04-17', 95, '2019-04-17 08:39:24', '2019-04-17 10:20:51'),
(5960, '2019-04-17', 68, '2019-04-17 08:39:28', NULL),
(5961, '2019-04-17', 87, '2019-04-17 08:39:35', '2019-04-17 10:25:42'),
(5962, '2019-04-17', 189, '2019-04-17 08:40:42', '2019-04-17 11:01:51'),
(5963, '2019-04-17', 44, '2019-04-17 08:41:17', NULL),
(5964, '2019-04-17', 60, '2019-04-17 08:43:37', '2019-04-17 11:20:22'),
(5965, '2019-04-17', 165, '2019-04-17 08:44:02', NULL),
(5966, '2019-04-17', 179, '2019-04-17 08:44:12', '2019-04-17 11:23:37'),
(5967, '2019-04-17', 178, '2019-04-17 08:44:17', NULL),
(5968, '2019-04-17', 96, '2019-04-17 08:44:22', NULL),
(5969, '2019-04-17', 97, '2019-04-17 08:44:28', NULL),
(5970, '2019-04-17', 134, '2019-04-17 08:44:37', '2019-04-17 11:18:23'),
(5971, '2019-04-17', 45, '2019-04-17 08:45:01', '2019-04-17 10:51:06'),
(5972, '2019-04-17', 27, '2019-04-17 08:45:08', NULL),
(5973, '2019-04-17', 92, '2019-04-17 08:45:12', '2019-04-17 10:10:44'),
(5974, '2019-04-17', 145, '2019-04-17 08:46:20', '2019-04-17 11:19:30'),
(5975, '2019-04-17', 181, '2019-04-17 08:46:30', NULL),
(5976, '2019-04-17', 113, '2019-04-17 08:46:37', NULL),
(5977, '2019-04-17', 7, '2019-04-17 08:46:54', '2019-04-17 11:11:51'),
(5978, '2019-04-17', 9, '2019-04-17 08:47:01', '2019-04-17 11:08:31'),
(5979, '2019-04-17', 186, '2019-04-17 08:47:06', '2019-04-17 11:31:33'),
(5980, '2019-04-17', 10, '2019-04-17 08:47:10', '2019-04-17 11:21:15'),
(5981, '2019-04-17', 131, '2019-04-17 08:48:21', '2019-04-17 11:18:43'),
(5982, '2019-04-17', 114, '2019-04-17 08:49:04', NULL),
(5983, '2019-04-17', 39, '2019-04-17 08:49:40', NULL),
(5984, '2019-04-17', 129, '2019-04-17 08:49:51', '2019-04-17 11:19:44'),
(5985, '2019-04-17', 99, '2019-04-17 08:49:58', '2019-04-17 10:05:59'),
(5986, '2019-04-17', 161, '2019-04-17 08:50:27', NULL),
(5987, '2019-04-17', 159, '2019-04-17 08:50:37', '2019-04-17 10:35:43'),
(5988, '2019-04-17', 17, '2019-04-17 08:51:23', NULL),
(5989, '2019-04-17', 180, '2019-04-17 08:51:47', '2019-04-17 11:38:55'),
(5990, '2019-04-17', 84, '2019-04-17 08:51:59', NULL),
(5991, '2019-04-17', 140, '2019-04-17 08:52:33', '2019-04-17 11:18:53'),
(5992, '2019-04-17', 150, '2019-04-17 08:52:37', '2019-04-17 11:20:01'),
(5993, '2019-04-17', 29, '2019-04-17 08:52:45', NULL),
(5994, '2019-04-17', 46, '2019-04-17 08:52:49', NULL),
(5995, '2019-04-17', 166, '2019-04-17 08:53:04', '2019-04-17 11:11:47'),
(5996, '2019-04-17', 142, '2019-04-17 08:53:46', '2019-04-17 11:20:26'),
(5997, '2019-04-17', 38, '2019-04-17 08:53:51', NULL),
(5998, '2019-04-17', 56, '2019-04-17 08:54:04', NULL),
(5999, '2019-04-17', 63, '2019-04-17 08:54:33', NULL),
(6000, '2019-04-17', 64, '2019-04-17 08:55:40', NULL),
(6001, '2019-04-17', 54, '2019-04-17 08:55:45', '2019-04-17 11:09:48'),
(6002, '2019-04-17', 70, '2019-04-17 08:55:51', '2019-04-17 10:59:24'),
(6003, '2019-04-17', 144, '2019-04-17 08:56:03', '2019-04-17 11:19:22'),
(6004, '2019-04-17', 5, '2019-04-17 08:56:16', '2019-04-17 11:13:01'),
(6005, '2019-04-17', 80, '2019-04-17 08:56:26', '2019-04-17 10:27:47'),
(6006, '2019-04-17', 128, '2019-04-17 08:56:34', '2019-04-17 11:20:12'),
(6007, '2019-04-17', 86, '2019-04-17 08:57:08', '2019-04-17 10:33:39'),
(6008, '2019-04-17', 117, '2019-04-17 08:57:53', NULL),
(6009, '2019-04-17', 26, '2019-04-17 08:58:22', NULL),
(6010, '2019-04-17', 121, '2019-04-17 09:00:07', NULL),
(6011, '2019-04-17', 71, '2019-04-17 09:00:21', NULL),
(6012, '2019-04-17', 91, '2019-04-17 09:00:59', '2019-04-17 10:13:34'),
(6013, '2019-04-17', 22, '2019-04-17 09:01:20', NULL),
(6014, '2019-04-17', 130, '2019-04-17 09:01:25', '2019-04-17 11:19:40'),
(6015, '2019-04-17', 90, '2019-04-17 09:01:31', '2019-04-17 10:25:56'),
(6016, '2019-04-17', 11, '2019-04-17 09:01:35', NULL),
(6017, '2019-04-17', 148, '2019-04-17 09:02:06', '2019-04-17 11:43:16'),
(6018, '2019-04-17', 151, '2019-04-17 09:02:14', '2019-04-17 11:20:19'),
(6019, '2019-04-17', 58, '2019-04-17 09:02:28', '2019-04-17 11:20:34'),
(6020, '2019-04-17', 88, '2019-04-17 09:02:41', NULL),
(6021, '2019-04-17', 160, '2019-04-17 09:02:46', '2019-04-17 10:17:11'),
(6022, '2019-04-17', 146, '2019-04-17 09:08:42', NULL),
(6023, '2019-04-17', 170, '2019-04-17 09:08:45', '2019-04-17 11:23:40'),
(6024, '2019-04-17', 14, '2019-04-17 09:08:48', '2019-04-17 11:17:04'),
(6025, '2019-04-17', 110, '2019-04-17 09:30:12', NULL),
(6026, '2019-04-17', 115, '2019-04-17 09:42:44', NULL),
(6027, '2019-04-17', 118, '2019-04-17 10:03:42', NULL),
(6028, '2019-04-17', 89, '2019-04-17 10:22:26', NULL),
(6029, '2019-04-17', 102, '2019-04-17 10:31:41', '2019-04-17 11:46:30'),
(6030, '2019-04-17', 30, '2019-04-17 10:33:11', '2019-04-17 12:18:02'),
(6031, '2019-04-17', 175, '2019-04-17 10:33:55', '2019-04-17 12:32:19'),
(6032, '2019-04-17', 93, '2019-04-17 10:34:54', NULL),
(6033, '2019-04-17', 104, '2019-04-17 10:37:46', '2019-04-17 12:09:08'),
(6034, '2019-04-17', 40, '2019-04-17 10:38:20', NULL),
(6035, '2019-04-17', 103, '2019-04-17 10:39:41', '2019-04-17 12:22:58'),
(6036, '2019-04-17', 106, '2019-04-17 10:40:29', NULL),
(6037, '2019-04-17', 35, '2019-04-17 10:42:54', NULL),
(6038, '2019-04-17', 36, '2019-04-17 10:43:02', NULL),
(6039, '2019-04-17', 183, '2019-04-17 10:43:18', '2019-04-17 11:44:41'),
(6040, '2019-04-17', 28, '2019-04-17 10:46:09', NULL),
(6041, '2019-04-17', 174, '2019-04-17 10:49:29', '2019-04-17 11:55:50'),
(6042, '2019-04-17', 111, '2019-04-17 10:49:34', '2019-04-17 11:52:40'),
(6043, '2019-04-17', 33, '2019-04-17 10:49:40', NULL),
(6044, '2019-04-17', 42, '2019-04-17 10:49:49', NULL),
(6045, '2019-04-17', 50, '2019-04-17 10:51:09', NULL),
(6046, '2019-04-17', 67, '2019-04-17 10:59:15', NULL),
(6047, '2019-04-17', 177, '2019-04-17 11:01:44', NULL),
(6048, '2019-04-17', 69, '2019-04-17 11:09:53', NULL),
(6049, '2019-04-17', 125, '2019-04-17 11:19:08', NULL),
(6050, '2019-04-17', 143, '2019-04-17 11:19:27', NULL),
(6051, '2019-04-17', 126, '2019-04-17 11:19:57', NULL),
(6052, '2019-04-17', 61, '2019-04-17 11:25:03', NULL),
(6053, '2019-04-17', 164, '2019-04-17 11:38:48', NULL),
(6054, '2019-04-18', 157, '2019-04-18 07:49:36', '2019-04-18 10:57:20'),
(6055, '2019-04-18', 100, '2019-04-18 08:01:44', NULL),
(6056, '2019-04-18', 101, '2019-04-18 08:02:00', NULL),
(6057, '2019-04-18', 55, '2019-04-18 08:07:28', '2019-04-18 11:10:29'),
(6058, '2019-04-18', 18, '2019-04-18 08:07:31', '2019-04-18 11:32:10'),
(6059, '2019-04-18', 34, '2019-04-18 08:07:39', '2019-04-18 09:19:39'),
(6060, '2019-04-18', 152, '2019-04-18 08:07:48', '2019-04-18 10:58:30'),
(6061, '2019-04-18', 72, '2019-04-18 08:08:24', '2019-04-18 11:44:34'),
(6062, '2019-04-18', 176, '2019-04-18 08:13:53', NULL),
(6063, '2019-04-18', 98, '2019-04-18 08:14:02', NULL),
(6064, '2019-04-18', 88, '2019-04-18 08:14:54', NULL),
(6065, '2019-04-18', 67, '2019-04-18 08:15:48', '2019-04-18 11:05:29'),
(6066, '2019-04-18', 167, '2019-04-18 08:16:32', NULL),
(6067, '2019-04-18', 99, '2019-04-18 08:18:30', '2019-04-18 10:03:23'),
(6068, '2019-04-18', 138, '2019-04-18 08:21:20', '2019-04-18 10:31:21'),
(6069, '2019-04-18', 139, '2019-04-18 08:22:34', NULL),
(6070, '2019-04-18', 124, '2019-04-18 08:22:49', '2019-04-18 10:30:39'),
(6071, '2019-04-18', 118, '2019-04-18 08:23:26', NULL),
(6072, '2019-04-18', 141, '2019-04-18 08:23:47', '2019-04-18 10:42:36'),
(6073, '2019-04-18', 25, '2019-04-18 08:25:41', '2019-04-18 11:28:22'),
(6074, '2019-04-18', 154, '2019-04-18 08:29:58', '2019-04-18 10:35:49'),
(6075, '2019-04-18', 95, '2019-04-18 08:31:09', '2019-04-18 10:17:16'),
(6076, '2019-04-18', 102, '2019-04-18 08:31:34', '2019-04-18 10:03:26'),
(6077, '2019-04-18', 169, '2019-04-18 08:32:58', NULL),
(6078, '2019-04-18', 44, '2019-04-18 08:35:28', NULL),
(6079, '2019-04-18', 166, '2019-04-18 08:35:45', '2019-04-18 11:26:29'),
(6080, '2019-04-18', 155, '2019-04-18 08:35:59', '2019-04-18 10:30:35'),
(6081, '2019-04-18', 27, '2019-04-18 08:36:06', '2019-04-18 09:36:32'),
(6082, '2019-04-18', 15, '2019-04-18 08:36:15', '2019-04-18 11:57:58'),
(6083, '2019-04-18', 78, '2019-04-18 08:36:25', '2019-04-18 10:35:15'),
(6084, '2019-04-18', 48, '2019-04-18 08:36:59', '2019-04-18 11:14:38'),
(6085, '2019-04-18', 189, '2019-04-18 08:37:11', '2019-04-18 10:35:18'),
(6086, '2019-04-18', 10, '2019-04-18 08:37:26', NULL),
(6087, '2019-04-18', 68, '2019-04-18 08:37:54', '2019-04-18 11:07:33'),
(6088, '2019-04-18', 61, '2019-04-18 08:39:56', '2019-04-18 11:09:30'),
(6089, '2019-04-18', 46, '2019-04-18 08:40:01', NULL),
(6090, '2019-04-18', 153, '2019-04-18 08:40:12', '2019-04-18 10:31:39'),
(6091, '2019-04-18', 143, '2019-04-18 08:40:34', NULL),
(6092, '2019-04-18', 123, '2019-04-18 08:41:23', NULL),
(6093, '2019-04-18', 168, '2019-04-18 08:42:25', '2019-04-18 11:36:53'),
(6094, '2019-04-18', 144, '2019-04-18 08:43:06', '2019-04-18 10:47:33'),
(6095, '2019-04-18', 64, '2019-04-18 08:43:09', NULL),
(6096, '2019-04-18', 133, '2019-04-18 08:43:19', '2019-04-18 10:53:12'),
(6097, '2019-04-18', 54, '2019-04-18 08:43:24', '2019-04-18 11:32:21'),
(6098, '2019-04-18', 5, '2019-04-18 08:43:32', '2019-04-18 11:27:37'),
(6099, '2019-04-18', 69, '2019-04-18 08:43:37', NULL),
(6100, '2019-04-18', 70, '2019-04-18 08:43:42', '2019-04-18 10:39:11'),
(6101, '2019-04-18', 180, '2019-04-18 08:43:47', '2019-04-18 10:30:07'),
(6102, '2019-04-18', 16, '2019-04-18 08:43:51', '2019-04-18 11:48:15'),
(6103, '2019-04-18', 97, '2019-04-18 08:44:45', '2019-04-18 10:50:01'),
(6104, '2019-04-18', 179, '2019-04-18 08:44:48', NULL),
(6105, '2019-04-18', 134, '2019-04-18 08:44:55', '2019-04-18 10:45:02'),
(6106, '2019-04-18', 39, '2019-04-18 08:45:02', NULL),
(6107, '2019-04-18', 131, '2019-04-18 08:45:07', NULL),
(6108, '2019-04-18', 45, '2019-04-18 08:46:11', '2019-04-18 11:33:08'),
(6109, '2019-04-18', 181, '2019-04-18 08:46:21', NULL),
(6110, '2019-04-18', 145, '2019-04-18 08:46:30', '2019-04-18 10:31:16'),
(6111, '2019-04-18', 92, '2019-04-18 08:47:33', '2019-04-18 10:05:28'),
(6112, '2019-04-18', 85, '2019-04-18 08:47:49', '2019-04-18 10:55:33'),
(6113, '2019-04-18', 20, '2019-04-18 08:48:01', '2019-04-18 12:04:04'),
(6114, '2019-04-18', 60, '2019-04-18 08:49:00', '2019-04-18 10:58:15'),
(6115, '2019-04-18', 65, '2019-04-18 08:49:12', NULL),
(6116, '2019-04-18', 84, '2019-04-18 08:49:22', '2019-04-18 10:05:31'),
(6117, '2019-04-18', 66, '2019-04-18 08:49:32', NULL),
(6118, '2019-04-18', 80, '2019-04-18 08:49:43', '2019-04-18 10:39:48'),
(6119, '2019-04-18', 130, '2019-04-18 08:49:47', '2019-04-18 10:31:33'),
(6120, '2019-04-18', 93, '2019-04-18 08:50:05', NULL),
(6121, '2019-04-18', 90, '2019-04-18 08:50:11', NULL),
(6122, '2019-04-18', 22, '2019-04-18 08:50:19', NULL),
(6123, '2019-04-18', 117, '2019-04-18 08:50:37', NULL),
(6124, '2019-04-18', 186, '2019-04-18 08:51:14', '2019-04-18 10:30:52'),
(6125, '2019-04-18', 37, '2019-04-18 08:51:23', '2019-04-18 10:13:31'),
(6126, '2019-04-18', 165, '2019-04-18 08:51:41', NULL),
(6127, '2019-04-18', 140, '2019-04-18 08:52:07', '2019-04-18 10:50:18'),
(6128, '2019-04-18', 29, '2019-04-18 08:52:12', NULL),
(6129, '2019-04-18', 128, '2019-04-18 08:52:23', '2019-04-18 10:30:03'),
(6130, '2019-04-18', 171, '2019-04-18 08:52:28', NULL),
(6131, '2019-04-18', 113, '2019-04-18 08:52:36', NULL),
(6132, '2019-04-18', 127, '2019-04-18 08:52:45', NULL),
(6133, '2019-04-18', 161, '2019-04-18 08:54:15', NULL),
(6134, '2019-04-18', 150, '2019-04-18 08:54:20', '2019-04-18 10:30:47'),
(6135, '2019-04-18', 14, '2019-04-18 08:54:28', NULL),
(6136, '2019-04-18', 86, '2019-04-18 08:54:31', '2019-04-18 10:35:23'),
(6137, '2019-04-18', 170, '2019-04-18 08:54:37', '2019-04-18 11:54:53'),
(6138, '2019-04-18', 56, '2019-04-18 08:55:19', '2019-04-18 10:58:23'),
(6139, '2019-04-18', 9, '2019-04-18 08:55:26', '2019-04-18 11:43:08'),
(6140, '2019-04-18', 159, '2019-04-18 08:56:03', '2019-04-18 10:31:28'),
(6141, '2019-04-18', 156, '2019-04-18 08:56:45', '2019-04-18 10:31:07'),
(6142, '2019-04-18', 63, '2019-04-18 08:59:02', '2019-04-18 10:37:49'),
(6143, '2019-04-18', 71, '2019-04-18 08:59:18', '2019-04-18 11:22:05'),
(6144, '2019-04-18', 77, '2019-04-18 08:59:31', '2019-04-18 10:26:30'),
(6145, '2019-04-18', 135, '2019-04-18 09:01:38', '2019-04-18 10:29:55'),
(6146, '2019-04-18', 142, '2019-04-18 09:02:46', NULL),
(6147, '2019-04-18', 79, '2019-04-18 09:06:39', NULL),
(6148, '2019-04-18', 96, '2019-04-18 09:08:52', NULL),
(6149, '2019-04-18', 114, '2019-04-18 09:23:08', NULL),
(6150, '2019-04-18', 26, '2019-04-18 09:24:35', NULL),
(6151, '2019-04-18', 17, '2019-04-18 09:31:12', '2019-04-18 10:36:41'),
(6152, '2019-04-18', 121, '2019-04-18 09:51:08', NULL),
(6153, '2019-04-18', 110, '2019-04-18 10:08:33', NULL),
(6154, '2019-04-18', 40, '2019-04-18 10:19:56', '2019-04-18 11:21:48'),
(6155, '2019-04-18', 89, '2019-04-18 10:20:00', NULL),
(6156, '2019-04-18', 106, '2019-04-18 10:28:58', '2019-04-18 12:25:34'),
(6157, '2019-04-18', 30, '2019-04-18 10:30:15', NULL),
(6158, '2019-04-18', 148, '2019-04-18 10:31:25', NULL),
(6159, '2019-04-18', 188, '2019-04-18 10:32:25', NULL),
(6160, '2019-04-18', 175, '2019-04-18 10:33:17', '2019-04-18 12:35:12'),
(6161, '2019-04-18', 87, '2019-04-18 10:33:50', NULL),
(6162, '2019-04-18', 104, '2019-04-18 10:35:38', '2019-04-18 12:34:05'),
(6163, '2019-04-18', 103, '2019-04-18 10:40:20', NULL),
(6164, '2019-04-18', 107, '2019-04-18 10:43:02', '2019-04-18 12:30:47'),
(6165, '2019-04-18', 174, '2019-04-18 10:43:10', '2019-04-18 12:23:23'),
(6166, '2019-04-18', 126, '2019-04-18 10:43:55', NULL),
(6167, '2019-04-18', 183, '2019-04-18 10:48:22', '2019-04-18 12:14:20'),
(6168, '2019-04-18', 35, '2019-04-18 10:49:37', NULL),
(6169, '2019-04-18', 36, '2019-04-18 10:49:44', NULL),
(6170, '2019-04-18', 28, '2019-04-18 10:51:09', NULL),
(6171, '2019-04-18', 111, '2019-04-18 10:55:19', '2019-04-18 12:20:58'),
(6172, '2019-04-18', 187, '2019-04-18 10:55:26', NULL),
(6173, '2019-04-18', 33, '2019-04-18 10:55:59', NULL),
(6174, '2019-04-18', 42, '2019-04-18 10:56:21', NULL),
(6175, '2019-04-18', 105, '2019-04-18 10:58:26', NULL),
(6176, '2019-04-18', 91, '2019-04-18 11:00:10', NULL),
(6177, '2019-04-18', 8, '2019-04-18 11:03:57', NULL),
(6178, '2019-04-18', 137, '2019-04-18 11:10:21', NULL),
(6179, '2019-04-18', 7, '2019-04-18 11:30:16', NULL),
(6180, '2019-04-18', 23, '2019-04-18 11:44:49', NULL),
(6181, '2019-04-20', 67, '2019-04-20 08:11:37', '2019-04-20 11:00:07'),
(6182, '2019-04-20', 176, '2019-04-20 08:13:21', NULL),
(6183, '2019-04-20', 138, '2019-04-20 08:13:26', '2019-04-20 10:47:20'),
(6184, '2019-04-20', 98, '2019-04-20 08:13:30', '2019-04-20 09:53:23'),
(6185, '2019-04-20', 55, '2019-04-20 08:13:35', '2019-04-20 10:29:59'),
(6186, '2019-04-20', 57, '2019-04-20 08:13:38', '2019-04-20 10:14:58'),
(6187, '2019-04-20', 167, '2019-04-20 08:13:50', NULL),
(6188, '2019-04-20', 157, '2019-04-20 08:13:56', '2019-04-20 11:28:35'),
(6189, '2019-04-20', 152, '2019-04-20 08:14:05', '2019-04-20 11:05:29'),
(6190, '2019-04-20', 34, '2019-04-20 08:14:11', '2019-04-20 09:24:11'),
(6191, '2019-04-20', 72, '2019-04-20 08:14:18', NULL),
(6192, '2019-04-20', 18, '2019-04-20 08:14:24', NULL),
(6193, '2019-04-20', 117, '2019-04-20 08:16:30', NULL),
(6194, '2019-04-20', 99, '2019-04-20 08:19:29', '2019-04-20 09:43:48'),
(6195, '2019-04-20', 154, '2019-04-20 08:26:35', '2019-04-20 10:46:53'),
(6196, '2019-04-20', 14, '2019-04-20 08:29:25', '2019-04-20 10:36:26'),
(6197, '2019-04-20', 146, '2019-04-20 08:29:32', '2019-04-20 10:55:30'),
(6198, '2019-04-20', 155, '2019-04-20 08:30:50', NULL),
(6199, '2019-04-20', 169, '2019-04-20 08:32:07', NULL),
(6200, '2019-04-20', 95, '2019-04-20 08:33:48', '2019-04-20 10:16:00'),
(6201, '2019-04-20', 27, '2019-04-20 08:34:49', NULL),
(6202, '2019-04-20', 89, '2019-04-20 08:35:45', NULL),
(6203, '2019-04-20', 39, '2019-04-20 08:37:34', NULL),
(6204, '2019-04-20', 25, '2019-04-20 08:38:22', '2019-04-20 10:33:50'),
(6205, '2019-04-20', 168, '2019-04-20 08:38:59', NULL),
(6206, '2019-04-20', 166, '2019-04-20 08:39:40', '2019-04-20 10:46:55'),
(6207, '2019-04-20', 68, '2019-04-20 08:40:48', '2019-04-20 11:19:11'),
(6208, '2019-04-20', 153, '2019-04-20 08:41:00', '2019-04-20 10:47:36'),
(6209, '2019-04-20', 15, '2019-04-20 08:41:29', '2019-04-20 11:13:58'),
(6210, '2019-04-20', 78, '2019-04-20 08:41:36', '2019-04-20 10:22:08'),
(6211, '2019-04-20', 189, '2019-04-20 08:42:35', '2019-04-20 10:32:58'),
(6212, '2019-04-20', 46, '2019-04-20 08:42:49', NULL),
(6213, '2019-04-20', 124, '2019-04-20 08:42:59', '2019-04-20 10:47:56'),
(6214, '2019-04-20', 38, '2019-04-20 08:43:35', NULL),
(6215, '2019-04-20', 79, '2019-04-20 08:44:45', NULL),
(6216, '2019-04-20', 10, '2019-04-20 08:44:53', '2019-04-20 11:17:33'),
(6217, '2019-04-20', 137, '2019-04-20 08:44:58', NULL),
(6218, '2019-04-20', 133, '2019-04-20 08:45:36', '2019-04-20 10:47:47'),
(6219, '2019-04-20', 84, '2019-04-20 08:45:47', '2019-04-20 09:47:52'),
(6220, '2019-04-20', 77, '2019-04-20 08:46:30', NULL),
(6221, '2019-04-20', 45, '2019-04-20 08:46:33', '2019-04-20 10:39:04'),
(6222, '2019-04-20', 23, '2019-04-20 08:46:49', '2019-04-20 11:14:02'),
(6223, '2019-04-20', 7, '2019-04-20 08:47:05', NULL),
(6224, '2019-04-20', 162, '2019-04-20 08:47:10', '2019-04-20 10:52:02'),
(6225, '2019-04-20', 129, '2019-04-20 08:47:15', NULL),
(6226, '2019-04-20', 128, '2019-04-20 08:47:34', NULL),
(6227, '2019-04-20', 135, '2019-04-20 08:47:48', '2019-04-20 10:47:25'),
(6228, '2019-04-20', 161, '2019-04-20 08:47:55', '2019-04-20 10:40:10'),
(6229, '2019-04-20', 151, '2019-04-20 08:47:59', NULL),
(6230, '2019-04-20', 93, '2019-04-20 08:48:15', NULL),
(6231, '2019-04-20', 88, '2019-04-20 08:48:24', NULL),
(6232, '2019-04-20', 141, '2019-04-20 08:48:44', '2019-04-20 10:46:48'),
(6233, '2019-04-20', 44, '2019-04-20 08:48:56', NULL),
(6234, '2019-04-20', 63, '2019-04-20 08:49:04', '2019-04-20 10:15:01'),
(6235, '2019-04-20', 53, '2019-04-20 08:49:13', NULL),
(6236, '2019-04-20', 115, '2019-04-20 08:49:52', NULL),
(6237, '2019-04-20', 8, '2019-04-20 08:50:01', '2019-04-20 10:26:38'),
(6238, '2019-04-20', 56, '2019-04-20 08:50:16', '2019-04-20 10:26:32'),
(6239, '2019-04-20', 150, '2019-04-20 08:51:57', '2019-04-20 10:46:58'),
(6240, '2019-04-20', 171, '2019-04-20 08:52:04', NULL),
(6241, '2019-04-20', 26, '2019-04-20 08:52:14', NULL),
(6242, '2019-04-20', 114, '2019-04-20 08:52:33', '2019-04-20 09:59:07'),
(6243, '2019-04-20', 178, '2019-04-20 08:52:45', '2019-04-20 09:53:02'),
(6244, '2019-04-20', 91, '2019-04-20 08:52:51', '2019-04-20 10:19:43'),
(6245, '2019-04-20', 96, '2019-04-20 08:52:59', '2019-04-20 10:35:07'),
(6246, '2019-04-20', 90, '2019-04-20 08:53:03', NULL),
(6247, '2019-04-20', 64, '2019-04-20 08:53:13', '2019-04-20 10:49:08'),
(6248, '2019-04-20', 97, '2019-04-20 08:53:20', NULL),
(6249, '2019-04-20', 125, '2019-04-20 08:53:29', NULL),
(6250, '2019-04-20', 144, '2019-04-20 08:53:34', '2019-04-20 10:47:40'),
(6251, '2019-04-20', 134, '2019-04-20 08:53:39', '2019-04-20 11:10:24'),
(6252, '2019-04-20', 92, '2019-04-20 08:53:43', NULL),
(6253, '2019-04-20', 186, '2019-04-20 08:53:53', '2019-04-20 10:46:28'),
(6254, '2019-04-20', 5, '2019-04-20 08:53:59', '2019-04-20 11:00:15'),
(6255, '2019-04-20', 60, '2019-04-20 08:54:03', '2019-04-20 10:48:32'),
(6256, '2019-04-20', 54, '2019-04-20 08:54:08', NULL),
(6257, '2019-04-20', 70, '2019-04-20 08:54:13', '2019-04-20 10:32:56'),
(6258, '2019-04-20', 69, '2019-04-20 08:54:18', NULL),
(6259, '2019-04-20', 16, '2019-04-20 08:54:23', '2019-04-20 11:06:11'),
(6260, '2019-04-20', 75, '2019-04-20 08:54:28', NULL),
(6261, '2019-04-20', 180, '2019-04-20 08:54:38', '2019-04-20 10:47:04'),
(6262, '2019-04-20', 11, '2019-04-20 08:54:44', NULL),
(6263, '2019-04-20', 85, '2019-04-20 08:54:50', '2019-04-20 10:12:49'),
(6264, '2019-04-20', 127, '2019-04-20 08:54:55', '2019-04-20 10:47:52'),
(6265, '2019-04-20', 156, '2019-04-20 08:55:17', '2019-04-20 10:47:15'),
(6266, '2019-04-20', 87, '2019-04-20 08:55:45', NULL),
(6267, '2019-04-20', 20, '2019-04-20 08:55:58', '2019-04-20 11:11:01'),
(6268, '2019-04-20', 181, '2019-04-20 08:56:18', NULL),
(6269, '2019-04-20', 113, '2019-04-20 08:56:28', NULL),
(6270, '2019-04-20', 145, '2019-04-20 08:56:38', NULL),
(6271, '2019-04-20', 80, '2019-04-20 08:58:48', '2019-04-20 10:14:09'),
(6272, '2019-04-20', 66, '2019-04-20 08:58:55', NULL),
(6273, '2019-04-20', 142, '2019-04-20 08:59:25', NULL),
(6274, '2019-04-20', 110, '2019-04-20 09:00:13', '2019-04-20 10:15:35'),
(6275, '2019-04-20', 86, '2019-04-20 09:00:19', NULL),
(6276, '2019-04-20', 71, '2019-04-20 09:02:44', '2019-04-20 10:30:50'),
(6277, '2019-04-20', 37, '2019-04-20 09:04:20', NULL),
(6278, '2019-04-20', 17, '2019-04-20 09:10:44', NULL),
(6279, '2019-04-20', 29, '2019-04-20 09:29:52', NULL),
(6280, '2019-04-20', 118, '2019-04-20 09:36:11', NULL),
(6281, '2019-04-20', 40, '2019-04-20 10:04:42', NULL),
(6282, '2019-04-20', 48, '2019-04-20 10:19:54', NULL),
(6283, '2019-04-20', 102, '2019-04-20 10:26:35', '2019-04-20 11:44:16'),
(6284, '2019-04-20', 30, '2019-04-20 10:29:55', NULL),
(6285, '2019-04-20', 35, '2019-04-20 10:31:58', NULL),
(6286, '2019-04-20', 36, '2019-04-20 10:32:05', NULL),
(6287, '2019-04-20', 104, '2019-04-20 10:32:47', '2019-04-20 11:58:23'),
(6288, '2019-04-20', 103, '2019-04-20 10:39:56', '2019-04-20 12:19:09'),
(6289, '2019-04-20', 65, '2019-04-20 10:40:22', NULL),
(6290, '2019-04-20', 106, '2019-04-20 10:41:24', '2019-04-20 11:57:29'),
(6291, '2019-04-20', 28, '2019-04-20 10:45:23', NULL),
(6292, '2019-04-20', 107, '2019-04-20 10:45:55', '2019-04-20 12:05:29'),
(6293, '2019-04-20', 131, '2019-04-20 10:46:22', NULL),
(6294, '2019-04-20', 126, '2019-04-20 10:46:38', NULL),
(6295, '2019-04-20', 148, '2019-04-20 10:46:43', NULL),
(6296, '2019-04-20', 140, '2019-04-20 10:47:10', NULL),
(6297, '2019-04-20', 143, '2019-04-20 10:48:11', NULL),
(6298, '2019-04-20', 183, '2019-04-20 10:50:57', '2019-04-20 11:58:33'),
(6299, '2019-04-20', 111, '2019-04-20 10:51:47', NULL),
(6300, '2019-04-20', 33, '2019-04-20 10:51:55', NULL),
(6301, '2019-04-20', 42, '2019-04-20 10:52:05', NULL),
(6302, '2019-04-20', 105, '2019-04-20 10:57:12', '2019-04-20 12:15:10'),
(6303, '2019-04-20', 179, '2019-04-20 10:58:33', NULL),
(6304, '2019-04-20', 170, '2019-04-20 10:58:41', NULL),
(6305, '2019-04-20', 61, '2019-04-20 11:00:24', NULL),
(6306, '2019-04-20', 174, '2019-04-20 12:01:56', NULL),
(6307, '2019-04-23', 67, '2019-04-23 08:08:19', NULL),
(6308, '2019-04-23', 101, '2019-04-23 08:08:38', NULL),
(6309, '2019-04-23', 176, '2019-04-23 08:10:20', NULL),
(6310, '2019-04-23', 162, '2019-04-23 08:10:25', NULL),
(6311, '2019-04-23', 167, '2019-04-23 08:12:13', NULL),
(6312, '2019-04-23', 55, '2019-04-23 08:14:52', NULL),
(6313, '2019-04-23', 34, '2019-04-23 08:15:29', NULL),
(6314, '2019-04-23', 18, '2019-04-23 08:15:57', NULL),
(6315, '2019-04-23', 152, '2019-04-23 08:16:05', NULL),
(6316, '2019-04-23', 72, '2019-04-23 08:16:11', NULL),
(6317, '2019-04-23', 138, '2019-04-23 08:16:30', NULL),
(6318, '2019-04-23', 77, '2019-04-23 08:18:29', NULL),
(6319, '2019-04-23', 141, '2019-04-23 08:19:33', NULL),
(6320, '2019-04-24', 157, '2019-04-24 07:56:31', '2019-04-24 11:32:30'),
(6321, '2019-04-24', 99, '2019-04-24 07:57:54', '2019-04-24 10:12:46'),
(6322, '2019-04-24', 67, '2019-04-24 07:59:55', '2019-04-24 10:33:30'),
(6323, '2019-04-24', 176, '2019-04-24 08:05:11', NULL),
(6324, '2019-04-24', 98, '2019-04-24 08:05:17', NULL),
(6325, '2019-04-24', 57, '2019-04-24 08:05:27', '2019-04-24 10:03:42'),
(6326, '2019-04-24', 141, '2019-04-24 08:09:56', '2019-04-24 10:36:01'),
(6327, '2019-04-24', 55, '2019-04-24 08:12:38', NULL),
(6328, '2019-04-24', 72, '2019-04-24 08:12:55', '2019-04-24 10:42:27'),
(6329, '2019-04-24', 18, '2019-04-24 08:13:00', '2019-04-24 09:55:39'),
(6330, '2019-04-24', 34, '2019-04-24 08:13:19', NULL),
(6331, '2019-04-24', 152, '2019-04-24 08:13:40', '2019-04-24 11:00:19'),
(6332, '2019-04-24', 138, '2019-04-24 08:14:06', '2019-04-24 10:38:38'),
(6333, '2019-04-24', 169, '2019-04-24 08:19:55', '2019-04-24 10:42:15'),
(6334, '2019-04-24', 163, '2019-04-24 08:20:00', '2019-04-24 10:45:07'),
(6335, '2019-04-24', 101, '2019-04-24 08:20:34', '2019-04-24 10:12:53'),
(6336, '2019-04-24', 126, '2019-04-24 08:24:18', '2019-04-24 11:14:01'),
(6337, '2019-04-24', 14, '2019-04-24 08:24:56', '2019-04-24 10:06:48'),
(6338, '2019-04-24', 146, '2019-04-24 08:25:02', '2019-04-24 10:58:50'),
(6339, '2019-04-24', 170, '2019-04-24 08:25:06', '2019-04-24 10:31:52'),
(6340, '2019-04-24', 46, '2019-04-24 08:25:26', NULL),
(6341, '2019-04-24', 139, '2019-04-24 08:27:14', NULL),
(6342, '2019-04-24', 23, '2019-04-24 08:28:50', '2019-04-24 10:31:31'),
(6343, '2019-04-24', 162, '2019-04-24 08:29:25', '2019-04-24 10:22:42'),
(6344, '2019-04-24', 37, '2019-04-24 08:31:49', NULL),
(6345, '2019-04-24', 65, '2019-04-24 08:31:55', NULL),
(6346, '2019-04-24', 89, '2019-04-24 08:34:22', NULL),
(6347, '2019-04-24', 78, '2019-04-24 08:34:28', NULL),
(6348, '2019-04-24', 168, '2019-04-24 08:34:57', '2019-04-24 10:15:04'),
(6349, '2019-04-24', 124, '2019-04-24 08:35:18', NULL),
(6350, '2019-04-24', 10, '2019-04-24 08:37:56', '2019-04-24 10:33:25'),
(6351, '2019-04-24', 7, '2019-04-24 08:38:07', NULL),
(6352, '2019-04-24', 189, '2019-04-24 08:38:27', NULL),
(6353, '2019-04-24', 26, '2019-04-24 08:38:32', NULL),
(6354, '2019-04-24', 44, '2019-04-24 08:38:36', NULL),
(6355, '2019-04-24', 77, '2019-04-24 08:39:21', '2019-04-24 10:15:17'),
(6356, '2019-04-24', 95, '2019-04-24 08:39:47', '2019-04-24 10:10:28'),
(6357, '2019-04-24', 155, '2019-04-24 08:39:53', NULL),
(6358, '2019-04-24', 165, '2019-04-24 08:40:01', NULL),
(6359, '2019-04-24', 116, '2019-04-24 08:40:17', NULL),
(6360, '2019-04-24', 128, '2019-04-24 08:40:25', '2019-04-24 11:17:59'),
(6361, '2019-04-24', 130, '2019-04-24 08:40:32', '2019-04-24 10:48:45'),
(6362, '2019-04-24', 125, '2019-04-24 08:40:38', NULL),
(6363, '2019-04-24', 27, '2019-04-24 08:40:57', NULL),
(6364, '2019-04-24', 91, '2019-04-24 08:41:02', '2019-04-24 10:30:27'),
(6365, '2019-04-24', 90, '2019-04-24 08:41:08', '2019-04-24 10:30:08'),
(6366, '2019-04-24', 118, '2019-04-24 08:41:29', NULL),
(6367, '2019-04-24', 153, '2019-04-24 08:41:40', '2019-04-24 10:46:57'),
(6368, '2019-04-24', 38, '2019-04-24 08:41:53', NULL),
(6369, '2019-04-24', 61, '2019-04-24 08:42:28', NULL),
(6370, '2019-04-24', 86, '2019-04-24 08:42:39', '2019-04-24 10:25:55'),
(6371, '2019-04-24', 13, '2019-04-24 08:43:03', '2019-04-24 10:00:45'),
(6372, '2019-04-24', 145, '2019-04-24 08:44:24', '2019-04-24 11:26:54'),
(6373, '2019-04-24', 181, '2019-04-24 08:44:28', NULL),
(6374, '2019-04-24', 8, '2019-04-24 08:44:31', '2019-04-24 09:55:23'),
(6375, '2019-04-24', 129, '2019-04-24 08:44:38', '2019-04-24 11:00:56'),
(6376, '2019-04-24', 161, '2019-04-24 08:44:43', '2019-04-24 10:31:09'),
(6377, '2019-04-24', 64, '2019-04-24 08:45:18', NULL),
(6378, '2019-04-24', 70, '2019-04-24 08:45:23', NULL),
(6379, '2019-04-24', 5, '2019-04-24 08:45:29', '2019-04-24 10:39:37'),
(6380, '2019-04-24', 54, '2019-04-24 08:45:35', NULL),
(6381, '2019-04-24', 16, '2019-04-24 08:45:43', '2019-04-24 10:31:25'),
(6382, '2019-04-24', 133, '2019-04-24 08:45:50', '2019-04-24 11:39:06'),
(6383, '2019-04-24', 137, '2019-04-24 08:46:13', '2019-04-24 11:39:09'),
(6384, '2019-04-24', 45, '2019-04-24 08:46:19', NULL),
(6385, '2019-04-24', 88, '2019-04-24 08:46:51', '2019-04-24 10:30:34'),
(6386, '2019-04-24', 68, '2019-04-24 08:46:59', '2019-04-24 11:06:18'),
(6387, '2019-04-24', 142, '2019-04-24 08:47:28', '2019-04-24 11:09:42'),
(6388, '2019-04-24', 166, '2019-04-24 08:47:32', '2019-04-24 10:34:28'),
(6389, '2019-04-24', 39, '2019-04-24 08:48:39', NULL),
(6390, '2019-04-24', 79, '2019-04-24 08:48:48', NULL),
(6391, '2019-04-24', 84, '2019-04-24 08:49:03', '2019-04-24 10:07:24'),
(6392, '2019-04-24', 93, '2019-04-24 08:49:09', NULL),
(6393, '2019-04-24', 151, '2019-04-24 08:49:17', NULL),
(6394, '2019-04-24', 110, '2019-04-24 08:49:34', '2019-04-24 10:27:10'),
(6395, '2019-04-24', 87, '2019-04-24 08:49:54', NULL),
(6396, '2019-04-24', 150, '2019-04-24 08:50:13', NULL),
(6397, '2019-04-24', 56, '2019-04-24 08:50:23', '2019-04-24 10:12:28'),
(6398, '2019-04-24', 63, '2019-04-24 08:51:08', '2019-04-24 10:17:53'),
(6399, '2019-04-24', 147, '2019-04-24 08:52:36', NULL),
(6400, '2019-04-24', 25, '2019-04-24 08:53:04', '2019-04-24 10:31:14'),
(6401, '2019-04-24', 148, '2019-04-24 08:53:08', '2019-04-24 11:15:03'),
(6402, '2019-04-24', 179, '2019-04-24 08:53:16', NULL),
(6403, '2019-04-24', 97, '2019-04-24 08:53:27', '2019-04-24 10:30:19'),
(6404, '2019-04-24', 135, '2019-04-24 08:53:31', '2019-04-24 11:22:28'),
(6405, '2019-04-24', 134, '2019-04-24 08:53:41', '2019-04-24 11:06:48'),
(6406, '2019-04-24', 96, '2019-04-24 08:54:02', NULL),
(6407, '2019-04-24', 112, '2019-04-24 08:55:50', NULL),
(6408, '2019-04-24', 80, '2019-04-24 08:55:56', '2019-04-24 10:15:19'),
(6409, '2019-04-24', 66, '2019-04-24 08:55:59', NULL),
(6410, '2019-04-24', 92, '2019-04-24 08:56:17', '2019-04-24 10:07:17'),
(6411, '2019-04-24', 186, '2019-04-24 08:56:23', '2019-04-24 11:25:15'),
(6412, '2019-04-24', 115, '2019-04-24 08:57:09', NULL),
(6413, '2019-04-24', 60, '2019-04-24 08:57:29', '2019-04-24 10:41:08'),
(6414, '2019-04-24', 127, '2019-04-24 08:57:36', '2019-04-24 10:32:37'),
(6415, '2019-04-24', 156, '2019-04-24 08:58:25', '2019-04-24 11:41:19'),
(6416, '2019-04-24', 159, '2019-04-24 08:58:28', '2019-04-24 10:24:39'),
(6417, '2019-04-24', 131, '2019-04-24 08:58:37', '2019-04-24 11:12:29'),
(6418, '2019-04-24', 15, '2019-04-24 08:58:43', '2019-04-24 10:44:53'),
(6419, '2019-04-24', 171, '2019-04-24 08:59:39', '2019-04-24 10:31:57'),
(6420, '2019-04-24', 31, '2019-04-24 09:00:15', NULL),
(6421, '2019-04-24', 75, '2019-04-24 09:01:55', '2019-04-24 10:11:29'),
(6422, '2019-04-24', 53, '2019-04-24 09:04:28', NULL),
(6423, '2019-04-24', 121, '2019-04-24 09:05:44', NULL),
(6424, '2019-04-24', 113, '2019-04-24 09:06:13', NULL),
(6425, '2019-04-24', 71, '2019-04-24 09:07:39', '2019-04-24 10:24:48'),
(6426, '2019-04-24', 19, '2019-04-24 09:14:49', NULL),
(6427, '2019-04-24', 40, '2019-04-24 10:21:49', NULL),
(6428, '2019-04-24', 167, '2019-04-24 10:26:43', NULL),
(6429, '2019-04-24', 177, '2019-04-24 10:26:56', NULL),
(6430, '2019-04-24', 52, '2019-04-24 10:27:01', NULL),
(6431, '2019-04-24', 106, '2019-04-24 10:34:38', NULL),
(6432, '2019-04-24', 30, '2019-04-24 10:34:44', NULL),
(6433, '2019-04-24', 107, '2019-04-24 10:35:38', NULL),
(6434, '2019-04-24', 104, '2019-04-24 10:36:38', '2019-04-24 11:51:55'),
(6435, '2019-04-24', 103, '2019-04-24 10:36:46', NULL),
(6436, '2019-04-24', 102, '2019-04-24 10:40:24', NULL),
(6437, '2019-04-24', 164, '2019-04-24 10:44:59', NULL),
(6438, '2019-04-24', 183, '2019-04-24 10:48:13', NULL),
(6439, '2019-04-24', 175, '2019-04-24 10:51:17', NULL),
(6440, '2019-04-24', 35, '2019-04-24 10:53:23', NULL),
(6441, '2019-04-24', 36, '2019-04-24 10:53:33', NULL),
(6442, '2019-04-24', 20, '2019-04-24 10:56:14', NULL),
(6443, '2019-04-24', 105, '2019-04-24 10:56:55', NULL),
(6444, '2019-04-24', 33, '2019-04-24 10:58:28', NULL),
(6445, '2019-04-24', 111, '2019-04-24 10:58:45', NULL),
(6446, '2019-04-24', 42, '2019-04-24 10:58:59', NULL),
(6447, '2019-04-24', 143, '2019-04-24 11:19:39', NULL),
(6448, '2019-04-24', 174, '2019-04-24 11:43:17', NULL),
(6449, '2019-04-24', 187, '2019-04-24 12:14:00', NULL),
(6450, '2019-04-25', 167, '2019-04-25 08:10:29', '2019-04-25 09:57:44'),
(6451, '2019-04-25', 67, '2019-04-25 08:10:44', '2019-04-25 10:27:48'),
(6452, '2019-04-25', 14, '2019-04-25 08:22:31', '2019-04-25 10:11:35'),
(6453, '2019-04-25', 170, '2019-04-25 08:22:34', '2019-04-25 11:46:22'),
(6454, '2019-04-25', 176, '2019-04-25 08:23:47', NULL),
(6455, '2019-04-25', 11, '2019-04-25 08:23:49', NULL),
(6456, '2019-04-25', 57, '2019-04-25 08:23:52', '2019-04-25 10:04:06'),
(6457, '2019-04-25', 163, '2019-04-25 08:25:37', '2019-04-25 10:37:29'),
(6458, '2019-04-25', 169, '2019-04-25 08:26:09', NULL),
(6459, '2019-04-25', 65, '2019-04-25 08:31:01', '2019-04-25 10:12:23'),
(6460, '2019-04-25', 15, '2019-04-25 08:33:41', '2019-04-25 10:37:22');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(6461, '2019-04-25', 23, '2019-04-25 08:34:19', NULL),
(6462, '2019-04-25', 162, '2019-04-25 08:35:23', '2019-04-25 10:56:14'),
(6463, '2019-04-25', 166, '2019-04-25 08:36:19', '2019-04-25 10:28:25'),
(6464, '2019-04-25', 189, '2019-04-25 08:37:52', NULL),
(6465, '2019-04-25', 45, '2019-04-25 08:39:45', '2019-04-25 10:39:02'),
(6466, '2019-04-25', 48, '2019-04-25 08:39:57', '2019-04-25 09:54:25'),
(6467, '2019-04-25', 16, '2019-04-25 08:41:09', '2019-04-25 10:22:48'),
(6468, '2019-04-25', 70, '2019-04-25 08:41:16', NULL),
(6469, '2019-04-25', 64, '2019-04-25 08:41:21', NULL),
(6470, '2019-04-25', 54, '2019-04-25 08:41:27', NULL),
(6471, '2019-04-25', 7, '2019-04-25 08:42:02', '2019-04-25 10:54:06'),
(6472, '2019-04-25', 177, '2019-04-25 08:42:43', '2019-04-25 10:05:22'),
(6473, '2019-04-25', 179, '2019-04-25 08:45:20', '2019-04-25 11:28:22'),
(6474, '2019-04-25', 72, '2019-04-25 08:45:40', '2019-04-25 10:35:29'),
(6475, '2019-04-25', 168, '2019-04-25 08:45:51', '2019-04-25 11:25:46'),
(6476, '2019-04-25', 44, '2019-04-25 08:46:00', '2019-04-25 09:57:47'),
(6477, '2019-04-25', 181, '2019-04-25 08:46:55', '2019-04-25 10:10:14'),
(6478, '2019-04-25', 165, '2019-04-25 08:47:27', NULL),
(6479, '2019-04-25', 18, '2019-04-25 08:47:44', '2019-04-25 10:11:20'),
(6480, '2019-04-25', 61, '2019-04-25 08:47:50', NULL),
(6481, '2019-04-25', 46, '2019-04-25 08:48:48', '2019-04-25 10:15:32'),
(6482, '2019-04-25', 25, '2019-04-25 08:48:53', '2019-04-25 10:19:12'),
(6483, '2019-04-25', 63, '2019-04-25 08:49:48', '2019-04-25 10:29:25'),
(6484, '2019-04-25', 60, '2019-04-25 08:51:09', '2019-04-25 10:23:13'),
(6485, '2019-04-25', 56, '2019-04-25 08:51:25', NULL),
(6486, '2019-04-25', 53, '2019-04-25 08:55:12', '2019-04-25 10:39:10'),
(6487, '2019-04-25', 68, '2019-04-25 10:37:13', NULL),
(6488, '2019-04-27', 34, '2019-04-27 07:58:04', '2019-04-27 10:19:45'),
(6489, '2019-04-27', 18, '2019-04-27 07:58:12', '2019-04-27 10:17:50'),
(6490, '2019-04-27', 55, '2019-04-27 07:58:22', NULL),
(6491, '2019-04-27', 72, '2019-04-27 07:58:25', '2019-04-27 10:07:06'),
(6492, '2019-04-27', 67, '2019-04-27 07:58:37', NULL),
(6493, '2019-04-27', 152, '2019-04-27 07:58:49', NULL),
(6494, '2019-04-27', 114, '2019-04-27 07:58:59', '2019-04-27 10:19:54'),
(6495, '2019-04-27', 57, '2019-04-27 08:05:38', '2019-04-27 10:02:16'),
(6496, '2019-04-27', 98, '2019-04-27 08:06:02', NULL),
(6497, '2019-04-27', 176, '2019-04-27 08:06:23', NULL),
(6498, '2019-04-27', 46, '2019-04-27 08:08:04', NULL),
(6499, '2019-04-27', 167, '2019-04-27 08:08:16', NULL),
(6500, '2019-04-27', 137, '2019-04-27 08:09:56', NULL),
(6501, '2019-04-27', 86, '2019-04-27 08:13:22', NULL),
(6502, '2019-04-27', 126, '2019-04-27 08:13:46', NULL),
(6503, '2019-04-27', 26, '2019-04-27 08:16:04', '2019-04-27 10:19:23'),
(6504, '2019-04-27', 159, '2019-04-27 08:17:36', NULL),
(6505, '2019-04-27', 133, '2019-04-27 08:17:39', NULL),
(6506, '2019-04-27', 27, '2019-04-27 08:17:53', '2019-04-27 10:19:28'),
(6507, '2019-04-27', 118, '2019-04-27 08:18:48', '2019-04-27 10:18:56'),
(6508, '2019-04-27', 93, '2019-04-27 08:18:58', NULL),
(6509, '2019-04-27', 84, '2019-04-27 08:19:57', NULL),
(6510, '2019-04-27', 92, '2019-04-27 08:20:12', NULL),
(6511, '2019-04-27', 95, '2019-04-27 08:20:29', NULL),
(6512, '2019-04-27', 140, '2019-04-27 08:23:17', NULL),
(6513, '2019-04-27', 150, '2019-04-27 08:24:16', NULL),
(6514, '2019-04-27', 14, '2019-04-27 08:26:45', NULL),
(6515, '2019-04-27', 23, '2019-04-27 08:27:02', NULL),
(6516, '2019-04-27', 146, '2019-04-27 08:27:09', NULL),
(6517, '2019-04-27', 7, '2019-04-27 08:27:15', '2019-04-27 10:41:30'),
(6518, '2019-04-27', 61, '2019-04-27 08:29:20', NULL),
(6519, '2019-04-27', 78, '2019-04-27 08:29:26', NULL),
(6520, '2019-04-27', 169, '2019-04-27 08:31:30', NULL),
(6521, '2019-04-27', 89, '2019-04-27 08:32:35', NULL),
(6522, '2019-04-27', 10, '2019-04-27 08:32:41', NULL),
(6523, '2019-04-27', 48, '2019-04-27 08:34:18', NULL),
(6524, '2019-04-27', 91, '2019-04-27 08:34:37', NULL),
(6525, '2019-04-27', 90, '2019-04-27 08:34:42', NULL),
(6526, '2019-04-27', 125, '2019-04-27 08:34:49', NULL),
(6527, '2019-04-27', 11, '2019-04-27 08:34:56', NULL),
(6528, '2019-04-27', 15, '2019-04-27 08:35:06', '2019-04-27 10:16:29'),
(6529, '2019-04-27', 22, '2019-04-27 08:35:16', '2019-04-27 10:21:52'),
(6530, '2019-04-27', 39, '2019-04-27 08:35:25', NULL),
(6531, '2019-04-27', 88, '2019-04-27 08:35:30', NULL),
(6532, '2019-04-27', 186, '2019-04-27 08:36:16', NULL),
(6533, '2019-04-27', 68, '2019-04-27 08:37:39', NULL),
(6534, '2019-04-27', 80, '2019-04-27 08:37:43', NULL),
(6535, '2019-04-27', 25, '2019-04-27 08:38:34', '2019-04-27 10:39:45'),
(6536, '2019-04-27', 141, '2019-04-27 08:39:07', NULL),
(6537, '2019-04-27', 128, '2019-04-27 08:39:17', NULL),
(6538, '2019-04-27', 87, '2019-04-27 08:39:31', NULL),
(6539, '2019-04-27', 168, '2019-04-27 08:39:47', NULL),
(6540, '2019-04-27', 31, '2019-04-27 08:41:45', '2019-04-27 10:18:23'),
(6541, '2019-04-27', 121, '2019-04-27 08:42:00', NULL),
(6542, '2019-04-27', 181, '2019-04-27 08:42:32', NULL),
(6543, '2019-04-27', 145, '2019-04-27 08:42:37', NULL),
(6544, '2019-04-27', 44, '2019-04-27 08:43:55', NULL),
(6545, '2019-04-27', 166, '2019-04-27 08:44:21', NULL),
(6546, '2019-04-27', 58, '2019-04-27 08:45:43', '2019-04-27 10:15:30'),
(6547, '2019-04-27', 64, '2019-04-27 08:46:17', NULL),
(6548, '2019-04-27', 70, '2019-04-27 08:46:20', NULL),
(6549, '2019-04-27', 16, '2019-04-27 08:46:45', '2019-04-27 10:19:02'),
(6550, '2019-04-27', 54, '2019-04-27 08:46:49', NULL),
(6551, '2019-04-27', 5, '2019-04-27 08:46:57', '2019-04-27 10:44:15'),
(6552, '2019-04-27', 161, '2019-04-27 08:47:08', NULL),
(6553, '2019-04-27', 97, '2019-04-27 08:47:13', NULL),
(6554, '2019-04-27', 189, '2019-04-27 08:47:21', '2019-04-27 10:13:28'),
(6555, '2019-04-27', 160, '2019-04-27 08:47:58', NULL),
(6556, '2019-04-27', 171, '2019-04-27 08:48:05', NULL),
(6557, '2019-04-27', 8, '2019-04-27 08:49:00', '2019-04-27 10:14:39'),
(6558, '2019-04-27', 127, '2019-04-27 08:49:35', NULL),
(6559, '2019-04-27', 156, '2019-04-27 08:49:45', NULL),
(6560, '2019-04-27', 138, '2019-04-27 08:49:49', NULL),
(6561, '2019-04-27', 63, '2019-04-27 08:52:52', NULL),
(6562, '2019-04-27', 45, '2019-04-27 08:53:48', NULL),
(6563, '2019-04-27', 53, '2019-04-27 08:54:09', NULL),
(6564, '2019-04-27', 56, '2019-04-27 09:03:33', '2019-04-27 10:15:33'),
(6565, '2019-04-27', 71, '2019-04-27 09:08:05', '2019-04-27 10:42:21'),
(6566, '2019-04-27', 60, '2019-04-27 09:31:08', NULL),
(6567, '2019-04-27', 37, '2019-04-27 09:51:27', NULL),
(6568, '2019-04-27', 38, '2019-04-27 10:44:41', NULL),
(6569, '2019-04-28', 155, '2019-04-28 07:53:43', NULL),
(6570, '2019-04-28', 176, '2019-04-28 08:02:07', '2019-04-28 11:54:39'),
(6571, '2019-04-28', 98, '2019-04-28 08:02:20', '2019-04-28 10:32:11'),
(6572, '2019-04-28', 57, '2019-04-28 08:02:30', '2019-04-28 10:22:19'),
(6573, '2019-04-28', 92, '2019-04-28 08:02:47', '2019-04-28 10:31:49'),
(6574, '2019-04-28', 55, '2019-04-28 08:04:23', NULL),
(6575, '2019-04-28', 157, '2019-04-28 08:04:32', '2019-04-28 11:37:10'),
(6576, '2019-04-28', 99, '2019-04-28 08:04:37', '2019-04-28 10:31:57'),
(6577, '2019-04-28', 72, '2019-04-28 08:04:42', '2019-04-28 10:10:02'),
(6578, '2019-04-28', 18, '2019-04-28 08:05:07', NULL),
(6579, '2019-04-28', 152, '2019-04-28 08:05:40', '2019-04-28 11:37:26'),
(6580, '2019-04-28', 167, '2019-04-28 08:05:45', '2019-04-28 11:20:19'),
(6581, '2019-04-28', 34, '2019-04-28 08:07:59', NULL),
(6582, '2019-04-28', 143, '2019-04-28 08:08:49', NULL),
(6583, '2019-04-28', 86, '2019-04-28 08:10:06', '2019-04-28 10:32:04'),
(6584, '2019-04-28', 138, '2019-04-28 08:11:02', '2019-04-28 11:38:50'),
(6585, '2019-04-28', 150, '2019-04-28 08:13:08', '2019-04-28 11:37:58'),
(6586, '2019-04-28', 118, '2019-04-28 08:15:20', '2019-04-28 10:19:25'),
(6587, '2019-04-28', 14, '2019-04-28 08:16:18', NULL),
(6588, '2019-04-28', 170, '2019-04-28 08:16:35', '2019-04-28 11:59:34'),
(6589, '2019-04-28', 146, '2019-04-28 08:16:42', '2019-04-28 11:38:34'),
(6590, '2019-04-28', 15, '2019-04-28 08:16:52', NULL),
(6591, '2019-04-28', 162, '2019-04-28 08:16:57', NULL),
(6592, '2019-04-28', 93, '2019-04-28 08:17:07', '2019-04-28 10:33:15'),
(6593, '2019-04-28', 100, '2019-04-28 08:17:46', '2019-04-28 10:31:52'),
(6594, '2019-04-28', 169, '2019-04-28 08:17:49', NULL),
(6595, '2019-04-28', 137, '2019-04-28 08:18:45', NULL),
(6596, '2019-04-28', 101, '2019-04-28 08:19:39', '2019-04-28 10:32:45'),
(6597, '2019-04-28', 141, '2019-04-28 08:19:45', '2019-04-28 11:36:47'),
(6598, '2019-04-28', 27, '2019-04-28 08:19:50', '2019-04-28 10:19:12'),
(6599, '2019-04-28', 126, '2019-04-28 08:19:55', '2019-04-28 11:37:38'),
(6600, '2019-04-28', 84, '2019-04-28 08:20:41', NULL),
(6601, '2019-04-28', 135, '2019-04-28 08:20:48', '2019-04-28 11:38:23'),
(6602, '2019-04-28', 67, '2019-04-28 08:21:09', '2019-04-28 10:41:27'),
(6603, '2019-04-28', 129, '2019-04-28 08:21:57', '2019-04-28 11:36:53'),
(6604, '2019-04-28', 95, '2019-04-28 08:23:02', '2019-04-28 10:32:50'),
(6605, '2019-04-28', 75, '2019-04-28 08:23:11', NULL),
(6606, '2019-04-28', 148, '2019-04-28 08:24:27', '2019-04-28 11:38:10'),
(6607, '2019-04-28', 38, '2019-04-28 08:25:54', '2019-04-28 10:19:37'),
(6608, '2019-04-28', 65, '2019-04-28 08:26:54', NULL),
(6609, '2019-04-28', 39, '2019-04-28 08:28:28', NULL),
(6610, '2019-04-28', 46, '2019-04-28 08:29:07', '2019-04-28 11:28:57'),
(6611, '2019-04-28', 79, '2019-04-28 08:29:52', NULL),
(6612, '2019-04-28', 168, '2019-04-28 08:31:46', NULL),
(6613, '2019-04-28', 61, '2019-04-28 08:31:51', NULL),
(6614, '2019-04-28', 144, '2019-04-28 08:31:57', '2019-04-28 11:38:16'),
(6615, '2019-04-28', 113, '2019-04-28 08:32:09', '2019-04-28 10:19:33'),
(6616, '2019-04-28', 10, '2019-04-28 08:32:54', NULL),
(6617, '2019-04-28', 89, '2019-04-28 08:33:54', '2019-04-28 10:32:38'),
(6618, '2019-04-28', 80, '2019-04-28 08:34:00', '2019-04-28 10:32:23'),
(6619, '2019-04-28', 48, '2019-04-28 08:34:17', '2019-04-28 10:50:44'),
(6620, '2019-04-28', 125, '2019-04-28 08:34:22', '2019-04-28 11:37:16'),
(6621, '2019-04-28', 130, '2019-04-28 08:34:27', '2019-04-28 11:38:39'),
(6622, '2019-04-28', 179, '2019-04-28 08:34:34', '2019-04-28 11:48:26'),
(6623, '2019-04-28', 91, '2019-04-28 08:34:43', '2019-04-28 10:32:08'),
(6624, '2019-04-28', 90, '2019-04-28 08:34:46', '2019-04-28 10:32:16'),
(6625, '2019-04-28', 97, '2019-04-28 08:34:57', '2019-04-28 10:32:35'),
(6626, '2019-04-28', 64, '2019-04-28 08:35:05', NULL),
(6627, '2019-04-28', 5, '2019-04-28 08:35:12', NULL),
(6628, '2019-04-28', 22, '2019-04-28 08:35:17', '2019-04-28 10:19:46'),
(6629, '2019-04-28', 70, '2019-04-28 08:35:22', '2019-04-28 10:50:22'),
(6630, '2019-04-28', 16, '2019-04-28 08:35:27', NULL),
(6631, '2019-04-28', 178, '2019-04-28 08:35:32', NULL),
(6632, '2019-04-28', 189, '2019-04-28 08:35:35', '2019-04-28 10:35:33'),
(6633, '2019-04-28', 77, '2019-04-28 08:35:45', '2019-04-28 10:32:27'),
(6634, '2019-04-28', 186, '2019-04-28 08:37:44', '2019-04-28 11:38:28'),
(6635, '2019-04-28', 128, '2019-04-28 08:38:31', '2019-04-28 11:37:02'),
(6636, '2019-04-28', 68, '2019-04-28 08:40:12', '2019-04-28 10:56:16'),
(6637, '2019-04-28', 66, '2019-04-28 08:40:15', NULL),
(6638, '2019-04-28', 133, '2019-04-28 08:42:47', '2019-04-28 11:38:04'),
(6639, '2019-04-28', 121, '2019-04-28 08:44:41', '2019-04-28 10:19:42'),
(6640, '2019-04-28', 156, '2019-04-28 08:45:54', '2019-04-28 11:38:45'),
(6641, '2019-04-28', 44, '2019-04-28 08:46:28', '2019-04-28 10:58:33'),
(6642, '2019-04-28', 58, '2019-04-28 08:46:49', '2019-04-28 12:11:17'),
(6643, '2019-04-28', 31, '2019-04-28 08:47:15', '2019-04-28 10:19:57'),
(6644, '2019-04-28', 88, '2019-04-28 08:49:29', '2019-04-28 10:35:36'),
(6645, '2019-04-28', 171, '2019-04-28 08:51:08', NULL),
(6646, '2019-04-28', 127, '2019-04-28 08:51:32', '2019-04-28 11:38:55'),
(6647, '2019-04-28', 177, '2019-04-28 08:52:37', NULL),
(6648, '2019-04-28', 181, '2019-04-28 08:53:42', '2019-04-28 11:57:30'),
(6649, '2019-04-28', 145, '2019-04-28 08:53:47', '2019-04-28 11:37:21'),
(6650, '2019-04-28', 134, '2019-04-28 08:53:50', '2019-04-28 11:39:01'),
(6651, '2019-04-28', 63, '2019-04-28 08:54:24', NULL),
(6652, '2019-04-28', 45, '2019-04-28 08:55:28', '2019-04-28 11:49:44'),
(6653, '2019-04-28', 60, '2019-04-28 08:59:10', NULL),
(6654, '2019-04-28', 56, '2019-04-28 09:07:56', NULL),
(6655, '2019-04-28', 114, '2019-04-28 10:19:22', NULL),
(6656, '2019-04-28', 78, '2019-04-28 10:31:46', NULL),
(6657, '2019-04-28', 159, '2019-04-28 10:32:01', NULL),
(6658, '2019-04-28', 87, '2019-04-28 10:32:56', NULL),
(6659, '2019-04-28', 30, '2019-04-28 10:34:11', '2019-04-28 12:30:46'),
(6660, '2019-04-28', 111, '2019-04-28 10:34:50', '2019-04-28 12:30:05'),
(6661, '2019-04-28', 42, '2019-04-28 10:35:03', '2019-04-28 12:30:37'),
(6662, '2019-04-28', 174, '2019-04-28 10:38:31', NULL),
(6663, '2019-04-28', 102, '2019-04-28 10:43:33', NULL),
(6664, '2019-04-28', 106, '2019-04-28 10:46:16', NULL),
(6665, '2019-04-28', 35, '2019-04-28 10:47:18', NULL),
(6666, '2019-04-28', 36, '2019-04-28 10:47:27', NULL),
(6667, '2019-04-28', 183, '2019-04-28 10:54:25', NULL),
(6668, '2019-04-28', 132, '2019-04-28 11:36:43', NULL),
(6669, '2019-04-28', 139, '2019-04-28 11:37:31', NULL),
(6670, '2019-04-28', 52, '2019-04-28 11:42:36', NULL),
(6671, '2019-04-28', 8, '2019-04-28 12:07:23', NULL),
(6672, '2019-04-28', 23, '2019-04-28 12:07:27', NULL),
(6673, '2019-04-28', 11, '2019-04-28 12:07:34', NULL),
(6674, '2019-04-28', 161, '2019-04-28 12:10:35', NULL),
(6675, '2019-04-29', 144, '2019-04-29 07:54:12', '2019-04-29 11:38:21'),
(6676, '2019-04-29', 157, '2019-04-29 07:57:30', '2019-04-29 11:37:48'),
(6677, '2019-04-29', 23, '2019-04-29 07:59:44', '2019-04-29 12:08:39'),
(6678, '2019-04-29', 99, '2019-04-29 08:03:33', '2019-04-29 10:39:29'),
(6679, '2019-04-29', 55, '2019-04-29 08:04:00', NULL),
(6680, '2019-04-29', 114, '2019-04-29 08:04:06', '2019-04-29 10:19:03'),
(6681, '2019-04-29', 93, '2019-04-29 08:04:16', '2019-04-29 10:37:53'),
(6682, '2019-04-29', 124, '2019-04-29 08:06:57', '2019-04-29 11:38:45'),
(6683, '2019-04-29', 46, '2019-04-29 08:08:01', '2019-04-29 11:26:42'),
(6684, '2019-04-29', 150, '2019-04-29 08:08:07', '2019-04-29 11:37:42'),
(6685, '2019-04-29', 152, '2019-04-29 08:08:12', '2019-04-29 11:38:50'),
(6686, '2019-04-29', 147, '2019-04-29 08:08:17', NULL),
(6687, '2019-04-29', 37, '2019-04-29 08:08:21', '2019-04-29 10:15:37'),
(6688, '2019-04-29', 57, '2019-04-29 08:09:19', '2019-04-29 09:43:57'),
(6689, '2019-04-29', 98, '2019-04-29 08:09:32', '2019-04-29 10:39:22'),
(6690, '2019-04-29', 167, '2019-04-29 08:09:38', '2019-04-29 10:09:37'),
(6691, '2019-04-29', 72, '2019-04-29 08:09:59', '2019-04-29 09:53:18'),
(6692, '2019-04-29', 9, '2019-04-29 08:10:12', NULL),
(6693, '2019-04-29', 100, '2019-04-29 08:13:24', '2019-04-29 10:51:15'),
(6694, '2019-04-29', 138, '2019-04-29 08:13:46', '2019-04-29 11:38:40'),
(6695, '2019-04-29', 79, '2019-04-29 08:14:27', NULL),
(6696, '2019-04-29', 170, '2019-04-29 08:15:59', '2019-04-29 11:43:25'),
(6697, '2019-04-29', 146, '2019-04-29 08:16:36', '2019-04-29 11:37:15'),
(6698, '2019-04-29', 14, '2019-04-29 08:16:39', NULL),
(6699, '2019-04-29', 86, '2019-04-29 08:17:21', '2019-04-29 10:35:07'),
(6700, '2019-04-29', 141, '2019-04-29 08:17:34', '2019-04-29 11:37:07'),
(6701, '2019-04-29', 140, '2019-04-29 08:18:15', '2019-04-29 11:38:17'),
(6702, '2019-04-29', 92, '2019-04-29 08:18:37', NULL),
(6703, '2019-04-29', 133, '2019-04-29 08:18:57', '2019-04-29 11:38:12'),
(6704, '2019-04-29', 67, '2019-04-29 08:19:50', '2019-04-29 10:04:08'),
(6705, '2019-04-29', 129, '2019-04-29 08:19:54', NULL),
(6706, '2019-04-29', 15, '2019-04-29 08:20:21', '2019-04-29 12:11:03'),
(6707, '2019-04-29', 84, '2019-04-29 08:20:55', '2019-04-29 10:33:47'),
(6708, '2019-04-29', 126, '2019-04-29 08:21:47', '2019-04-29 11:37:36'),
(6709, '2019-04-29', 78, '2019-04-29 08:22:27', '2019-04-29 10:31:53'),
(6710, '2019-04-29', 118, '2019-04-29 08:22:51', '2019-04-29 10:09:56'),
(6711, '2019-04-29', 89, '2019-04-29 08:23:07', '2019-04-29 10:36:15'),
(6712, '2019-04-29', 5, '2019-04-29 08:24:52', NULL),
(6713, '2019-04-29', 54, '2019-04-29 08:24:57', NULL),
(6714, '2019-04-29', 70, '2019-04-29 08:25:04', NULL),
(6715, '2019-04-29', 16, '2019-04-29 08:25:09', NULL),
(6716, '2019-04-29', 10, '2019-04-29 08:25:13', NULL),
(6717, '2019-04-29', 27, '2019-04-29 08:27:07', '2019-04-29 10:13:02'),
(6718, '2019-04-29', 101, '2019-04-29 08:27:24', '2019-04-29 10:40:35'),
(6719, '2019-04-29', 168, '2019-04-29 08:27:34', '2019-04-29 11:40:51'),
(6720, '2019-04-29', 95, '2019-04-29 08:27:44', '2019-04-29 10:39:46'),
(6721, '2019-04-29', 48, '2019-04-29 08:27:57', '2019-04-29 11:06:38'),
(6722, '2019-04-29', 159, '2019-04-29 08:29:08', '2019-04-29 10:40:26'),
(6723, '2019-04-29', 137, '2019-04-29 08:29:55', '2019-04-29 11:38:07'),
(6724, '2019-04-29', 38, '2019-04-29 08:30:19', '2019-04-29 10:19:22'),
(6725, '2019-04-29', 115, '2019-04-29 08:31:52', '2019-04-29 10:15:45'),
(6726, '2019-04-29', 20, '2019-04-29 08:32:11', NULL),
(6727, '2019-04-29', 97, '2019-04-29 08:32:18', '2019-04-29 10:38:40'),
(6728, '2019-04-29', 88, '2019-04-29 08:33:43', '2019-04-29 10:35:27'),
(6729, '2019-04-29', 39, '2019-04-29 08:34:49', NULL),
(6730, '2019-04-29', 77, '2019-04-29 08:36:21', '2019-04-29 10:31:58'),
(6731, '2019-04-29', 135, '2019-04-29 08:38:00', '2019-04-29 11:37:12'),
(6732, '2019-04-29', 121, '2019-04-29 08:38:44', NULL),
(6733, '2019-04-29', 91, '2019-04-29 08:39:18', '2019-04-29 10:40:20'),
(6734, '2019-04-29', 130, '2019-04-29 08:39:23', '2019-04-29 11:38:02'),
(6735, '2019-04-29', 90, '2019-04-29 08:39:28', '2019-04-29 10:37:30'),
(6736, '2019-04-29', 22, '2019-04-29 08:39:54', '2019-04-29 10:19:17'),
(6737, '2019-04-29', 11, '2019-04-29 08:40:01', '2019-04-29 12:13:51'),
(6738, '2019-04-29', 125, '2019-04-29 08:40:05', NULL),
(6739, '2019-04-29', 64, '2019-04-29 08:40:08', NULL),
(6740, '2019-04-29', 128, '2019-04-29 08:40:13', '2019-04-29 11:37:30'),
(6741, '2019-04-29', 8, '2019-04-29 08:40:27', '2019-04-29 12:05:12'),
(6742, '2019-04-29', 66, '2019-04-29 08:40:38', NULL),
(6743, '2019-04-29', 80, '2019-04-29 08:40:58', '2019-04-29 10:34:08'),
(6744, '2019-04-29', 113, '2019-04-29 08:41:03', '2019-04-29 10:19:11'),
(6745, '2019-04-29', 25, '2019-04-29 08:45:29', NULL),
(6746, '2019-04-29', 189, '2019-04-29 08:47:16', NULL),
(6747, '2019-04-29', 68, '2019-04-29 08:47:45', '2019-04-29 10:13:25'),
(6748, '2019-04-29', 61, '2019-04-29 08:47:53', NULL),
(6749, '2019-04-29', 127, '2019-04-29 08:48:49', '2019-04-29 11:37:24'),
(6750, '2019-04-29', 134, '2019-04-29 08:48:54', '2019-04-29 11:37:57'),
(6751, '2019-04-29', 45, '2019-04-29 08:50:41', NULL),
(6752, '2019-04-29', 171, '2019-04-29 08:51:23', '2019-04-29 11:52:59'),
(6753, '2019-04-29', 145, '2019-04-29 08:52:24', '2019-04-29 11:37:53'),
(6754, '2019-04-29', 181, '2019-04-29 08:52:29', '2019-04-29 11:18:00'),
(6755, '2019-04-29', 53, '2019-04-29 08:52:32', '2019-04-29 10:19:55'),
(6756, '2019-04-29', 63, '2019-04-29 08:55:36', NULL),
(6757, '2019-04-29', 60, '2019-04-29 08:58:39', '2019-04-29 10:26:18'),
(6758, '2019-04-29', 56, '2019-04-29 09:02:15', NULL),
(6759, '2019-04-29', 58, '2019-04-29 09:06:03', '2019-04-29 10:19:40'),
(6760, '2019-04-29', 111, '2019-04-29 10:29:47', '2019-04-29 12:46:26'),
(6761, '2019-04-29', 30, '2019-04-29 10:30:11', '2019-04-29 12:45:51'),
(6762, '2019-04-29', 42, '2019-04-29 10:30:20', '2019-04-29 12:45:48'),
(6763, '2019-04-29', 177, '2019-04-29 10:33:52', NULL),
(6764, '2019-04-29', 104, '2019-04-29 10:34:35', '2019-04-29 12:46:42'),
(6765, '2019-04-29', 106, '2019-04-29 10:37:12', NULL),
(6766, '2019-04-29', 103, '2019-04-29 10:37:59', NULL),
(6767, '2019-04-29', 102, '2019-04-29 10:38:14', NULL),
(6768, '2019-04-29', 174, '2019-04-29 10:50:46', '2019-04-29 12:46:37'),
(6769, '2019-04-29', 35, '2019-04-29 10:56:10', NULL),
(6770, '2019-04-29', 183, '2019-04-29 10:59:34', '2019-04-29 12:46:07'),
(6771, '2019-04-29', 44, '2019-04-29 11:20:40', NULL),
(6772, '2019-04-29', 143, '2019-04-29 11:38:35', NULL),
(6773, '2019-04-29', 169, '2019-04-29 11:49:41', NULL),
(6774, '2019-04-29', 182, '2019-04-29 12:04:12', NULL),
(6775, '2019-04-29', 187, '2019-04-29 12:46:12', NULL),
(6776, '2019-04-30', 157, '2019-04-30 07:49:23', '2019-04-30 11:39:46'),
(6777, '2019-04-30', 147, '2019-04-30 07:59:08', '2019-04-30 11:40:20'),
(6778, '2019-04-30', 55, '2019-04-30 07:59:18', NULL),
(6779, '2019-04-30', 72, '2019-04-30 08:00:51', '2019-04-30 12:45:58'),
(6780, '2019-04-30', 152, '2019-04-30 08:01:56', '2019-04-30 11:40:41'),
(6781, '2019-04-30', 57, '2019-04-30 08:05:18', '2019-04-30 12:45:39'),
(6782, '2019-04-30', 98, '2019-04-30 08:05:23', '2019-04-30 10:35:06'),
(6783, '2019-04-30', 92, '2019-04-30 08:07:01', '2019-04-30 10:34:48'),
(6784, '2019-04-30', 46, '2019-04-30 08:11:40', '2019-04-30 12:02:39'),
(6785, '2019-04-30', 189, '2019-04-30 08:11:47', '2019-04-30 12:46:07'),
(6786, '2019-04-30', 135, '2019-04-30 08:12:33', '2019-04-30 11:39:38'),
(6787, '2019-04-30', 167, '2019-04-30 08:12:49', '2019-04-30 12:02:11'),
(6788, '2019-04-30', 75, '2019-04-30 08:14:44', NULL),
(6789, '2019-04-30', 65, '2019-04-30 08:16:07', NULL),
(6790, '2019-04-30', 78, '2019-04-30 08:16:36', '2019-04-30 10:35:13'),
(6791, '2019-04-30', 148, '2019-04-30 08:16:41', NULL),
(6792, '2019-04-30', 86, '2019-04-30 08:16:56', '2019-04-30 10:35:01'),
(6793, '2019-04-30', 150, '2019-04-30 08:17:02', '2019-04-30 11:39:33'),
(6794, '2019-04-30', 68, '2019-04-30 08:18:09', '2019-04-30 12:45:49'),
(6795, '2019-04-30', 133, '2019-04-30 08:18:44', '2019-04-30 11:39:28'),
(6796, '2019-04-30', 95, '2019-04-30 08:18:47', '2019-04-30 10:34:56'),
(6797, '2019-04-30', 154, '2019-04-30 08:19:43', NULL),
(6798, '2019-04-30', 137, '2019-04-30 08:19:49', '2019-04-30 11:39:12'),
(6799, '2019-04-30', 182, '2019-04-30 08:19:56', '2019-04-30 11:59:37'),
(6800, '2019-04-30', 89, '2019-04-30 08:22:44', NULL),
(6801, '2019-04-30', 25, '2019-04-30 08:23:44', '2019-04-30 12:09:54'),
(6802, '2019-04-30', 112, '2019-04-30 08:23:49', '2019-04-30 09:57:55'),
(6803, '2019-04-30', 5, '2019-04-30 08:24:30', '2019-04-30 12:25:48'),
(6804, '2019-04-30', 180, '2019-04-30 08:24:42', NULL),
(6805, '2019-04-30', 54, '2019-04-30 08:24:48', '2019-04-30 12:03:13'),
(6806, '2019-04-30', 64, '2019-04-30 08:24:56', NULL),
(6807, '2019-04-30', 70, '2019-04-30 08:25:03', NULL),
(6808, '2019-04-30', 84, '2019-04-30 08:25:21', '2019-04-30 10:35:33'),
(6809, '2019-04-30', 14, '2019-04-30 08:25:32', NULL),
(6810, '2019-04-30', 101, '2019-04-30 08:26:06', '2019-04-30 10:36:21'),
(6811, '2019-04-30', 39, '2019-04-30 08:26:31', NULL),
(6812, '2019-04-30', 126, '2019-04-30 08:27:30', '2019-04-30 11:39:23'),
(6813, '2019-04-30', 17, '2019-04-30 08:29:51', NULL),
(6814, '2019-04-30', 156, '2019-04-30 08:31:32', '2019-04-30 11:44:34'),
(6815, '2019-04-30', 97, '2019-04-30 08:32:40', '2019-04-30 10:35:27'),
(6816, '2019-04-30', 178, '2019-04-30 08:32:47', NULL),
(6817, '2019-04-30', 77, '2019-04-30 08:32:51', '2019-04-30 10:35:30'),
(6818, '2019-04-30', 140, '2019-04-30 08:33:18', '2019-04-30 11:39:59'),
(6819, '2019-04-30', 80, '2019-04-30 08:33:23', '2019-04-30 10:34:59'),
(6820, '2019-04-30', 168, '2019-04-30 08:33:26', '2019-04-30 10:49:16'),
(6821, '2019-04-30', 66, '2019-04-30 08:33:30', NULL),
(6822, '2019-04-30', 31, '2019-04-30 08:34:25', '2019-04-30 10:20:36'),
(6823, '2019-04-30', 27, '2019-04-30 08:34:30', '2019-04-30 10:21:05'),
(6824, '2019-04-30', 44, '2019-04-30 08:34:45', '2019-04-30 12:02:53'),
(6825, '2019-04-30', 141, '2019-04-30 08:35:30', '2019-04-30 11:39:18'),
(6826, '2019-04-30', 121, '2019-04-30 08:35:58', '2019-04-30 10:20:28'),
(6827, '2019-04-30', 125, '2019-04-30 08:36:36', '2019-04-30 11:40:31'),
(6828, '2019-04-30', 22, '2019-04-30 08:36:48', '2019-04-30 10:20:24'),
(6829, '2019-04-30', 11, '2019-04-30 08:36:53', NULL),
(6830, '2019-04-30', 130, '2019-04-30 08:37:01', '2019-04-30 11:40:36'),
(6831, '2019-04-30', 90, '2019-04-30 08:37:08', '2019-04-30 10:36:15'),
(6832, '2019-04-30', 79, '2019-04-30 08:37:26', NULL),
(6833, '2019-04-30', 91, '2019-04-30 08:37:35', '2019-04-30 10:36:30'),
(6834, '2019-04-30', 26, '2019-04-30 08:38:30', '2019-04-30 10:20:17'),
(6835, '2019-04-30', 88, '2019-04-30 08:40:13', NULL),
(6836, '2019-04-30', 177, '2019-04-30 08:40:44', '2019-04-30 12:46:11'),
(6837, '2019-04-30', 85, '2019-04-30 08:41:31', '2019-04-30 10:35:46'),
(6838, '2019-04-30', 8, '2019-04-30 08:42:48', '2019-04-30 12:13:53'),
(6839, '2019-04-30', 128, '2019-04-30 08:45:39', NULL),
(6840, '2019-04-30', 181, '2019-04-30 08:47:34', '2019-04-30 12:02:58'),
(6841, '2019-04-30', 145, '2019-04-30 08:47:40', '2019-04-30 11:40:10'),
(6842, '2019-04-30', 45, '2019-04-30 08:47:51', NULL),
(6843, '2019-04-30', 48, '2019-04-30 08:49:03', '2019-04-30 12:03:00'),
(6844, '2019-04-30', 171, '2019-04-30 08:49:48', '2019-04-30 10:49:22'),
(6845, '2019-04-30', 37, '2019-04-30 08:50:28', '2019-04-30 10:20:51'),
(6846, '2019-04-30', 56, '2019-04-30 08:52:15', '2019-04-30 12:45:44'),
(6847, '2019-04-30', 134, '2019-04-30 08:52:53', '2019-04-30 11:40:25'),
(6848, '2019-04-30', 52, '2019-04-30 08:56:31', '2019-04-30 12:02:18'),
(6849, '2019-04-30', 127, '2019-04-30 09:05:06', '2019-04-30 11:40:46'),
(6850, '2019-04-30', 53, '2019-04-30 09:10:57', '2019-04-30 12:02:15'),
(6851, '2019-04-30', 113, '2019-04-30 09:12:57', '2019-04-30 10:20:06'),
(6852, '2019-04-30', 188, '2019-04-30 10:20:42', NULL),
(6853, '2019-04-30', 174, '2019-04-30 10:31:56', '2019-04-30 12:51:51'),
(6854, '2019-04-30', 106, '2019-04-30 10:31:59', '2019-04-30 12:52:09'),
(6855, '2019-04-30', 30, '2019-04-30 10:32:10', '2019-04-30 12:42:18'),
(6856, '2019-04-30', 111, '2019-04-30 10:33:05', '2019-04-30 12:51:21'),
(6857, '2019-04-30', 103, '2019-04-30 10:33:09', '2019-04-30 12:51:37'),
(6858, '2019-04-30', 33, '2019-04-30 10:33:35', NULL),
(6859, '2019-04-30', 42, '2019-04-30 10:33:45', '2019-04-30 12:40:53'),
(6860, '2019-04-30', 159, '2019-04-30 10:35:21', NULL),
(6861, '2019-04-30', 87, '2019-04-30 10:36:07', NULL),
(6862, '2019-04-30', 104, '2019-04-30 10:40:32', '2019-04-30 12:51:57'),
(6863, '2019-04-30', 187, '2019-04-30 10:40:42', '2019-04-30 12:51:13'),
(6864, '2019-04-30', 179, '2019-04-30 10:49:19', NULL),
(6865, '2019-04-30', 102, '2019-04-30 10:50:39', '2019-04-30 12:51:24'),
(6866, '2019-04-30', 183, '2019-04-30 10:54:15', '2019-04-30 12:51:05'),
(6867, '2019-04-30', 35, '2019-04-30 10:58:40', '2019-04-30 12:40:50'),
(6868, '2019-04-30', 36, '2019-04-30 10:58:50', '2019-04-30 12:42:36'),
(6869, '2019-04-30', 170, '2019-04-30 11:30:42', NULL),
(6870, '2019-04-30', 129, '2019-04-30 11:39:14', NULL),
(6871, '2019-04-30', 143, '2019-04-30 11:39:54', NULL),
(6872, '2019-04-30', 139, '2019-04-30 11:40:05', NULL),
(6873, '2019-04-30', 124, '2019-04-30 11:40:51', NULL),
(6874, '2019-04-30', 23, '2019-04-30 12:11:06', NULL),
(6875, '2019-04-30', 63, '2019-04-30 12:45:51', NULL),
(6876, '2019-04-30', 71, '2019-04-30 12:45:55', NULL),
(6877, '2019-05-04', 34, '2019-05-04 07:41:38', '2019-05-04 09:29:10'),
(6878, '2019-05-04', 18, '2019-05-04 07:41:46', NULL),
(6879, '2019-05-04', 169, '2019-05-04 08:02:44', NULL),
(6880, '2019-05-04', 163, '2019-05-04 08:02:49', NULL),
(6881, '2019-05-04', 141, '2019-05-04 08:05:23', '2019-05-04 09:49:06'),
(6882, '2019-05-04', 157, '2019-05-04 08:06:46', NULL),
(6883, '2019-05-04', 167, '2019-05-04 08:11:13', '2019-05-04 10:03:00'),
(6884, '2019-05-04', 89, '2019-05-04 08:12:51', '2019-05-04 09:58:32'),
(6885, '2019-05-04', 93, '2019-05-04 08:14:04', '2019-05-04 09:59:19'),
(6886, '2019-05-04', 23, '2019-05-04 08:15:08', NULL),
(6887, '2019-05-04', 99, '2019-05-04 08:15:19', '2019-05-04 09:59:42'),
(6888, '2019-05-04', 150, '2019-05-04 08:15:26', '2019-05-04 09:31:12'),
(6889, '2019-05-04', 138, '2019-05-04 08:16:20', '2019-05-04 09:41:50'),
(6890, '2019-05-04', 137, '2019-05-04 08:17:51', '2019-05-04 09:37:07'),
(6891, '2019-05-04', 101, '2019-05-04 08:18:21', '2019-05-04 09:59:09'),
(6892, '2019-05-04', 97, '2019-05-04 08:19:27', NULL),
(6893, '2019-05-04', 46, '2019-05-04 08:21:48', '2019-05-04 10:02:52'),
(6894, '2019-05-04', 78, '2019-05-04 08:23:37', '2019-05-04 09:58:04'),
(6895, '2019-05-04', 126, '2019-05-04 08:23:42', NULL),
(6896, '2019-05-04', 129, '2019-05-04 08:23:45', '2019-05-04 10:35:16'),
(6897, '2019-05-04', 189, '2019-05-04 08:24:47', NULL),
(6898, '2019-05-04', 92, '2019-05-04 08:25:11', '2019-05-04 09:58:00'),
(6899, '2019-05-04', 171, '2019-05-04 08:26:44', '2019-05-04 10:16:36'),
(6900, '2019-05-04', 48, '2019-05-04 08:28:13', '2019-05-04 10:03:34'),
(6901, '2019-05-04', 5, '2019-05-04 08:28:39', '2019-05-04 09:56:33'),
(6902, '2019-05-04', 39, '2019-05-04 08:28:49', NULL),
(6903, '2019-05-04', 16, '2019-05-04 08:28:58', NULL),
(6904, '2019-05-04', 70, '2019-05-04 08:29:03', '2019-05-04 09:44:41'),
(6905, '2019-05-04', 68, '2019-05-04 08:29:07', '2019-05-04 09:44:35'),
(6906, '2019-05-04', 63, '2019-05-04 08:31:07', '2019-05-04 10:04:41'),
(6907, '2019-05-04', 135, '2019-05-04 08:32:57', '2019-05-04 09:47:49'),
(6908, '2019-05-04', 45, '2019-05-04 08:33:31', '2019-05-04 10:10:48'),
(6909, '2019-05-04', 38, '2019-05-04 08:34:22', NULL),
(6910, '2019-05-04', 66, '2019-05-04 08:35:09', '2019-05-04 10:00:02'),
(6911, '2019-05-04', 80, '2019-05-04 08:35:13', '2019-05-04 10:00:07'),
(6912, '2019-05-04', 128, '2019-05-04 08:36:32', '2019-05-04 09:37:24'),
(6913, '2019-05-04', 166, '2019-05-04 08:36:47', NULL),
(6914, '2019-05-04', 156, '2019-05-04 08:37:01', '2019-05-04 10:42:25'),
(6915, '2019-05-04', 95, '2019-05-04 08:37:14', '2019-05-04 09:58:28'),
(6916, '2019-05-04', 27, '2019-05-04 08:37:29', NULL),
(6917, '2019-05-04', 17, '2019-05-04 08:40:16', NULL),
(6918, '2019-05-04', 149, '2019-05-04 08:40:31', NULL),
(6919, '2019-05-04', 125, '2019-05-04 08:40:49', '2019-05-04 09:56:39'),
(6920, '2019-05-04', 90, '2019-05-04 08:40:55', '2019-05-04 09:59:35'),
(6921, '2019-05-04', 91, '2019-05-04 08:41:09', '2019-05-04 10:01:51'),
(6922, '2019-05-04', 140, '2019-05-04 08:42:37', '2019-05-04 09:43:06'),
(6923, '2019-05-04', 8, '2019-05-04 08:44:09', NULL),
(6924, '2019-05-04', 131, '2019-05-04 08:47:18', NULL),
(6925, '2019-05-04', 113, '2019-05-04 08:48:45', NULL),
(6926, '2019-05-04', 71, '2019-05-04 09:02:03', NULL),
(6927, '2019-05-04', 186, '2019-05-04 09:37:15', NULL),
(6928, '2019-05-04', 61, '2019-05-04 09:43:19', NULL),
(6929, '2019-05-04', 159, '2019-05-04 09:58:10', NULL),
(6930, '2019-05-04', 76, '2019-05-04 09:58:17', NULL),
(6931, '2019-05-04', 44, '2019-05-04 10:03:56', NULL),
(6932, '2019-05-04', 143, '2019-05-04 10:13:11', NULL),
(6933, '2019-05-04', 104, '2019-05-04 10:29:50', NULL),
(6934, '2019-05-04', 106, '2019-05-04 10:41:56', NULL),
(6935, '2019-05-04', 187, '2019-05-04 11:08:49', NULL),
(6936, '2019-05-05', 99, '2019-05-05 07:57:45', '2019-05-05 10:35:48'),
(6937, '2019-05-05', 92, '2019-05-05 08:00:39', '2019-05-05 10:35:37'),
(6938, '2019-05-05', 57, '2019-05-05 08:01:32', '2019-05-05 10:41:06'),
(6939, '2019-05-05', 168, '2019-05-05 08:02:42', '2019-05-05 10:40:36'),
(6940, '2019-05-05', 53, '2019-05-05 08:05:00', '2019-05-05 10:31:46'),
(6941, '2019-05-05', 138, '2019-05-05 08:05:22', '2019-05-05 10:37:54'),
(6942, '2019-05-05', 46, '2019-05-05 08:07:32', '2019-05-05 10:31:36'),
(6943, '2019-05-05', 145, '2019-05-05 08:12:04', '2019-05-05 10:38:00'),
(6944, '2019-05-05', 167, '2019-05-05 08:13:57', '2019-05-05 10:31:38'),
(6945, '2019-05-05', 161, '2019-05-05 08:14:30', '2019-05-05 10:32:50'),
(6946, '2019-05-05', 139, '2019-05-05 08:15:34', '2019-05-05 10:38:14'),
(6947, '2019-05-05', 135, '2019-05-05 08:16:22', '2019-05-05 10:37:24'),
(6948, '2019-05-05', 124, '2019-05-05 08:16:33', NULL),
(6949, '2019-05-05', 100, '2019-05-05 08:17:05', '2019-05-05 10:35:39'),
(6950, '2019-05-05', 39, '2019-05-05 08:17:33', '2019-05-05 10:05:19'),
(6951, '2019-05-05', 189, '2019-05-05 08:17:52', NULL),
(6952, '2019-05-05', 78, '2019-05-05 08:19:20', '2019-05-05 10:36:41'),
(6953, '2019-05-05', 148, '2019-05-05 08:19:25', '2019-05-05 10:37:12'),
(6954, '2019-05-05', 150, '2019-05-05 08:19:45', '2019-05-05 10:39:27'),
(6955, '2019-05-05', 93, '2019-05-05 08:21:13', '2019-05-05 10:38:36'),
(6956, '2019-05-05', 64, '2019-05-05 08:21:33', NULL),
(6957, '2019-05-05', 70, '2019-05-05 08:21:42', '2019-05-05 10:41:21'),
(6958, '2019-05-05', 69, '2019-05-05 08:21:47', NULL),
(6959, '2019-05-05', 26, '2019-05-05 08:21:49', NULL),
(6960, '2019-05-05', 54, '2019-05-05 08:21:55', NULL),
(6961, '2019-05-05', 16, '2019-05-05 08:22:05', NULL),
(6962, '2019-05-05', 137, '2019-05-05 08:22:13', '2019-05-05 10:37:28'),
(6963, '2019-05-05', 80, '2019-05-05 08:24:03', '2019-05-05 10:36:47'),
(6964, '2019-05-05', 179, '2019-05-05 08:24:16', '2019-05-05 10:47:46'),
(6965, '2019-05-05', 97, '2019-05-05 08:24:27', '2019-05-05 10:37:33'),
(6966, '2019-05-05', 31, '2019-05-05 08:24:41', NULL),
(6967, '2019-05-05', 27, '2019-05-05 08:25:12', '2019-05-05 10:07:54'),
(6968, '2019-05-05', 68, '2019-05-05 08:25:32', '2019-05-05 10:49:22'),
(6969, '2019-05-05', 157, '2019-05-05 08:26:01', '2019-05-05 10:38:40'),
(6970, '2019-05-05', 37, '2019-05-05 08:26:08', '2019-05-05 10:12:39'),
(6971, '2019-05-05', 112, '2019-05-05 08:27:04', '2019-05-05 10:26:05'),
(6972, '2019-05-05', 118, '2019-05-05 08:27:23', '2019-05-05 10:08:21'),
(6973, '2019-05-05', 58, '2019-05-05 08:28:13', '2019-05-05 10:51:58'),
(6974, '2019-05-05', 101, '2019-05-05 08:28:44', '2019-05-05 10:37:08'),
(6975, '2019-05-05', 166, '2019-05-05 08:28:47', '2019-05-05 10:32:11'),
(6976, '2019-05-05', 95, '2019-05-05 08:28:56', '2019-05-05 10:35:59'),
(6977, '2019-05-05', 48, '2019-05-05 08:29:20', '2019-05-05 10:31:56'),
(6978, '2019-05-05', 25, '2019-05-05 08:29:25', '2019-05-05 10:32:20'),
(6979, '2019-05-05', 128, '2019-05-05 08:29:31', '2019-05-05 10:38:25'),
(6980, '2019-05-05', 44, '2019-05-05 08:29:38', '2019-05-05 10:31:42'),
(6981, '2019-05-05', 84, '2019-05-05 08:30:05', '2019-05-05 10:37:03'),
(6982, '2019-05-05', 85, '2019-05-05 08:30:29', '2019-05-05 10:37:38'),
(6983, '2019-05-05', 79, '2019-05-05 08:30:53', NULL),
(6984, '2019-05-05', 77, '2019-05-05 08:31:26', '2019-05-05 10:39:18'),
(6985, '2019-05-05', 8, '2019-05-05 08:32:13', '2019-05-05 10:32:30'),
(6986, '2019-05-05', 45, '2019-05-05 08:33:07', '2019-05-05 10:32:25'),
(6987, '2019-05-05', 156, '2019-05-05 08:33:47', '2019-05-05 10:39:23'),
(6988, '2019-05-05', 130, '2019-05-05 08:34:10', NULL),
(6989, '2019-05-05', 91, '2019-05-05 08:34:16', NULL),
(6990, '2019-05-05', 125, '2019-05-05 08:34:21', NULL),
(6991, '2019-05-05', 11, '2019-05-05 08:34:26', '2019-05-05 10:32:59'),
(6992, '2019-05-05', 90, '2019-05-05 08:34:29', NULL),
(6993, '2019-05-05', 154, '2019-05-05 08:34:40', '2019-05-05 10:38:05'),
(6994, '2019-05-05', 22, '2019-05-05 08:34:45', '2019-05-05 10:23:18'),
(6995, '2019-05-05', 88, '2019-05-05 08:36:01', '2019-05-05 10:39:07'),
(6996, '2019-05-05', 114, '2019-05-05 08:36:09', '2019-05-05 10:24:08'),
(6997, '2019-05-05', 56, '2019-05-05 08:38:03', NULL),
(6998, '2019-05-05', 29, '2019-05-05 08:39:29', '2019-05-05 10:36:57'),
(6999, '2019-05-05', 121, '2019-05-05 08:39:41', '2019-05-05 10:08:36'),
(7000, '2019-05-05', 61, '2019-05-05 08:39:49', NULL),
(7001, '2019-05-05', 115, '2019-05-05 08:40:25', '2019-05-05 10:08:27'),
(7002, '2019-05-05', 134, '2019-05-05 08:52:08', '2019-05-05 10:38:20'),
(7003, '2019-05-05', 127, '2019-05-05 08:55:50', '2019-05-05 10:37:48'),
(7004, '2019-05-05', 89, '2019-05-05 08:56:38', '2019-05-05 10:36:53'),
(7005, '2019-05-05', 105, '2019-05-05 09:52:41', '2019-05-05 11:13:15'),
(7006, '2019-05-05', 183, '2019-05-05 09:53:35', '2019-05-05 11:16:48'),
(7007, '2019-05-05', 42, '2019-05-05 09:59:38', NULL),
(7008, '2019-05-05', 174, '2019-05-05 10:05:12', '2019-05-05 11:12:53'),
(7009, '2019-05-05', 34, '2019-05-05 10:23:05', NULL),
(7010, '2019-05-05', 106, '2019-05-05 10:27:03', NULL),
(7011, '2019-05-05', 30, '2019-05-05 10:27:15', NULL),
(7012, '2019-05-05', 149, '2019-05-05 10:29:01', NULL),
(7013, '2019-05-05', 102, '2019-05-05 10:32:00', NULL),
(7014, '2019-05-05', 23, '2019-05-05 10:32:03', NULL),
(7015, '2019-05-05', 14, '2019-05-05 10:32:15', NULL),
(7016, '2019-05-05', 7, '2019-05-05 10:32:35', NULL),
(7017, '2019-05-05', 5, '2019-05-05 10:32:56', NULL),
(7018, '2019-05-05', 10, '2019-05-05 10:33:26', NULL),
(7019, '2019-05-05', 33, '2019-05-05 10:36:37', NULL),
(7020, '2019-05-05', 76, '2019-05-05 10:36:44', NULL),
(7021, '2019-05-05', 159, '2019-05-05 10:37:17', NULL),
(7022, '2019-05-05', 129, '2019-05-05 10:37:19', NULL),
(7023, '2019-05-05', 143, '2019-05-05 10:37:44', NULL),
(7024, '2019-05-05', 126, '2019-05-05 10:38:10', NULL),
(7025, '2019-05-05', 186, '2019-05-05 10:38:45', NULL),
(7026, '2019-05-05', 87, '2019-05-05 10:38:53', NULL),
(7027, '2019-05-05', 146, '2019-05-05 10:38:58', NULL),
(7028, '2019-05-05', 160, '2019-05-05 10:39:03', NULL),
(7029, '2019-05-05', 132, '2019-05-05 10:39:13', NULL),
(7030, '2019-05-05', 131, '2019-05-05 10:40:27', NULL),
(7031, '2019-05-05', 60, '2019-05-05 10:40:59', NULL),
(7032, '2019-05-05', 67, '2019-05-05 10:41:03', NULL),
(7033, '2019-05-05', 65, '2019-05-05 10:41:11', NULL),
(7034, '2019-05-05', 169, '2019-05-05 10:47:43', NULL),
(7035, '2019-05-05', 170, '2019-05-05 10:47:48', NULL),
(7036, '2019-05-05', 35, '2019-05-05 10:49:27', NULL),
(7037, '2019-05-05', 36, '2019-05-05 10:49:37', NULL),
(7038, '2019-05-05', 187, '2019-05-05 11:18:25', NULL),
(7039, '2019-06-11', 142, '2019-06-11 07:45:31', NULL),
(7040, '2019-06-11', 96, '2019-06-11 07:52:42', '2019-06-11 10:30:03'),
(7041, '2019-06-11', 141, '2019-06-11 07:56:52', '2019-06-11 11:27:55'),
(7042, '2019-06-11', 145, '2019-06-11 08:05:37', NULL),
(7043, '2019-06-11', 181, '2019-06-11 08:05:41', '2019-06-11 12:41:59'),
(7044, '2019-06-11', 23, '2019-06-11 08:06:01', '2019-06-11 12:09:17'),
(7045, '2019-06-11', 15, '2019-06-11 08:08:17', '2019-06-11 12:09:09'),
(7046, '2019-06-11', 129, '2019-06-11 08:09:19', '2019-06-11 11:27:27'),
(7047, '2019-06-11', 45, '2019-06-11 08:13:01', NULL),
(7048, '2019-06-11', 7, '2019-06-11 08:13:12', NULL),
(7049, '2019-06-11', 133, '2019-06-11 08:13:50', '2019-06-11 11:28:24'),
(7050, '2019-06-11', 61, '2019-06-11 08:14:07', NULL),
(7051, '2019-06-11', 63, '2019-06-11 08:14:13', '2019-06-11 12:39:39'),
(7052, '2019-06-11', 135, '2019-06-11 08:14:55', '2019-06-11 11:27:58'),
(7053, '2019-06-11', 128, '2019-06-11 08:15:04', '2019-06-11 11:27:17'),
(7054, '2019-06-11', 46, '2019-06-11 08:15:11', '2019-06-11 12:42:28'),
(7055, '2019-06-11', 124, '2019-06-11 08:17:30', '2019-06-11 11:28:18'),
(7056, '2019-06-11', 125, '2019-06-11 08:17:56', '2019-06-11 11:27:43'),
(7057, '2019-06-11', 90, '2019-06-11 08:17:59', '2019-06-11 10:29:43'),
(7058, '2019-06-11', 57, '2019-06-11 08:18:03', NULL),
(7059, '2019-06-11', 91, '2019-06-11 08:18:08', '2019-06-11 10:29:53'),
(7060, '2019-06-11', 70, '2019-06-11 08:19:05', '2019-06-11 12:39:51'),
(7061, '2019-06-11', 64, '2019-06-11 08:19:08', NULL),
(7062, '2019-06-11', 16, '2019-06-11 08:19:11', '2019-06-11 12:09:13'),
(7063, '2019-06-11', 144, '2019-06-11 08:19:36', '2019-06-11 11:27:24'),
(7064, '2019-06-11', 39, '2019-06-11 08:20:01', '2019-06-11 10:20:20'),
(7065, '2019-06-11', 92, '2019-06-11 08:24:04', '2019-06-11 10:29:35'),
(7066, '2019-06-11', 75, '2019-06-11 08:32:30', NULL),
(7067, '2019-06-11', 150, '2019-06-11 08:33:09', '2019-06-11 11:28:13'),
(7068, '2019-06-11', 151, '2019-06-11 08:33:14', '2019-06-11 11:27:47'),
(7069, '2019-06-11', 117, '2019-06-11 08:34:05', '2019-06-11 10:19:35'),
(7070, '2019-06-11', 140, '2019-06-11 08:36:16', '2019-06-11 11:28:02'),
(7071, '2019-06-11', 186, '2019-06-11 08:37:31', '2019-06-11 11:27:38'),
(7072, '2019-06-11', 19, '2019-06-11 08:38:08', NULL),
(7073, '2019-06-11', 58, '2019-06-11 08:40:08', '2019-06-11 12:39:54'),
(7074, '2019-06-11', 89, '2019-06-11 08:43:02', '2019-06-11 10:30:26'),
(7075, '2019-06-11', 86, '2019-06-11 10:29:39', NULL),
(7076, '2019-06-11', 33, '2019-06-11 10:29:58', NULL),
(7077, '2019-06-11', 42, '2019-06-11 10:30:08', '2019-06-11 12:41:05'),
(7078, '2019-06-11', 111, '2019-06-11 10:30:15', '2019-06-11 12:44:46'),
(7079, '2019-06-11', 160, '2019-06-11 10:30:20', NULL),
(7080, '2019-06-11', 102, '2019-06-11 10:35:56', NULL),
(7081, '2019-06-11', 187, '2019-06-11 10:36:01', '2019-06-11 12:44:40'),
(7082, '2019-06-11', 28, '2019-06-11 10:39:31', '2019-06-11 12:40:28'),
(7083, '2019-06-11', 106, '2019-06-11 10:41:02', NULL),
(7084, '2019-06-11', 30, '2019-06-11 10:41:54', '2019-06-11 12:40:46'),
(7085, '2019-06-11', 107, '2019-06-11 10:46:54', NULL),
(7086, '2019-06-11', 35, '2019-06-11 10:47:39', '2019-06-11 12:40:24'),
(7087, '2019-06-11', 36, '2019-06-11 10:47:53', '2019-06-11 12:40:55'),
(7088, '2019-06-11', 157, '2019-06-11 11:27:30', NULL),
(7089, '2019-06-11', 137, '2019-06-11 11:27:33', NULL),
(7090, '2019-06-11', 126, '2019-06-11 11:28:07', NULL),
(7091, '2019-06-11', 123, '2019-06-11 11:28:38', NULL),
(7092, '2019-06-11', 161, '2019-06-11 12:09:20', NULL),
(7093, '2019-06-12', 123, '2019-06-12 08:02:07', '2019-06-12 11:26:12'),
(7094, '2019-06-12', 124, '2019-06-12 08:02:13', '2019-06-12 11:25:31'),
(7095, '2019-06-12', 169, '2019-06-12 08:03:20', NULL),
(7096, '2019-06-12', 163, '2019-06-12 08:03:26', '2019-06-12 12:17:30'),
(7097, '2019-06-12', 156, '2019-06-12 08:07:10', '2019-06-12 11:26:30'),
(7098, '2019-06-12', 55, '2019-06-12 08:07:22', NULL),
(7099, '2019-06-12', 157, '2019-06-12 08:07:35', '2019-06-12 11:26:23'),
(7100, '2019-06-12', 142, '2019-06-12 08:08:05', '2019-06-12 11:25:27'),
(7101, '2019-06-12', 137, '2019-06-12 08:08:46', NULL),
(7102, '2019-06-12', 133, '2019-06-12 08:09:38', '2019-06-12 11:26:54'),
(7103, '2019-06-12', 96, '2019-06-12 08:09:52', '2019-06-12 10:32:19'),
(7104, '2019-06-12', 126, '2019-06-12 08:12:52', '2019-06-12 11:25:52'),
(7105, '2019-06-12', 7, '2019-06-12 08:14:06', NULL),
(7106, '2019-06-12', 64, '2019-06-12 08:14:35', NULL),
(7107, '2019-06-12', 70, '2019-06-12 08:14:38', NULL),
(7108, '2019-06-12', 84, '2019-06-12 08:14:56', '2019-06-12 10:32:36'),
(7109, '2019-06-12', 140, '2019-06-12 08:15:56', NULL),
(7110, '2019-06-12', 86, '2019-06-12 08:16:04', '2019-06-12 10:32:30'),
(7111, '2019-06-12', 143, '2019-06-12 08:17:32', '2019-06-12 11:26:46'),
(7112, '2019-06-12', 46, '2019-06-12 08:18:38', '2019-06-12 12:40:44'),
(7113, '2019-06-12', 63, '2019-06-12 08:19:39', NULL),
(7114, '2019-06-12', 13, '2019-06-12 08:20:52', NULL),
(7115, '2019-06-12', 79, '2019-06-12 08:21:19', '2019-06-12 10:31:56'),
(7116, '2019-06-12', 9, '2019-06-12 08:21:26', '2019-06-12 12:03:28'),
(7117, '2019-06-12', 177, '2019-06-12 08:21:34', '2019-06-12 12:27:58'),
(7118, '2019-06-12', 159, '2019-06-12 08:22:42', '2019-06-12 10:32:14'),
(7119, '2019-06-12', 23, '2019-06-12 08:23:28', NULL),
(7120, '2019-06-12', 68, '2019-06-12 08:24:26', NULL),
(7121, '2019-06-12', 145, '2019-06-12 08:24:37', '2019-06-12 11:25:43'),
(7122, '2019-06-12', 181, '2019-06-12 08:24:42', '2019-06-12 12:40:57'),
(7123, '2019-06-12', 151, '2019-06-12 08:37:07', '2019-06-12 11:26:41'),
(7124, '2019-06-12', 135, '2019-06-12 08:37:24', '2019-06-12 11:25:46'),
(7125, '2019-06-12', 11, '2019-06-12 08:37:35', '2019-06-12 12:03:37'),
(7126, '2019-06-12', 77, '2019-06-12 08:37:39', '2019-06-12 10:32:09'),
(7127, '2019-06-12', 162, '2019-06-12 08:37:44', NULL),
(7128, '2019-06-12', 56, '2019-06-12 08:37:50', NULL),
(7129, '2019-06-12', 61, '2019-06-12 08:37:54', '2019-06-12 12:27:53'),
(7130, '2019-06-12', 57, '2019-06-12 08:37:59', NULL),
(7131, '2019-06-12', 150, '2019-06-12 08:38:03', '2019-06-12 11:26:36'),
(7132, '2019-06-12', 134, '2019-06-12 08:38:10', '2019-06-12 11:25:34'),
(7133, '2019-06-12', 112, '2019-06-12 08:40:53', NULL),
(7134, '2019-06-12', 19, '2019-06-12 08:41:51', NULL),
(7135, '2019-06-12', 39, '2019-06-12 08:42:18', NULL),
(7136, '2019-06-12', 117, '2019-06-12 08:43:46', '2019-06-12 10:31:16'),
(7137, '2019-06-12', 60, '2019-06-12 08:44:15', NULL),
(7138, '2019-06-12', 113, '2019-06-12 08:50:42', '2019-06-12 10:31:11'),
(7139, '2019-06-12', 105, '2019-06-12 10:21:48', NULL),
(7140, '2019-06-12', 106, '2019-06-12 10:30:54', '2019-06-12 12:46:24'),
(7141, '2019-06-12', 38, '2019-06-12 10:31:20', NULL),
(7142, '2019-06-12', 111, '2019-06-12 10:31:31', NULL),
(7143, '2019-06-12', 149, '2019-06-12 10:31:44', NULL),
(7144, '2019-06-12', 89, '2019-06-12 10:31:49', NULL),
(7145, '2019-06-12', 90, '2019-06-12 10:32:03', NULL),
(7146, '2019-06-12', 91, '2019-06-12 10:32:26', NULL),
(7147, '2019-06-12', 33, '2019-06-12 10:32:44', '2019-06-12 12:39:21'),
(7148, '2019-06-12', 42, '2019-06-12 10:32:58', '2019-06-12 12:38:43'),
(7149, '2019-06-12', 187, '2019-06-12 10:33:06', '2019-06-12 12:46:18'),
(7150, '2019-06-12', 30, '2019-06-12 10:38:22', NULL),
(7151, '2019-06-12', 28, '2019-06-12 10:47:00', '2019-06-12 12:38:09'),
(7152, '2019-06-12', 35, '2019-06-12 11:01:18', '2019-06-12 12:38:13'),
(7153, '2019-06-12', 36, '2019-06-12 11:01:25', '2019-06-12 12:39:03'),
(7154, '2019-06-12', 125, '2019-06-12 11:26:18', NULL),
(7155, '2019-06-12', 58, '2019-06-12 12:28:22', NULL),
(7156, '2019-06-12', 102, '2019-06-12 12:46:15', NULL),
(7157, '2019-06-15', 23, '2019-06-15 07:48:40', NULL),
(7158, '2019-06-15', 156, '2019-06-15 07:50:59', NULL),
(7159, '2019-06-15', 99, '2019-06-15 07:54:56', '2019-06-15 09:11:04'),
(7160, '2019-06-15', 124, '2019-06-15 08:04:13', '2019-06-15 11:43:35'),
(7161, '2019-06-15', 89, '2019-06-15 08:05:22', '2019-06-15 10:31:04'),
(7162, '2019-06-15', 96, '2019-06-15 08:06:42', '2019-06-15 10:30:25'),
(7163, '2019-06-15', 157, '2019-06-15 08:07:07', '2019-06-15 10:32:17'),
(7164, '2019-06-15', 169, '2019-06-15 08:07:26', NULL),
(7165, '2019-06-15', 142, '2019-06-15 08:07:34', '2019-06-15 11:43:47'),
(7166, '2019-06-15', 163, '2019-06-15 08:07:50', NULL),
(7167, '2019-06-15', 155, '2019-06-15 08:09:30', '2019-06-15 11:44:00'),
(7168, '2019-06-15', 141, '2019-06-15 08:09:34', '2019-06-15 11:42:01'),
(7169, '2019-06-15', 168, '2019-06-15 08:09:38', '2019-06-15 12:45:36'),
(7170, '2019-06-15', 48, '2019-06-15 08:10:48', NULL),
(7171, '2019-06-15', 68, '2019-06-15 08:11:52', '2019-06-15 12:45:17'),
(7172, '2019-06-15', 64, '2019-06-15 08:12:50', NULL),
(7173, '2019-06-15', 70, '2019-06-15 08:12:59', '2019-06-15 12:45:21'),
(7174, '2019-06-15', 5, '2019-06-15 08:13:06', NULL),
(7175, '2019-06-15', 69, '2019-06-15 08:13:15', NULL),
(7176, '2019-06-15', 67, '2019-06-15 08:13:20', NULL),
(7177, '2019-06-15', 16, '2019-06-15 08:13:23', NULL),
(7178, '2019-06-15', 14, '2019-06-15 08:15:32', NULL),
(7179, '2019-06-15', 85, '2019-06-15 08:15:43', '2019-06-15 10:31:49'),
(7180, '2019-06-15', 170, '2019-06-15 08:15:46', NULL),
(7181, '2019-06-15', 146, '2019-06-15 08:15:55', '2019-06-15 11:42:10'),
(7182, '2019-06-15', 63, '2019-06-15 08:17:33', NULL),
(7183, '2019-06-15', 123, '2019-06-15 08:18:36', '2019-06-15 11:43:25'),
(7184, '2019-06-15', 147, '2019-06-15 08:19:42', '2019-06-15 11:43:52'),
(7185, '2019-06-15', 152, '2019-06-15 08:19:50', '2019-06-15 10:28:58'),
(7186, '2019-06-15', 179, '2019-06-15 08:20:49', NULL),
(7187, '2019-06-15', 22, '2019-06-15 08:21:54', '2019-06-15 10:24:53'),
(7188, '2019-06-15', 17, '2019-06-15 08:22:37', NULL),
(7189, '2019-06-15', 72, '2019-06-15 08:23:07', '2019-06-15 12:45:24'),
(7190, '2019-06-15', 129, '2019-06-15 08:23:10', NULL),
(7191, '2019-06-15', 145, '2019-06-15 08:31:04', '2019-06-15 11:42:42'),
(7192, '2019-06-15', 181, '2019-06-15 08:31:35', '2019-06-15 12:45:54'),
(7193, '2019-06-15', 150, '2019-06-15 08:31:44', '2019-06-15 11:42:37'),
(7194, '2019-06-15', 15, '2019-06-15 08:31:49', NULL),
(7195, '2019-06-15', 128, '2019-06-15 08:31:54', '2019-06-15 11:41:55'),
(7196, '2019-06-15', 39, '2019-06-15 08:32:00', '2019-06-15 10:25:26'),
(7197, '2019-06-15', 75, '2019-06-15 08:32:05', '2019-06-15 10:30:42'),
(7198, '2019-06-15', 180, '2019-06-15 08:32:09', NULL),
(7199, '2019-06-15', 118, '2019-06-15 08:32:14', '2019-06-15 10:24:30'),
(7200, '2019-06-15', 95, '2019-06-15 08:32:21', '2019-06-15 10:31:12'),
(7201, '2019-06-15', 92, '2019-06-15 08:32:33', '2019-06-15 10:30:20'),
(7202, '2019-06-15', 186, '2019-06-15 08:33:23', '2019-06-15 10:32:48'),
(7203, '2019-06-15', 27, '2019-06-15 08:33:29', NULL),
(7204, '2019-06-15', 151, '2019-06-15 08:34:39', '2019-06-15 11:43:11'),
(7205, '2019-06-15', 38, '2019-06-15 08:36:01', '2019-06-15 10:24:47'),
(7206, '2019-06-15', 29, '2019-06-15 08:36:44', '2019-06-15 10:25:16'),
(7207, '2019-06-15', 86, '2019-06-15 08:37:29', '2019-06-15 10:30:15'),
(7208, '2019-06-15', 138, '2019-06-15 08:37:38', '2019-06-15 11:43:20'),
(7209, '2019-06-15', 58, '2019-06-15 08:37:54', '2019-06-15 12:45:08'),
(7210, '2019-06-15', 117, '2019-06-15 08:40:08', '2019-06-15 10:24:34'),
(7211, '2019-06-15', 178, '2019-06-15 09:18:40', NULL),
(7212, '2019-06-15', 105, '2019-06-15 10:25:49', NULL),
(7213, '2019-06-15', 135, '2019-06-15 10:28:28', '2019-06-15 11:43:30'),
(7214, '2019-06-15', 100, '2019-06-15 10:30:31', NULL),
(7215, '2019-06-15', 84, '2019-06-15 10:31:08', NULL),
(7216, '2019-06-15', 160, '2019-06-15 10:31:18', NULL),
(7217, '2019-06-15', 87, '2019-06-15 10:31:35', NULL),
(7218, '2019-06-15', 76, '2019-06-15 10:31:41', NULL),
(7219, '2019-06-15', 93, '2019-06-15 10:31:57', NULL),
(7220, '2019-06-15', 90, '2019-06-15 10:32:01', NULL),
(7221, '2019-06-15', 187, '2019-06-15 10:35:16', '2019-06-15 11:42:16'),
(7222, '2019-06-15', 102, '2019-06-15 10:36:57', '2019-06-15 12:42:23'),
(7223, '2019-06-15', 106, '2019-06-15 10:37:00', NULL),
(7224, '2019-06-15', 41, '2019-06-15 10:37:10', '2019-06-15 11:42:22'),
(7225, '2019-06-15', 111, '2019-06-15 10:37:13', '2019-06-15 12:42:32'),
(7226, '2019-06-15', 33, '2019-06-15 10:37:17', '2019-06-15 12:43:26'),
(7227, '2019-06-15', 42, '2019-06-15 10:37:29', NULL),
(7228, '2019-06-15', 30, '2019-06-15 10:42:06', '2019-06-15 12:43:13'),
(7229, '2019-06-15', 35, '2019-06-15 10:44:10', '2019-06-15 12:45:33'),
(7230, '2019-06-15', 36, '2019-06-15 10:44:18', '2019-06-15 12:44:19'),
(7231, '2019-06-15', 107, '2019-06-15 10:47:10', '2019-06-15 12:44:24'),
(7232, '2019-06-15', 132, '2019-06-15 11:43:15', NULL),
(7233, '2019-06-15', 125, '2019-06-15 11:43:42', NULL),
(7234, '2019-06-15', 61, '2019-06-15 12:46:25', NULL),
(7235, '2019-06-16', 31, '2019-06-16 07:52:09', '2019-06-16 09:30:46'),
(7236, '2019-06-16', 46, '2019-06-16 07:54:27', NULL),
(7237, '2019-06-16', 167, '2019-06-16 07:55:58', NULL),
(7238, '2019-06-16', 155, '2019-06-16 07:58:43', NULL),
(7239, '2019-06-16', 16, '2019-06-16 07:59:13', NULL),
(7240, '2019-06-16', 154, '2019-06-16 08:02:31', NULL),
(7241, '2019-06-16', 25, '2019-06-16 08:03:15', NULL),
(7242, '2019-06-16', 179, '2019-06-16 08:08:30', '2019-06-16 12:41:39'),
(7243, '2019-06-16', 146, '2019-06-16 08:08:38', NULL),
(7244, '2019-06-16', 178, '2019-06-16 08:08:45', NULL),
(7245, '2019-06-16', 55, '2019-06-16 08:08:49', NULL),
(7246, '2019-06-16', 72, '2019-06-16 08:08:57', '2019-06-16 12:45:19'),
(7247, '2019-06-16', 23, '2019-06-16 08:09:08', NULL),
(7248, '2019-06-16', 137, '2019-06-16 08:09:28', '2019-06-16 11:40:41'),
(7249, '2019-06-16', 152, '2019-06-16 08:09:33', '2019-06-16 11:41:31'),
(7250, '2019-06-16', 168, '2019-06-16 08:10:02', '2019-06-16 12:42:49'),
(7251, '2019-06-16', 63, '2019-06-16 08:10:07', NULL),
(7252, '2019-06-16', 99, '2019-06-16 08:10:12', '2019-06-16 10:34:01');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(7253, '2019-06-16', 48, '2019-06-16 08:10:16', NULL),
(7254, '2019-06-16', 169, '2019-06-16 08:10:37', NULL),
(7255, '2019-06-16', 163, '2019-06-16 08:10:40', NULL),
(7256, '2019-06-16', 123, '2019-06-16 08:10:48', '2019-06-16 11:41:37'),
(7257, '2019-06-16', 78, '2019-06-16 08:11:02', '2019-06-16 10:33:15'),
(7258, '2019-06-16', 89, '2019-06-16 08:11:10', '2019-06-16 10:33:38'),
(7259, '2019-06-16', 93, '2019-06-16 08:11:55', '2019-06-16 10:34:18'),
(7260, '2019-06-16', 13, '2019-06-16 08:12:44', NULL),
(7261, '2019-06-16', 133, '2019-06-16 08:12:59', '2019-06-16 11:40:35'),
(7262, '2019-06-16', 142, '2019-06-16 08:13:23', '2019-06-16 11:42:30'),
(7263, '2019-06-16', 50, '2019-06-16 08:14:23', NULL),
(7264, '2019-06-16', 87, '2019-06-16 08:14:30', NULL),
(7265, '2019-06-16', 56, '2019-06-16 08:15:54', '2019-06-16 12:46:16'),
(7266, '2019-06-16', 68, '2019-06-16 08:15:57', '2019-06-16 12:46:26'),
(7267, '2019-06-16', 86, '2019-06-16 08:16:42', '2019-06-16 10:32:55'),
(7268, '2019-06-16', 150, '2019-06-16 08:17:36', '2019-06-16 11:40:38'),
(7269, '2019-06-16', 101, '2019-06-16 08:17:50', '2019-06-16 09:33:10'),
(7270, '2019-06-16', 64, '2019-06-16 08:18:06', NULL),
(7271, '2019-06-16', 5, '2019-06-16 08:18:11', '2019-06-16 12:11:46'),
(7272, '2019-06-16', 84, '2019-06-16 08:18:21', '2019-06-16 10:33:57'),
(7273, '2019-06-16', 54, '2019-06-16 08:18:24', NULL),
(7274, '2019-06-16', 70, '2019-06-16 08:18:39', '2019-06-16 12:45:28'),
(7275, '2019-06-16', 71, '2019-06-16 08:18:54', '2019-06-16 12:45:15'),
(7276, '2019-06-16', 45, '2019-06-16 08:18:59', NULL),
(7277, '2019-06-16', 141, '2019-06-16 08:19:54', '2019-06-16 11:41:19'),
(7278, '2019-06-16', 80, '2019-06-16 08:20:31', NULL),
(7279, '2019-06-16', 95, '2019-06-16 08:20:53', '2019-06-16 10:34:28'),
(7280, '2019-06-16', 15, '2019-06-16 08:22:26', NULL),
(7281, '2019-06-16', 38, '2019-06-16 08:31:16', NULL),
(7282, '2019-06-16', 115, '2019-06-16 08:31:19', NULL),
(7283, '2019-06-16', 138, '2019-06-16 08:31:23', '2019-06-16 11:41:51'),
(7284, '2019-06-16', 91, '2019-06-16 08:31:27', '2019-06-16 09:50:37'),
(7285, '2019-06-16', 90, '2019-06-16 08:31:32', '2019-06-16 10:33:47'),
(7286, '2019-06-16', 75, '2019-06-16 08:31:37', '2019-06-16 09:31:47'),
(7287, '2019-06-16', 22, '2019-06-16 08:31:45', '2019-06-16 10:20:02'),
(7288, '2019-06-16', 130, '2019-06-16 08:32:03', '2019-06-16 11:42:19'),
(7289, '2019-06-16', 128, '2019-06-16 08:32:08', NULL),
(7290, '2019-06-16', 135, '2019-06-16 08:32:12', '2019-06-16 11:40:50'),
(7291, '2019-06-16', 145, '2019-06-16 08:32:17', '2019-06-16 11:40:46'),
(7292, '2019-06-16', 161, '2019-06-16 08:32:21', NULL),
(7293, '2019-06-16', 66, '2019-06-16 08:32:34', NULL),
(7294, '2019-06-16', 57, '2019-06-16 08:32:42', NULL),
(7295, '2019-06-16', 11, '2019-06-16 08:32:50', NULL),
(7296, '2019-06-16', 177, '2019-06-16 08:32:59', '2019-06-16 12:45:22'),
(7297, '2019-06-16', 181, '2019-06-16 08:33:05', '2019-06-16 12:42:09'),
(7298, '2019-06-16', 176, '2019-06-16 08:33:08', '2019-06-16 12:42:43'),
(7299, '2019-06-16', 88, '2019-06-16 08:33:20', '2019-06-16 09:33:50'),
(7300, '2019-06-16', 77, '2019-06-16 08:33:24', '2019-06-16 10:33:07'),
(7301, '2019-06-16', 60, '2019-06-16 08:33:29', NULL),
(7302, '2019-06-16', 117, '2019-06-16 08:36:23', '2019-06-16 10:19:32'),
(7303, '2019-06-16', 151, '2019-06-16 08:37:21', '2019-06-16 11:41:01'),
(7304, '2019-06-16', 58, '2019-06-16 08:37:57', '2019-06-16 12:45:35'),
(7305, '2019-06-16', 134, '2019-06-16 08:38:03', '2019-06-16 11:42:24'),
(7306, '2019-06-16', 160, '2019-06-16 08:38:13', '2019-06-16 10:34:43'),
(7307, '2019-06-16', 156, '2019-06-16 08:38:54', '2019-06-16 11:41:26'),
(7308, '2019-06-16', 186, '2019-06-16 08:42:54', '2019-06-16 11:40:55'),
(7309, '2019-06-16', 113, '2019-06-16 08:49:17', '2019-06-16 10:19:53'),
(7310, '2019-06-16', 105, '2019-06-16 10:13:15', '2019-06-16 11:35:49'),
(7311, '2019-06-16', 159, '2019-06-16 10:33:20', NULL),
(7312, '2019-06-16', 85, '2019-06-16 10:34:12', NULL),
(7313, '2019-06-16', 76, '2019-06-16 10:34:24', NULL),
(7314, '2019-06-16', 106, '2019-06-16 10:35:23', '2019-06-16 12:51:11'),
(7315, '2019-06-16', 102, '2019-06-16 10:36:17', '2019-06-16 12:51:03'),
(7316, '2019-06-16', 111, '2019-06-16 10:36:37', '2019-06-16 12:50:58'),
(7317, '2019-06-16', 33, '2019-06-16 10:37:08', NULL),
(7318, '2019-06-16', 107, '2019-06-16 10:37:18', '2019-06-16 12:53:22'),
(7319, '2019-06-16', 187, '2019-06-16 10:39:25', '2019-06-16 12:50:55'),
(7320, '2019-06-16', 30, '2019-06-16 10:40:10', '2019-06-16 12:42:59'),
(7321, '2019-06-16', 104, '2019-06-16 10:43:31', '2019-06-16 11:49:02'),
(7322, '2019-06-16', 149, '2019-06-16 10:44:41', NULL),
(7323, '2019-06-16', 103, '2019-06-16 10:45:51', '2019-06-16 12:50:34'),
(7324, '2019-06-16', 28, '2019-06-16 10:50:34', NULL),
(7325, '2019-06-16', 35, '2019-06-16 10:51:23', NULL),
(7326, '2019-06-16', 36, '2019-06-16 10:51:49', '2019-06-16 12:43:10'),
(7327, '2019-06-16', 127, '2019-06-16 11:41:11', NULL),
(7328, '2019-06-16', 132, '2019-06-16 11:41:40', NULL),
(7329, '2019-06-16', 125, '2019-06-16 11:41:55', NULL),
(7330, '2019-06-16', 153, '2019-06-16 11:42:01', NULL),
(7331, '2019-06-16', 143, '2019-06-16 11:42:08', NULL),
(7332, '2019-06-16', 140, '2019-06-16 11:42:14', NULL),
(7333, '2019-06-16', 42, '2019-06-16 12:43:20', NULL),
(7334, '2019-06-17', 141, '2019-06-17 07:54:44', '2019-06-17 11:18:12'),
(7335, '2019-06-17', 142, '2019-06-17 07:59:44', '2019-06-17 11:35:51'),
(7336, '2019-06-17', 46, '2019-06-17 08:01:16', '2019-06-17 12:27:13'),
(7337, '2019-06-17', 157, '2019-06-17 08:02:08', '2019-06-17 11:36:04'),
(7338, '2019-06-17', 179, '2019-06-17 08:02:59', '2019-06-17 12:28:03'),
(7339, '2019-06-17', 178, '2019-06-17 08:03:02', NULL),
(7340, '2019-06-17', 78, '2019-06-17 08:03:10', '2019-06-17 10:33:51'),
(7341, '2019-06-17', 147, '2019-06-17 08:03:14', '2019-06-17 11:36:44'),
(7342, '2019-06-17', 55, '2019-06-17 08:03:22', NULL),
(7343, '2019-06-17', 72, '2019-06-17 08:03:28', '2019-06-17 13:02:32'),
(7344, '2019-06-17', 25, '2019-06-17 08:03:33', '2019-06-17 12:06:11'),
(7345, '2019-06-17', 152, '2019-06-17 08:03:46', '2019-06-17 11:36:09'),
(7346, '2019-06-17', 31, '2019-06-17 08:06:43', '2019-06-17 10:36:50'),
(7347, '2019-06-17', 53, '2019-06-17 08:07:57', NULL),
(7348, '2019-06-17', 18, '2019-06-17 08:08:47', NULL),
(7349, '2019-06-17', 34, '2019-06-17 08:09:00', '2019-06-17 10:19:57'),
(7350, '2019-06-17', 124, '2019-06-17 08:09:28', '2019-06-17 11:36:15'),
(7351, '2019-06-17', 26, '2019-06-17 08:09:39', '2019-06-17 10:19:48'),
(7352, '2019-06-17', 169, '2019-06-17 08:10:03', '2019-06-17 12:28:00'),
(7353, '2019-06-17', 163, '2019-06-17 08:10:07', NULL),
(7354, '2019-06-17', 93, '2019-06-17 08:11:16', '2019-06-17 10:35:07'),
(7355, '2019-06-17', 48, '2019-06-17 08:12:31', '2019-06-17 12:31:31'),
(7356, '2019-06-17', 10, '2019-06-17 08:12:50', NULL),
(7357, '2019-06-17', 15, '2019-06-17 08:12:55', NULL),
(7358, '2019-06-17', 133, '2019-06-17 08:13:00', '2019-06-17 10:04:28'),
(7359, '2019-06-17', 99, '2019-06-17 08:13:05', '2019-06-17 10:34:04'),
(7360, '2019-06-17', 101, '2019-06-17 08:13:12', '2019-06-17 10:35:17'),
(7361, '2019-06-17', 95, '2019-06-17 08:13:38', '2019-06-17 10:33:42'),
(7362, '2019-06-17', 85, '2019-06-17 08:13:46', '2019-06-17 10:34:16'),
(7363, '2019-06-17', 23, '2019-06-17 08:14:51', NULL),
(7364, '2019-06-17', 86, '2019-06-17 08:15:27', '2019-06-17 10:34:09'),
(7365, '2019-06-17', 67, '2019-06-17 08:16:46', '2019-06-17 12:57:42'),
(7366, '2019-06-17', 5, '2019-06-17 08:18:36', NULL),
(7367, '2019-06-17', 64, '2019-06-17 08:18:41', '2019-06-17 12:54:32'),
(7368, '2019-06-17', 168, '2019-06-17 08:18:46', NULL),
(7369, '2019-06-17', 54, '2019-06-17 08:18:51', '2019-06-17 12:44:36'),
(7370, '2019-06-17', 87, '2019-06-17 08:19:59', NULL),
(7371, '2019-06-17', 115, '2019-06-17 08:20:02', NULL),
(7372, '2019-06-17', 150, '2019-06-17 08:20:17', '2019-06-17 11:35:24'),
(7373, '2019-06-17', 27, '2019-06-17 08:21:06', NULL),
(7374, '2019-06-17', 39, '2019-06-17 08:21:30', NULL),
(7375, '2019-06-17', 63, '2019-06-17 08:21:41', '2019-06-17 12:54:35'),
(7376, '2019-06-17', 181, '2019-06-17 08:21:47', '2019-06-17 12:27:39'),
(7377, '2019-06-17', 145, '2019-06-17 08:21:52', NULL),
(7378, '2019-06-17', 70, '2019-06-17 08:22:00', NULL),
(7379, '2019-06-17', 84, '2019-06-17 08:22:05', '2019-06-17 10:35:22'),
(7380, '2019-06-17', 118, '2019-06-17 08:26:27', NULL),
(7381, '2019-06-17', 38, '2019-06-17 08:26:41', '2019-06-17 10:19:52'),
(7382, '2019-06-17', 29, '2019-06-17 08:27:16', '2019-06-17 10:20:01'),
(7383, '2019-06-17', 92, '2019-06-17 08:27:44', '2019-06-17 10:33:36'),
(7384, '2019-06-17', 77, '2019-06-17 08:32:36', '2019-06-17 09:49:40'),
(7385, '2019-06-17', 22, '2019-06-17 08:32:41', '2019-06-17 10:19:45'),
(7386, '2019-06-17', 91, '2019-06-17 08:32:45', '2019-06-17 10:33:58'),
(7387, '2019-06-17', 110, '2019-06-17 08:32:50', '2019-06-17 10:35:12'),
(7388, '2019-06-17', 79, '2019-06-17 08:33:08', '2019-06-17 10:33:22'),
(7389, '2019-06-17', 186, '2019-06-17 08:33:23', '2019-06-17 11:35:08'),
(7390, '2019-06-17', 153, '2019-06-17 08:33:27', '2019-06-17 11:35:31'),
(7391, '2019-06-17', 11, '2019-06-17 08:33:42', NULL),
(7392, '2019-06-17', 162, '2019-06-17 08:33:47', '2019-06-17 12:10:26'),
(7393, '2019-06-17', 57, '2019-06-17 08:33:53', '2019-06-17 12:51:30'),
(7394, '2019-06-17', 68, '2019-06-17 08:33:58', NULL),
(7395, '2019-06-17', 71, '2019-06-17 08:34:04', '2019-06-17 13:01:07'),
(7396, '2019-06-17', 176, '2019-06-17 08:34:08', '2019-06-17 12:27:31'),
(7397, '2019-06-17', 45, '2019-06-17 08:34:11', '2019-06-17 12:27:24'),
(7398, '2019-06-17', 88, '2019-06-17 08:34:16', NULL),
(7399, '2019-06-17', 123, '2019-06-17 08:34:23', '2019-06-17 11:36:35'),
(7400, '2019-06-17', 130, '2019-06-17 08:34:28', '2019-06-17 11:35:45'),
(7401, '2019-06-17', 61, '2019-06-17 08:34:33', '2019-06-17 12:10:19'),
(7402, '2019-06-17', 56, '2019-06-17 08:34:37', '2019-06-17 12:51:56'),
(7403, '2019-06-17', 66, '2019-06-17 08:34:41', NULL),
(7404, '2019-06-17', 52, '2019-06-17 08:34:49', '2019-06-17 12:27:16'),
(7405, '2019-06-17', 166, '2019-06-17 08:34:54', NULL),
(7406, '2019-06-17', 121, '2019-06-17 08:34:59', NULL),
(7407, '2019-06-17', 112, '2019-06-17 08:35:08', '2019-06-17 10:25:43'),
(7408, '2019-06-17', 134, '2019-06-17 08:35:16', '2019-06-17 11:36:50'),
(7409, '2019-06-17', 138, '2019-06-17 08:35:21', '2019-06-17 11:35:36'),
(7410, '2019-06-17', 135, '2019-06-17 08:35:33', '2019-06-17 11:35:39'),
(7411, '2019-06-17', 128, '2019-06-17 08:35:45', '2019-06-17 10:21:03'),
(7412, '2019-06-17', 177, '2019-06-17 08:36:43', NULL),
(7413, '2019-06-17', 117, '2019-06-17 08:38:47', '2019-06-17 10:41:12'),
(7414, '2019-06-17', 151, '2019-06-17 08:38:57', NULL),
(7415, '2019-06-17', 58, '2019-06-17 08:40:38', '2019-06-17 12:55:41'),
(7416, '2019-06-17', 113, '2019-06-17 08:49:06', '2019-06-17 10:20:31'),
(7417, '2019-06-17', 90, '2019-06-17 09:34:55', NULL),
(7418, '2019-06-17', 106, '2019-06-17 10:31:56', '2019-06-17 12:47:32'),
(7419, '2019-06-17', 187, '2019-06-17 10:32:08', '2019-06-17 12:47:26'),
(7420, '2019-06-17', 33, '2019-06-17 10:32:20', NULL),
(7421, '2019-06-17', 111, '2019-06-17 10:32:23', '2019-06-17 12:47:29'),
(7422, '2019-06-17', 41, '2019-06-17 10:32:36', '2019-06-17 12:39:05'),
(7423, '2019-06-17', 159, '2019-06-17 10:33:46', NULL),
(7424, '2019-06-17', 30, '2019-06-17 10:34:34', '2019-06-17 12:39:15'),
(7425, '2019-06-17', 96, '2019-06-17 10:34:46', NULL),
(7426, '2019-06-17', 89, '2019-06-17 10:34:55', NULL),
(7427, '2019-06-17', 103, '2019-06-17 10:35:02', '2019-06-17 12:48:44'),
(7428, '2019-06-17', 160, '2019-06-17 10:36:19', NULL),
(7429, '2019-06-17', 104, '2019-06-17 10:43:11', NULL),
(7430, '2019-06-17', 107, '2019-06-17 10:43:31', '2019-06-17 12:55:06'),
(7431, '2019-06-17', 28, '2019-06-17 10:48:28', NULL),
(7432, '2019-06-17', 149, '2019-06-17 10:51:32', NULL),
(7433, '2019-06-17', 36, '2019-06-17 10:55:42', '2019-06-17 12:39:10'),
(7434, '2019-06-17', 35, '2019-06-17 10:56:50', '2019-06-17 12:39:40'),
(7435, '2019-06-17', 126, '2019-06-17 11:35:20', NULL),
(7436, '2019-06-17', 132, '2019-06-17 11:35:42', NULL),
(7437, '2019-06-17', 125, '2019-06-17 11:35:56', NULL),
(7438, '2019-06-17', 154, '2019-06-17 11:36:18', NULL),
(7439, '2019-06-17', 129, '2019-06-17 11:37:00', NULL),
(7440, '2019-06-17', 148, '2019-06-17 11:38:16', NULL),
(7441, '2019-06-19', 141, '2019-06-19 08:06:41', '2019-06-19 11:33:49'),
(7442, '2019-06-19', 168, '2019-06-19 08:07:38', '2019-06-19 12:37:06'),
(7443, '2019-06-19', 89, '2019-06-19 08:08:09', NULL),
(7444, '2019-06-19', 25, '2019-06-19 08:19:34', '2019-06-19 12:06:21'),
(7445, '2019-06-19', 161, '2019-06-19 08:20:08', '2019-06-19 12:06:45'),
(7446, '2019-06-19', 126, '2019-06-19 08:20:30', NULL),
(7447, '2019-06-19', 72, '2019-06-19 08:20:46', '2019-06-19 12:44:44'),
(7448, '2019-06-19', 118, '2019-06-19 08:21:31', NULL),
(7449, '2019-06-19', 71, '2019-06-19 08:23:03', '2019-06-19 12:48:28'),
(7450, '2019-06-19', 64, '2019-06-19 08:23:09', '2019-06-19 12:48:16'),
(7451, '2019-06-19', 152, '2019-06-19 08:23:51', '2019-06-19 11:34:39'),
(7452, '2019-06-19', 138, '2019-06-19 08:23:58', '2019-06-19 10:08:27'),
(7453, '2019-06-19', 70, '2019-06-19 08:24:01', '2019-06-19 12:45:01'),
(7454, '2019-06-19', 75, '2019-06-19 08:25:29', NULL),
(7455, '2019-06-19', 144, '2019-06-19 08:26:56', '2019-06-19 11:33:53'),
(7456, '2019-06-19', 77, '2019-06-19 08:32:09', '2019-06-19 10:34:44'),
(7457, '2019-06-19', 110, '2019-06-19 08:32:18', '2019-06-19 10:21:29'),
(7458, '2019-06-19', 68, '2019-06-19 08:32:42', '2019-06-19 12:53:14'),
(7459, '2019-06-19', 145, '2019-06-19 08:32:49', NULL),
(7460, '2019-06-19', 48, '2019-06-19 08:33:00', '2019-06-19 12:45:12'),
(7461, '2019-06-19', 181, '2019-06-19 08:33:06', '2019-06-19 12:45:46'),
(7462, '2019-06-19', 29, '2019-06-19 08:33:18', NULL),
(7463, '2019-06-19', 186, '2019-06-19 08:33:23', '2019-06-19 11:34:14'),
(7464, '2019-06-19', 27, '2019-06-19 08:33:26', '2019-06-19 10:26:00'),
(7465, '2019-06-19', 60, '2019-06-19 08:33:32', NULL),
(7466, '2019-06-19', 76, '2019-06-19 08:33:46', '2019-06-19 10:36:37'),
(7467, '2019-06-19', 17, '2019-06-19 08:33:58', NULL),
(7468, '2019-06-19', 166, '2019-06-19 08:35:06', NULL),
(7469, '2019-06-19', 66, '2019-06-19 08:35:22', NULL),
(7470, '2019-06-19', 80, '2019-06-19 08:35:28', '2019-06-19 09:48:23'),
(7471, '2019-06-19', 79, '2019-06-19 08:35:33', NULL),
(7472, '2019-06-19', 117, '2019-06-19 08:35:53', '2019-06-19 10:25:17'),
(7473, '2019-06-19', 151, '2019-06-19 08:37:13', '2019-06-19 11:34:22'),
(7474, '2019-06-19', 113, '2019-06-19 08:39:27', '2019-06-19 10:26:14'),
(7475, '2019-06-19', 177, '2019-06-19 08:40:34', NULL),
(7476, '2019-06-19', 61, '2019-06-19 08:41:21', NULL),
(7477, '2019-06-19', 134, '2019-06-19 08:43:07', '2019-06-19 11:34:19'),
(7478, '2019-06-19', 121, '2019-06-19 08:45:54', '2019-06-19 10:25:49'),
(7479, '2019-06-19', 180, '2019-06-19 08:47:39', '2019-06-19 11:34:08'),
(7480, '2019-06-19', 31, '2019-06-19 09:29:11', NULL),
(7481, '2019-06-19', 26, '2019-06-19 09:29:23', NULL),
(7482, '2019-06-19', 146, '2019-06-19 09:58:41', '2019-06-19 11:34:02'),
(7483, '2019-06-19', 157, '2019-06-19 09:58:47', '2019-06-19 11:40:17'),
(7484, '2019-06-19', 147, '2019-06-19 10:08:04', '2019-06-19 11:33:45'),
(7485, '2019-06-19', 133, '2019-06-19 10:08:08', '2019-06-19 11:33:40'),
(7486, '2019-06-19', 22, '2019-06-19 10:25:55', NULL),
(7487, '2019-06-19', 38, '2019-06-19 10:26:38', NULL),
(7488, '2019-06-19', 39, '2019-06-19 10:26:52', NULL),
(7489, '2019-06-19', 106, '2019-06-19 10:26:57', '2019-06-19 12:47:52'),
(7490, '2019-06-19', 30, '2019-06-19 10:28:48', NULL),
(7491, '2019-06-19', 95, '2019-06-19 10:33:56', NULL),
(7492, '2019-06-19', 159, '2019-06-19 10:34:04', NULL),
(7493, '2019-06-19', 187, '2019-06-19 10:34:20', '2019-06-19 12:47:07'),
(7494, '2019-06-19', 90, '2019-06-19 10:34:23', NULL),
(7495, '2019-06-19', 99, '2019-06-19 10:34:27', NULL),
(7496, '2019-06-19', 88, '2019-06-19 10:34:51', NULL),
(7497, '2019-06-19', 84, '2019-06-19 10:34:59', NULL),
(7498, '2019-06-19', 86, '2019-06-19 10:35:30', NULL),
(7499, '2019-06-19', 87, '2019-06-19 10:36:08', NULL),
(7500, '2019-06-19', 107, '2019-06-19 10:36:19', '2019-06-19 12:53:26'),
(7501, '2019-06-19', 78, '2019-06-19 10:36:30', NULL),
(7502, '2019-06-19', 91, '2019-06-19 10:38:01', NULL),
(7503, '2019-06-19', 33, '2019-06-19 10:38:27', '2019-06-19 12:39:19'),
(7504, '2019-06-19', 42, '2019-06-19 10:38:37', '2019-06-19 12:39:45'),
(7505, '2019-06-19', 104, '2019-06-19 10:39:41', '2019-06-19 12:47:32'),
(7506, '2019-06-19', 28, '2019-06-19 10:40:40', '2019-06-19 12:39:13'),
(7507, '2019-06-19', 93, '2019-06-19 10:41:24', NULL),
(7508, '2019-06-19', 96, '2019-06-19 10:42:05', NULL),
(7509, '2019-06-19', 101, '2019-06-19 10:42:12', NULL),
(7510, '2019-06-19', 149, '2019-06-19 10:45:04', NULL),
(7511, '2019-06-19', 103, '2019-06-19 11:22:11', '2019-06-19 12:47:42'),
(7512, '2019-06-19', 124, '2019-06-19 11:33:36', NULL),
(7513, '2019-06-19', 137, '2019-06-19 11:33:43', NULL),
(7514, '2019-06-19', 132, '2019-06-19 11:34:11', NULL),
(7515, '2019-06-19', 150, '2019-06-19 11:34:33', NULL),
(7516, '2019-06-19', 153, '2019-06-19 11:35:02', NULL),
(7517, '2019-06-19', 125, '2019-06-19 11:35:23', NULL),
(7518, '2019-06-19', 8, '2019-06-19 12:06:12', NULL),
(7519, '2019-06-19', 11, '2019-06-19 12:06:15', NULL),
(7520, '2019-06-19', 18, '2019-06-19 12:06:24', NULL),
(7521, '2019-06-19', 7, '2019-06-19 12:06:31', NULL),
(7522, '2019-06-19', 10, '2019-06-19 12:06:37', NULL),
(7523, '2019-06-19', 169, '2019-06-19 12:36:55', NULL),
(7524, '2019-06-19', 170, '2019-06-19 12:37:02', NULL),
(7525, '2019-06-19', 55, '2019-06-19 12:45:04', NULL),
(7526, '2019-06-19', 46, '2019-06-19 12:45:15', NULL),
(7527, '2019-06-19', 45, '2019-06-19 12:45:19', NULL),
(7528, '2019-06-19', 44, '2019-06-19 12:45:24', NULL),
(7529, '2019-06-19', 167, '2019-06-19 12:45:29', NULL),
(7530, '2019-06-19', 176, '2019-06-19 12:45:37', NULL),
(7531, '2019-06-22', 97, '2019-06-22 08:30:19', '2019-06-22 10:33:09'),
(7532, '2019-06-22', 34, '2019-06-22 08:30:23', '2019-06-22 10:21:03'),
(7533, '2019-06-22', 31, '2019-06-22 08:30:28', '2019-06-22 10:21:14'),
(7534, '2019-06-22', 96, '2019-06-22 08:30:35', '2019-06-22 10:33:25'),
(7535, '2019-06-22', 90, '2019-06-22 08:30:40', '2019-06-22 10:35:07'),
(7536, '2019-06-22', 22, '2019-06-22 08:30:46', '2019-06-22 10:20:44'),
(7537, '2019-06-22', 91, '2019-06-22 08:30:51', NULL),
(7538, '2019-06-22', 116, '2019-06-22 08:31:01', NULL),
(7539, '2019-06-22', 38, '2019-06-22 08:31:07', '2019-06-22 10:20:40'),
(7540, '2019-06-22', 79, '2019-06-22 08:31:11', '2019-06-22 10:33:56'),
(7541, '2019-06-22', 89, '2019-06-22 08:31:16', '2019-06-22 10:33:31'),
(7542, '2019-06-22', 87, '2019-06-22 08:31:21', NULL),
(7543, '2019-06-22', 80, '2019-06-22 08:31:26', '2019-06-22 09:32:11'),
(7544, '2019-06-22', 95, '2019-06-22 08:31:31', '2019-06-22 10:33:39'),
(7545, '2019-06-22', 129, '2019-06-22 08:31:35', NULL),
(7546, '2019-06-22', 139, '2019-06-22 08:31:39', '2019-06-22 11:41:40'),
(7547, '2019-06-22', 140, '2019-06-22 08:31:43', NULL),
(7548, '2019-06-22', 146, '2019-06-22 08:31:48', '2019-06-22 11:41:46'),
(7549, '2019-06-22', 141, '2019-06-22 08:31:56', '2019-06-22 11:41:33'),
(7550, '2019-06-22', 125, '2019-06-22 08:32:00', '2019-06-22 11:41:51'),
(7551, '2019-06-22', 130, '2019-06-22 08:32:04', '2019-06-22 11:42:15'),
(7552, '2019-06-22', 124, '2019-06-22 08:32:09', '2019-06-22 11:42:06'),
(7553, '2019-06-22', 142, '2019-06-22 08:32:14', '2019-06-22 11:42:47'),
(7554, '2019-06-22', 132, '2019-06-22 08:32:22', NULL),
(7555, '2019-06-22', 138, '2019-06-22 08:32:26', NULL),
(7556, '2019-06-22', 152, '2019-06-22 08:32:31', '2019-06-22 11:43:04'),
(7557, '2019-06-22', 147, '2019-06-22 08:32:34', NULL),
(7558, '2019-06-22', 143, '2019-06-22 08:32:39', NULL),
(7559, '2019-06-22', 137, '2019-06-22 08:32:44', '2019-06-22 11:41:53'),
(7560, '2019-06-22', 88, '2019-06-22 08:32:48', '2019-06-22 10:34:48'),
(7561, '2019-06-22', 126, '2019-06-22 08:32:53', '2019-06-22 11:42:18'),
(7562, '2019-06-22', 150, '2019-06-22 08:32:58', '2019-06-22 11:42:28'),
(7563, '2019-06-22', 145, '2019-06-22 08:33:02', '2019-06-22 11:43:11'),
(7564, '2019-06-22', 14, '2019-06-22 08:33:07', NULL),
(7565, '2019-06-22', 18, '2019-06-22 08:33:13', '2019-06-22 12:12:07'),
(7566, '2019-06-22', 5, '2019-06-22 08:33:17', '2019-06-22 12:23:06'),
(7567, '2019-06-22', 16, '2019-06-22 08:33:21', '2019-06-22 12:23:01'),
(7568, '2019-06-22', 67, '2019-06-22 08:33:24', '2019-06-22 12:52:31'),
(7569, '2019-06-22', 70, '2019-06-22 08:33:30', '2019-06-22 12:52:28'),
(7570, '2019-06-22', 182, '2019-06-22 08:33:40', '2019-06-22 12:21:33'),
(7571, '2019-06-22', 13, '2019-06-22 08:33:45', NULL),
(7572, '2019-06-22', 11, '2019-06-22 08:33:49', NULL),
(7573, '2019-06-22', 71, '2019-06-22 08:33:54', '2019-06-22 12:52:50'),
(7574, '2019-06-22', 72, '2019-06-22 08:33:58', NULL),
(7575, '2019-06-22', 68, '2019-06-22 08:34:03', '2019-06-22 12:52:18'),
(7576, '2019-06-22', 66, '2019-06-22 08:34:08', '2019-06-22 12:52:11'),
(7577, '2019-06-22', 50, '2019-06-22 08:34:15', NULL),
(7578, '2019-06-22', 181, '2019-06-22 08:34:20', '2019-06-22 12:52:23'),
(7579, '2019-06-22', 46, '2019-06-22 08:34:24', NULL),
(7580, '2019-06-22', 176, '2019-06-22 08:34:29', NULL),
(7581, '2019-06-22', 53, '2019-06-22 08:34:34', '2019-06-22 12:15:19'),
(7582, '2019-06-22', 44, '2019-06-22 08:34:39', NULL),
(7583, '2019-06-22', 51, '2019-06-22 08:34:44', NULL),
(7584, '2019-06-22', 168, '2019-06-22 08:34:53', '2019-06-22 12:51:48'),
(7585, '2019-06-22', 170, '2019-06-22 08:34:58', NULL),
(7586, '2019-06-22', 133, '2019-06-22 08:35:18', NULL),
(7587, '2019-06-22', 26, '2019-06-22 08:35:23', NULL),
(7588, '2019-06-22', 15, '2019-06-22 08:35:28', NULL),
(7589, '2019-06-22', 78, '2019-06-22 08:35:33', NULL),
(7590, '2019-06-22', 151, '2019-06-22 08:35:40', NULL),
(7591, '2019-06-22', 161, '2019-06-22 08:35:45', '2019-06-22 12:23:34'),
(7592, '2019-06-22', 61, '2019-06-22 08:35:49', '2019-06-22 12:58:35'),
(7593, '2019-06-22', 112, '2019-06-22 08:35:52', '2019-06-22 10:55:12'),
(7594, '2019-06-22', 93, '2019-06-22 08:36:01', '2019-06-22 10:32:47'),
(7595, '2019-06-22', 17, '2019-06-22 08:36:15', '2019-06-22 10:20:37'),
(7596, '2019-06-22', 115, '2019-06-22 08:37:31', '2019-06-22 10:20:18'),
(7597, '2019-06-22', 186, '2019-06-22 08:37:42', '2019-06-22 11:43:18'),
(7598, '2019-06-22', 148, '2019-06-22 08:37:57', '2019-06-22 11:42:38'),
(7599, '2019-06-22', 58, '2019-06-22 08:38:54', '2019-06-22 12:52:08'),
(7600, '2019-06-22', 117, '2019-06-22 08:38:58', '2019-06-22 10:20:29'),
(7601, '2019-06-22', 77, '2019-06-22 08:39:10', NULL),
(7602, '2019-06-22', 113, '2019-06-22 08:40:57', NULL),
(7603, '2019-06-22', 48, '2019-06-22 08:41:19', '2019-06-22 12:53:21'),
(7604, '2019-06-22', 60, '2019-06-22 08:43:15', '2019-06-22 12:52:14'),
(7605, '2019-06-22', 153, '2019-06-22 08:48:29', '2019-06-22 11:42:44'),
(7606, '2019-06-22', 84, '2019-06-22 09:58:44', NULL),
(7607, '2019-06-22', 27, '2019-06-22 10:20:24', NULL),
(7608, '2019-06-22', 105, '2019-06-22 10:22:44', NULL),
(7609, '2019-06-22', 107, '2019-06-22 10:28:45', '2019-06-22 12:43:56'),
(7610, '2019-06-22', 106, '2019-06-22 10:31:02', NULL),
(7611, '2019-06-22', 187, '2019-06-22 10:31:49', '2019-06-22 12:41:49'),
(7612, '2019-06-22', 86, '2019-06-22 10:33:36', NULL),
(7613, '2019-06-22', 99, '2019-06-22 10:33:50', NULL),
(7614, '2019-06-22', 85, '2019-06-22 10:34:07', NULL),
(7615, '2019-06-22', 111, '2019-06-22 10:34:28', '2019-06-22 12:42:05'),
(7616, '2019-06-22', 149, '2019-06-22 10:39:24', NULL),
(7617, '2019-06-22', 104, '2019-06-22 10:39:28', '2019-06-22 12:42:14'),
(7618, '2019-06-22', 183, '2019-06-22 10:46:23', NULL),
(7619, '2019-06-22', 36, '2019-06-22 10:50:48', NULL),
(7620, '2019-06-22', 35, '2019-06-22 10:50:51', NULL),
(7621, '2019-06-22', 135, '2019-06-22 11:42:24', NULL),
(7622, '2019-06-22', 134, '2019-06-22 11:42:54', NULL),
(7623, '2019-06-22', 23, '2019-06-22 12:23:38', NULL),
(7624, '2019-06-22', 164, '2019-06-22 12:23:41', NULL),
(7625, '2019-06-22', 177, '2019-06-22 12:59:27', NULL),
(7626, '2019-06-23', 18, '2019-06-23 07:39:56', '2019-06-23 12:10:27'),
(7627, '2019-06-23', 34, '2019-06-23 07:39:59', '2019-06-23 10:21:57'),
(7628, '2019-06-23', 176, '2019-06-23 07:43:48', NULL),
(7629, '2019-06-23', 98, '2019-06-23 07:44:05', '2019-06-23 10:38:52'),
(7630, '2019-06-23', 154, '2019-06-23 07:46:09', '2019-06-23 11:39:09'),
(7631, '2019-06-23', 157, '2019-06-23 08:01:46', '2019-06-23 11:40:29'),
(7632, '2019-06-23', 48, '2019-06-23 08:03:43', '2019-06-23 12:51:25'),
(7633, '2019-06-23', 100, '2019-06-23 08:04:08', '2019-06-23 11:04:49'),
(7634, '2019-06-23', 23, '2019-06-23 08:04:31', '2019-06-23 12:10:05'),
(7635, '2019-06-23', 124, '2019-06-23 08:05:30', '2019-06-23 11:40:19'),
(7636, '2019-06-23', 89, '2019-06-23 08:05:38', NULL),
(7637, '2019-06-23', 156, '2019-06-23 08:05:44', '2019-06-23 11:41:09'),
(7638, '2019-06-23', 147, '2019-06-23 08:05:47', '2019-06-23 11:39:51'),
(7639, '2019-06-23', 99, '2019-06-23 08:06:16', '2019-06-23 10:38:12'),
(7640, '2019-06-23', 142, '2019-06-23 08:06:22', NULL),
(7641, '2019-06-23', 146, '2019-06-23 08:07:12', '2019-06-23 11:40:24'),
(7642, '2019-06-23', 84, '2019-06-23 08:07:17', '2019-06-23 10:39:29'),
(7643, '2019-06-23', 10, '2019-06-23 08:07:33', '2019-06-23 12:14:02'),
(7644, '2019-06-23', 46, '2019-06-23 08:07:46', '2019-06-23 12:50:40'),
(7645, '2019-06-23', 25, '2019-06-23 08:08:30', '2019-06-23 12:10:24'),
(7646, '2019-06-23', 96, '2019-06-23 08:08:45', NULL),
(7647, '2019-06-23', 167, '2019-06-23 08:08:51', '2019-06-23 12:50:47'),
(7648, '2019-06-23', 86, '2019-06-23 08:10:33', '2019-06-23 10:38:02'),
(7649, '2019-06-23', 50, '2019-06-23 08:11:19', '2019-06-23 12:52:10'),
(7650, '2019-06-23', 163, '2019-06-23 08:11:24', NULL),
(7651, '2019-06-23', 137, '2019-06-23 08:11:48', NULL),
(7652, '2019-06-23', 9, '2019-06-23 08:11:53', '2019-06-23 12:10:32'),
(7653, '2019-06-23', 63, '2019-06-23 08:12:27', NULL),
(7654, '2019-06-23', 151, '2019-06-23 08:13:07', '2019-06-23 11:40:41'),
(7655, '2019-06-23', 168, '2019-06-23 08:13:19', '2019-06-23 12:57:50'),
(7656, '2019-06-23', 141, '2019-06-23 08:14:16', '2019-06-23 11:40:07'),
(7657, '2019-06-23', 85, '2019-06-23 08:14:34', '2019-06-23 10:39:24'),
(7658, '2019-06-23', 178, '2019-06-23 08:14:40', NULL),
(7659, '2019-06-23', 97, '2019-06-23 08:14:51', NULL),
(7660, '2019-06-23', 133, '2019-06-23 08:15:04', '2019-06-23 11:39:35'),
(7661, '2019-06-23', 64, '2019-06-23 08:16:52', NULL),
(7662, '2019-06-23', 92, '2019-06-23 08:16:55', NULL),
(7663, '2019-06-23', 5, '2019-06-23 08:17:06', '2019-06-23 12:10:59'),
(7664, '2019-06-23', 80, '2019-06-23 08:17:13', '2019-06-23 09:31:41'),
(7665, '2019-06-23', 70, '2019-06-23 08:17:23', '2019-06-23 12:48:13'),
(7666, '2019-06-23', 16, '2019-06-23 08:17:40', '2019-06-23 12:10:52'),
(7667, '2019-06-23', 129, '2019-06-23 08:19:04', NULL),
(7668, '2019-06-23', 93, '2019-06-23 08:19:15', '2019-06-23 10:39:40'),
(7669, '2019-06-23', 68, '2019-06-23 08:19:20', NULL),
(7670, '2019-06-23', 130, '2019-06-23 08:20:18', NULL),
(7671, '2019-06-23', 125, '2019-06-23 08:20:23', '2019-06-23 11:40:03'),
(7672, '2019-06-23', 90, '2019-06-23 08:20:46', NULL),
(7673, '2019-06-23', 22, '2019-06-23 08:20:51', '2019-06-23 10:21:34'),
(7674, '2019-06-23', 11, '2019-06-23 08:20:58', '2019-06-23 12:10:40'),
(7675, '2019-06-23', 91, '2019-06-23 08:21:10', '2019-06-23 10:38:58'),
(7676, '2019-06-23', 45, '2019-06-23 08:22:41', '2019-06-23 12:51:53'),
(7677, '2019-06-23', 27, '2019-06-23 08:23:23', '2019-06-23 10:21:10'),
(7678, '2019-06-23', 169, '2019-06-23 08:23:58', '2019-06-23 12:52:46'),
(7679, '2019-06-23', 7, '2019-06-23 08:24:41', NULL),
(7680, '2019-06-23', 144, '2019-06-23 08:26:29', '2019-06-23 11:40:36'),
(7681, '2019-06-23', 78, '2019-06-23 08:34:11', '2019-06-23 10:38:32'),
(7682, '2019-06-23', 77, '2019-06-23 08:34:15', '2019-06-23 10:39:04'),
(7683, '2019-06-23', 145, '2019-06-23 08:34:31', '2019-06-23 11:39:23'),
(7684, '2019-06-23', 29, '2019-06-23 08:34:36', '2019-06-23 10:22:09'),
(7685, '2019-06-23', 8, '2019-06-23 08:34:43', '2019-06-23 12:10:20'),
(7686, '2019-06-23', 140, '2019-06-23 08:34:50', NULL),
(7687, '2019-06-23', 164, '2019-06-23 08:35:01', '2019-06-23 12:09:59'),
(7688, '2019-06-23', 131, '2019-06-23 08:35:07', '2019-06-23 11:41:14'),
(7689, '2019-06-23', 67, '2019-06-23 08:35:12', NULL),
(7690, '2019-06-23', 56, '2019-06-23 08:35:22', '2019-06-23 12:47:55'),
(7691, '2019-06-23', 150, '2019-06-23 08:35:30', '2019-06-23 11:39:58'),
(7692, '2019-06-23', 44, '2019-06-23 08:35:36', '2019-06-23 12:50:53'),
(7693, '2019-06-23', 71, '2019-06-23 08:35:46', '2019-06-23 12:50:23'),
(7694, '2019-06-23', 181, '2019-06-23 08:35:51', '2019-06-23 12:51:43'),
(7695, '2019-06-23', 162, '2019-06-23 08:35:56', NULL),
(7696, '2019-06-23', 182, '2019-06-23 08:36:00', '2019-06-23 12:10:43'),
(7697, '2019-06-23', 166, '2019-06-23 08:36:06', '2019-06-23 12:10:46'),
(7698, '2019-06-23', 112, '2019-06-23 08:36:14', NULL),
(7699, '2019-06-23', 60, '2019-06-23 08:36:52', NULL),
(7700, '2019-06-23', 148, '2019-06-23 08:38:50', '2019-06-23 11:40:14'),
(7701, '2019-06-23', 117, '2019-06-23 08:39:01', '2019-06-23 10:21:05'),
(7702, '2019-06-23', 186, '2019-06-23 08:39:23', '2019-06-23 11:39:40'),
(7703, '2019-06-23', 134, '2019-06-23 08:39:38', '2019-06-23 11:40:59'),
(7704, '2019-06-23', 113, '2019-06-23 08:45:58', '2019-06-23 10:22:16'),
(7705, '2019-06-23', 127, '2019-06-23 08:46:32', '2019-06-23 11:40:46'),
(7706, '2019-06-23', 159, '2019-06-23 09:32:23', '2019-06-23 10:37:58'),
(7707, '2019-06-23', 88, '2019-06-23 09:47:09', NULL),
(7708, '2019-06-23', 105, '2019-06-23 10:20:35', '2019-06-23 12:46:27'),
(7709, '2019-06-23', 37, '2019-06-23 10:22:03', NULL),
(7710, '2019-06-23', 187, '2019-06-23 10:29:16', '2019-06-23 12:48:01'),
(7711, '2019-06-23', 111, '2019-06-23 10:31:11', '2019-06-23 12:46:10'),
(7712, '2019-06-23', 106, '2019-06-23 10:32:38', '2019-06-23 12:46:04'),
(7713, '2019-06-23', 30, '2019-06-23 10:35:41', NULL),
(7714, '2019-06-23', 149, '2019-06-23 10:36:28', NULL),
(7715, '2019-06-23', 87, '2019-06-23 10:39:16', NULL),
(7716, '2019-06-23', 79, '2019-06-23 10:39:20', NULL),
(7717, '2019-06-23', 104, '2019-06-23 10:40:34', NULL),
(7718, '2019-06-23', 107, '2019-06-23 10:44:34', '2019-06-23 12:47:10'),
(7719, '2019-06-23', 183, '2019-06-23 10:53:34', '2019-06-23 12:46:00'),
(7720, '2019-06-23', 36, '2019-06-23 10:58:11', NULL),
(7721, '2019-06-23', 139, '2019-06-23 11:39:14', NULL),
(7722, '2019-06-23', 135, '2019-06-23 11:39:19', NULL),
(7723, '2019-06-23', 138, '2019-06-23 11:39:28', NULL),
(7724, '2019-06-23', 126, '2019-06-23 11:39:46', NULL),
(7725, '2019-06-23', 143, '2019-06-23 11:40:53', NULL),
(7726, '2019-06-23', 132, '2019-06-23 11:41:03', NULL),
(7727, '2019-06-23', 177, '2019-06-23 12:48:08', NULL),
(7728, '2019-06-23', 55, '2019-06-23 12:52:17', NULL),
(7729, '2019-06-23', 54, '2019-06-23 12:54:27', NULL),
(7730, '2019-06-25', 34, '2019-06-25 07:43:03', '2019-06-25 10:22:20'),
(7731, '2019-06-25', 18, '2019-06-25 07:43:12', '2019-06-25 12:09:46'),
(7732, '2019-06-25', 99, '2019-06-25 07:50:32', NULL),
(7733, '2019-06-25', 55, '2019-06-25 07:52:22', NULL),
(7734, '2019-06-25', 167, '2019-06-25 07:54:01', '2019-06-25 12:47:05'),
(7735, '2019-06-25', 57, '2019-06-25 07:54:25', '2019-06-25 12:48:27'),
(7736, '2019-06-25', 176, '2019-06-25 07:54:59', '2019-06-25 12:47:08'),
(7737, '2019-06-25', 115, '2019-06-25 07:55:02', NULL),
(7738, '2019-06-25', 25, '2019-06-25 07:56:57', '2019-06-25 12:01:45'),
(7739, '2019-06-25', 157, '2019-06-25 07:58:15', '2019-06-25 11:39:03'),
(7740, '2019-06-25', 67, '2019-06-25 08:02:00', NULL),
(7741, '2019-06-25', 133, '2019-06-25 08:04:25', '2019-06-25 11:37:54'),
(7742, '2019-06-25', 23, '2019-06-25 08:05:28', '2019-06-25 12:10:37'),
(7743, '2019-06-25', 96, '2019-06-25 08:06:33', NULL),
(7744, '2019-06-25', 139, '2019-06-25 08:06:53', '2019-06-25 11:38:12'),
(7745, '2019-06-25', 89, '2019-06-25 08:08:28', NULL),
(7746, '2019-06-25', 168, '2019-06-25 08:10:06', '2019-06-25 12:55:13'),
(7747, '2019-06-25', 48, '2019-06-25 08:10:50', '2019-06-25 12:46:36'),
(7748, '2019-06-25', 124, '2019-06-25 08:11:20', '2019-06-25 11:39:38'),
(7749, '2019-06-25', 56, '2019-06-25 08:11:33', '2019-06-25 12:54:18'),
(7750, '2019-06-25', 131, '2019-06-25 08:11:56', '2019-06-25 11:37:48'),
(7751, '2019-06-25', 46, '2019-06-25 08:12:13', '2019-06-25 12:47:18'),
(7752, '2019-06-25', 53, '2019-06-25 08:13:42', '2019-06-25 12:47:30'),
(7753, '2019-06-25', 37, '2019-06-25 08:13:54', '2019-06-25 10:20:44'),
(7754, '2019-06-25', 126, '2019-06-25 08:14:17', '2019-06-25 11:38:27'),
(7755, '2019-06-25', 151, '2019-06-25 08:14:33', '2019-06-25 11:39:08'),
(7756, '2019-06-25', 169, '2019-06-25 08:14:38', NULL),
(7757, '2019-06-25', 163, '2019-06-25 08:14:43', NULL),
(7758, '2019-06-25', 87, '2019-06-25 08:15:43', '2019-06-25 10:36:09'),
(7759, '2019-06-25', 14, '2019-06-25 08:15:47', '2019-06-25 12:10:07'),
(7760, '2019-06-25', 154, '2019-06-25 08:15:55', '2019-06-25 11:40:14'),
(7761, '2019-06-25', 177, '2019-06-25 08:16:03', '2019-06-25 12:48:23'),
(7762, '2019-06-25', 146, '2019-06-25 08:16:19', '2019-06-25 11:38:01'),
(7763, '2019-06-25', 93, '2019-06-25 08:16:34', '2019-06-25 10:35:46'),
(7764, '2019-06-25', 80, '2019-06-25 08:17:14', NULL),
(7765, '2019-06-25', 170, '2019-06-25 08:17:47', '2019-06-25 12:55:26'),
(7766, '2019-06-25', 92, '2019-06-25 08:18:05', NULL),
(7767, '2019-06-25', 68, '2019-06-25 08:18:49', '2019-06-25 12:52:34'),
(7768, '2019-06-25', 86, '2019-06-25 08:18:59', '2019-06-25 10:36:03'),
(7769, '2019-06-25', 142, '2019-06-25 08:20:12', '2019-06-25 11:39:50'),
(7770, '2019-06-25', 118, '2019-06-25 08:20:30', NULL),
(7771, '2019-06-25', 138, '2019-06-25 08:20:41', '2019-06-25 11:38:05'),
(7772, '2019-06-25', 7, '2019-06-25 08:20:50', NULL),
(7773, '2019-06-25', 161, '2019-06-25 08:21:03', NULL),
(7774, '2019-06-25', 98, '2019-06-25 08:21:13', NULL),
(7775, '2019-06-25', 128, '2019-06-25 08:21:28', '2019-06-25 11:39:34'),
(7776, '2019-06-25', 135, '2019-06-25 08:21:32', '2019-06-25 11:38:44'),
(7777, '2019-06-25', 181, '2019-06-25 08:21:37', '2019-06-25 12:46:45'),
(7778, '2019-06-25', 61, '2019-06-25 08:21:51', '2019-06-25 12:51:57'),
(7779, '2019-06-25', 143, '2019-06-25 08:22:18', NULL),
(7780, '2019-06-25', 63, '2019-06-25 08:23:08', '2019-06-25 12:52:00'),
(7781, '2019-06-25', 16, '2019-06-25 08:23:39', '2019-06-25 12:09:51'),
(7782, '2019-06-25', 64, '2019-06-25 08:23:53', NULL),
(7783, '2019-06-25', 70, '2019-06-25 08:23:59', '2019-06-25 12:55:05'),
(7784, '2019-06-25', 144, '2019-06-25 08:24:04', '2019-06-25 11:39:54'),
(7785, '2019-06-25', 69, '2019-06-25 08:24:08', NULL),
(7786, '2019-06-25', 110, '2019-06-25 08:24:35', '2019-06-25 10:26:27'),
(7787, '2019-06-25', 130, '2019-06-25 08:25:09', '2019-06-25 11:37:51'),
(7788, '2019-06-25', 91, '2019-06-25 08:25:17', '2019-06-25 10:35:53'),
(7789, '2019-06-25', 11, '2019-06-25 08:25:22', '2019-06-25 12:10:31'),
(7790, '2019-06-25', 182, '2019-06-25 08:25:31', '2019-06-25 12:11:48'),
(7791, '2019-06-25', 152, '2019-06-25 08:25:36', '2019-06-25 10:30:07'),
(7792, '2019-06-25', 22, '2019-06-25 08:32:53', '2019-06-25 10:22:03'),
(7793, '2019-06-25', 38, '2019-06-25 08:32:58', '2019-06-25 10:21:28'),
(7794, '2019-06-25', 117, '2019-06-25 08:33:23', '2019-06-25 10:29:23'),
(7795, '2019-06-25', 140, '2019-06-25 08:33:30', NULL),
(7796, '2019-06-25', 29, '2019-06-25 08:33:47', NULL),
(7797, '2019-06-25', 10, '2019-06-25 08:33:51', '2019-06-25 12:11:17'),
(7798, '2019-06-25', 66, '2019-06-25 08:34:13', NULL),
(7799, '2019-06-25', 72, '2019-06-25 08:34:24', '2019-06-25 12:55:29'),
(7800, '2019-06-25', 189, '2019-06-25 08:34:29', '2019-06-25 12:55:00'),
(7801, '2019-06-25', 45, '2019-06-25 08:34:45', '2019-06-25 12:46:49'),
(7802, '2019-06-25', 156, '2019-06-25 08:34:49', '2019-06-25 11:38:33'),
(7803, '2019-06-25', 148, '2019-06-25 08:34:53', '2019-06-25 11:39:18'),
(7804, '2019-06-25', 58, '2019-06-25 08:34:59', '2019-06-25 12:53:18'),
(7805, '2019-06-25', 162, '2019-06-25 08:35:03', NULL),
(7806, '2019-06-25', 141, '2019-06-25 08:35:09', '2019-06-25 11:38:08'),
(7807, '2019-06-25', 166, '2019-06-25 08:35:13', '2019-06-25 12:10:04'),
(7808, '2019-06-25', 39, '2019-06-25 08:35:20', NULL),
(7809, '2019-06-25', 112, '2019-06-25 08:35:26', '2019-06-25 10:29:34'),
(7810, '2019-06-25', 27, '2019-06-25 08:35:30', '2019-06-25 10:25:02'),
(7811, '2019-06-25', 186, '2019-06-25 08:35:33', '2019-06-25 11:39:14'),
(7812, '2019-06-25', 180, '2019-06-25 08:35:39', '2019-06-25 11:39:28'),
(7813, '2019-06-25', 77, '2019-06-25 08:35:43', NULL),
(7814, '2019-06-25', 52, '2019-06-25 08:35:47', '2019-06-25 12:47:22'),
(7815, '2019-06-25', 150, '2019-06-25 08:35:51', '2019-06-25 11:38:57'),
(7816, '2019-06-25', 113, '2019-06-25 08:35:57', '2019-06-25 10:22:06'),
(7817, '2019-06-25', 160, '2019-06-25 08:36:16', '2019-06-25 10:35:58'),
(7818, '2019-06-25', 8, '2019-06-25 08:36:21', '2019-06-25 12:10:16'),
(7819, '2019-06-25', 44, '2019-06-25 08:36:26', '2019-06-25 12:47:12'),
(7820, '2019-06-25', 127, '2019-06-25 08:36:31', '2019-06-25 10:34:12'),
(7821, '2019-06-25', 71, '2019-06-25 08:36:37', '2019-06-25 12:50:15'),
(7822, '2019-06-25', 19, '2019-06-25 08:41:22', NULL),
(7823, '2019-06-25', 88, '2019-06-25 08:42:38', '2019-06-25 10:36:12'),
(7824, '2019-06-25', 60, '2019-06-25 08:43:29', '2019-06-25 12:53:24'),
(7825, '2019-06-25', 134, '2019-06-25 08:47:49', '2019-06-25 11:39:43'),
(7826, '2019-06-25', 178, '2019-06-25 10:21:59', NULL),
(7827, '2019-06-25', 40, '2019-06-25 10:24:58', '2019-06-25 12:39:45'),
(7828, '2019-06-25', 174, '2019-06-25 10:25:50', '2019-06-25 12:41:01'),
(7829, '2019-06-25', 105, '2019-06-25 10:29:07', '2019-06-25 12:41:16'),
(7830, '2019-06-25', 104, '2019-06-25 10:34:53', '2019-06-25 12:41:38'),
(7831, '2019-06-25', 106, '2019-06-25 10:37:48', '2019-06-25 12:40:49'),
(7832, '2019-06-25', 102, '2019-06-25 10:38:31', '2019-06-25 12:40:44'),
(7833, '2019-06-25', 111, '2019-06-25 10:38:36', '2019-06-25 12:40:24'),
(7834, '2019-06-25', 42, '2019-06-25 10:38:55', '2019-06-25 12:39:31'),
(7835, '2019-06-25', 30, '2019-06-25 10:40:41', '2019-06-25 12:39:41'),
(7836, '2019-06-25', 107, '2019-06-25 10:41:31', '2019-06-25 12:41:33'),
(7837, '2019-06-25', 28, '2019-06-25 10:48:48', '2019-06-25 12:38:47'),
(7838, '2019-06-25', 35, '2019-06-25 10:53:14', NULL),
(7839, '2019-06-25', 183, '2019-06-25 10:58:14', '2019-06-25 12:40:56'),
(7840, '2019-06-25', 129, '2019-06-25 11:38:17', NULL),
(7841, '2019-06-25', 137, '2019-06-25 11:38:22', NULL),
(7842, '2019-06-25', 5, '2019-06-25 12:10:11', NULL),
(7843, '2019-06-25', 164, '2019-06-25 12:13:10', NULL),
(7844, '2019-06-25', 103, '2019-06-25 12:41:41', NULL),
(7845, '2019-06-25', 65, '2019-06-25 12:53:27', NULL),
(7846, '2019-06-26', 34, '2019-06-26 07:37:29', '2019-06-26 10:28:40'),
(7847, '2019-06-26', 18, '2019-06-26 07:37:34', NULL),
(7848, '2019-06-26', 67, '2019-06-26 07:43:02', NULL),
(7849, '2019-06-26', 99, '2019-06-26 07:47:22', NULL),
(7850, '2019-06-26', 98, '2019-06-26 07:53:50', NULL),
(7851, '2019-06-26', 167, '2019-06-26 07:53:53', '2019-06-26 12:48:55'),
(7852, '2019-06-26', 57, '2019-06-26 07:53:57', '2019-06-26 12:45:54'),
(7853, '2019-06-26', 176, '2019-06-26 07:54:06', NULL),
(7854, '2019-06-26', 162, '2019-06-26 07:59:25', '2019-06-26 12:06:14'),
(7855, '2019-06-26', 139, '2019-06-26 08:02:32', '2019-06-26 11:37:43'),
(7856, '2019-06-26', 51, '2019-06-26 08:02:36', NULL),
(7857, '2019-06-26', 23, '2019-06-26 08:03:12', NULL),
(7858, '2019-06-26', 31, '2019-06-26 08:03:16', '2019-06-26 10:21:27'),
(7859, '2019-06-26', 157, '2019-06-26 08:05:11', '2019-06-26 11:51:48'),
(7860, '2019-06-26', 124, '2019-06-26 08:05:18', '2019-06-26 11:37:53'),
(7861, '2019-06-26', 29, '2019-06-26 08:06:28', '2019-06-26 10:24:38'),
(7862, '2019-06-26', 169, '2019-06-26 08:08:59', NULL),
(7863, '2019-06-26', 163, '2019-06-26 08:09:14', NULL),
(7864, '2019-06-26', 85, '2019-06-26 08:09:46', NULL),
(7865, '2019-06-26', 170, '2019-06-26 08:11:46', '2019-06-26 12:43:50'),
(7866, '2019-06-26', 96, '2019-06-26 08:11:53', NULL),
(7867, '2019-06-26', 146, '2019-06-26 08:11:55', '2019-06-26 11:38:53'),
(7868, '2019-06-26', 89, '2019-06-26 08:12:08', NULL),
(7869, '2019-06-26', 9, '2019-06-26 08:12:12', '2019-06-26 12:06:53'),
(7870, '2019-06-26', 168, '2019-06-26 08:12:43', '2019-06-26 12:42:09'),
(7871, '2019-06-26', 138, '2019-06-26 08:15:06', '2019-06-26 11:38:30'),
(7872, '2019-06-26', 14, '2019-06-26 08:15:09', NULL),
(7873, '2019-06-26', 131, '2019-06-26 08:15:35', '2019-06-26 11:37:30'),
(7874, '2019-06-26', 129, '2019-06-26 08:15:57', '2019-06-26 11:38:06'),
(7875, '2019-06-26', 137, '2019-06-26 08:16:33', '2019-06-26 11:38:01'),
(7876, '2019-06-26', 171, '2019-06-26 08:17:08', NULL),
(7877, '2019-06-26', 92, '2019-06-26 08:17:33', '2019-06-26 10:30:36'),
(7878, '2019-06-26', 74, '2019-06-26 08:17:40', '2019-06-26 10:20:18'),
(7879, '2019-06-26', 145, '2019-06-26 08:17:45', '2019-06-26 11:38:24'),
(7880, '2019-06-26', 181, '2019-06-26 08:17:49', '2019-06-26 12:49:20'),
(7881, '2019-06-26', 38, '2019-06-26 08:18:10', '2019-06-26 10:19:55'),
(7882, '2019-06-26', 78, '2019-06-26 08:18:37', NULL),
(7883, '2019-06-26', 177, '2019-06-26 08:18:49', NULL),
(7884, '2019-06-26', 46, '2019-06-26 08:19:11', '2019-06-26 12:48:46'),
(7885, '2019-06-26', 7, '2019-06-26 08:20:12', NULL),
(7886, '2019-06-26', 45, '2019-06-26 08:20:23', '2019-06-26 12:49:38'),
(7887, '2019-06-26', 64, '2019-06-26 08:20:38', NULL),
(7888, '2019-06-26', 144, '2019-06-26 08:20:52', '2019-06-26 11:39:28'),
(7889, '2019-06-26', 5, '2019-06-26 08:21:03', '2019-06-26 12:07:07'),
(7890, '2019-06-26', 16, '2019-06-26 08:21:08', '2019-06-26 12:07:12'),
(7891, '2019-06-26', 15, '2019-06-26 08:22:02', NULL),
(7892, '2019-06-26', 70, '2019-06-26 08:22:24', '2019-06-26 12:46:13'),
(7893, '2019-06-26', 37, '2019-06-26 08:30:01', '2019-06-26 10:19:24'),
(7894, '2019-06-26', 97, '2019-06-26 08:30:18', NULL),
(7895, '2019-06-26', 133, '2019-06-26 08:30:28', '2019-06-26 11:38:09'),
(7896, '2019-06-26', 10, '2019-06-26 08:31:02', '2019-06-26 12:07:17'),
(7897, '2019-06-26', 8, '2019-06-26 08:31:12', '2019-06-26 12:06:47'),
(7898, '2019-06-26', 142, '2019-06-26 08:31:17', '2019-06-26 11:40:00'),
(7899, '2019-06-26', 66, '2019-06-26 08:31:21', NULL),
(7900, '2019-06-26', 63, '2019-06-26 08:31:30', '2019-06-26 12:48:58'),
(7901, '2019-06-26', 61, '2019-06-26 08:31:35', '2019-06-26 13:03:26'),
(7902, '2019-06-26', 71, '2019-06-26 08:31:39', '2019-06-26 12:46:07'),
(7903, '2019-06-26', 72, '2019-06-26 08:31:43', '2019-06-26 12:48:12'),
(7904, '2019-06-26', 44, '2019-06-26 08:31:53', '2019-06-26 12:48:51'),
(7905, '2019-06-26', 179, '2019-06-26 08:31:57', NULL),
(7906, '2019-06-26', 135, '2019-06-26 08:32:09', '2019-06-26 11:38:35'),
(7907, '2019-06-26', 90, '2019-06-26 08:32:12', '2019-06-26 10:19:34'),
(7908, '2019-06-26', 22, '2019-06-26 08:32:18', '2019-06-26 10:19:45'),
(7909, '2019-06-26', 91, '2019-06-26 08:32:26', '2019-06-26 10:20:31'),
(7910, '2019-06-26', 125, '2019-06-26 08:32:31', '2019-06-26 11:38:19'),
(7911, '2019-06-26', 140, '2019-06-26 08:32:36', NULL),
(7912, '2019-06-26', 88, '2019-06-26 08:32:41', '2019-06-26 10:20:48'),
(7913, '2019-06-26', 75, '2019-06-26 08:32:47', NULL),
(7914, '2019-06-26', 130, '2019-06-26 08:32:52', '2019-06-26 11:37:35'),
(7915, '2019-06-26', 11, '2019-06-26 08:32:57', '2019-06-26 12:07:23'),
(7916, '2019-06-26', 117, '2019-06-26 08:33:04', NULL),
(7917, '2019-06-26', 56, '2019-06-26 08:33:13', '2019-06-26 12:45:45'),
(7918, '2019-06-26', 68, '2019-06-26 08:33:18', '2019-06-26 12:46:19'),
(7919, '2019-06-26', 166, '2019-06-26 08:33:23', '2019-06-26 12:07:02'),
(7920, '2019-06-26', 52, '2019-06-26 08:33:26', '2019-06-26 12:49:07'),
(7921, '2019-06-26', 39, '2019-06-26 08:33:35', NULL),
(7922, '2019-06-26', 27, '2019-06-26 08:33:42', '2019-06-26 10:23:22'),
(7923, '2019-06-26', 87, '2019-06-26 08:33:50', NULL),
(7924, '2019-06-26', 186, '2019-06-26 08:34:08', '2019-06-26 11:38:43'),
(7925, '2019-06-26', 112, '2019-06-26 08:35:08', '2019-06-26 10:35:34'),
(7926, '2019-06-26', 150, '2019-06-26 08:35:25', '2019-06-26 11:37:40'),
(7927, '2019-06-26', 115, '2019-06-26 08:36:07', '2019-06-26 10:23:47'),
(7928, '2019-06-26', 128, '2019-06-26 08:36:41', '2019-06-26 11:38:14'),
(7929, '2019-06-26', 58, '2019-06-26 08:37:50', '2019-06-26 12:45:41'),
(7930, '2019-06-26', 160, '2019-06-26 08:37:56', '2019-06-26 10:20:45'),
(7931, '2019-06-26', 77, '2019-06-26 08:38:17', NULL),
(7932, '2019-06-26', 118, '2019-06-26 08:43:48', '2019-06-26 10:19:40'),
(7933, '2019-06-26', 127, '2019-06-26 08:45:00', '2019-06-26 11:39:38'),
(7934, '2019-06-26', 113, '2019-06-26 08:45:41', '2019-06-26 10:19:30'),
(7935, '2019-06-26', 134, '2019-06-26 08:47:25', '2019-06-26 11:39:51'),
(7936, '2019-06-26', 19, '2019-06-26 08:51:14', NULL),
(7937, '2019-06-26', 105, '2019-06-26 10:17:06', NULL),
(7938, '2019-06-26', 110, '2019-06-26 10:17:26', NULL),
(7939, '2019-06-26', 86, '2019-06-26 10:20:00', NULL),
(7940, '2019-06-26', 100, '2019-06-26 10:20:05', NULL),
(7941, '2019-06-26', 174, '2019-06-26 10:25:13', '2019-06-26 12:41:43'),
(7942, '2019-06-26', 106, '2019-06-26 10:33:44', '2019-06-26 12:41:04'),
(7943, '2019-06-26', 187, '2019-06-26 10:33:53', '2019-06-26 12:41:28'),
(7944, '2019-06-26', 40, '2019-06-26 10:34:21', NULL),
(7945, '2019-06-26', 102, '2019-06-26 10:36:11', '2019-06-26 12:41:00'),
(7946, '2019-06-26', 111, '2019-06-26 10:36:18', '2019-06-26 12:42:00'),
(7947, '2019-06-26', 104, '2019-06-26 10:37:08', '2019-06-26 12:31:53'),
(7948, '2019-06-26', 149, '2019-06-26 10:38:21', NULL),
(7949, '2019-06-26', 30, '2019-06-26 10:39:04', NULL),
(7950, '2019-06-26', 103, '2019-06-26 10:40:55', '2019-06-26 12:54:18'),
(7951, '2019-06-26', 107, '2019-06-26 10:43:36', '2019-06-26 12:42:12'),
(7952, '2019-06-26', 28, '2019-06-26 10:49:28', '2019-06-26 12:38:26'),
(7953, '2019-06-26', 183, '2019-06-26 10:54:14', '2019-06-26 12:41:26'),
(7954, '2019-06-26', 35, '2019-06-26 11:06:23', NULL),
(7955, '2019-06-26', 36, '2019-06-26 11:06:29', NULL),
(7956, '2019-06-26', 154, '2019-06-26 11:37:48', NULL),
(7957, '2019-06-26', 126, '2019-06-26 11:37:58', NULL),
(7958, '2019-06-26', 141, '2019-06-26 11:39:19', NULL),
(7959, '2019-06-26', 152, '2019-06-26 11:39:25', NULL),
(7960, '2019-06-26', 25, '2019-06-26 12:06:31', NULL),
(7961, '2019-06-26', 55, '2019-06-26 12:45:37', NULL),
(7962, '2019-06-26', 189, '2019-06-26 12:46:01', NULL),
(7963, '2019-06-26', 42, '2019-06-26 12:47:50', NULL),
(7964, '2019-06-29', 18, '2019-06-29 07:43:58', '2019-06-29 12:08:48'),
(7965, '2019-06-29', 55, '2019-06-29 07:44:02', '2019-06-29 12:45:53'),
(7966, '2019-06-29', 99, '2019-06-29 07:50:29', NULL),
(7967, '2019-06-29', 57, '2019-06-29 07:57:58', '2019-06-29 12:45:50'),
(7968, '2019-06-29', 25, '2019-06-29 08:00:24', '2019-06-29 12:08:56'),
(7969, '2019-06-29', 23, '2019-06-29 08:01:07', NULL),
(7970, '2019-06-29', 141, '2019-06-29 08:03:31', '2019-06-29 11:37:57'),
(7971, '2019-06-29', 95, '2019-06-29 08:07:01', '2019-06-29 10:43:23'),
(7972, '2019-06-29', 168, '2019-06-29 08:07:54', '2019-06-29 12:47:59'),
(7973, '2019-06-29', 150, '2019-06-29 08:08:01', '2019-06-29 11:38:11'),
(7974, '2019-06-29', 145, '2019-06-29 08:10:12', NULL),
(7975, '2019-06-29', 181, '2019-06-29 08:10:16', '2019-06-29 12:47:30'),
(7976, '2019-06-29', 7, '2019-06-29 08:11:15', '2019-06-29 12:08:52'),
(7977, '2019-06-29', 124, '2019-06-29 08:11:38', '2019-06-29 11:39:15'),
(7978, '2019-06-29', 89, '2019-06-29 08:12:06', NULL),
(7979, '2019-06-29', 53, '2019-06-29 08:12:11', '2019-06-29 12:48:02'),
(7980, '2019-06-29', 48, '2019-06-29 08:12:32', '2019-06-29 12:48:15'),
(7981, '2019-06-29', 87, '2019-06-29 08:13:52', '2019-06-29 10:45:14'),
(7982, '2019-06-29', 126, '2019-06-29 08:15:11', NULL),
(7983, '2019-06-29', 93, '2019-06-29 08:16:09', NULL),
(7984, '2019-06-29', 138, '2019-06-29 08:19:16', '2019-06-29 11:38:52'),
(7985, '2019-06-29', 46, '2019-06-29 08:20:21', '2019-06-29 12:47:26'),
(7986, '2019-06-29', 101, '2019-06-29 08:20:43', NULL),
(7987, '2019-06-29', 34, '2019-06-29 08:21:29', NULL),
(7988, '2019-06-29', 64, '2019-06-29 08:21:34', NULL),
(7989, '2019-06-29', 86, '2019-06-29 08:21:38', NULL),
(7990, '2019-06-29', 70, '2019-06-29 08:21:44', '2019-06-29 12:46:15'),
(7991, '2019-06-29', 5, '2019-06-29 08:22:09', '2019-06-29 12:10:20'),
(7992, '2019-06-29', 162, '2019-06-29 08:22:19', NULL),
(7993, '2019-06-29', 37, '2019-06-29 08:23:40', NULL),
(7994, '2019-06-29', 151, '2019-06-29 08:31:55', '2019-06-29 11:42:13'),
(7995, '2019-06-29', 146, '2019-06-29 08:32:03', '2019-06-29 11:38:04'),
(7996, '2019-06-29', 16, '2019-06-29 08:32:28', '2019-06-29 12:10:08'),
(7997, '2019-06-29', 10, '2019-06-29 08:32:32', '2019-06-29 12:09:45'),
(7998, '2019-06-29', 56, '2019-06-29 08:32:43', '2019-06-29 12:46:04'),
(7999, '2019-06-29', 75, '2019-06-29 08:33:20', NULL),
(8000, '2019-06-29', 128, '2019-06-29 08:33:33', '2019-06-29 11:38:01'),
(8001, '2019-06-29', 135, '2019-06-29 08:33:39', '2019-06-29 11:38:37'),
(8002, '2019-06-29', 38, '2019-06-29 08:33:42', '2019-06-29 10:17:18'),
(8003, '2019-06-29', 112, '2019-06-29 08:33:51', '2019-06-29 10:12:36'),
(8004, '2019-06-29', 142, '2019-06-29 08:33:56', '2019-06-29 11:38:55'),
(8005, '2019-06-29', 96, '2019-06-29 08:34:02', '2019-06-29 10:44:47'),
(8006, '2019-06-29', 27, '2019-06-29 08:34:12', NULL),
(8007, '2019-06-29', 177, '2019-06-29 08:34:19', '2019-06-29 12:46:09'),
(8008, '2019-06-29', 157, '2019-06-29 08:34:50', '2019-06-29 11:38:25'),
(8009, '2019-06-29', 130, '2019-06-29 08:37:36', '2019-06-29 11:39:19'),
(8010, '2019-06-29', 11, '2019-06-29 08:37:53', '2019-06-29 12:10:15'),
(8011, '2019-06-29', 26, '2019-06-29 08:38:20', '2019-06-29 10:40:50'),
(8012, '2019-06-29', 125, '2019-06-29 08:38:28', NULL),
(8013, '2019-06-29', 91, '2019-06-29 08:38:34', '2019-06-29 10:45:20'),
(8014, '2019-06-29', 60, '2019-06-29 08:38:59', NULL),
(8015, '2019-06-29', 22, '2019-06-29 08:39:13', '2019-06-29 10:41:34'),
(8016, '2019-06-29', 90, '2019-06-29 08:39:20', NULL),
(8017, '2019-06-29', 110, '2019-06-29 08:39:25', NULL),
(8018, '2019-06-29', 44, '2019-06-29 08:41:56', '2019-06-29 12:47:02'),
(8019, '2019-06-29', 113, '2019-06-29 08:42:19', '2019-06-29 10:39:38'),
(8020, '2019-06-29', 39, '2019-06-29 08:47:06', NULL),
(8021, '2019-06-29', 19, '2019-06-29 08:47:11', NULL),
(8022, '2019-06-29', 134, '2019-06-29 08:48:21', '2019-06-29 11:39:05'),
(8023, '2019-06-29', 67, '2019-06-29 09:06:04', NULL),
(8024, '2019-06-29', 107, '2019-06-29 09:56:32', '2019-06-29 12:23:43'),
(8025, '2019-06-29', 35, '2019-06-29 10:07:19', '2019-06-29 11:44:44'),
(8026, '2019-06-29', 36, '2019-06-29 10:07:22', NULL),
(8027, '2019-06-29', 103, '2019-06-29 10:37:28', '2019-06-29 12:21:55'),
(8028, '2019-06-29', 97, '2019-06-29 10:45:25', NULL),
(8029, '2019-06-29', 28, '2019-06-29 11:04:40', NULL),
(8030, '2019-06-29', 189, '2019-06-29 11:06:00', NULL),
(8031, '2019-06-29', 131, '2019-06-29 11:37:50', NULL),
(8032, '2019-06-29', 139, '2019-06-29 11:37:53', NULL),
(8033, '2019-06-29', 186, '2019-06-29 11:38:46', NULL),
(8034, '2019-06-29', 156, '2019-06-29 11:38:59', NULL),
(8035, '2019-06-29', 85, '2019-06-29 12:11:06', NULL),
(8036, '2019-06-29', 33, '2019-06-29 12:11:44', NULL);
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(8037, '2019-06-29', 111, '2019-06-29 12:13:09', NULL),
(8038, '2019-06-29', 187, '2019-06-29 12:20:50', NULL),
(8039, '2019-06-29', 174, '2019-06-29 12:21:13', NULL),
(8040, '2019-06-29', 105, '2019-06-29 12:23:40', NULL),
(8041, '2019-06-30', 55, '2019-06-30 07:39:51', NULL),
(8042, '2019-06-30', 34, '2019-06-30 07:40:20', NULL),
(8043, '2019-06-30', 18, '2019-06-30 07:40:30', '2019-06-30 12:08:14'),
(8044, '2019-06-30', 99, '2019-06-30 07:49:02', '2019-06-30 10:32:48'),
(8045, '2019-06-30', 167, '2019-06-30 07:53:30', '2019-06-30 12:38:41'),
(8046, '2019-06-30', 9, '2019-06-30 07:57:32', '2019-06-30 12:08:26'),
(8047, '2019-06-30', 95, '2019-06-30 07:58:50', '2019-06-30 10:31:30'),
(8048, '2019-06-30', 57, '2019-06-30 07:58:58', '2019-06-30 12:48:21'),
(8049, '2019-06-30', 98, '2019-06-30 07:59:12', '2019-06-30 10:31:43'),
(8050, '2019-06-30', 31, '2019-06-30 07:59:21', '2019-06-30 10:23:38'),
(8051, '2019-06-30', 25, '2019-06-30 07:59:26', '2019-06-30 12:08:19'),
(8052, '2019-06-30', 124, '2019-06-30 08:03:55', '2019-06-30 11:36:33'),
(8053, '2019-06-30', 48, '2019-06-30 08:04:08', '2019-06-30 12:38:46'),
(8054, '2019-06-30', 23, '2019-06-30 08:05:24', NULL),
(8055, '2019-06-30', 89, '2019-06-30 08:05:38', '2019-06-30 10:32:07'),
(8056, '2019-06-30', 156, '2019-06-30 08:06:31', '2019-06-30 11:35:46'),
(8057, '2019-06-30', 85, '2019-06-30 08:07:42', '2019-06-30 10:32:52'),
(8058, '2019-06-30', 142, '2019-06-30 08:07:52', '2019-06-30 11:38:37'),
(8059, '2019-06-30', 63, '2019-06-30 08:13:02', NULL),
(8060, '2019-06-30', 131, '2019-06-30 08:13:24', '2019-06-30 11:35:29'),
(8061, '2019-06-30', 126, '2019-06-30 08:14:19', NULL),
(8062, '2019-06-30', 7, '2019-06-30 08:14:36', NULL),
(8063, '2019-06-30', 78, '2019-06-30 08:14:51', '2019-06-30 10:31:19'),
(8064, '2019-06-30', 139, '2019-06-30 08:14:58', NULL),
(8065, '2019-06-30', 68, '2019-06-30 08:15:14', '2019-06-30 12:48:39'),
(8066, '2019-06-30', 138, '2019-06-30 08:15:58', '2019-06-30 11:36:49'),
(8067, '2019-06-30', 143, '2019-06-30 08:16:02', '2019-06-30 11:36:52'),
(8068, '2019-06-30', 168, '2019-06-30 08:16:32', '2019-06-30 12:36:21'),
(8069, '2019-06-30', 15, '2019-06-30 08:17:41', NULL),
(8070, '2019-06-30', 86, '2019-06-30 08:18:13', '2019-06-30 10:32:35'),
(8071, '2019-06-30', 38, '2019-06-30 08:18:23', '2019-06-30 10:22:16'),
(8072, '2019-06-30', 157, '2019-06-30 08:18:37', '2019-06-30 11:36:30'),
(8073, '2019-06-30', 133, '2019-06-30 08:19:01', NULL),
(8074, '2019-06-30', 161, '2019-06-30 08:19:24', '2019-06-30 12:22:38'),
(8075, '2019-06-30', 8, '2019-06-30 08:19:49', '2019-06-30 12:07:53'),
(8076, '2019-06-30', 135, '2019-06-30 08:21:53', '2019-06-30 11:40:59'),
(8077, '2019-06-30', 5, '2019-06-30 08:24:21', '2019-06-30 12:09:28'),
(8078, '2019-06-30', 97, '2019-06-30 08:28:59', '2019-06-30 10:33:07'),
(8079, '2019-06-30', 75, '2019-06-30 08:29:03', '2019-06-30 10:31:50'),
(8080, '2019-06-30', 180, '2019-06-30 08:29:22', NULL),
(8081, '2019-06-30', 146, '2019-06-30 08:29:32', NULL),
(8082, '2019-06-30', 128, '2019-06-30 08:29:37', '2019-06-30 11:35:26'),
(8083, '2019-06-30', 141, '2019-06-30 08:29:42', '2019-06-30 11:35:57'),
(8084, '2019-06-30', 162, '2019-06-30 08:29:47', '2019-06-30 12:07:47'),
(8085, '2019-06-30', 70, '2019-06-30 08:30:05', '2019-06-30 12:48:34'),
(8086, '2019-06-30', 69, '2019-06-30 08:30:11', NULL),
(8087, '2019-06-30', 66, '2019-06-30 08:30:16', NULL),
(8088, '2019-06-30', 152, '2019-06-30 08:30:21', '2019-06-30 11:36:41'),
(8089, '2019-06-30', 44, '2019-06-30 08:30:27', '2019-06-30 12:38:36'),
(8090, '2019-06-30', 72, '2019-06-30 08:30:32', '2019-06-30 12:48:04'),
(8091, '2019-06-30', 169, '2019-06-30 08:30:37', NULL),
(8092, '2019-06-30', 171, '2019-06-30 08:30:42', NULL),
(8093, '2019-06-30', 56, '2019-06-30 08:30:47', '2019-06-30 12:48:15'),
(8094, '2019-06-30', 46, '2019-06-30 08:30:52', '2019-06-30 12:40:15'),
(8095, '2019-06-30', 181, '2019-06-30 08:30:57', '2019-06-30 12:39:25'),
(8096, '2019-06-30', 145, '2019-06-30 08:31:06', NULL),
(8097, '2019-06-30', 151, '2019-06-30 08:31:12', '2019-06-30 11:36:19'),
(8098, '2019-06-30', 45, '2019-06-30 08:31:15', '2019-06-30 12:40:11'),
(8099, '2019-06-30', 27, '2019-06-30 08:31:20', '2019-06-30 10:22:14'),
(8100, '2019-06-30', 153, '2019-06-30 08:31:25', '2019-06-30 11:36:25'),
(8101, '2019-06-30', 53, '2019-06-30 08:31:30', '2019-06-30 12:52:13'),
(8102, '2019-06-30', 166, '2019-06-30 08:31:35', '2019-06-30 12:08:11'),
(8103, '2019-06-30', 177, '2019-06-30 08:32:07', '2019-06-30 12:48:09'),
(8104, '2019-06-30', 61, '2019-06-30 08:33:02', '2019-06-30 12:48:28'),
(8105, '2019-06-30', 110, '2019-06-30 08:33:06', '2019-06-30 10:31:59'),
(8106, '2019-06-30', 148, '2019-06-30 08:33:34', '2019-06-30 11:35:52'),
(8107, '2019-06-30', 117, '2019-06-30 08:33:49', '2019-06-30 10:22:09'),
(8108, '2019-06-30', 96, '2019-06-30 08:34:11', '2019-06-30 10:31:36'),
(8109, '2019-06-30', 112, '2019-06-30 08:35:56', '2019-06-30 10:40:51'),
(8110, '2019-06-30', 60, '2019-06-30 08:36:40', '2019-06-30 12:43:19'),
(8111, '2019-06-30', 130, '2019-06-30 08:37:57', '2019-06-30 11:35:23'),
(8112, '2019-06-30', 90, '2019-06-30 08:38:17', '2019-06-30 10:34:57'),
(8113, '2019-06-30', 125, '2019-06-30 08:38:25', '2019-06-30 11:36:07'),
(8114, '2019-06-30', 11, '2019-06-30 08:38:31', '2019-06-30 12:08:31'),
(8115, '2019-06-30', 91, '2019-06-30 08:38:45', '2019-06-30 10:32:43'),
(8116, '2019-06-30', 77, '2019-06-30 08:39:42', NULL),
(8117, '2019-06-30', 17, '2019-06-30 08:40:21', NULL),
(8118, '2019-06-30', 19, '2019-06-30 08:40:38', NULL),
(8119, '2019-06-30', 150, '2019-06-30 08:42:58', '2019-06-30 11:36:11'),
(8120, '2019-06-30', 113, '2019-06-30 08:45:17', '2019-06-30 10:21:56'),
(8121, '2019-06-30', 52, '2019-06-30 08:46:54', '2019-06-30 12:38:53'),
(8122, '2019-06-30', 134, '2019-06-30 08:47:31', '2019-06-30 11:36:02'),
(8123, '2019-06-30', 105, '2019-06-30 10:11:45', NULL),
(8124, '2019-06-30', 37, '2019-06-30 10:22:00', NULL),
(8125, '2019-06-30', 26, '2019-06-30 10:22:20', NULL),
(8126, '2019-06-30', 22, '2019-06-30 10:22:27', NULL),
(8127, '2019-06-30', 29, '2019-06-30 10:22:47', NULL),
(8128, '2019-06-30', 92, '2019-06-30 10:31:22', NULL),
(8129, '2019-06-30', 84, '2019-06-30 10:31:55', NULL),
(8130, '2019-06-30', 159, '2019-06-30 10:32:15', NULL),
(8131, '2019-06-30', 93, '2019-06-30 10:32:21', NULL),
(8132, '2019-06-30', 175, '2019-06-30 10:32:24', '2019-06-30 12:46:09'),
(8133, '2019-06-30', 88, '2019-06-30 10:33:01', NULL),
(8134, '2019-06-30', 40, '2019-06-30 10:33:16', NULL),
(8135, '2019-06-30', 102, '2019-06-30 10:35:56', NULL),
(8136, '2019-06-30', 106, '2019-06-30 10:36:08', '2019-06-30 12:46:38'),
(8137, '2019-06-30', 42, '2019-06-30 10:37:03', '2019-06-30 12:43:30'),
(8138, '2019-06-30', 103, '2019-06-30 10:38:40', NULL),
(8139, '2019-06-30', 104, '2019-06-30 10:38:43', '2019-06-30 12:46:25'),
(8140, '2019-06-30', 28, '2019-06-30 10:39:52', NULL),
(8141, '2019-06-30', 107, '2019-06-30 10:41:52', '2019-06-30 12:47:51'),
(8142, '2019-06-30', 137, '2019-06-30 11:35:32', NULL),
(8143, '2019-06-30', 129, '2019-06-30 11:36:46', NULL),
(8144, '2019-06-30', 127, '2019-06-30 11:36:58', NULL),
(8145, '2019-06-30', 144, '2019-06-30 11:38:32', NULL),
(8146, '2019-06-30', 16, '2019-06-30 12:09:21', NULL),
(8147, '2019-06-30', 170, '2019-06-30 12:36:35', NULL),
(8148, '2019-06-30', 179, '2019-06-30 12:36:38', NULL),
(8149, '2019-06-30', 176, '2019-06-30 12:39:20', NULL),
(8150, '2019-06-30', 174, '2019-06-30 12:46:34', NULL),
(8151, '2019-06-30', 189, '2019-06-30 12:49:13', NULL),
(8152, '2019-06-30', 71, '2019-06-30 12:57:56', NULL),
(8153, '2019-07-01', 34, '2019-07-01 07:59:26', '2019-07-01 09:58:53'),
(8154, '2019-07-01', 25, '2019-07-01 08:00:50', '2019-07-01 11:53:15'),
(8155, '2019-07-01', 176, '2019-07-01 08:01:13', '2019-07-01 12:41:25'),
(8156, '2019-07-01', 133, '2019-07-01 08:01:44', '2019-07-01 11:31:44'),
(8157, '2019-07-01', 48, '2019-07-01 08:03:09', '2019-07-01 12:41:33'),
(8158, '2019-07-01', 124, '2019-07-01 08:03:23', '2019-07-01 11:33:11'),
(8159, '2019-07-01', 67, '2019-07-01 08:05:28', '2019-07-01 12:36:07'),
(8160, '2019-07-01', 142, '2019-07-01 08:06:08', '2019-07-01 11:32:14'),
(8161, '2019-07-01', 169, '2019-07-01 08:06:19', '2019-07-01 12:40:59'),
(8162, '2019-07-01', 163, '2019-07-01 08:06:37', NULL),
(8163, '2019-07-01', 89, '2019-07-01 08:07:43', '2019-07-01 10:00:23'),
(8164, '2019-07-01', 138, '2019-07-01 08:07:52', '2019-07-01 11:32:23'),
(8165, '2019-07-01', 7, '2019-07-01 08:08:00', '2019-07-01 12:02:06'),
(8166, '2019-07-01', 101, '2019-07-01 08:09:37', '2019-07-01 10:03:31'),
(8167, '2019-07-01', 168, '2019-07-01 08:09:49', '2019-07-01 12:42:23'),
(8168, '2019-07-01', 55, '2019-07-01 08:11:20', '2019-07-01 12:34:30'),
(8169, '2019-07-01', 128, '2019-07-01 08:12:04', '2019-07-01 11:32:09'),
(8170, '2019-07-01', 68, '2019-07-01 08:12:25', '2019-07-01 12:43:38'),
(8171, '2019-07-01', 95, '2019-07-01 08:12:51', '2019-07-01 10:11:17'),
(8172, '2019-07-01', 131, '2019-07-01 08:13:28', '2019-07-01 11:31:30'),
(8173, '2019-07-01', 10, '2019-07-01 08:13:58', '2019-07-01 12:02:44'),
(8174, '2019-07-01', 46, '2019-07-01 08:14:22', '2019-07-01 12:41:14'),
(8175, '2019-07-01', 78, '2019-07-01 08:14:46', '2019-07-01 10:13:23'),
(8176, '2019-07-01', 181, '2019-07-01 08:14:54', '2019-07-01 12:41:38'),
(8177, '2019-07-01', 145, '2019-07-01 08:14:58', NULL),
(8178, '2019-07-01', 61, '2019-07-01 08:15:04', NULL),
(8179, '2019-07-01', 63, '2019-07-01 08:15:07', NULL),
(8180, '2019-07-01', 150, '2019-07-01 08:15:23', '2019-07-01 11:33:06'),
(8181, '2019-07-01', 86, '2019-07-01 08:16:21', '2019-07-01 10:14:01'),
(8182, '2019-07-01', 14, '2019-07-01 08:17:17', '2019-07-01 12:02:41'),
(8183, '2019-07-01', 139, '2019-07-01 08:17:22', NULL),
(8184, '2019-07-01', 27, '2019-07-01 08:17:26', NULL),
(8185, '2019-07-01', 171, '2019-07-01 08:17:48', NULL),
(8186, '2019-07-01', 9, '2019-07-01 08:19:07', NULL),
(8187, '2019-07-01', 140, '2019-07-01 08:19:56', NULL),
(8188, '2019-07-01', 93, '2019-07-01 08:20:17', '2019-07-01 10:09:50'),
(8189, '2019-07-01', 170, '2019-07-01 08:21:14', '2019-07-01 12:41:03'),
(8190, '2019-07-01', 144, '2019-07-01 08:22:29', '2019-07-01 11:31:47'),
(8191, '2019-07-01', 64, '2019-07-01 08:22:32', NULL),
(8192, '2019-07-01', 77, '2019-07-01 08:22:39', '2019-07-01 10:13:44'),
(8193, '2019-07-01', 70, '2019-07-01 08:22:52', NULL),
(8194, '2019-07-01', 80, '2019-07-01 08:30:52', NULL),
(8195, '2019-07-01', 99, '2019-07-01 08:31:09', NULL),
(8196, '2019-07-01', 23, '2019-07-01 08:31:19', '2019-07-01 11:53:00'),
(8197, '2019-07-01', 162, '2019-07-01 08:31:24', '2019-07-01 12:02:12'),
(8198, '2019-07-01', 16, '2019-07-01 08:31:28', '2019-07-01 12:02:17'),
(8199, '2019-07-01', 66, '2019-07-01 08:31:32', '2019-07-01 12:42:52'),
(8200, '2019-07-01', 45, '2019-07-01 08:31:51', '2019-07-01 12:42:10'),
(8201, '2019-07-01', 148, '2019-07-01 08:31:56', '2019-07-01 11:31:54'),
(8202, '2019-07-01', 135, '2019-07-01 08:32:01', '2019-07-01 11:32:40'),
(8203, '2019-07-01', 186, '2019-07-01 08:32:05', '2019-07-01 11:31:36'),
(8204, '2019-07-01', 152, '2019-07-01 08:32:10', '2019-07-01 11:31:59'),
(8205, '2019-07-01', 157, '2019-07-01 08:32:15', '2019-07-01 11:32:16'),
(8206, '2019-07-01', 72, '2019-07-01 08:32:20', '2019-07-01 12:50:47'),
(8207, '2019-07-01', 179, '2019-07-01 08:32:24', '2019-07-01 12:41:06'),
(8208, '2019-07-01', 60, '2019-07-01 08:32:30', '2019-07-01 12:42:35'),
(8209, '2019-07-01', 117, '2019-07-01 08:32:36', '2019-07-01 10:21:35'),
(8210, '2019-07-01', 88, '2019-07-01 08:32:41', '2019-07-01 10:20:32'),
(8211, '2019-07-01', 112, '2019-07-01 08:33:10', '2019-07-01 10:37:53'),
(8212, '2019-07-01', 56, '2019-07-01 08:33:32', '2019-07-01 12:42:42'),
(8213, '2019-07-01', 166, '2019-07-01 08:34:03', '2019-07-01 11:07:02'),
(8214, '2019-07-01', 19, '2019-07-01 08:34:34', NULL),
(8215, '2019-07-01', 151, '2019-07-01 08:35:13', NULL),
(8216, '2019-07-01', 110, '2019-07-01 08:35:26', NULL),
(8217, '2019-07-01', 31, '2019-07-01 08:35:38', NULL),
(8218, '2019-07-01', 11, '2019-07-01 08:37:17', '2019-07-01 12:02:22'),
(8219, '2019-07-01', 71, '2019-07-01 08:37:27', NULL),
(8220, '2019-07-01', 130, '2019-07-01 08:37:32', '2019-07-01 11:33:30'),
(8221, '2019-07-01', 125, '2019-07-01 08:37:37', '2019-07-01 11:33:01'),
(8222, '2019-07-01', 22, '2019-07-01 08:37:43', '2019-07-01 10:15:59'),
(8223, '2019-07-01', 153, '2019-07-01 08:37:49', '2019-07-01 11:33:16'),
(8224, '2019-07-01', 91, '2019-07-01 08:37:54', '2019-07-01 10:20:40'),
(8225, '2019-07-01', 8, '2019-07-01 08:37:58', '2019-07-01 12:02:37'),
(8226, '2019-07-01', 44, '2019-07-01 08:38:04', '2019-07-01 12:41:10'),
(8227, '2019-07-01', 26, '2019-07-01 08:38:58', '2019-07-01 10:03:25'),
(8228, '2019-07-01', 79, '2019-07-01 08:40:43', NULL),
(8229, '2019-07-01', 115, '2019-07-01 08:43:10', '2019-07-01 09:57:13'),
(8230, '2019-07-01', 53, '2019-07-01 08:43:18', '2019-07-01 12:42:45'),
(8231, '2019-07-01', 96, '2019-07-01 08:43:32', NULL),
(8232, '2019-07-01', 127, '2019-07-01 08:45:25', '2019-07-01 11:33:24'),
(8233, '2019-07-01', 134, '2019-07-01 08:47:24', '2019-07-01 11:32:56'),
(8234, '2019-07-01', 113, '2019-07-01 08:51:08', '2019-07-01 09:58:30'),
(8235, '2019-07-01', 15, '2019-07-01 09:37:34', NULL),
(8236, '2019-07-01', 38, '2019-07-01 09:54:33', NULL),
(8237, '2019-07-01', 92, '2019-07-01 10:00:34', NULL),
(8238, '2019-07-01', 37, '2019-07-01 10:04:05', NULL),
(8239, '2019-07-01', 40, '2019-07-01 10:05:14', NULL),
(8240, '2019-07-01', 105, '2019-07-01 10:11:43', '2019-07-01 11:55:45'),
(8241, '2019-07-01', 85, '2019-07-01 10:20:16', NULL),
(8242, '2019-07-01', 98, '2019-07-01 10:20:48', NULL),
(8243, '2019-07-01', 104, '2019-07-01 10:24:03', '2019-07-01 11:55:37'),
(8244, '2019-07-01', 107, '2019-07-01 10:26:44', '2019-07-01 11:54:35'),
(8245, '2019-07-01', 106, '2019-07-01 10:31:26', '2019-07-01 11:54:29'),
(8246, '2019-07-01', 149, '2019-07-01 10:32:47', NULL),
(8247, '2019-07-01', 187, '2019-07-01 10:36:13', '2019-07-01 11:54:18'),
(8248, '2019-07-01', 28, '2019-07-01 10:37:24', NULL),
(8249, '2019-07-01', 102, '2019-07-01 10:41:03', '2019-07-01 11:53:50'),
(8250, '2019-07-01', 111, '2019-07-01 10:41:06', '2019-07-01 11:54:23'),
(8251, '2019-07-01', 174, '2019-07-01 10:41:17', '2019-07-01 11:57:54'),
(8252, '2019-07-01', 33, '2019-07-01 10:41:32', NULL),
(8253, '2019-07-01', 41, '2019-07-01 10:41:37', NULL),
(8254, '2019-07-01', 42, '2019-07-01 10:42:27', NULL),
(8255, '2019-07-01', 183, '2019-07-01 10:43:50', '2019-07-01 11:53:56'),
(8256, '2019-07-01', 175, '2019-07-01 10:50:16', '2019-07-01 12:06:57'),
(8257, '2019-07-01', 35, '2019-07-01 10:56:08', NULL),
(8258, '2019-07-01', 36, '2019-07-01 10:56:33', NULL),
(8259, '2019-07-01', 141, '2019-07-01 11:31:41', NULL),
(8260, '2019-07-01', 180, '2019-07-01 11:32:04', NULL),
(8261, '2019-07-01', 143, '2019-07-01 11:32:46', NULL),
(8262, '2019-07-01', 132, '2019-07-01 11:32:50', NULL),
(8263, '2019-07-01', 103, '2019-07-01 11:56:13', NULL),
(8264, '2019-07-01', 182, '2019-07-01 11:56:42', NULL),
(8265, '2019-07-01', 18, '2019-07-01 12:01:53', NULL),
(8266, '2019-07-01', 164, '2019-07-01 12:02:27', NULL),
(8267, '2019-07-01', 5, '2019-07-01 12:02:47', NULL),
(8268, '2019-07-01', 52, '2019-07-01 12:41:17', NULL),
(8269, '2019-07-01', 57, '2019-07-01 12:44:39', NULL),
(8270, '2019-07-01', 177, '2019-07-01 12:45:05', NULL),
(8271, '2019-07-02', 147, '2019-07-02 07:39:26', '2019-07-02 11:40:34'),
(8272, '2019-07-02', 34, '2019-07-02 07:39:29', '2019-07-02 10:34:21'),
(8273, '2019-07-02', 18, '2019-07-02 07:39:38', '2019-07-02 12:09:18'),
(8274, '2019-07-02', 55, '2019-07-02 07:39:43', NULL),
(8275, '2019-07-02', 99, '2019-07-02 07:39:53', '2019-07-02 10:30:33'),
(8276, '2019-07-02', 154, '2019-07-02 07:50:26', '2019-07-02 10:51:31'),
(8277, '2019-07-02', 25, '2019-07-02 07:53:35', NULL),
(8278, '2019-07-02', 7, '2019-07-02 07:58:57', NULL),
(8279, '2019-07-02', 57, '2019-07-02 08:01:26', NULL),
(8280, '2019-07-02', 176, '2019-07-02 08:01:29', NULL),
(8281, '2019-07-02', 48, '2019-07-02 08:02:27', NULL),
(8282, '2019-07-02', 157, '2019-07-02 08:06:39', '2019-07-02 10:48:27'),
(8283, '2019-07-02', 46, '2019-07-02 08:06:44', '2019-07-02 12:43:16'),
(8284, '2019-07-02', 139, '2019-07-02 08:07:12', '2019-07-02 11:46:12'),
(8285, '2019-07-02', 95, '2019-07-02 08:08:10', '2019-07-02 10:31:01'),
(8286, '2019-07-02', 141, '2019-07-02 08:08:37', '2019-07-02 11:42:48'),
(8287, '2019-07-02', 87, '2019-07-02 08:08:43', '2019-07-02 10:32:20'),
(8288, '2019-07-02', 150, '2019-07-02 08:09:10', '2019-07-02 11:42:44'),
(8289, '2019-07-02', 85, '2019-07-02 08:09:42', '2019-07-02 10:31:33'),
(8290, '2019-07-02', 89, '2019-07-02 08:10:22', '2019-07-02 10:31:49'),
(8291, '2019-07-02', 170, '2019-07-02 08:10:42', NULL),
(8292, '2019-07-02', 168, '2019-07-02 08:11:41', NULL),
(8293, '2019-07-02', 101, '2019-07-02 08:12:39', '2019-07-02 10:30:49'),
(8294, '2019-07-02', 169, '2019-07-02 08:13:00', NULL),
(8295, '2019-07-02', 163, '2019-07-02 08:13:06', NULL),
(8296, '2019-07-02', 138, '2019-07-02 08:13:23', '2019-07-02 10:40:40'),
(8297, '2019-07-02', 31, '2019-07-02 08:14:04', '2019-07-02 10:08:18'),
(8298, '2019-07-02', 142, '2019-07-02 08:14:26', '2019-07-02 11:41:13'),
(8299, '2019-07-02', 131, '2019-07-02 08:15:56', '2019-07-02 10:52:01'),
(8300, '2019-07-02', 93, '2019-07-02 08:17:00', '2019-07-02 10:30:55'),
(8301, '2019-07-02', 61, '2019-07-02 08:17:13', NULL),
(8302, '2019-07-02', 145, '2019-07-02 08:17:18', '2019-07-02 11:45:57'),
(8303, '2019-07-02', 181, '2019-07-02 08:17:23', NULL),
(8304, '2019-07-02', 148, '2019-07-02 08:17:29', '2019-07-02 10:48:53'),
(8305, '2019-07-02', 86, '2019-07-02 08:17:36', '2019-07-02 10:31:13'),
(8306, '2019-07-02', 135, '2019-07-02 08:17:54', '2019-07-02 11:47:27'),
(8307, '2019-07-02', 63, '2019-07-02 08:20:07', NULL),
(8308, '2019-07-02', 144, '2019-07-02 08:21:45', NULL),
(8309, '2019-07-02', 70, '2019-07-02 08:21:54', NULL),
(8310, '2019-07-02', 37, '2019-07-02 08:29:27', '2019-07-02 10:02:48'),
(8311, '2019-07-02', 96, '2019-07-02 08:29:31', '2019-07-02 10:31:59'),
(8312, '2019-07-02', 77, '2019-07-02 08:29:35', '2019-07-02 10:31:06'),
(8313, '2019-07-02', 60, '2019-07-02 08:29:46', NULL),
(8314, '2019-07-02', 128, '2019-07-02 08:29:51', '2019-07-02 11:47:12'),
(8315, '2019-07-02', 38, '2019-07-02 08:29:55', '2019-07-02 10:21:32'),
(8316, '2019-07-02', 162, '2019-07-02 08:30:19', NULL),
(8317, '2019-07-02', 23, '2019-07-02 08:30:22', NULL),
(8318, '2019-07-02', 8, '2019-07-02 08:30:27', NULL),
(8319, '2019-07-02', 45, '2019-07-02 08:30:32', NULL),
(8320, '2019-07-02', 5, '2019-07-02 08:30:40', NULL),
(8321, '2019-07-02', 44, '2019-07-02 08:30:58', NULL),
(8322, '2019-07-02', 27, '2019-07-02 08:31:10', '2019-07-02 10:05:22'),
(8323, '2019-07-02', 72, '2019-07-02 08:31:14', NULL),
(8324, '2019-07-02', 152, '2019-07-02 08:31:19', '2019-07-02 11:53:56'),
(8325, '2019-07-02', 9, '2019-07-02 08:31:25', NULL),
(8326, '2019-07-02', 79, '2019-07-02 08:31:37', '2019-07-02 10:31:38'),
(8327, '2019-07-02', 53, '2019-07-02 08:31:41', NULL),
(8328, '2019-07-02', 71, '2019-07-02 08:31:51', NULL),
(8329, '2019-07-02', 166, '2019-07-02 08:32:49', '2019-07-02 11:20:44'),
(8330, '2019-07-02', 88, '2019-07-02 08:33:49', '2019-07-02 10:31:43'),
(8331, '2019-07-02', 112, '2019-07-02 08:34:11', '2019-07-02 10:35:41'),
(8332, '2019-07-02', 117, '2019-07-02 08:34:42', NULL),
(8333, '2019-07-02', 115, '2019-07-02 08:35:20', '2019-07-02 10:05:19'),
(8334, '2019-07-02', 110, '2019-07-02 08:36:03', NULL),
(8335, '2019-07-02', 102, '2019-07-02 08:36:26', '2019-07-02 10:30:36'),
(8336, '2019-07-02', 180, '2019-07-02 08:36:41', '2019-07-02 10:40:55'),
(8337, '2019-07-02', 66, '2019-07-02 08:40:01', NULL),
(8338, '2019-07-02', 80, '2019-07-02 08:40:05', NULL),
(8339, '2019-07-02', 127, '2019-07-02 08:41:12', NULL),
(8340, '2019-07-02', 90, '2019-07-02 08:41:32', NULL),
(8341, '2019-07-02', 130, '2019-07-02 08:41:36', '2019-07-02 10:40:51'),
(8342, '2019-07-02', 11, '2019-07-02 08:41:44', '2019-07-02 12:09:42'),
(8343, '2019-07-02', 125, '2019-07-02 08:41:47', '2019-07-02 11:46:07'),
(8344, '2019-07-02', 91, '2019-07-02 08:41:58', '2019-07-02 10:31:54'),
(8345, '2019-07-02', 19, '2019-07-02 08:42:15', NULL),
(8346, '2019-07-02', 113, '2019-07-02 08:43:18', '2019-07-02 10:34:26'),
(8347, '2019-07-02', 153, '2019-07-02 08:44:01', '2019-07-02 11:41:28'),
(8348, '2019-07-02', 134, '2019-07-02 08:45:32', '2019-07-02 11:47:41'),
(8349, '2019-07-02', 105, '2019-07-02 10:15:44', NULL),
(8350, '2019-07-02', 40, '2019-07-02 10:23:48', NULL),
(8351, '2019-07-02', 106, '2019-07-02 10:25:39', NULL),
(8352, '2019-07-02', 111, '2019-07-02 10:28:53', '2019-07-02 12:15:56'),
(8353, '2019-07-02', 33, '2019-07-02 10:28:58', '2019-07-02 11:31:42'),
(8354, '2019-07-02', 41, '2019-07-02 10:29:13', NULL),
(8355, '2019-07-02', 42, '2019-07-02 10:29:18', NULL),
(8356, '2019-07-02', 92, '2019-07-02 10:30:44', NULL),
(8357, '2019-07-02', 74, '2019-07-02 10:31:19', NULL),
(8358, '2019-07-02', 78, '2019-07-02 10:31:26', NULL),
(8359, '2019-07-02', 84, '2019-07-02 10:32:08', NULL),
(8360, '2019-07-02', 103, '2019-07-02 10:32:15', NULL),
(8361, '2019-07-02', 175, '2019-07-02 10:32:44', NULL),
(8362, '2019-07-02', 149, '2019-07-02 10:34:11', NULL),
(8363, '2019-07-02', 107, '2019-07-02 10:35:47', NULL),
(8364, '2019-07-02', 104, '2019-07-02 10:39:09', NULL),
(8365, '2019-07-02', 126, '2019-07-02 10:40:34', NULL),
(8366, '2019-07-02', 156, '2019-07-02 10:40:44', '2019-07-02 11:52:14'),
(8367, '2019-07-02', 174, '2019-07-02 10:43:26', NULL),
(8368, '2019-07-02', 28, '2019-07-02 10:43:30', NULL),
(8369, '2019-07-02', 35, '2019-07-02 10:44:22', NULL),
(8370, '2019-07-02', 36, '2019-07-02 10:44:47', NULL),
(8371, '2019-07-02', 187, '2019-07-02 10:47:43', NULL),
(8372, '2019-07-02', 133, '2019-07-02 10:48:23', NULL),
(8373, '2019-07-02', 124, '2019-07-02 11:39:14', NULL),
(8374, '2019-07-02', 151, '2019-07-02 11:42:38', NULL),
(8375, '2019-07-02', 140, '2019-07-02 11:46:03', NULL),
(8376, '2019-07-02', 146, '2019-07-02 11:46:46', NULL),
(8377, '2019-07-02', 132, '2019-07-02 11:48:21', NULL),
(8378, '2019-07-02', 137, '2019-07-02 11:50:56', NULL),
(8379, '2019-07-03', 147, '2019-07-03 07:37:24', NULL),
(8380, '2019-07-03', 167, '2019-07-03 07:38:09', NULL),
(8381, '2019-07-03', 34, '2019-07-03 07:38:14', '2019-07-03 10:21:53'),
(8382, '2019-07-03', 18, '2019-07-03 07:38:22', '2019-07-03 11:29:46'),
(8383, '2019-07-03', 55, '2019-07-03 07:38:26', '2019-07-03 11:44:28'),
(8384, '2019-07-03', 99, '2019-07-03 07:48:42', '2019-07-03 10:35:22'),
(8385, '2019-07-03', 124, '2019-07-03 07:56:28', '2019-07-03 11:34:13'),
(8386, '2019-07-03', 48, '2019-07-03 07:56:31', '2019-07-03 11:31:50'),
(8387, '2019-07-03', 98, '2019-07-03 07:58:52', '2019-07-03 10:35:29'),
(8388, '2019-07-03', 57, '2019-07-03 07:59:36', '2019-07-03 11:32:54'),
(8389, '2019-07-03', 154, '2019-07-03 08:02:05', '2019-07-03 11:34:35'),
(8390, '2019-07-03', 25, '2019-07-03 08:02:45', '2019-07-03 11:29:43'),
(8391, '2019-07-03', 133, '2019-07-03 08:05:32', '2019-07-03 11:35:13'),
(8392, '2019-07-03', 169, '2019-07-03 08:05:51', '2019-07-03 11:41:07'),
(8393, '2019-07-03', 163, '2019-07-03 08:05:55', NULL),
(8394, '2019-07-03', 7, '2019-07-03 08:07:25', NULL),
(8395, '2019-07-03', 131, '2019-07-03 08:07:38', '2019-07-03 11:34:07'),
(8396, '2019-07-03', 61, '2019-07-03 08:09:26', '2019-07-03 11:32:50'),
(8397, '2019-07-03', 139, '2019-07-03 08:09:37', '2019-07-03 11:36:41'),
(8398, '2019-07-03', 143, '2019-07-03 08:10:02', '2019-07-03 11:35:44'),
(8399, '2019-07-03', 138, '2019-07-03 08:10:07', '2019-07-03 11:36:00'),
(8400, '2019-07-03', 89, '2019-07-03 08:11:26', '2019-07-03 10:37:14'),
(8401, '2019-07-03', 95, '2019-07-03 08:12:57', '2019-07-03 10:36:53'),
(8402, '2019-07-03', 44, '2019-07-03 08:13:50', '2019-07-03 11:29:57'),
(8403, '2019-07-03', 51, '2019-07-03 08:13:56', NULL),
(8404, '2019-07-03', 145, '2019-07-03 08:14:05', NULL),
(8405, '2019-07-03', 181, '2019-07-03 08:14:10', '2019-07-03 11:32:18'),
(8406, '2019-07-03', 168, '2019-07-03 08:14:14', NULL),
(8407, '2019-07-03', 27, '2019-07-03 08:14:26', '2019-07-03 10:18:02'),
(8408, '2019-07-03', 141, '2019-07-03 08:14:33', '2019-07-03 11:34:40'),
(8409, '2019-07-03', 128, '2019-07-03 08:14:40', '2019-07-03 11:34:29'),
(8410, '2019-07-03', 142, '2019-07-03 08:15:45', '2019-07-03 11:35:41'),
(8411, '2019-07-03', 29, '2019-07-03 08:17:07', '2019-07-03 10:22:10'),
(8412, '2019-07-03', 129, '2019-07-03 08:17:27', '2019-07-03 11:34:10'),
(8413, '2019-07-03', 67, '2019-07-03 08:18:17', NULL),
(8414, '2019-07-03', 170, '2019-07-03 08:18:29', '2019-07-03 11:41:16'),
(8415, '2019-07-03', 150, '2019-07-03 08:19:43', '2019-07-03 11:34:25'),
(8416, '2019-07-03', 144, '2019-07-03 08:20:42', '2019-07-03 11:35:05'),
(8417, '2019-07-03', 70, '2019-07-03 08:20:50', '2019-07-03 11:33:25'),
(8418, '2019-07-03', 5, '2019-07-03 08:20:55', NULL),
(8419, '2019-07-03', 9, '2019-07-03 08:20:59', '2019-07-03 11:30:08'),
(8420, '2019-07-03', 10, '2019-07-03 08:21:45', '2019-07-03 11:29:51'),
(8421, '2019-07-03', 15, '2019-07-03 08:26:55', NULL),
(8422, '2019-07-03', 26, '2019-07-03 08:31:14', '2019-07-03 10:18:31'),
(8423, '2019-07-03', 78, '2019-07-03 08:31:21', '2019-07-03 10:35:38'),
(8424, '2019-07-03', 75, '2019-07-03 08:31:25', NULL),
(8425, '2019-07-03', 86, '2019-07-03 08:31:30', '2019-07-03 10:36:47'),
(8426, '2019-07-03', 84, '2019-07-03 08:31:34', '2019-07-03 10:36:22'),
(8427, '2019-07-03', 37, '2019-07-03 08:31:38', '2019-07-03 10:21:40'),
(8428, '2019-07-03', 162, '2019-07-03 08:32:12', '2019-07-03 11:29:18'),
(8429, '2019-07-03', 56, '2019-07-03 08:32:16', NULL),
(8430, '2019-07-03', 68, '2019-07-03 08:32:21', '2019-07-03 11:37:24'),
(8431, '2019-07-03', 16, '2019-07-03 08:32:25', '2019-07-03 11:30:45'),
(8432, '2019-07-03', 23, '2019-07-03 08:32:30', '2019-07-03 11:29:28'),
(8433, '2019-07-03', 66, '2019-07-03 08:32:34', '2019-07-03 11:33:20'),
(8434, '2019-07-03', 63, '2019-07-03 08:32:40', NULL),
(8435, '2019-07-03', 45, '2019-07-03 08:32:49', '2019-07-03 11:44:20'),
(8436, '2019-07-03', 171, '2019-07-03 08:32:55', '2019-07-03 11:41:27'),
(8437, '2019-07-03', 38, '2019-07-03 08:33:00', '2019-07-03 10:22:03'),
(8438, '2019-07-03', 179, '2019-07-03 08:33:05', '2019-07-03 11:41:21'),
(8439, '2019-07-03', 166, '2019-07-03 08:33:10', '2019-07-03 11:30:20'),
(8440, '2019-07-03', 135, '2019-07-03 08:33:13', '2019-07-03 11:34:52'),
(8441, '2019-07-03', 71, '2019-07-03 08:33:24', '2019-07-03 11:33:29'),
(8442, '2019-07-03', 77, '2019-07-03 08:33:29', '2019-07-03 10:36:42'),
(8443, '2019-07-03', 180, '2019-07-03 08:33:35', NULL),
(8444, '2019-07-03', 177, '2019-07-03 08:33:40', '2019-07-03 11:32:58'),
(8445, '2019-07-03', 88, '2019-07-03 08:33:44', '2019-07-03 10:37:17'),
(8446, '2019-07-03', 112, '2019-07-03 08:35:02', '2019-07-03 10:51:16'),
(8447, '2019-07-03', 148, '2019-07-03 08:36:25', '2019-07-03 11:34:58'),
(8448, '2019-07-03', 53, '2019-07-03 08:36:39', '2019-07-03 11:31:58'),
(8449, '2019-07-03', 117, '2019-07-03 08:37:42', '2019-07-03 10:21:56'),
(8450, '2019-07-03', 60, '2019-07-03 08:38:43', '2019-07-03 11:36:51'),
(8451, '2019-07-03', 153, '2019-07-03 08:39:15', '2019-07-03 11:36:12'),
(8452, '2019-07-03', 79, '2019-07-03 08:40:04', NULL),
(8453, '2019-07-03', 52, '2019-07-03 08:40:53', '2019-07-03 11:31:13'),
(8454, '2019-07-03', 11, '2019-07-03 08:41:05', '2019-07-03 11:30:51'),
(8455, '2019-07-03', 130, '2019-07-03 08:41:12', '2019-07-03 11:36:25'),
(8456, '2019-07-03', 90, '2019-07-03 08:41:16', NULL),
(8457, '2019-07-03', 125, '2019-07-03 08:41:19', '2019-07-03 11:36:47'),
(8458, '2019-07-03', 91, '2019-07-03 08:41:32', '2019-07-03 10:35:52'),
(8459, '2019-07-03', 115, '2019-07-03 08:41:47', '2019-07-03 10:22:25'),
(8460, '2019-07-03', 127, '2019-07-03 08:42:01', '2019-07-03 11:36:07'),
(8461, '2019-07-03', 19, '2019-07-03 08:43:42', NULL),
(8462, '2019-07-03', 134, '2019-07-03 08:48:09', '2019-07-03 11:36:30'),
(8463, '2019-07-03', 113, '2019-07-03 08:50:26', '2019-07-03 10:21:44'),
(8464, '2019-07-03', 105, '2019-07-03 10:10:02', '2019-07-03 11:37:14'),
(8465, '2019-07-03', 40, '2019-07-03 10:11:18', NULL),
(8466, '2019-07-03', 174, '2019-07-03 10:17:04', '2019-07-03 11:37:00'),
(8467, '2019-07-03', 178, '2019-07-03 10:22:00', NULL),
(8468, '2019-07-03', 31, '2019-07-03 10:22:19', NULL),
(8469, '2019-07-03', 36, '2019-07-03 10:22:33', '2019-07-03 11:26:06'),
(8470, '2019-07-03', 35, '2019-07-03 10:22:53', NULL),
(8471, '2019-07-03', 156, '2019-07-03 10:25:03', '2019-07-03 11:35:35'),
(8472, '2019-07-03', 104, '2019-07-03 10:27:52', '2019-07-03 11:36:37'),
(8473, '2019-07-03', 149, '2019-07-03 10:28:47', NULL),
(8474, '2019-07-03', 30, '2019-07-03 10:31:40', NULL),
(8475, '2019-07-03', 175, '2019-07-03 10:32:10', '2019-07-03 11:36:18'),
(8476, '2019-07-03', 106, '2019-07-03 10:32:18', NULL),
(8477, '2019-07-03', 183, '2019-07-03 10:34:00', '2019-07-03 11:36:55'),
(8478, '2019-07-03', 92, '2019-07-03 10:35:18', NULL),
(8479, '2019-07-03', 28, '2019-07-03 10:35:44', NULL),
(8480, '2019-07-03', 85, '2019-07-03 10:36:12', NULL),
(8481, '2019-07-03', 159, '2019-07-03 10:36:30', NULL),
(8482, '2019-07-03', 110, '2019-07-03 10:36:37', NULL),
(8483, '2019-07-03', 101, '2019-07-03 10:37:01', NULL),
(8484, '2019-07-03', 93, '2019-07-03 10:37:08', NULL),
(8485, '2019-07-03', 102, '2019-07-03 10:37:37', NULL),
(8486, '2019-07-03', 97, '2019-07-03 10:37:40', NULL),
(8487, '2019-07-03', 111, '2019-07-03 10:37:58', '2019-07-03 11:57:14'),
(8488, '2019-07-03', 33, '2019-07-03 10:38:07', NULL),
(8489, '2019-07-03', 107, '2019-07-03 10:45:35', NULL),
(8490, '2019-07-03', 176, '2019-07-03 11:32:24', NULL),
(8491, '2019-07-03', 72, '2019-07-03 11:33:07', NULL),
(8492, '2019-07-03', 126, '2019-07-03 11:34:20', NULL),
(8493, '2019-07-03', 152, '2019-07-03 11:35:19', NULL),
(8494, '2019-07-03', 137, '2019-07-03 11:35:25', NULL),
(8495, '2019-07-03', 151, '2019-07-03 11:35:29', NULL),
(8496, '2019-07-03', 103, '2019-07-03 11:37:18', NULL),
(8497, '2019-07-03', 14, '2019-07-03 11:41:11', NULL),
(8498, '2019-07-06', 18, '2019-07-06 07:45:20', '2019-07-06 12:08:31'),
(8499, '2019-07-06', 176, '2019-07-06 07:59:37', '2019-07-06 12:46:03'),
(8500, '2019-07-06', 67, '2019-07-06 08:01:53', '2019-07-06 12:46:31'),
(8501, '2019-07-06', 23, '2019-07-06 08:05:30', NULL),
(8502, '2019-07-06', 142, '2019-07-06 08:11:59', '2019-07-06 11:34:38'),
(8503, '2019-07-06', 126, '2019-07-06 08:15:14', NULL),
(8504, '2019-07-06', 63, '2019-07-06 08:15:39', NULL),
(8505, '2019-07-06', 46, '2019-07-06 08:16:31', '2019-07-06 12:44:32'),
(8506, '2019-07-06', 26, '2019-07-06 08:16:56', '2019-07-06 10:22:49'),
(8507, '2019-07-06', 124, '2019-07-06 08:19:27', '2019-07-06 11:33:56'),
(8508, '2019-07-06', 39, '2019-07-06 08:20:52', NULL),
(8509, '2019-07-06', 10, '2019-07-06 08:22:41', '2019-07-06 12:11:24'),
(8510, '2019-07-06', 135, '2019-07-06 08:22:58', '2019-07-06 11:34:12'),
(8511, '2019-07-06', 75, '2019-07-06 08:24:09', NULL),
(8512, '2019-07-06', 61, '2019-07-06 08:24:53', NULL),
(8513, '2019-07-06', 138, '2019-07-06 08:26:04', '2019-07-06 11:34:28'),
(8514, '2019-07-06', 72, '2019-07-06 08:27:04', NULL),
(8515, '2019-07-06', 152, '2019-07-06 08:27:15', '2019-07-06 11:34:48'),
(8516, '2019-07-06', 97, '2019-07-06 08:27:19', '2019-07-06 10:30:40'),
(8517, '2019-07-06', 68, '2019-07-06 08:27:52', '2019-07-06 12:47:06'),
(8518, '2019-07-06', 96, '2019-07-06 08:31:05', '2019-07-06 10:30:31'),
(8519, '2019-07-06', 177, '2019-07-06 08:31:30', NULL),
(8520, '2019-07-06', 16, '2019-07-06 08:36:21', '2019-07-06 12:11:57'),
(8521, '2019-07-06', 144, '2019-07-06 08:36:24', '2019-07-06 11:34:06'),
(8522, '2019-07-06', 70, '2019-07-06 08:36:40', '2019-07-06 12:55:21'),
(8523, '2019-07-06', 60, '2019-07-06 08:41:19', '2019-07-06 12:46:51'),
(8524, '2019-07-06', 52, '2019-07-06 08:42:40', NULL),
(8525, '2019-07-06', 11, '2019-07-06 08:42:53', NULL),
(8526, '2019-07-06', 90, '2019-07-06 08:42:56', '2019-07-06 10:30:21'),
(8527, '2019-07-06', 91, '2019-07-06 08:43:01', '2019-07-06 10:30:37'),
(8528, '2019-07-06', 125, '2019-07-06 08:43:06', '2019-07-06 11:34:43'),
(8529, '2019-07-06', 113, '2019-07-06 08:44:01', '2019-07-06 10:22:33'),
(8530, '2019-07-06', 79, '2019-07-06 08:46:24', '2019-07-06 10:30:24'),
(8531, '2019-07-06', 88, '2019-07-06 08:48:23', NULL),
(8532, '2019-07-06', 151, '2019-07-06 08:48:28', '2019-07-06 11:34:02'),
(8533, '2019-07-06', 134, '2019-07-06 08:54:45', '2019-07-06 11:34:33'),
(8534, '2019-07-06', 105, '2019-07-06 10:12:31', '2019-07-06 12:46:13'),
(8535, '2019-07-06', 40, '2019-07-06 10:13:02', '2019-07-06 12:12:28'),
(8536, '2019-07-06', 159, '2019-07-06 10:30:47', NULL),
(8537, '2019-07-06', 84, '2019-07-06 10:30:54', NULL),
(8538, '2019-07-06', 174, '2019-07-06 10:31:56', NULL),
(8539, '2019-07-06', 111, '2019-07-06 10:40:08', NULL),
(8540, '2019-07-06', 42, '2019-07-06 10:40:26', NULL),
(8541, '2019-07-06', 187, '2019-07-06 10:41:20', '2019-07-06 12:44:49'),
(8542, '2019-07-06', 28, '2019-07-06 10:44:47', NULL),
(8543, '2019-07-06', 131, '2019-07-06 11:33:31', NULL),
(8544, '2019-07-06', 132, '2019-07-06 11:33:34', NULL),
(8545, '2019-07-06', 133, '2019-07-06 11:34:18', NULL),
(8546, '2019-07-06', 137, '2019-07-06 11:34:22', NULL),
(8547, '2019-07-06', 44, '2019-07-06 12:44:38', NULL),
(8548, '2019-07-06', 71, '2019-07-06 12:46:40', NULL),
(8549, '2019-07-06', 56, '2019-07-06 12:46:56', NULL),
(8550, '2019-07-07', 98, '2019-07-07 08:00:55', '2019-07-07 10:32:24'),
(8551, '2019-07-07', 157, '2019-07-07 08:01:10', '2019-07-07 11:36:52'),
(8552, '2019-07-07', 57, '2019-07-07 08:01:13', NULL),
(8553, '2019-07-07', 139, '2019-07-07 08:01:22', '2019-07-07 11:38:03'),
(8554, '2019-07-07', 167, '2019-07-07 08:05:05', '2019-07-07 12:43:39'),
(8555, '2019-07-07', 14, '2019-07-07 08:08:55', '2019-07-07 12:39:37'),
(8556, '2019-07-07', 146, '2019-07-07 08:09:00', NULL),
(8557, '2019-07-07', 170, '2019-07-07 08:09:05', '2019-07-07 12:43:30'),
(8558, '2019-07-07', 13, '2019-07-07 08:11:19', NULL),
(8559, '2019-07-07', 150, '2019-07-07 08:13:33', '2019-07-07 11:37:08'),
(8560, '2019-07-07', 92, '2019-07-07 08:14:46', '2019-07-07 10:32:29'),
(8561, '2019-07-07', 84, '2019-07-07 08:15:17', '2019-07-07 10:32:58'),
(8562, '2019-07-07', 86, '2019-07-07 08:16:03', '2019-07-07 10:32:49'),
(8563, '2019-07-07', 129, '2019-07-07 08:18:43', NULL),
(8564, '2019-07-07', 7, '2019-07-07 08:21:04', '2019-07-07 12:08:05'),
(8565, '2019-07-07', 50, '2019-07-07 08:21:10', NULL),
(8566, '2019-07-07', 101, '2019-07-07 08:21:23', '2019-07-07 10:33:15'),
(8567, '2019-07-07', 68, '2019-07-07 08:21:29', NULL),
(8568, '2019-07-07', 75, '2019-07-07 08:21:50', NULL),
(8569, '2019-07-07', 159, '2019-07-07 08:22:43', NULL),
(8570, '2019-07-07', 131, '2019-07-07 08:24:52', '2019-07-07 11:41:33'),
(8571, '2019-07-07', 144, '2019-07-07 08:25:05', '2019-07-07 11:37:03'),
(8572, '2019-07-07', 5, '2019-07-07 08:25:11', NULL),
(8573, '2019-07-07', 16, '2019-07-07 08:25:31', '2019-07-07 12:07:53'),
(8574, '2019-07-07', 56, '2019-07-07 08:25:39', '2019-07-07 12:59:21'),
(8575, '2019-07-07', 70, '2019-07-07 08:25:43', '2019-07-07 13:05:49'),
(8576, '2019-07-07', 69, '2019-07-07 08:25:49', NULL),
(8577, '2019-07-07', 15, '2019-07-07 08:26:09', NULL),
(8578, '2019-07-07', 39, '2019-07-07 08:26:37', '2019-07-07 10:20:01'),
(8579, '2019-07-07', 10, '2019-07-07 08:27:22', '2019-07-07 12:08:32'),
(8580, '2019-07-07', 142, '2019-07-07 08:28:28', '2019-07-07 11:37:47'),
(8581, '2019-07-07', 141, '2019-07-07 08:28:40', '2019-07-07 11:37:38'),
(8582, '2019-07-07', 148, '2019-07-07 08:29:19', '2019-07-07 11:37:32'),
(8583, '2019-07-07', 45, '2019-07-07 08:30:31', '2019-07-07 12:44:30'),
(8584, '2019-07-07', 177, '2019-07-07 08:30:36', NULL),
(8585, '2019-07-07', 128, '2019-07-07 08:31:19', '2019-07-07 11:37:20'),
(8586, '2019-07-07', 44, '2019-07-07 08:33:29', '2019-07-07 12:43:35'),
(8587, '2019-07-07', 46, '2019-07-07 08:33:32', '2019-07-07 12:43:56'),
(8588, '2019-07-07', 9, '2019-07-07 08:36:06', '2019-07-07 12:08:14'),
(8589, '2019-07-07', 48, '2019-07-07 08:37:05', '2019-07-07 12:44:25'),
(8590, '2019-07-07', 60, '2019-07-07 08:37:23', '2019-07-07 13:01:08'),
(8591, '2019-07-07', 80, '2019-07-07 08:37:29', NULL),
(8592, '2019-07-07', 133, '2019-07-07 08:37:56', '2019-07-07 11:37:42'),
(8593, '2019-07-07', 72, '2019-07-07 08:40:12', '2019-07-07 13:08:46'),
(8594, '2019-07-07', 152, '2019-07-07 08:40:18', '2019-07-07 11:49:08'),
(8595, '2019-07-07', 97, '2019-07-07 08:40:29', '2019-07-07 10:33:05'),
(8596, '2019-07-07', 52, '2019-07-07 08:41:58', '2019-07-07 12:43:42'),
(8597, '2019-07-07', 91, '2019-07-07 08:42:07', '2019-07-07 10:32:36'),
(8598, '2019-07-07', 125, '2019-07-07 08:42:11', '2019-07-07 11:38:08'),
(8599, '2019-07-07', 11, '2019-07-07 08:42:21', '2019-07-07 12:08:27'),
(8600, '2019-07-07', 113, '2019-07-07 08:42:28', '2019-07-07 10:31:33'),
(8601, '2019-07-07', 79, '2019-07-07 08:50:01', '2019-07-07 10:32:13'),
(8602, '2019-07-07', 71, '2019-07-07 08:54:20', '2019-07-07 13:03:17'),
(8603, '2019-07-07', 134, '2019-07-07 08:55:34', '2019-07-07 11:37:26'),
(8604, '2019-07-07', 149, '2019-07-07 10:19:56', NULL),
(8605, '2019-07-07', 27, '2019-07-07 10:20:09', NULL),
(8606, '2019-07-07', 17, '2019-07-07 10:20:29', NULL),
(8607, '2019-07-07', 106, '2019-07-07 10:21:56', '2019-07-07 12:45:15'),
(8608, '2019-07-07', 34, '2019-07-07 10:24:40', NULL),
(8609, '2019-07-07', 174, '2019-07-07 10:30:30', '2019-07-07 12:44:38'),
(8610, '2019-07-07', 90, '2019-07-07 10:32:19', NULL),
(8611, '2019-07-07', 28, '2019-07-07 10:35:11', '2019-07-07 12:39:15'),
(8612, '2019-07-07', 104, '2019-07-07 10:36:46', '2019-07-07 12:45:20'),
(8613, '2019-07-07', 30, '2019-07-07 10:38:11', '2019-07-07 12:39:22'),
(8614, '2019-07-07', 111, '2019-07-07 10:39:03', NULL),
(8615, '2019-07-07', 103, '2019-07-07 10:39:29', NULL),
(8616, '2019-07-07', 124, '2019-07-07 11:36:38', NULL),
(8617, '2019-07-07', 132, '2019-07-07 11:37:12', NULL),
(8618, '2019-07-07', 18, '2019-07-07 12:08:01', NULL),
(8619, '2019-07-07', 23, '2019-07-07 12:08:44', NULL),
(8620, '2019-07-07', 33, '2019-07-07 12:39:18', NULL),
(8621, '2019-07-07', 42, '2019-07-07 12:39:30', NULL),
(8622, '2019-07-07', 183, '2019-07-07 12:44:34', NULL),
(8623, '2019-07-08', 55, '2019-07-08 07:38:47', NULL),
(8624, '2019-07-08', 23, '2019-07-08 07:39:58', NULL),
(8625, '2019-07-08', 18, '2019-07-08 07:40:04', NULL),
(8626, '2019-07-08', 34, '2019-07-08 07:40:37', NULL),
(8627, '2019-07-08', 167, '2019-07-08 07:56:01', NULL),
(8628, '2019-07-08', 157, '2019-07-08 07:58:56', NULL),
(8629, '2019-07-08', 139, '2019-07-08 08:00:11', NULL),
(8630, '2019-07-08', 57, '2019-07-08 08:03:07', NULL),
(8631, '2019-07-08', 176, '2019-07-08 08:03:12', NULL),
(8632, '2019-07-08', 96, '2019-07-08 08:03:33', NULL),
(8633, '2019-07-08', 138, '2019-07-08 08:09:22', NULL),
(8634, '2019-07-08', 142, '2019-07-08 08:11:56', NULL),
(8635, '2019-07-08', 170, '2019-07-08 08:15:23', NULL),
(8636, '2019-07-08', 13, '2019-07-08 08:17:25', NULL),
(8637, '2019-07-08', 180, '2019-07-08 08:17:59', NULL),
(8638, '2019-07-08', 48, '2019-07-08 08:18:04', '2019-07-08 11:30:28'),
(8639, '2019-07-08', 44, '2019-07-08 08:18:16', '2019-07-08 12:05:15'),
(8640, '2019-07-08', 124, '2019-07-08 08:18:21', '2019-07-08 11:03:21'),
(8641, '2019-07-08', 141, '2019-07-08 08:19:03', NULL),
(8642, '2019-07-08', 168, '2019-07-08 08:20:01', NULL),
(8643, '2019-07-08', 46, '2019-07-08 08:20:08', NULL),
(8644, '2019-07-08', 93, '2019-07-08 08:20:18', '2019-07-08 10:28:15'),
(8645, '2019-07-08', 78, '2019-07-08 08:20:23', NULL),
(8646, '2019-07-08', 45, '2019-07-08 08:20:28', NULL),
(8647, '2019-07-08', 150, '2019-07-08 08:20:56', '2019-07-08 10:58:36'),
(8648, '2019-07-08', 86, '2019-07-08 08:20:59', NULL),
(8649, '2019-07-08', 77, '2019-07-08 08:21:19', '2019-07-08 10:29:54'),
(8650, '2019-07-08', 64, '2019-07-08 08:22:25', NULL),
(8651, '2019-07-08', 144, '2019-07-08 08:22:30', '2019-07-08 11:33:00'),
(8652, '2019-07-08', 69, '2019-07-08 08:22:33', NULL),
(8653, '2019-07-08', 70, '2019-07-08 08:22:41', NULL),
(8654, '2019-07-08', 9, '2019-07-08 08:22:47', NULL),
(8655, '2019-07-08', 84, '2019-07-08 08:23:04', '2019-07-08 10:30:57'),
(8656, '2019-07-08', 66, '2019-07-08 08:23:45', NULL),
(8657, '2019-07-08', 80, '2019-07-08 08:23:55', NULL),
(8658, '2019-07-08', 128, '2019-07-08 08:25:32', '2019-07-08 11:03:26'),
(8659, '2019-07-08', 72, '2019-07-08 08:26:07', '2019-07-08 11:27:45'),
(8660, '2019-07-08', 152, '2019-07-08 08:26:13', '2019-07-08 11:28:52'),
(8661, '2019-07-08', 97, '2019-07-08 08:26:22', '2019-07-08 10:38:44'),
(8662, '2019-07-08', 189, '2019-07-08 08:26:53', NULL),
(8663, '2019-07-08', 88, '2019-07-08 08:27:36', NULL),
(8664, '2019-07-08', 38, '2019-07-08 08:28:00', '2019-07-08 10:43:13'),
(8665, '2019-07-08', 131, '2019-07-08 08:28:09', '2019-07-08 11:09:01'),
(8666, '2019-07-08', 135, '2019-07-08 08:28:57', NULL),
(8667, '2019-07-08', 56, '2019-07-08 08:30:06', NULL),
(8668, '2019-07-08', 76, '2019-07-08 08:30:40', NULL),
(8669, '2019-07-08', 17, '2019-07-08 08:30:58', NULL),
(8670, '2019-07-08', 129, '2019-07-08 08:31:15', '2019-07-08 11:46:52'),
(8671, '2019-07-08', 117, '2019-07-08 08:32:36', NULL),
(8672, '2019-07-08', 50, '2019-07-08 08:34:16', NULL),
(8673, '2019-07-08', 63, '2019-07-08 08:34:36', NULL),
(8674, '2019-07-08', 19, '2019-07-08 08:36:02', NULL),
(8675, '2019-07-08', 101, '2019-07-08 08:36:06', NULL),
(8676, '2019-07-08', 74, '2019-07-08 08:37:54', NULL),
(8677, '2019-07-08', 68, '2019-07-08 08:38:07', NULL),
(8678, '2019-07-08', 75, '2019-07-08 08:38:11', NULL),
(8679, '2019-07-08', 151, '2019-07-08 08:39:58', NULL),
(8680, '2019-07-08', 60, '2019-07-08 08:41:31', NULL),
(8681, '2019-07-08', 61, '2019-07-08 08:41:42', '2019-07-08 11:48:22'),
(8682, '2019-07-08', 134, '2019-07-08 08:49:17', '2019-07-08 11:28:57'),
(8683, '2019-07-08', 52, '2019-07-08 08:54:37', NULL),
(8684, '2019-07-08', 90, '2019-07-08 08:54:41', '2019-07-08 10:53:50'),
(8685, '2019-07-08', 91, '2019-07-08 08:54:45', NULL),
(8686, '2019-07-08', 113, '2019-07-08 08:54:49', '2019-07-08 10:53:45'),
(8687, '2019-07-08', 125, '2019-07-08 08:54:55', NULL),
(8688, '2019-07-08', 11, '2019-07-08 08:55:00', NULL),
(8689, '2019-07-08', 27, '2019-07-08 10:21:40', NULL),
(8690, '2019-07-08', 92, '2019-07-08 10:27:46', NULL),
(8691, '2019-07-08', 79, '2019-07-08 10:28:07', NULL),
(8692, '2019-07-08', 42, '2019-07-08 10:36:56', NULL),
(8693, '2019-07-08', 187, '2019-07-08 11:01:16', NULL),
(8694, '2019-07-08', 132, '2019-07-08 11:22:17', NULL),
(8695, '2019-07-08', 126, '2019-07-08 11:30:04', NULL),
(8696, '2019-07-10', 57, '2019-07-10 07:59:25', NULL),
(8697, '2019-07-10', 66, '2019-07-10 08:07:52', '2019-07-10 12:42:24'),
(8698, '2019-07-10', 44, '2019-07-10 08:13:42', '2019-07-10 12:40:37'),
(8699, '2019-07-10', 63, '2019-07-10 08:14:01', NULL),
(8700, '2019-07-10', 126, '2019-07-10 08:14:30', NULL),
(8701, '2019-07-10', 13, '2019-07-10 08:14:41', NULL),
(8702, '2019-07-10', 163, '2019-07-10 08:14:50', NULL),
(8703, '2019-07-10', 142, '2019-07-10 08:15:04', '2019-07-10 11:32:17'),
(8704, '2019-07-10', 92, '2019-07-10 08:16:56', '2019-07-10 10:32:18'),
(8705, '2019-07-10', 138, '2019-07-10 08:17:10', '2019-07-10 11:31:35'),
(8706, '2019-07-10', 170, '2019-07-10 08:18:05', NULL),
(8707, '2019-07-10', 146, '2019-07-10 08:18:23', '2019-07-10 11:31:20'),
(8708, '2019-07-10', 137, '2019-07-10 08:19:18', '2019-07-10 11:32:03'),
(8709, '2019-07-10', 46, '2019-07-10 08:19:35', '2019-07-10 12:41:17'),
(8710, '2019-07-10', 78, '2019-07-10 08:21:45', '2019-07-10 10:32:08'),
(8711, '2019-07-10', 80, '2019-07-10 08:25:18', NULL),
(8712, '2019-07-10', 131, '2019-07-10 08:26:02', '2019-07-10 11:31:40'),
(8713, '2019-07-10', 64, '2019-07-10 08:26:35', NULL),
(8714, '2019-07-10', 144, '2019-07-10 08:26:46', '2019-07-10 11:31:55'),
(8715, '2019-07-10', 70, '2019-07-10 08:26:57', '2019-07-10 12:42:39'),
(8716, '2019-07-10', 148, '2019-07-10 08:27:05', '2019-07-10 11:31:45'),
(8717, '2019-07-10', 5, '2019-07-10 08:27:11', '2019-07-10 12:05:45'),
(8718, '2019-07-10', 7, '2019-07-10 08:27:25', '2019-07-10 12:05:09'),
(8719, '2019-07-10', 97, '2019-07-10 08:27:33', '2019-07-10 10:32:55'),
(8720, '2019-07-10', 84, '2019-07-10 08:27:42', '2019-07-10 10:32:46'),
(8721, '2019-07-10', 179, '2019-07-10 08:27:47', NULL),
(8722, '2019-07-10', 9, '2019-07-10 08:28:01', '2019-07-10 12:06:04'),
(8723, '2019-07-10', 150, '2019-07-10 08:28:09', '2019-07-10 11:31:27'),
(8724, '2019-07-10', 55, '2019-07-10 08:28:15', NULL),
(8725, '2019-07-10', 72, '2019-07-10 08:28:23', '2019-07-10 12:42:34'),
(8726, '2019-07-10', 164, '2019-07-10 08:28:29', NULL),
(8727, '2019-07-10', 152, '2019-07-10 08:28:36', '2019-07-10 11:36:19'),
(8728, '2019-07-10', 75, '2019-07-10 08:29:49', '2019-07-10 10:32:23'),
(8729, '2019-07-10', 10, '2019-07-10 08:30:01', '2019-07-10 12:06:09'),
(8730, '2019-07-10', 99, '2019-07-10 08:30:28', '2019-07-10 10:32:13'),
(8731, '2019-07-10', 139, '2019-07-10 08:31:48', '2019-07-10 11:31:50'),
(8732, '2019-07-10', 51, '2019-07-10 08:31:54', NULL),
(8733, '2019-07-10', 189, '2019-07-10 08:33:01', NULL),
(8734, '2019-07-10', 45, '2019-07-10 08:35:06', '2019-07-10 12:43:38'),
(8735, '2019-07-10', 56, '2019-07-10 08:35:56', '2019-07-10 12:44:29'),
(8736, '2019-07-10', 38, '2019-07-10 08:39:41', '2019-07-10 10:43:45'),
(8737, '2019-07-10', 151, '2019-07-10 08:42:28', '2019-07-10 11:32:11'),
(8738, '2019-07-10', 117, '2019-07-10 08:45:20', '2019-07-10 10:28:00'),
(8739, '2019-07-10', 134, '2019-07-10 08:45:29', '2019-07-10 11:31:24'),
(8740, '2019-07-10', 79, '2019-07-10 08:47:53', '2019-07-10 10:32:35'),
(8741, '2019-07-10', 76, '2019-07-10 08:49:15', '2019-07-10 10:32:28'),
(8742, '2019-07-10', 167, '2019-07-10 08:49:36', NULL),
(8743, '2019-07-10', 52, '2019-07-10 08:58:46', '2019-07-10 12:40:41'),
(8744, '2019-07-10', 125, '2019-07-10 08:59:06', NULL),
(8745, '2019-07-10', 91, '2019-07-10 08:59:12', '2019-07-10 10:32:40'),
(8746, '2019-07-10', 48, '2019-07-10 09:06:16', '2019-07-10 12:39:42'),
(8747, '2019-07-10', 105, '2019-07-10 10:17:52', '2019-07-10 12:44:14'),
(8748, '2019-07-10', 106, '2019-07-10 10:31:05', NULL),
(8749, '2019-07-10', 103, '2019-07-10 10:33:35', '2019-07-10 12:43:24'),
(8750, '2019-07-10', 111, '2019-07-10 10:37:01', '2019-07-10 12:43:10'),
(8751, '2019-07-10', 33, '2019-07-10 10:37:05', NULL),
(8752, '2019-07-10', 42, '2019-07-10 10:37:23', NULL),
(8753, '2019-07-10', 187, '2019-07-10 10:38:48', '2019-07-10 12:42:58'),
(8754, '2019-07-10', 107, '2019-07-10 10:40:34', '2019-07-10 12:44:04'),
(8755, '2019-07-10', 30, '2019-07-10 10:40:44', NULL),
(8756, '2019-07-10', 28, '2019-07-10 10:49:11', '2019-07-10 12:41:46'),
(8757, '2019-07-10', 183, '2019-07-10 10:49:56', '2019-07-10 12:43:01'),
(8758, '2019-07-10', 104, '2019-07-10 10:53:23', '2019-07-10 12:43:18'),
(8759, '2019-07-10', 133, '2019-07-10 11:31:30', NULL),
(8760, '2019-07-10', 14, '2019-07-10 12:04:50', NULL),
(8761, '2019-07-10', 11, '2019-07-10 12:05:22', NULL),
(8762, '2019-07-10', 16, '2019-07-10 12:05:52', NULL),
(8763, '2019-07-10', 169, '2019-07-10 12:38:00', NULL),
(8764, '2019-07-10', 68, '2019-07-10 12:42:12', NULL),
(8765, '2019-07-10', 71, '2019-07-10 12:42:29', NULL),
(8766, '2019-07-10', 174, '2019-07-10 12:43:45', NULL),
(8767, '2019-07-10', 176, '2019-07-10 12:44:21', NULL),
(8768, '2019-07-13', 23, '2019-07-13 07:58:16', NULL),
(8769, '2019-07-13', 167, '2019-07-13 08:02:36', '2019-07-13 12:58:43'),
(8770, '2019-07-13', 141, '2019-07-13 08:03:27', '2019-07-13 11:12:47'),
(8771, '2019-07-13', 156, '2019-07-13 08:08:25', NULL),
(8772, '2019-07-13', 168, '2019-07-13 08:11:48', '2019-07-13 13:25:53'),
(8773, '2019-07-13', 61, '2019-07-13 08:14:46', NULL),
(8774, '2019-07-13', 46, '2019-07-13 08:18:30', '2019-07-13 12:58:50'),
(8775, '2019-07-13', 170, '2019-07-13 08:20:22', NULL),
(8776, '2019-07-13', 72, '2019-07-13 08:20:42', '2019-07-13 12:09:09'),
(8777, '2019-07-13', 152, '2019-07-13 08:20:49', '2019-07-13 12:09:57'),
(8778, '2019-07-13', 97, '2019-07-13 08:21:02', '2019-07-13 12:06:50'),
(8779, '2019-07-13', 129, '2019-07-13 08:22:27', '2019-07-13 11:54:28'),
(8780, '2019-07-13', 181, '2019-07-13 08:23:02', NULL),
(8781, '2019-07-13', 145, '2019-07-13 08:23:07', NULL),
(8782, '2019-07-13', 124, '2019-07-13 08:23:10', '2019-07-13 09:35:54'),
(8783, '2019-07-13', 10, '2019-07-13 08:24:26', NULL),
(8784, '2019-07-13', 95, '2019-07-13 08:26:37', NULL),
(8785, '2019-07-13', 70, '2019-07-13 08:27:49', NULL),
(8786, '2019-07-13', 138, '2019-07-13 08:29:14', NULL),
(8787, '2019-07-13', 86, '2019-07-13 08:34:13', '2019-07-13 10:53:13'),
(8788, '2019-07-13', 56, '2019-07-13 08:35:45', NULL),
(8789, '2019-07-13', 48, '2019-07-13 08:36:22', NULL),
(8790, '2019-07-13', 60, '2019-07-13 08:38:27', NULL),
(8791, '2019-07-13', 84, '2019-07-13 08:42:12', '2019-07-13 10:34:32'),
(8792, '2019-07-13', 58, '2019-07-13 08:46:39', '2019-07-13 12:20:51'),
(8793, '2019-07-13', 160, '2019-07-13 08:46:43', '2019-07-13 12:22:05'),
(8794, '2019-07-13', 17, '2019-07-13 08:48:17', NULL),
(8795, '2019-07-13', 189, '2019-07-13 08:48:47', NULL),
(8796, '2019-07-13', 134, '2019-07-13 08:50:12', '2019-07-13 12:10:03'),
(8797, '2019-07-13', 125, '2019-07-13 09:04:01', NULL),
(8798, '2019-07-13', 130, '2019-07-13 09:04:10', NULL),
(8799, '2019-07-13', 90, '2019-07-13 09:04:16', NULL),
(8800, '2019-07-13', 113, '2019-07-13 09:04:23', NULL),
(8801, '2019-07-13', 91, '2019-07-13 09:04:29', NULL),
(8802, '2019-07-14', 48, '2019-07-14 08:04:42', NULL),
(8803, '2019-07-14', 57, '2019-07-14 08:04:45', NULL),
(8804, '2019-07-14', 139, '2019-07-14 08:07:13', NULL),
(8805, '2019-07-14', 167, '2019-07-14 08:07:29', '2019-07-14 12:47:34'),
(8806, '2019-07-14', 39, '2019-07-14 08:07:49', NULL),
(8807, '2019-07-14', 168, '2019-07-14 08:08:03', NULL),
(8808, '2019-07-14', 142, '2019-07-14 08:08:20', '2019-07-14 11:38:22'),
(8809, '2019-07-14', 25, '2019-07-14 08:08:46', '2019-07-14 11:04:02'),
(8810, '2019-07-14', 138, '2019-07-14 08:10:36', NULL),
(8811, '2019-07-14', 46, '2019-07-14 08:11:28', '2019-07-14 12:14:24'),
(8812, '2019-07-14', 84, '2019-07-14 08:15:29', '2019-07-14 10:33:55'),
(8813, '2019-07-14', 23, '2019-07-14 08:16:54', '2019-07-14 12:14:01'),
(8814, '2019-07-14', 140, '2019-07-14 08:17:00', '2019-07-14 11:33:51'),
(8815, '2019-07-14', 96, '2019-07-14 08:17:18', '2019-07-14 10:33:45'),
(8816, '2019-07-14', 169, '2019-07-14 08:18:10', '2019-07-14 12:21:36'),
(8817, '2019-07-14', 163, '2019-07-14 08:18:19', '2019-07-14 12:13:51'),
(8818, '2019-07-14', 101, '2019-07-14 08:20:00', '2019-07-14 10:33:51'),
(8819, '2019-07-14', 61, '2019-07-14 08:20:50', NULL),
(8820, '2019-07-14', 68, '2019-07-14 08:21:03', '2019-07-14 12:53:55'),
(8821, '2019-07-14', 80, '2019-07-14 08:22:21', NULL),
(8822, '2019-07-14', 141, '2019-07-14 08:22:53', NULL),
(8823, '2019-07-14', 144, '2019-07-14 08:23:42', NULL),
(8824, '2019-07-14', 5, '2019-07-14 08:23:54', NULL),
(8825, '2019-07-14', 78, '2019-07-14 08:24:03', '2019-07-14 10:33:04'),
(8826, '2019-07-14', 97, '2019-07-14 08:24:27', '2019-07-14 10:34:06'),
(8827, '2019-07-14', 72, '2019-07-14 08:24:36', NULL),
(8828, '2019-07-14', 75, '2019-07-14 08:24:50', NULL),
(8829, '2019-07-14', 152, '2019-07-14 08:24:54', NULL),
(8830, '2019-07-14', 37, '2019-07-14 08:25:21', '2019-07-14 10:18:16'),
(8831, '2019-07-14', 189, '2019-07-14 08:26:07', NULL),
(8832, '2019-07-14', 45, '2019-07-14 08:26:47', '2019-07-14 12:31:53');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(8833, '2019-07-14', 179, '2019-07-14 08:26:56', '2019-07-14 12:35:46'),
(8834, '2019-07-14', 77, '2019-07-14 08:27:03', '2019-07-14 10:32:02'),
(8835, '2019-07-14', 63, '2019-07-14 08:27:36', '2019-07-14 12:52:09'),
(8836, '2019-07-14', 60, '2019-07-14 08:29:47', '2019-07-14 12:32:14'),
(8837, '2019-07-14', 150, '2019-07-14 08:31:35', '2019-07-14 10:52:47'),
(8838, '2019-07-14', 148, '2019-07-14 08:31:39', '2019-07-14 11:51:30'),
(8839, '2019-07-14', 56, '2019-07-14 08:33:21', NULL),
(8840, '2019-07-14', 58, '2019-07-14 08:36:34', '2019-07-14 12:32:20'),
(8841, '2019-07-14', 160, '2019-07-14 08:36:37', '2019-07-14 10:33:37'),
(8842, '2019-07-14', 159, '2019-07-14 08:37:37', '2019-07-14 10:33:42'),
(8843, '2019-07-14', 93, '2019-07-14 08:39:48', NULL),
(8844, '2019-07-14', 135, '2019-07-14 08:39:54', '2019-07-14 10:53:17'),
(8845, '2019-07-14', 117, '2019-07-14 08:40:14', '2019-07-14 10:34:56'),
(8846, '2019-07-14', 128, '2019-07-14 08:40:47', '2019-07-14 10:53:06'),
(8847, '2019-07-14', 134, '2019-07-14 08:41:42', '2019-07-14 11:41:44'),
(8848, '2019-07-14', 9, '2019-07-14 08:47:40', '2019-07-14 12:13:47'),
(8849, '2019-07-14', 31, '2019-07-14 08:48:27', '2019-07-14 10:20:24'),
(8850, '2019-07-14', 15, '2019-07-14 08:50:33', NULL),
(8851, '2019-07-14', 91, '2019-07-14 08:58:30', '2019-07-14 10:34:01'),
(8852, '2019-07-14', 113, '2019-07-14 08:58:39', '2019-07-14 10:53:00'),
(8853, '2019-07-14', 115, '2019-07-14 10:19:13', NULL),
(8854, '2019-07-14', 40, '2019-07-14 10:35:19', NULL),
(8855, '2019-07-14', 30, '2019-07-14 10:37:06', NULL),
(8856, '2019-07-14', 187, '2019-07-14 10:38:40', NULL),
(8857, '2019-07-14', 103, '2019-07-14 10:39:32', '2019-07-14 12:44:57'),
(8858, '2019-07-14', 102, '2019-07-14 10:44:23', '2019-07-14 12:38:34'),
(8859, '2019-07-14', 111, '2019-07-14 10:44:32', NULL),
(8860, '2019-07-14', 33, '2019-07-14 10:44:36', '2019-07-14 12:36:57'),
(8861, '2019-07-14', 42, '2019-07-14 10:44:41', '2019-07-14 12:36:52'),
(8862, '2019-07-14', 66, '2019-07-14 11:06:36', NULL),
(8863, '2019-07-14', 35, '2019-07-14 11:10:15', NULL),
(8864, '2019-07-14', 36, '2019-07-14 11:10:22', NULL),
(8865, '2019-07-14', 130, '2019-07-14 12:08:16', NULL),
(8866, '2019-07-14', 107, '2019-07-14 12:45:02', NULL),
(8867, '2019-07-15', 147, '2019-07-15 07:41:21', '2019-07-15 11:32:23'),
(8868, '2019-07-15', 18, '2019-07-15 07:41:24', '2019-07-15 11:35:48'),
(8869, '2019-07-15', 55, '2019-07-15 07:41:30', NULL),
(8870, '2019-07-15', 25, '2019-07-15 07:55:04', '2019-07-15 12:04:32'),
(8871, '2019-07-15', 176, '2019-07-15 07:55:35', NULL),
(8872, '2019-07-15', 57, '2019-07-15 07:55:48', '2019-07-15 12:31:00'),
(8873, '2019-07-15', 44, '2019-07-15 07:56:16', '2019-07-15 12:00:40'),
(8874, '2019-07-15', 99, '2019-07-15 07:56:24', '2019-07-15 10:30:48'),
(8875, '2019-07-15', 23, '2019-07-15 07:56:59', NULL),
(8876, '2019-07-15', 157, '2019-07-15 07:58:50', '2019-07-15 11:31:36'),
(8877, '2019-07-15', 50, '2019-07-15 08:02:13', NULL),
(8878, '2019-07-15', 96, '2019-07-15 08:04:26', '2019-07-15 10:32:18'),
(8879, '2019-07-15', 48, '2019-07-15 08:04:29', NULL),
(8880, '2019-07-15', 124, '2019-07-15 08:04:32', '2019-07-15 11:32:46'),
(8881, '2019-07-15', 181, '2019-07-15 08:05:30', '2019-07-15 11:42:46'),
(8882, '2019-07-15', 167, '2019-07-15 08:05:45', NULL),
(8883, '2019-07-15', 145, '2019-07-15 08:05:50', '2019-07-15 11:33:10'),
(8884, '2019-07-15', 169, '2019-07-15 08:08:42', NULL),
(8885, '2019-07-15', 163, '2019-07-15 08:08:47', NULL),
(8886, '2019-07-15', 39, '2019-07-15 08:10:16', NULL),
(8887, '2019-07-15', 27, '2019-07-15 08:10:20', NULL),
(8888, '2019-07-15', 13, '2019-07-15 08:10:35', NULL),
(8889, '2019-07-15', 129, '2019-07-15 08:10:42', NULL),
(8890, '2019-07-15', 14, '2019-07-15 08:11:14', NULL),
(8891, '2019-07-15', 170, '2019-07-15 08:11:19', NULL),
(8892, '2019-07-15', 154, '2019-07-15 08:11:58', NULL),
(8893, '2019-07-15', 101, '2019-07-15 08:12:38', NULL),
(8894, '2019-07-15', 86, '2019-07-15 08:17:30', '2019-07-15 10:31:34'),
(8895, '2019-07-15', 87, '2019-07-15 08:18:45', NULL),
(8896, '2019-07-15', 84, '2019-07-15 08:18:48', '2019-07-15 10:32:23'),
(8897, '2019-07-15', 95, '2019-07-15 08:19:59', '2019-07-15 10:31:19'),
(8898, '2019-07-15', 37, '2019-07-15 08:20:20', NULL),
(8899, '2019-07-15', 92, '2019-07-15 08:20:44', '2019-07-15 10:30:43'),
(8900, '2019-07-15', 150, '2019-07-15 08:20:55', '2019-07-15 11:31:49'),
(8901, '2019-07-15', 146, '2019-07-15 08:25:33', '2019-07-15 11:31:55'),
(8902, '2019-07-15', 29, '2019-07-15 08:25:47', NULL),
(8903, '2019-07-15', 152, '2019-07-15 08:25:52', '2019-07-15 11:32:15'),
(8904, '2019-07-15', 11, '2019-07-15 08:25:58', NULL),
(8905, '2019-07-15', 15, '2019-07-15 08:26:03', NULL),
(8906, '2019-07-15', 138, '2019-07-15 08:26:07', '2019-07-15 11:31:40'),
(8907, '2019-07-15', 97, '2019-07-15 08:26:13', '2019-07-15 10:31:42'),
(8908, '2019-07-15', 72, '2019-07-15 08:26:18', NULL),
(8909, '2019-07-15', 68, '2019-07-15 08:26:24', '2019-07-15 11:47:52'),
(8910, '2019-07-15', 78, '2019-07-15 08:26:28', '2019-07-15 10:31:00'),
(8911, '2019-07-15', 144, '2019-07-15 08:26:42', '2019-07-15 11:32:20'),
(8912, '2019-07-15', 137, '2019-07-15 08:26:47', NULL),
(8913, '2019-07-15', 46, '2019-07-15 08:26:52', '2019-07-15 12:37:44'),
(8914, '2019-07-15', 64, '2019-07-15 08:26:56', NULL),
(8915, '2019-07-15', 70, '2019-07-15 08:27:08', NULL),
(8916, '2019-07-15', 76, '2019-07-15 08:27:14', '2019-07-15 10:32:57'),
(8917, '2019-07-15', 5, '2019-07-15 08:27:20', NULL),
(8918, '2019-07-15', 128, '2019-07-15 08:27:24', '2019-07-15 11:32:04'),
(8919, '2019-07-15', 38, '2019-07-15 08:27:29', '2019-07-15 10:45:38'),
(8920, '2019-07-15', 75, '2019-07-15 08:27:34', '2019-07-15 10:31:29'),
(8921, '2019-07-15', 115, '2019-07-15 08:27:38', '2019-07-15 10:19:27'),
(8922, '2019-07-15', 16, '2019-07-15 08:27:43', '2019-07-15 11:40:14'),
(8923, '2019-07-15', 17, '2019-07-15 08:27:48', '2019-07-15 10:33:01'),
(8924, '2019-07-15', 10, '2019-07-15 08:27:53', '2019-07-15 12:17:31'),
(8925, '2019-07-15', 142, '2019-07-15 08:28:07', NULL),
(8926, '2019-07-15', 71, '2019-07-15 08:29:08', NULL),
(8927, '2019-07-15', 52, '2019-07-15 08:29:54', NULL),
(8928, '2019-07-15', 90, '2019-07-15 08:29:58', '2019-07-15 10:31:23'),
(8929, '2019-07-15', 130, '2019-07-15 08:30:01', NULL),
(8930, '2019-07-15', 91, '2019-07-15 08:30:06', '2019-07-15 10:31:39'),
(8931, '2019-07-15', 45, '2019-07-15 08:30:40', '2019-07-15 12:54:15'),
(8932, '2019-07-15', 118, '2019-07-15 08:30:52', '2019-07-15 10:19:16'),
(8933, '2019-07-15', 56, '2019-07-15 08:31:04', NULL),
(8934, '2019-07-15', 34, '2019-07-15 08:32:03', NULL),
(8935, '2019-07-15', 156, '2019-07-15 08:33:29', '2019-07-15 11:32:51'),
(8936, '2019-07-15', 9, '2019-07-15 08:34:00', NULL),
(8937, '2019-07-15', 60, '2019-07-15 08:35:07', '2019-07-15 12:46:59'),
(8938, '2019-07-15', 166, '2019-07-15 08:35:45', '2019-07-15 11:15:29'),
(8939, '2019-07-15', 189, '2019-07-15 08:36:14', '2019-07-15 12:41:41'),
(8940, '2019-07-15', 80, '2019-07-15 08:36:41', NULL),
(8941, '2019-07-15', 66, '2019-07-15 08:36:47', NULL),
(8942, '2019-07-15', 177, '2019-07-15 08:39:01', NULL),
(8943, '2019-07-15', 135, '2019-07-15 08:40:38', NULL),
(8944, '2019-07-15', 133, '2019-07-15 08:41:00', '2019-07-15 11:32:10'),
(8945, '2019-07-15', 134, '2019-07-15 08:41:37', '2019-07-15 11:32:30'),
(8946, '2019-07-15', 79, '2019-07-15 08:43:41', NULL),
(8947, '2019-07-15', 63, '2019-07-15 08:46:03', NULL),
(8948, '2019-07-15', 153, '2019-07-15 08:46:16', '2019-07-15 11:33:32'),
(8949, '2019-07-15', 19, '2019-07-15 09:03:28', NULL),
(8950, '2019-07-15', 113, '2019-07-15 09:03:48', '2019-07-15 10:40:20'),
(8951, '2019-07-15', 106, '2019-07-15 10:11:03', NULL),
(8952, '2019-07-15', 93, '2019-07-15 10:32:30', NULL),
(8953, '2019-07-15', 88, '2019-07-15 10:32:54', NULL),
(8954, '2019-07-15', 160, '2019-07-15 10:33:20', NULL),
(8955, '2019-07-15', 183, '2019-07-15 10:33:28', NULL),
(8956, '2019-07-15', 41, '2019-07-15 10:34:19', NULL),
(8957, '2019-07-15', 33, '2019-07-15 10:34:30', NULL),
(8958, '2019-07-15', 42, '2019-07-15 10:34:45', '2019-07-15 11:35:45'),
(8959, '2019-07-15', 187, '2019-07-15 10:38:46', NULL),
(8960, '2019-07-15', 103, '2019-07-15 10:39:05', NULL),
(8961, '2019-07-15', 107, '2019-07-15 10:39:19', NULL),
(8962, '2019-07-15', 111, '2019-07-15 10:41:09', NULL),
(8963, '2019-07-15', 40, '2019-07-15 10:41:13', NULL),
(8964, '2019-07-15', 104, '2019-07-15 10:44:31', NULL),
(8965, '2019-07-15', 141, '2019-07-15 11:31:32', NULL),
(8966, '2019-07-15', 140, '2019-07-15 11:32:00', NULL),
(8967, '2019-07-15', 132, '2019-07-15 11:32:38', NULL),
(8968, '2019-07-15', 151, '2019-07-15 11:32:42', NULL),
(8969, '2019-07-15', 143, '2019-07-15 11:32:56', NULL),
(8970, '2019-07-15', 184, '2019-07-15 12:20:36', NULL),
(8971, '2019-07-15', 58, '2019-07-15 12:46:50', NULL),
(8972, '2019-07-16', 96, '2019-07-16 07:45:12', '2019-07-16 10:30:41'),
(8973, '2019-07-16', 67, '2019-07-16 07:45:16', NULL),
(8974, '2019-07-16', 18, '2019-07-16 07:45:19', '2019-07-16 12:06:56'),
(8975, '2019-07-16', 55, '2019-07-16 07:45:23', NULL),
(8976, '2019-07-16', 147, '2019-07-16 07:45:29', '2019-07-16 11:35:41'),
(8977, '2019-07-16', 34, '2019-07-16 07:55:21', NULL),
(8978, '2019-07-16', 136, '2019-07-16 07:57:54', '2019-07-16 11:34:22'),
(8979, '2019-07-16', 135, '2019-07-16 08:00:09', '2019-07-16 11:34:01'),
(8980, '2019-07-16', 44, '2019-07-16 08:00:18', NULL),
(8981, '2019-07-16', 157, '2019-07-16 08:03:12', '2019-07-16 11:34:18'),
(8982, '2019-07-16', 99, '2019-07-16 08:03:37', '2019-07-16 10:31:10'),
(8983, '2019-07-16', 95, '2019-07-16 08:04:54', NULL),
(8984, '2019-07-16', 25, '2019-07-16 08:07:14', '2019-07-16 12:06:34'),
(8985, '2019-07-16', 23, '2019-07-16 08:07:19', '2019-07-16 12:06:27'),
(8986, '2019-07-16', 124, '2019-07-16 08:07:50', '2019-07-16 11:35:15'),
(8987, '2019-07-16', 167, '2019-07-16 08:09:13', '2019-07-16 12:05:33'),
(8988, '2019-07-16', 168, '2019-07-16 08:09:20', '2019-07-16 12:08:12'),
(8989, '2019-07-16', 84, '2019-07-16 08:10:58', NULL),
(8990, '2019-07-16', 154, '2019-07-16 08:11:18', '2019-07-16 11:35:20'),
(8991, '2019-07-16', 48, '2019-07-16 08:11:29', '2019-07-16 12:05:44'),
(8992, '2019-07-16', 142, '2019-07-16 08:12:16', '2019-07-16 11:35:26'),
(8993, '2019-07-16', 27, '2019-07-16 08:12:43', '2019-07-16 10:30:58'),
(8994, '2019-07-16', 10, '2019-07-16 08:12:48', '2019-07-16 12:11:39'),
(8995, '2019-07-16', 115, '2019-07-16 08:12:59', NULL),
(8996, '2019-07-16', 80, '2019-07-16 08:13:04', NULL),
(8997, '2019-07-16', 46, '2019-07-16 08:13:18', '2019-07-16 12:05:28'),
(8998, '2019-07-16', 129, '2019-07-16 08:13:46', '2019-07-16 11:34:06'),
(8999, '2019-07-16', 141, '2019-07-16 08:13:55', NULL),
(9000, '2019-07-16', 51, '2019-07-16 08:15:24', NULL),
(9001, '2019-07-16', 139, '2019-07-16 08:15:28', '2019-07-16 11:36:09'),
(9002, '2019-07-16', 45, '2019-07-16 08:16:50', '2019-07-16 12:07:10'),
(9003, '2019-07-16', 37, '2019-07-16 08:17:11', NULL),
(9004, '2019-07-16', 101, '2019-07-16 08:17:37', '2019-07-16 10:31:02'),
(9005, '2019-07-16', 144, '2019-07-16 08:17:51', '2019-07-16 11:34:36'),
(9006, '2019-07-16', 31, '2019-07-16 08:18:01', NULL),
(9007, '2019-07-16', 13, '2019-07-16 08:18:08', NULL),
(9008, '2019-07-16', 56, '2019-07-16 08:18:13', NULL),
(9009, '2019-07-16', 5, '2019-07-16 08:18:28', NULL),
(9010, '2019-07-16', 9, '2019-07-16 08:18:34', NULL),
(9011, '2019-07-16', 16, '2019-07-16 08:18:39', '2019-07-16 12:08:03'),
(9012, '2019-07-16', 189, '2019-07-16 08:18:43', NULL),
(9013, '2019-07-16', 64, '2019-07-16 08:18:46', NULL),
(9014, '2019-07-16', 169, '2019-07-16 08:18:50', '2019-07-16 12:08:07'),
(9015, '2019-07-16', 86, '2019-07-16 08:18:56', '2019-07-16 10:30:46'),
(9016, '2019-07-16', 7, '2019-07-16 08:19:00', '2019-07-16 12:07:04'),
(9017, '2019-07-16', 131, '2019-07-16 08:19:06', '2019-07-16 11:34:09'),
(9018, '2019-07-16', 138, '2019-07-16 08:19:19', NULL),
(9019, '2019-07-16', 75, '2019-07-16 08:20:02', '2019-07-16 10:31:26'),
(9020, '2019-07-16', 181, '2019-07-16 08:20:18', '2019-07-16 12:06:41'),
(9021, '2019-07-16', 145, '2019-07-16 08:20:21', '2019-07-16 11:34:15'),
(9022, '2019-07-16', 14, '2019-07-16 08:20:47', '2019-07-16 12:06:09'),
(9023, '2019-07-16', 170, '2019-07-16 08:21:05', '2019-07-16 12:08:18'),
(9024, '2019-07-16', 68, '2019-07-16 08:21:27', NULL),
(9025, '2019-07-16', 92, '2019-07-16 08:21:45', '2019-07-16 10:30:21'),
(9026, '2019-07-16', 70, '2019-07-16 08:21:50', '2019-07-16 12:05:49'),
(9027, '2019-07-16', 179, '2019-07-16 08:22:45', NULL),
(9028, '2019-07-16', 77, '2019-07-16 08:31:02', '2019-07-16 10:30:52'),
(9029, '2019-07-16', 97, '2019-07-16 08:31:10', '2019-07-16 10:31:20'),
(9030, '2019-07-16', 117, '2019-07-16 08:31:39', '2019-07-16 10:27:37'),
(9031, '2019-07-16', 66, '2019-07-16 08:32:10', '2019-07-16 12:06:37'),
(9032, '2019-07-16', 63, '2019-07-16 08:32:21', NULL),
(9033, '2019-07-16', 152, '2019-07-16 08:33:06', '2019-07-16 11:35:32'),
(9034, '2019-07-16', 166, '2019-07-16 08:33:11', '2019-07-16 11:57:17'),
(9035, '2019-07-16', 128, '2019-07-16 08:33:16', '2019-07-16 11:34:30'),
(9036, '2019-07-16', 72, '2019-07-16 08:33:20', '2019-07-16 12:05:24'),
(9037, '2019-07-16', 151, '2019-07-16 08:33:25', '2019-07-16 11:31:11'),
(9038, '2019-07-16', 112, '2019-07-16 08:33:46', '2019-07-16 10:32:54'),
(9039, '2019-07-16', 88, '2019-07-16 08:33:52', '2019-07-16 10:32:27'),
(9040, '2019-07-16', 17, '2019-07-16 08:35:01', '2019-07-16 10:23:57'),
(9041, '2019-07-16', 58, '2019-07-16 08:35:30', '2019-07-16 11:50:43'),
(9042, '2019-07-16', 160, '2019-07-16 08:35:39', '2019-07-16 10:32:19'),
(9043, '2019-07-16', 148, '2019-07-16 08:35:44', '2019-07-16 11:21:25'),
(9044, '2019-07-16', 91, '2019-07-16 08:36:22', '2019-07-16 10:30:34'),
(9045, '2019-07-16', 90, '2019-07-16 08:36:25', NULL),
(9046, '2019-07-16', 130, '2019-07-16 08:36:37', '2019-07-16 11:36:14'),
(9047, '2019-07-16', 113, '2019-07-16 08:36:43', '2019-07-16 10:35:27'),
(9048, '2019-07-16', 125, '2019-07-16 08:36:47', '2019-07-16 11:35:36'),
(9049, '2019-07-16', 60, '2019-07-16 08:38:38', '2019-07-16 11:50:48'),
(9050, '2019-07-16', 38, '2019-07-16 08:41:38', '2019-07-16 10:32:42'),
(9051, '2019-07-16', 61, '2019-07-16 08:41:41', '2019-07-16 12:05:39'),
(9052, '2019-07-16', 93, '2019-07-16 08:41:53', '2019-07-16 10:31:32'),
(9053, '2019-07-16', 19, '2019-07-16 08:42:22', NULL),
(9054, '2019-07-16', 134, '2019-07-16 08:42:49', NULL),
(9055, '2019-07-16', 127, '2019-07-16 08:51:04', NULL),
(9056, '2019-07-16', 79, '2019-07-16 08:51:58', '2019-07-16 10:30:30'),
(9057, '2019-07-16', 118, '2019-07-16 10:23:51', NULL),
(9058, '2019-07-16', 78, '2019-07-16 10:30:15', NULL),
(9059, '2019-07-16', 29, '2019-07-16 10:32:39', NULL),
(9060, '2019-07-16', 28, '2019-07-16 10:38:03', NULL),
(9061, '2019-07-16', 30, '2019-07-16 10:38:41', '2019-07-16 12:10:13'),
(9062, '2019-07-16', 102, '2019-07-16 10:39:00', '2019-07-16 11:44:15'),
(9063, '2019-07-16', 33, '2019-07-16 10:40:07', NULL),
(9064, '2019-07-16', 42, '2019-07-16 10:40:24', NULL),
(9065, '2019-07-16', 183, '2019-07-16 10:40:48', '2019-07-16 11:41:02'),
(9066, '2019-07-16', 103, '2019-07-16 10:41:02', '2019-07-16 11:45:41'),
(9067, '2019-07-16', 187, '2019-07-16 10:45:44', '2019-07-16 12:09:36'),
(9068, '2019-07-16', 106, '2019-07-16 10:48:23', NULL),
(9069, '2019-07-16', 107, '2019-07-16 10:48:51', '2019-07-16 11:49:15'),
(9070, '2019-07-16', 104, '2019-07-16 10:49:09', NULL),
(9071, '2019-07-16', 137, '2019-07-16 11:34:43', NULL),
(9072, '2019-07-16', 150, '2019-07-16 11:34:50', NULL),
(9073, '2019-07-16', 132, '2019-07-16 11:34:59', NULL),
(9074, '2019-07-16', 140, '2019-07-16 11:35:05', NULL),
(9075, '2019-07-16', 146, '2019-07-16 11:35:51', NULL),
(9076, '2019-07-16', 143, '2019-07-16 11:36:03', NULL),
(9077, '2019-07-16', 71, '2019-07-16 12:06:48', NULL),
(9078, '2019-07-16', 171, '2019-07-16 12:08:45', NULL),
(9079, '2019-07-16', 11, '2019-07-16 12:08:58', NULL),
(9080, '2019-07-17', 18, '2019-07-17 07:42:42', '2019-07-17 12:07:31'),
(9081, '2019-07-17', 34, '2019-07-17 07:42:50', '2019-07-17 10:36:24'),
(9082, '2019-07-17', 55, '2019-07-17 07:42:55', NULL),
(9083, '2019-07-17', 157, '2019-07-17 07:49:05', '2019-07-17 11:31:57'),
(9084, '2019-07-17', 176, '2019-07-17 07:54:08', '2019-07-17 12:43:13'),
(9085, '2019-07-17', 57, '2019-07-17 07:54:15', '2019-07-17 12:41:02'),
(9086, '2019-07-17', 124, '2019-07-17 07:58:35', '2019-07-17 11:30:54'),
(9087, '2019-07-17', 67, '2019-07-17 07:58:44', NULL),
(9088, '2019-07-17', 25, '2019-07-17 07:59:50', '2019-07-17 12:07:51'),
(9089, '2019-07-17', 167, '2019-07-17 08:00:40', '2019-07-17 12:43:58'),
(9090, '2019-07-17', 139, '2019-07-17 08:00:50', NULL),
(9091, '2019-07-17', 141, '2019-07-17 08:02:03', '2019-07-17 11:31:02'),
(9092, '2019-07-17', 7, '2019-07-17 08:03:10', '2019-07-17 12:07:35'),
(9093, '2019-07-17', 48, '2019-07-17 08:04:30', '2019-07-17 12:30:53'),
(9094, '2019-07-17', 95, '2019-07-17 08:04:51', '2019-07-17 10:33:36'),
(9095, '2019-07-17', 168, '2019-07-17 08:06:38', '2019-07-17 12:44:49'),
(9096, '2019-07-17', 96, '2019-07-17 08:08:42', NULL),
(9097, '2019-07-17', 46, '2019-07-17 08:09:18', '2019-07-17 12:43:21'),
(9098, '2019-07-17', 99, '2019-07-17 08:09:33', '2019-07-17 10:33:15'),
(9099, '2019-07-17', 150, '2019-07-17 08:10:55', '2019-07-17 11:31:52'),
(9100, '2019-07-17', 101, '2019-07-17 08:11:56', '2019-07-17 10:36:20'),
(9101, '2019-07-17', 126, '2019-07-17 08:13:29', '2019-07-17 11:31:07'),
(9102, '2019-07-17', 92, '2019-07-17 08:13:35', '2019-07-17 10:33:10'),
(9103, '2019-07-17', 138, '2019-07-17 08:14:47', '2019-07-17 11:31:13'),
(9104, '2019-07-17', 170, '2019-07-17 08:15:27', '2019-07-17 12:07:07'),
(9105, '2019-07-17', 84, '2019-07-17 08:16:18', '2019-07-17 10:35:16'),
(9106, '2019-07-17', 27, '2019-07-17 08:17:48', '2019-07-17 10:23:22'),
(9107, '2019-07-17', 65, '2019-07-17 08:17:52', NULL),
(9108, '2019-07-17', 68, '2019-07-17 08:18:55', NULL),
(9109, '2019-07-17', 14, '2019-07-17 08:19:02', NULL),
(9110, '2019-07-17', 163, '2019-07-17 08:19:08', NULL),
(9111, '2019-07-17', 133, '2019-07-17 08:19:25', '2019-07-17 11:30:44'),
(9112, '2019-07-17', 144, '2019-07-17 08:19:50', '2019-07-17 11:32:18'),
(9113, '2019-07-17', 5, '2019-07-17 08:20:01', '2019-07-17 12:08:16'),
(9114, '2019-07-17', 70, '2019-07-17 08:20:04', '2019-07-17 12:41:22'),
(9115, '2019-07-17', 16, '2019-07-17 08:20:11', '2019-07-17 12:07:38'),
(9116, '2019-07-17', 93, '2019-07-17 08:23:02', '2019-07-17 10:34:05'),
(9117, '2019-07-17', 140, '2019-07-17 08:23:26', '2019-07-17 11:31:27'),
(9118, '2019-07-17', 29, '2019-07-17 08:23:49', '2019-07-17 10:28:28'),
(9119, '2019-07-17', 97, '2019-07-17 08:25:05', NULL),
(9120, '2019-07-17', 78, '2019-07-17 08:25:08', '2019-07-17 10:33:40'),
(9121, '2019-07-17', 37, '2019-07-17 08:28:51', '2019-07-17 10:24:47'),
(9122, '2019-07-17', 80, '2019-07-17 08:28:55', NULL),
(9123, '2019-07-17', 145, '2019-07-17 08:29:19', '2019-07-17 11:31:18'),
(9124, '2019-07-17', 152, '2019-07-17 08:29:26', '2019-07-17 11:32:23'),
(9125, '2019-07-17', 9, '2019-07-17 08:29:38', '2019-07-17 12:08:07'),
(9126, '2019-07-17', 23, '2019-07-17 08:29:41', NULL),
(9127, '2019-07-17', 13, '2019-07-17 08:29:46', NULL),
(9128, '2019-07-17', 45, '2019-07-17 08:29:56', '2019-07-17 12:30:59'),
(9129, '2019-07-17', 179, '2019-07-17 08:30:00', NULL),
(9130, '2019-07-17', 72, '2019-07-17 08:30:05', '2019-07-17 12:46:56'),
(9131, '2019-07-17', 66, '2019-07-17 08:30:08', NULL),
(9132, '2019-07-17', 91, '2019-07-17 08:30:21', '2019-07-17 10:34:00'),
(9133, '2019-07-17', 90, '2019-07-17 08:30:25', '2019-07-17 10:33:18'),
(9134, '2019-07-17', 151, '2019-07-17 08:30:31', '2019-07-17 11:30:47'),
(9135, '2019-07-17', 11, '2019-07-17 08:30:36', NULL),
(9136, '2019-07-17', 15, '2019-07-17 08:30:41', NULL),
(9137, '2019-07-17', 189, '2019-07-17 08:30:45', '2019-07-17 12:40:58'),
(9138, '2019-07-17', 52, '2019-07-17 08:30:50', '2019-07-17 12:43:26'),
(9139, '2019-07-17', 166, '2019-07-17 08:30:55', '2019-07-17 12:08:12'),
(9140, '2019-07-17', 148, '2019-07-17 08:31:00', '2019-07-17 11:30:41'),
(9141, '2019-07-17', 38, '2019-07-17 08:31:06', '2019-07-17 10:23:36'),
(9142, '2019-07-17', 128, '2019-07-17 08:31:10', '2019-07-17 11:32:07'),
(9143, '2019-07-17', 77, '2019-07-17 08:31:56', '2019-07-17 10:34:35'),
(9144, '2019-07-17', 118, '2019-07-17 08:32:09', NULL),
(9145, '2019-07-17', 63, '2019-07-17 08:32:47', NULL),
(9146, '2019-07-17', 58, '2019-07-17 08:33:20', NULL),
(9147, '2019-07-17', 88, '2019-07-17 08:33:50', NULL),
(9148, '2019-07-17', 71, '2019-07-17 08:35:02', NULL),
(9149, '2019-07-17', 44, '2019-07-17 08:35:19', '2019-07-17 12:43:06'),
(9150, '2019-07-17', 87, '2019-07-17 08:35:32', '2019-07-17 10:34:47'),
(9151, '2019-07-17', 156, '2019-07-17 08:35:59', '2019-07-17 11:32:28'),
(9152, '2019-07-17', 171, '2019-07-17 08:36:32', '2019-07-17 12:45:03'),
(9153, '2019-07-17', 60, '2019-07-17 08:36:38', '2019-07-17 12:37:16'),
(9154, '2019-07-17', 177, '2019-07-17 08:36:44', NULL),
(9155, '2019-07-17', 162, '2019-07-17 08:37:38', '2019-07-17 12:07:22'),
(9156, '2019-07-17', 117, '2019-07-17 08:37:42', '2019-07-17 10:35:40'),
(9157, '2019-07-17', 112, '2019-07-17 08:38:35', '2019-07-17 10:44:12'),
(9158, '2019-07-17', 61, '2019-07-17 08:39:04', '2019-07-17 12:32:29'),
(9159, '2019-07-17', 134, '2019-07-17 08:41:13', '2019-07-17 11:31:42'),
(9160, '2019-07-17', 127, '2019-07-17 08:41:54', '2019-07-17 11:32:38'),
(9161, '2019-07-17', 76, '2019-07-17 08:42:41', '2019-07-17 10:33:46'),
(9162, '2019-07-17', 17, '2019-07-17 08:42:44', NULL),
(9163, '2019-07-17', 142, '2019-07-17 08:43:27', '2019-07-17 11:36:46'),
(9164, '2019-07-17', 113, '2019-07-17 08:46:23', '2019-07-17 10:32:29'),
(9165, '2019-07-17', 19, '2019-07-17 08:52:35', NULL),
(9166, '2019-07-17', 105, '2019-07-17 10:19:16', '2019-07-17 12:47:49'),
(9167, '2019-07-17', 149, '2019-07-17 10:30:18', '2019-07-17 12:04:16'),
(9168, '2019-07-17', 174, '2019-07-17 10:31:57', '2019-07-17 12:37:55'),
(9169, '2019-07-17', 86, '2019-07-17 10:34:10', NULL),
(9170, '2019-07-17', 111, '2019-07-17 10:35:21', '2019-07-17 12:11:55'),
(9171, '2019-07-17', 41, '2019-07-17 10:35:29', '2019-07-17 12:09:00'),
(9172, '2019-07-17', 42, '2019-07-17 10:35:57', '2019-07-17 12:09:06'),
(9173, '2019-07-17', 106, '2019-07-17 10:36:57', '2019-07-17 12:11:33'),
(9174, '2019-07-17', 104, '2019-07-17 10:39:38', '2019-07-17 12:00:04'),
(9175, '2019-07-17', 30, '2019-07-17 10:41:05', NULL),
(9176, '2019-07-17', 183, '2019-07-17 10:44:02', '2019-07-17 11:56:31'),
(9177, '2019-07-17', 35, '2019-07-17 10:48:35', '2019-07-17 12:07:28'),
(9178, '2019-07-17', 36, '2019-07-17 10:48:41', '2019-07-17 12:07:55'),
(9179, '2019-07-17', 103, '2019-07-17 10:55:51', '2019-07-17 12:30:45'),
(9180, '2019-07-17', 125, '2019-07-17 11:30:51', NULL),
(9181, '2019-07-17', 132, '2019-07-17 11:31:22', NULL),
(9182, '2019-07-17', 131, '2019-07-17 11:31:30', NULL),
(9183, '2019-07-17', 143, '2019-07-17 11:32:33', NULL),
(9184, '2019-07-17', 28, '2019-07-17 12:07:12', NULL),
(9185, '2019-07-17', 182, '2019-07-17 12:07:46', NULL),
(9186, '2019-07-17', 10, '2019-07-17 12:08:24', NULL),
(9187, '2019-07-17', 187, '2019-07-17 12:30:10', NULL),
(9188, '2019-07-17', 56, '2019-07-17 12:41:06', NULL),
(9189, '2019-07-20', 55, '2019-07-20 07:37:45', '2019-07-20 12:48:49'),
(9190, '2019-07-20', 67, '2019-07-20 07:50:47', '2019-07-20 12:48:40'),
(9191, '2019-07-20', 167, '2019-07-20 07:54:02', '2019-07-20 12:47:34'),
(9192, '2019-07-20', 23, '2019-07-20 07:54:48', NULL),
(9193, '2019-07-20', 44, '2019-07-20 07:57:00', '2019-07-20 12:47:30'),
(9194, '2019-07-20', 176, '2019-07-20 07:59:34', '2019-07-20 12:48:45'),
(9195, '2019-07-20', 57, '2019-07-20 07:59:37', NULL),
(9196, '2019-07-20', 124, '2019-07-20 08:03:41', '2019-07-20 11:37:25'),
(9197, '2019-07-20', 25, '2019-07-20 08:03:49', '2019-07-20 12:12:11'),
(9198, '2019-07-20', 85, '2019-07-20 08:04:28', '2019-07-20 10:34:01'),
(9199, '2019-07-20', 48, '2019-07-20 08:06:31', '2019-07-20 12:48:33'),
(9200, '2019-07-20', 169, '2019-07-20 08:08:17', NULL),
(9201, '2019-07-20', 89, '2019-07-20 08:08:33', '2019-07-20 10:33:28'),
(9202, '2019-07-20', 138, '2019-07-20 08:08:39', '2019-07-20 11:37:02'),
(9203, '2019-07-20', 39, '2019-07-20 08:08:55', NULL),
(9204, '2019-07-20', 99, '2019-07-20 08:10:15', '2019-07-20 10:33:37'),
(9205, '2019-07-20', 129, '2019-07-20 08:10:21', '2019-07-20 11:36:50'),
(9206, '2019-07-20', 139, '2019-07-20 08:12:04', '2019-07-20 11:37:46'),
(9207, '2019-07-20', 95, '2019-07-20 08:13:08', '2019-07-20 10:33:15'),
(9208, '2019-07-20', 126, '2019-07-20 08:15:15', '2019-07-20 11:37:41'),
(9209, '2019-07-20', 27, '2019-07-20 08:15:42', '2019-07-20 10:41:11'),
(9210, '2019-07-20', 86, '2019-07-20 08:15:50', '2019-07-20 10:33:55'),
(9211, '2019-07-20', 141, '2019-07-20 08:16:19', '2019-07-20 11:38:20'),
(9212, '2019-07-20', 84, '2019-07-20 08:16:35', '2019-07-20 10:34:09'),
(9213, '2019-07-20', 66, '2019-07-20 08:16:42', '2019-07-20 12:48:58'),
(9214, '2019-07-20', 80, '2019-07-20 08:16:47', NULL),
(9215, '2019-07-20', 170, '2019-07-20 08:18:31', NULL),
(9216, '2019-07-20', 133, '2019-07-20 08:19:40', '2019-07-20 11:37:52'),
(9217, '2019-07-20', 140, '2019-07-20 08:19:45', '2019-07-20 11:37:06'),
(9218, '2019-07-20', 92, '2019-07-20 08:21:04', '2019-07-20 10:33:10'),
(9219, '2019-07-20', 71, '2019-07-20 08:21:28', '2019-07-20 12:53:56'),
(9220, '2019-07-20', 131, '2019-07-20 08:21:34', '2019-07-20 11:37:19'),
(9221, '2019-07-20', 144, '2019-07-20 08:22:24', '2019-07-20 11:37:12'),
(9222, '2019-07-20', 70, '2019-07-20 08:22:49', '2019-07-20 12:49:02'),
(9223, '2019-07-20', 29, '2019-07-20 08:30:58', NULL),
(9224, '2019-07-20', 78, '2019-07-20 08:31:04', '2019-07-20 10:33:06'),
(9225, '2019-07-20', 96, '2019-07-20 08:31:11', '2019-07-20 10:33:22'),
(9226, '2019-07-20', 145, '2019-07-20 08:31:20', '2019-07-20 11:38:03'),
(9227, '2019-07-20', 152, '2019-07-20 08:31:34', '2019-07-20 11:42:07'),
(9228, '2019-07-20', 162, '2019-07-20 08:31:38', NULL),
(9229, '2019-07-20', 163, '2019-07-20 08:31:42', NULL),
(9230, '2019-07-20', 5, '2019-07-20 08:31:54', NULL),
(9231, '2019-07-20', 16, '2019-07-20 08:31:59', NULL),
(9232, '2019-07-20', 64, '2019-07-20 08:32:16', '2019-07-20 12:52:53'),
(9233, '2019-07-20', 72, '2019-07-20 08:32:21', '2019-07-20 12:53:03'),
(9234, '2019-07-20', 7, '2019-07-20 08:32:28', '2019-07-20 12:12:01'),
(9235, '2019-07-20', 128, '2019-07-20 08:32:35', '2019-07-20 11:38:54'),
(9236, '2019-07-20', 117, '2019-07-20 08:32:40', '2019-07-20 10:35:19'),
(9237, '2019-07-20', 88, '2019-07-20 08:32:45', '2019-07-20 10:34:25'),
(9238, '2019-07-20', 142, '2019-07-20 08:32:50', '2019-07-20 11:38:36'),
(9239, '2019-07-20', 112, '2019-07-20 08:33:01', '2019-07-20 10:49:30'),
(9240, '2019-07-20', 115, '2019-07-20 08:33:27', NULL),
(9241, '2019-07-20', 148, '2019-07-20 08:34:46', '2019-07-20 11:38:09'),
(9242, '2019-07-20', 189, '2019-07-20 08:34:49', '2019-07-20 12:52:57'),
(9243, '2019-07-20', 19, '2019-07-20 08:37:08', NULL),
(9244, '2019-07-20', 52, '2019-07-20 08:37:12', '2019-07-20 12:47:39'),
(9245, '2019-07-20', 91, '2019-07-20 08:37:31', '2019-07-20 10:34:36'),
(9246, '2019-07-20', 130, '2019-07-20 08:37:44', '2019-07-20 11:37:57'),
(9247, '2019-07-20', 113, '2019-07-20 08:37:52', '2019-07-20 10:25:05'),
(9248, '2019-07-20', 125, '2019-07-20 08:37:57', '2019-07-20 11:38:41'),
(9249, '2019-07-20', 90, '2019-07-20 08:38:01', '2019-07-20 10:34:22'),
(9250, '2019-07-20', 11, '2019-07-20 08:38:06', '2019-07-20 12:12:06'),
(9251, '2019-07-20', 134, '2019-07-20 08:38:49', '2019-07-20 11:39:00'),
(9252, '2019-07-20', 180, '2019-07-20 08:39:40', '2019-07-20 11:38:31'),
(9253, '2019-07-20', 127, '2019-07-20 08:40:36', NULL),
(9254, '2019-07-20', 151, '2019-07-20 08:41:40', '2019-07-20 11:38:44'),
(9255, '2019-07-20', 154, '2019-07-20 08:45:12', '2019-07-20 11:39:09'),
(9256, '2019-07-20', 153, '2019-07-20 08:46:19', '2019-07-20 11:39:13'),
(9257, '2019-07-20', 105, '2019-07-20 10:13:50', '2019-07-20 12:36:27'),
(9258, '2019-07-20', 37, '2019-07-20 10:22:33', NULL),
(9259, '2019-07-20', 31, '2019-07-20 10:22:42', NULL),
(9260, '2019-07-20', 149, '2019-07-20 10:31:05', NULL),
(9261, '2019-07-20', 97, '2019-07-20 10:33:44', NULL),
(9262, '2019-07-20', 110, '2019-07-20 10:33:47', NULL),
(9263, '2019-07-20', 76, '2019-07-20 10:33:52', NULL),
(9264, '2019-07-20', 87, '2019-07-20 10:34:17', NULL),
(9265, '2019-07-20', 160, '2019-07-20 10:34:31', NULL),
(9266, '2019-07-20', 93, '2019-07-20 10:34:41', NULL),
(9267, '2019-07-20', 28, '2019-07-20 10:36:22', '2019-07-20 12:35:48'),
(9268, '2019-07-20', 111, '2019-07-20 10:40:23', '2019-07-20 12:35:29'),
(9269, '2019-07-20', 42, '2019-07-20 10:40:44', NULL),
(9270, '2019-07-20', 30, '2019-07-20 10:41:43', NULL),
(9271, '2019-07-20', 187, '2019-07-20 10:44:30', '2019-07-20 12:35:18'),
(9272, '2019-07-20', 183, '2019-07-20 10:46:48', '2019-07-20 12:35:02'),
(9273, '2019-07-20', 35, '2019-07-20 10:47:04', NULL),
(9274, '2019-07-20', 36, '2019-07-20 10:47:11', NULL),
(9275, '2019-07-20', 157, '2019-07-20 11:37:36', NULL),
(9276, '2019-07-20', 150, '2019-07-20 11:38:15', NULL),
(9277, '2019-07-20', 137, '2019-07-20 11:38:26', NULL),
(9278, '2019-07-20', 143, '2019-07-20 11:39:04', NULL),
(9279, '2019-07-20', 14, '2019-07-20 12:11:19', NULL),
(9280, '2019-07-20', 184, '2019-07-20 12:35:53', NULL),
(9281, '2019-07-20', 53, '2019-07-20 12:48:18', NULL),
(9282, '2019-07-20', 168, '2019-07-20 12:48:24', NULL),
(9283, '2019-07-20', 56, '2019-07-20 12:48:55', NULL),
(9284, '2019-07-20', 63, '2019-07-20 12:52:40', NULL),
(9285, '2019-07-20', 41, '2019-07-20 12:59:39', NULL),
(9286, '2019-07-20', 62, '2019-07-20 22:22:18', NULL),
(9287, '2019-07-20', 190, '2019-07-20 22:29:53', NULL),
(9288, '2019-07-20', 191, '2019-07-20 22:30:59', NULL),
(9289, '2019-07-20', 192, '2019-07-20 22:34:47', NULL),
(9290, '2019-07-20', 120, '2019-07-20 22:39:22', NULL),
(9291, '2019-07-21', 55, '2019-07-21 07:40:30', NULL),
(9292, '2019-07-21', 34, '2019-07-21 07:41:11', '2019-07-21 10:38:25'),
(9293, '2019-07-21', 67, '2019-07-21 07:43:40', '2019-07-21 12:57:19'),
(9294, '2019-07-21', 70, '2019-07-21 07:48:08', '2019-07-21 12:55:44'),
(9295, '2019-07-21', 16, '2019-07-21 07:48:14', '2019-07-21 12:09:16'),
(9296, '2019-07-21', 141, '2019-07-21 07:54:45', '2019-07-21 11:36:41'),
(9297, '2019-07-21', 167, '2019-07-21 07:56:27', NULL),
(9298, '2019-07-21', 91, '2019-07-21 07:58:55', '2019-07-21 10:33:38'),
(9299, '2019-07-21', 176, '2019-07-21 07:59:07', NULL),
(9300, '2019-07-21', 57, '2019-07-21 07:59:20', NULL),
(9301, '2019-07-21', 10, '2019-07-21 08:00:51', NULL),
(9302, '2019-07-21', 53, '2019-07-21 08:01:06', '2019-07-21 12:48:24'),
(9303, '2019-07-21', 139, '2019-07-21 08:03:47', '2019-07-21 11:39:28'),
(9304, '2019-07-21', 46, '2019-07-21 08:04:02', '2019-07-21 12:48:09'),
(9305, '2019-07-21', 168, '2019-07-21 08:04:06', '2019-07-21 12:48:46'),
(9306, '2019-07-21', 96, '2019-07-21 08:04:49', '2019-07-21 10:34:06'),
(9307, '2019-07-21', 118, '2019-07-21 08:09:48', '2019-07-21 10:24:06'),
(9308, '2019-07-21', 7, '2019-07-21 08:10:21', '2019-07-21 10:35:33'),
(9309, '2019-07-21', 89, '2019-07-21 08:11:34', '2019-07-21 10:34:03'),
(9310, '2019-07-21', 62, '2019-07-21 08:11:41', NULL),
(9311, '2019-07-21', 191, '2019-07-21 08:11:49', '2019-07-21 12:56:01'),
(9312, '2019-07-21', 92, '2019-07-21 08:11:52', '2019-07-21 10:32:11'),
(9313, '2019-07-21', 65, '2019-07-21 08:12:21', NULL),
(9314, '2019-07-21', 14, '2019-07-21 08:12:46', NULL),
(9315, '2019-07-21', 170, '2019-07-21 08:12:59', '2019-07-21 12:48:49'),
(9316, '2019-07-21', 99, '2019-07-21 08:13:41', '2019-07-21 10:32:16'),
(9317, '2019-07-21', 23, '2019-07-21 08:13:49', '2019-07-21 12:08:21'),
(9318, '2019-07-21', 48, '2019-07-21 08:14:46', '2019-07-21 12:48:53'),
(9319, '2019-07-21', 133, '2019-07-21 08:16:17', NULL),
(9320, '2019-07-21', 86, '2019-07-21 08:17:04', '2019-07-21 10:32:41'),
(9321, '2019-07-21', 169, '2019-07-21 08:17:22', NULL),
(9322, '2019-07-21', 95, '2019-07-21 08:17:39', '2019-07-21 10:32:24'),
(9323, '2019-07-21', 163, '2019-07-21 08:17:48', '2019-07-21 12:08:55'),
(9324, '2019-07-21', 84, '2019-07-21 08:18:02', '2019-07-21 10:33:25'),
(9325, '2019-07-21', 79, '2019-07-21 08:18:08', '2019-07-21 10:32:36'),
(9326, '2019-07-21', 181, '2019-07-21 08:19:15', '2019-07-21 12:48:40'),
(9327, '2019-07-21', 27, '2019-07-21 08:19:26', '2019-07-21 10:23:54'),
(9328, '2019-07-21', 63, '2019-07-21 08:20:14', '2019-07-21 13:01:47'),
(9329, '2019-07-21', 37, '2019-07-21 08:21:42', '2019-07-21 10:23:50'),
(9330, '2019-07-21', 29, '2019-07-21 08:30:34', '2019-07-21 10:37:51'),
(9331, '2019-07-21', 78, '2019-07-21 08:30:42', NULL),
(9332, '2019-07-21', 87, '2019-07-21 08:30:50', NULL),
(9333, '2019-07-21', 80, '2019-07-21 08:30:55', NULL),
(9334, '2019-07-21', 132, '2019-07-21 08:31:00', NULL),
(9335, '2019-07-21', 135, '2019-07-21 08:31:07', '2019-07-21 11:39:31'),
(9336, '2019-07-21', 150, '2019-07-21 08:31:12', '2019-07-21 11:37:24'),
(9337, '2019-07-21', 66, '2019-07-21 08:31:28', '2019-07-21 13:03:58'),
(9338, '2019-07-21', 75, '2019-07-21 08:31:32', '2019-07-21 10:32:57'),
(9339, '2019-07-21', 56, '2019-07-21 08:31:37', '2019-07-21 12:55:47'),
(9340, '2019-07-21', 68, '2019-07-21 08:31:41', '2019-07-21 12:55:50'),
(9341, '2019-07-21', 45, '2019-07-21 08:31:53', '2019-07-21 12:49:28'),
(9342, '2019-07-21', 189, '2019-07-21 08:31:56', '2019-07-21 12:55:53'),
(9343, '2019-07-21', 125, '2019-07-21 08:32:04', NULL),
(9344, '2019-07-21', 113, '2019-07-21 08:32:09', '2019-07-21 10:38:16'),
(9345, '2019-07-21', 58, '2019-07-21 08:32:12', '2019-07-21 13:04:01'),
(9346, '2019-07-21', 130, '2019-07-21 08:32:17', '2019-07-21 11:36:24'),
(9347, '2019-07-21', 77, '2019-07-21 08:32:22', '2019-07-21 10:32:31'),
(9348, '2019-07-21', 11, '2019-07-21 08:32:26', '2019-07-21 12:09:27'),
(9349, '2019-07-21', 180, '2019-07-21 08:32:32', '2019-07-21 11:37:59'),
(9350, '2019-07-21', 52, '2019-07-21 08:32:37', '2019-07-21 12:48:13'),
(9351, '2019-07-21', 166, '2019-07-21 08:32:42', '2019-07-21 12:08:37'),
(9352, '2019-07-21', 142, '2019-07-21 08:32:52', '2019-07-21 11:39:55'),
(9353, '2019-07-21', 19, '2019-07-21 08:32:59', NULL),
(9354, '2019-07-21', 61, '2019-07-21 08:33:57', '2019-07-21 13:01:17'),
(9355, '2019-07-21', 153, '2019-07-21 08:34:35', NULL),
(9356, '2019-07-21', 88, '2019-07-21 08:34:43', '2019-07-21 10:33:48'),
(9357, '2019-07-21', 72, '2019-07-21 08:35:04', '2019-07-21 12:56:21'),
(9358, '2019-07-21', 152, '2019-07-21 08:35:12', '2019-07-21 11:37:30'),
(9359, '2019-07-21', 97, '2019-07-21 08:35:20', '2019-07-21 10:33:02'),
(9360, '2019-07-21', 117, '2019-07-21 08:36:23', '2019-07-21 10:31:04'),
(9361, '2019-07-21', 128, '2019-07-21 08:37:21', '2019-07-21 11:36:55'),
(9362, '2019-07-21', 131, '2019-07-21 08:37:27', '2019-07-21 11:44:50'),
(9363, '2019-07-21', 144, '2019-07-21 08:37:30', '2019-07-21 11:37:02'),
(9364, '2019-07-21', 115, '2019-07-21 08:37:40', '2019-07-21 10:24:00'),
(9365, '2019-07-21', 5, '2019-07-21 08:37:49', NULL),
(9366, '2019-07-21', 64, '2019-07-21 08:37:53', NULL),
(9367, '2019-07-21', 177, '2019-07-21 08:38:03', '2019-07-21 13:02:11'),
(9368, '2019-07-21', 112, '2019-07-21 08:38:35', '2019-07-21 10:28:41'),
(9369, '2019-07-21', 151, '2019-07-21 08:38:47', '2019-07-21 11:37:40'),
(9370, '2019-07-21', 110, '2019-07-21 08:42:21', '2019-07-21 10:33:12'),
(9371, '2019-07-21', 76, '2019-07-21 08:43:53', NULL),
(9372, '2019-07-21', 186, '2019-07-21 08:54:49', NULL),
(9373, '2019-07-21', 156, '2019-07-21 09:08:48', '2019-07-21 11:37:14'),
(9374, '2019-07-21', 105, '2019-07-21 10:16:40', '2019-07-21 12:40:00'),
(9375, '2019-07-21', 31, '2019-07-21 10:24:17', NULL),
(9376, '2019-07-21', 17, '2019-07-21 10:24:54', NULL),
(9377, '2019-07-21', 103, '2019-07-21 10:29:01', '2019-07-21 12:40:05'),
(9378, '2019-07-21', 104, '2019-07-21 10:31:30', '2019-07-21 12:39:26'),
(9379, '2019-07-21', 93, '2019-07-21 10:33:31', NULL),
(9380, '2019-07-21', 40, '2019-07-21 10:34:15', '2019-07-21 12:25:32'),
(9381, '2019-07-21', 149, '2019-07-21 10:34:21', NULL),
(9382, '2019-07-21', 111, '2019-07-21 10:34:54', '2019-07-21 12:39:50'),
(9383, '2019-07-21', 33, '2019-07-21 10:35:18', '2019-07-21 12:48:34'),
(9384, '2019-07-21', 42, '2019-07-21 10:35:26', NULL),
(9385, '2019-07-21', 174, '2019-07-21 10:35:56', '2019-07-21 12:39:17'),
(9386, '2019-07-21', 30, '2019-07-21 10:40:08', '2019-07-21 12:40:08'),
(9387, '2019-07-21', 187, '2019-07-21 10:46:09', '2019-07-21 12:39:13'),
(9388, '2019-07-21', 28, '2019-07-21 10:46:54', '2019-07-21 12:38:24'),
(9389, '2019-07-21', 183, '2019-07-21 10:50:26', '2019-07-21 12:39:09'),
(9390, '2019-07-21', 35, '2019-07-21 10:58:11', NULL),
(9391, '2019-07-21', 36, '2019-07-21 10:58:15', NULL),
(9392, '2019-07-21', 143, '2019-07-21 11:36:36', NULL),
(9393, '2019-07-21', 148, '2019-07-21 11:36:46', NULL),
(9394, '2019-07-21', 123, '2019-07-21 11:36:59', NULL),
(9395, '2019-07-21', 140, '2019-07-21 11:37:17', NULL),
(9396, '2019-07-21', 137, '2019-07-21 11:37:20', NULL),
(9397, '2019-07-21', 147, '2019-07-21 11:37:35', NULL),
(9398, '2019-07-21', 126, '2019-07-21 11:39:58', NULL),
(9399, '2019-07-21', 18, '2019-07-21 12:08:30', NULL),
(9400, '2019-07-21', 9, '2019-07-21 12:09:12', NULL),
(9401, '2019-07-21', 192, '2019-07-21 12:39:31', NULL),
(9402, '2019-07-21', 44, '2019-07-21 12:48:02', NULL),
(9403, '2019-07-21', 179, '2019-07-21 12:48:43', NULL),
(9404, '2019-07-22', 67, '2019-07-22 07:34:51', NULL),
(9405, '2019-07-22', 55, '2019-07-22 07:40:36', NULL),
(9406, '2019-07-22', 18, '2019-07-22 07:40:41', NULL),
(9407, '2019-07-22', 34, '2019-07-22 07:41:09', NULL),
(9408, '2019-07-22', 147, '2019-07-22 07:41:21', '2019-07-22 11:38:21'),
(9409, '2019-07-22', 25, '2019-07-22 07:55:12', '2019-07-22 12:09:11'),
(9410, '2019-07-22', 70, '2019-07-22 07:57:33', '2019-07-22 12:52:20'),
(9411, '2019-07-22', 16, '2019-07-22 07:57:41', NULL),
(9412, '2019-07-22', 159, '2019-07-22 08:00:16', '2019-07-22 10:30:55'),
(9413, '2019-07-22', 167, '2019-07-22 08:01:04', '2019-07-22 12:50:18'),
(9414, '2019-07-22', 92, '2019-07-22 08:02:08', '2019-07-22 10:29:56'),
(9415, '2019-07-22', 133, '2019-07-22 08:03:38', '2019-07-22 11:37:23'),
(9416, '2019-07-22', 139, '2019-07-22 08:04:37', '2019-07-22 11:42:21'),
(9417, '2019-07-22', 168, '2019-07-22 08:05:25', '2019-07-22 12:57:16'),
(9418, '2019-07-22', 91, '2019-07-22 08:06:04', '2019-07-22 10:30:39'),
(9419, '2019-07-22', 90, '2019-07-22 08:06:10', NULL),
(9420, '2019-07-22', 57, '2019-07-22 08:06:52', '2019-07-22 12:53:01'),
(9421, '2019-07-22', 138, '2019-07-22 08:06:58', '2019-07-22 11:37:06'),
(9422, '2019-07-22', 23, '2019-07-22 08:08:07', NULL),
(9423, '2019-07-22', 44, '2019-07-22 08:11:09', '2019-07-22 12:49:45'),
(9424, '2019-07-22', 46, '2019-07-22 08:11:35', '2019-07-22 12:51:08'),
(9425, '2019-07-22', 118, '2019-07-22 08:11:41', '2019-07-22 10:21:52'),
(9426, '2019-07-22', 10, '2019-07-22 08:13:09', '2019-07-22 12:10:08'),
(9427, '2019-07-22', 89, '2019-07-22 08:13:44', '2019-07-22 10:29:38'),
(9428, '2019-07-22', 129, '2019-07-22 08:13:53', '2019-07-22 11:36:51'),
(9429, '2019-07-22', 7, '2019-07-22 08:14:18', '2019-07-22 12:09:18'),
(9430, '2019-07-22', 124, '2019-07-22 08:14:38', '2019-07-22 11:38:34'),
(9431, '2019-07-22', 99, '2019-07-22 08:15:23', '2019-07-22 10:30:33'),
(9432, '2019-07-22', 68, '2019-07-22 08:16:40', '2019-07-22 12:53:37'),
(9433, '2019-07-22', 181, '2019-07-22 08:19:19', '2019-07-22 12:50:00'),
(9434, '2019-07-22', 145, '2019-07-22 08:19:32', '2019-07-22 11:37:53'),
(9435, '2019-07-22', 79, '2019-07-22 08:19:50', '2019-07-22 10:30:06'),
(9436, '2019-07-22', 131, '2019-07-22 08:19:55', '2019-07-22 11:39:35'),
(9437, '2019-07-22', 101, '2019-07-22 08:20:10', '2019-07-22 10:30:27'),
(9438, '2019-07-22', 80, '2019-07-22 08:30:10', NULL),
(9439, '2019-07-22', 84, '2019-07-22 08:30:16', '2019-07-22 10:31:06'),
(9440, '2019-07-22', 150, '2019-07-22 08:30:19', '2019-07-22 11:38:10'),
(9441, '2019-07-22', 126, '2019-07-22 08:30:24', '2019-07-22 11:38:05'),
(9442, '2019-07-22', 140, '2019-07-22 08:30:28', '2019-07-22 11:39:32'),
(9443, '2019-07-22', 29, '2019-07-22 08:30:32', '2019-07-22 10:26:44'),
(9444, '2019-07-22', 9, '2019-07-22 08:30:46', NULL),
(9445, '2019-07-22', 5, '2019-07-22 08:30:51', '2019-07-22 12:09:51'),
(9446, '2019-07-22', 144, '2019-07-22 08:30:56', '2019-07-22 11:38:29'),
(9447, '2019-07-22', 63, '2019-07-22 08:31:02', NULL),
(9448, '2019-07-22', 56, '2019-07-22 08:31:07', '2019-07-22 12:53:59'),
(9449, '2019-07-22', 66, '2019-07-22 08:31:12', NULL),
(9450, '2019-07-22', 64, '2019-07-22 08:31:17', NULL),
(9451, '2019-07-22', 15, '2019-07-22 08:31:23', NULL),
(9452, '2019-07-22', 78, '2019-07-22 08:31:28', '2019-07-22 10:29:59'),
(9453, '2019-07-22', 189, '2019-07-22 08:31:31', '2019-07-22 12:54:22'),
(9454, '2019-07-22', 97, '2019-07-22 08:31:36', '2019-07-22 10:34:38'),
(9455, '2019-07-22', 45, '2019-07-22 08:31:41', '2019-07-22 12:53:05'),
(9456, '2019-07-22', 135, '2019-07-22 08:31:45', '2019-07-22 11:37:59'),
(9457, '2019-07-22', 128, '2019-07-22 08:31:49', NULL),
(9458, '2019-07-22', 72, '2019-07-22 08:31:54', '2019-07-22 12:53:25'),
(9459, '2019-07-22', 179, '2019-07-22 08:31:58', '2019-07-22 12:57:20'),
(9460, '2019-07-22', 71, '2019-07-22 08:32:03', '2019-07-22 12:52:52'),
(9461, '2019-07-22', 152, '2019-07-22 08:32:07', '2019-07-22 11:40:15'),
(9462, '2019-07-22', 48, '2019-07-22 08:32:11', '2019-07-22 12:49:49'),
(9463, '2019-07-22', 180, '2019-07-22 08:32:15', '2019-07-22 11:38:45'),
(9464, '2019-07-22', 166, '2019-07-22 08:32:20', '2019-07-22 12:09:56'),
(9465, '2019-07-22', 141, '2019-07-22 08:32:24', '2019-07-22 11:38:50'),
(9466, '2019-07-22', 85, '2019-07-22 08:32:30', '2019-07-22 10:31:01'),
(9467, '2019-07-22', 178, '2019-07-22 08:32:33', '2019-07-22 10:38:07'),
(9468, '2019-07-22', 38, '2019-07-22 08:32:38', '2019-07-22 10:28:56'),
(9469, '2019-07-22', 61, '2019-07-22 08:32:42', '2019-07-22 12:52:57'),
(9470, '2019-07-22', 77, '2019-07-22 08:33:13', '2019-07-22 10:31:10'),
(9471, '2019-07-22', 156, '2019-07-22 08:33:38', '2019-07-22 11:37:48'),
(9472, '2019-07-22', 60, '2019-07-22 08:33:49', '2019-07-22 12:54:19'),
(9473, '2019-07-22', 58, '2019-07-22 08:34:19', '2019-07-22 12:54:14'),
(9474, '2019-07-22', 43, '2019-07-22 08:34:50', NULL),
(9475, '2019-07-22', 142, '2019-07-22 08:35:15', '2019-07-22 11:39:05'),
(9476, '2019-07-22', 177, '2019-07-22 08:35:22', '2019-07-22 12:53:08'),
(9477, '2019-07-22', 88, '2019-07-22 08:36:22', '2019-07-22 10:31:17'),
(9478, '2019-07-22', 17, '2019-07-22 08:39:05', '2019-07-22 10:21:57'),
(9479, '2019-07-22', 112, '2019-07-22 08:39:51', '2019-07-22 10:45:31'),
(9480, '2019-07-22', 120, '2019-07-22 08:39:54', '2019-07-22 10:30:20'),
(9481, '2019-07-22', 52, '2019-07-22 08:40:19', '2019-07-22 12:51:15'),
(9482, '2019-07-22', 113, '2019-07-22 08:40:23', '2019-07-22 10:33:39'),
(9483, '2019-07-22', 125, '2019-07-22 08:40:34', '2019-07-22 11:40:24'),
(9484, '2019-07-22', 11, '2019-07-22 08:40:39', '2019-07-22 12:10:04'),
(9485, '2019-07-22', 148, '2019-07-22 08:41:46', '2019-07-22 11:38:15'),
(9486, '2019-07-22', 151, '2019-07-22 08:41:52', '2019-07-22 11:39:00'),
(9487, '2019-07-22', 115, '2019-07-22 08:44:15', NULL),
(9488, '2019-07-22', 134, '2019-07-22 08:46:34', '2019-07-22 11:41:43'),
(9489, '2019-07-22', 105, '2019-07-22 10:15:58', '2019-07-22 12:51:58'),
(9490, '2019-07-22', 27, '2019-07-22 10:21:49', NULL),
(9491, '2019-07-22', 40, '2019-07-22 10:26:06', '2019-07-22 12:36:57'),
(9492, '2019-07-22', 103, '2019-07-22 10:27:21', '2019-07-22 12:43:21'),
(9493, '2019-07-22', 95, '2019-07-22 10:29:33', NULL),
(9494, '2019-07-22', 149, '2019-07-22 10:29:43', NULL),
(9495, '2019-07-22', 76, '2019-07-22 10:30:44', NULL),
(9496, '2019-07-22', 86, '2019-07-22 10:30:50', NULL),
(9497, '2019-07-22', 93, '2019-07-22 10:31:22', NULL),
(9498, '2019-07-22', 30, '2019-07-22 10:31:33', '2019-07-22 12:43:52'),
(9499, '2019-07-22', 174, '2019-07-22 10:32:24', '2019-07-22 12:47:37'),
(9500, '2019-07-22', 111, '2019-07-22 10:37:00', '2019-07-22 12:47:40'),
(9501, '2019-07-22', 33, '2019-07-22 10:37:05', '2019-07-22 12:45:59'),
(9502, '2019-07-22', 42, '2019-07-22 10:37:24', NULL),
(9503, '2019-07-22', 187, '2019-07-22 10:38:59', '2019-07-22 12:43:45'),
(9504, '2019-07-22', 28, '2019-07-22 10:39:51', '2019-07-22 12:35:21'),
(9505, '2019-07-22', 104, '2019-07-22 10:40:08', '2019-07-22 12:43:18'),
(9506, '2019-07-22', 192, '2019-07-22 10:47:07', '2019-07-22 12:43:14'),
(9507, '2019-07-22', 183, '2019-07-22 10:48:19', '2019-07-22 12:43:11'),
(9508, '2019-07-22', 35, '2019-07-22 10:54:06', '2019-07-22 12:36:41'),
(9509, '2019-07-22', 36, '2019-07-22 10:54:26', '2019-07-22 12:37:04'),
(9510, '2019-07-22', 132, '2019-07-22 11:37:29', NULL),
(9511, '2019-07-22', 123, '2019-07-22 11:38:39', NULL),
(9512, '2019-07-22', 186, '2019-07-22 11:38:55', NULL),
(9513, '2019-07-22', 184, '2019-07-22 12:34:56', NULL),
(9514, '2019-07-22', 53, '2019-07-22 12:51:30', NULL),
(9515, '2019-07-23', 191, '2019-07-23 07:51:51', '2019-07-23 12:48:49'),
(9516, '2019-07-23', 91, '2019-07-23 07:53:52', '2019-07-23 10:33:38'),
(9517, '2019-07-23', 90, '2019-07-23 07:54:05', '2019-07-23 10:32:54'),
(9518, '2019-07-23', 57, '2019-07-23 07:54:11', NULL),
(9519, '2019-07-23', 176, '2019-07-23 07:54:17', '2019-07-23 12:46:10'),
(9520, '2019-07-23', 167, '2019-07-23 07:54:26', '2019-07-23 12:46:02'),
(9521, '2019-07-23', 16, '2019-07-23 07:56:05', '2019-07-23 12:12:06'),
(9522, '2019-07-23', 70, '2019-07-23 07:57:07', '2019-07-23 12:49:03'),
(9523, '2019-07-23', 142, '2019-07-23 07:59:06', '2019-07-23 11:36:48'),
(9524, '2019-07-23', 141, '2019-07-23 07:59:40', NULL),
(9525, '2019-07-23', 162, '2019-07-23 08:01:39', '2019-07-23 12:11:33'),
(9526, '2019-07-23', 124, '2019-07-23 08:02:28', '2019-07-23 11:36:53'),
(9527, '2019-07-23', 168, '2019-07-23 08:02:40', NULL),
(9528, '2019-07-23', 31, '2019-07-23 08:04:56', '2019-07-23 10:29:53'),
(9529, '2019-07-23', 171, '2019-07-23 08:05:48', NULL),
(9530, '2019-07-23', 99, '2019-07-23 08:06:40', '2019-07-23 10:34:06'),
(9531, '2019-07-23', 46, '2019-07-23 08:06:46', '2019-07-23 12:46:07'),
(9532, '2019-07-23', 145, '2019-07-23 08:08:14', '2019-07-23 11:37:04'),
(9533, '2019-07-23', 68, '2019-07-23 08:08:25', '2019-07-23 12:48:52'),
(9534, '2019-07-23', 181, '2019-07-23 08:08:29', '2019-07-23 12:45:47'),
(9535, '2019-07-23', 89, '2019-07-23 08:08:52', '2019-07-23 10:33:27'),
(9536, '2019-07-23', 48, '2019-07-23 08:09:19', '2019-07-23 12:45:51'),
(9537, '2019-07-23', 101, '2019-07-23 08:10:17', NULL),
(9538, '2019-07-23', 138, '2019-07-23 08:10:25', '2019-07-23 11:37:25'),
(9539, '2019-07-23', 85, '2019-07-23 08:10:54', '2019-07-23 10:34:11'),
(9540, '2019-07-23', 129, '2019-07-23 08:13:35', '2019-07-23 11:36:35'),
(9541, '2019-07-23', 23, '2019-07-23 08:13:44', '2019-07-23 12:14:05'),
(9542, '2019-07-23', 139, '2019-07-23 08:13:56', NULL),
(9543, '2019-07-23', 53, '2019-07-23 08:14:35', '2019-07-23 12:44:52'),
(9544, '2019-07-23', 10, '2019-07-23 08:14:49', '2019-07-23 12:12:09'),
(9545, '2019-07-23', 92, '2019-07-23 08:17:04', '2019-07-23 10:34:01'),
(9546, '2019-07-23', 27, '2019-07-23 08:17:07', '2019-07-23 10:34:50'),
(9547, '2019-07-23', 39, '2019-07-23 08:17:14', NULL),
(9548, '2019-07-23', 170, '2019-07-23 08:17:37', NULL),
(9549, '2019-07-23', 7, '2019-07-23 08:19:19', '2019-07-23 12:14:40'),
(9550, '2019-07-23', 84, '2019-07-23 08:19:51', '2019-07-23 10:33:11'),
(9551, '2019-07-23', 14, '2019-07-23 08:20:18', NULL),
(9552, '2019-07-23', 86, '2019-07-23 08:20:27', '2019-07-23 10:33:42'),
(9553, '2019-07-23', 135, '2019-07-23 08:20:32', '2019-07-23 11:36:32'),
(9554, '2019-07-23', 63, '2019-07-23 08:21:23', '2019-07-23 12:48:01'),
(9555, '2019-07-23', 71, '2019-07-23 08:21:46', '2019-07-23 12:48:32'),
(9556, '2019-07-23', 45, '2019-07-23 08:22:41', '2019-07-23 12:47:14'),
(9557, '2019-07-23', 190, '2019-07-23 08:24:21', '2019-07-23 12:48:45'),
(9558, '2019-07-23', 87, '2019-07-23 08:24:48', '2019-07-23 10:33:33'),
(9559, '2019-07-23', 38, '2019-07-23 08:25:07', '2019-07-23 10:33:19'),
(9560, '2019-07-23', 144, '2019-07-23 08:29:37', '2019-07-23 11:43:18'),
(9561, '2019-07-23', 97, '2019-07-23 08:31:39', '2019-07-23 10:34:17'),
(9562, '2019-07-23', 77, '2019-07-23 08:31:53', '2019-07-23 10:33:56'),
(9563, '2019-07-23', 75, '2019-07-23 08:32:05', NULL),
(9564, '2019-07-23', 113, '2019-07-23 08:32:10', '2019-07-23 10:31:43'),
(9565, '2019-07-23', 128, '2019-07-23 08:32:17', '2019-07-23 11:37:09'),
(9566, '2019-07-23', 130, '2019-07-23 08:32:22', '2019-07-23 11:37:35'),
(9567, '2019-07-23', 152, '2019-07-23 08:32:27', '2019-07-23 11:37:20'),
(9568, '2019-07-23', 182, '2019-07-23 08:32:33', NULL),
(9569, '2019-07-23', 61, '2019-07-23 08:32:36', '2019-07-23 12:48:13'),
(9570, '2019-07-23', 56, '2019-07-23 08:32:41', '2019-07-23 12:48:17'),
(9571, '2019-07-23', 5, '2019-07-23 08:32:47', '2019-07-23 12:13:16'),
(9572, '2019-07-23', 11, '2019-07-23 08:32:52', '2019-07-23 12:15:12'),
(9573, '2019-07-23', 64, '2019-07-23 08:33:01', NULL),
(9574, '2019-07-23', 72, '2019-07-23 08:33:07', '2019-07-23 12:48:21'),
(9575, '2019-07-23', 179, '2019-07-23 08:33:17', '2019-07-23 12:53:11'),
(9576, '2019-07-23', 52, '2019-07-23 08:33:25', NULL),
(9577, '2019-07-23', 189, '2019-07-23 08:33:30', NULL),
(9578, '2019-07-23', 148, '2019-07-23 08:33:35', '2019-07-23 11:38:06'),
(9579, '2019-07-23', 60, '2019-07-23 08:33:42', NULL),
(9580, '2019-07-23', 88, '2019-07-23 08:34:30', '2019-07-23 10:34:24'),
(9581, '2019-07-23', 177, '2019-07-23 08:34:39', '2019-07-23 12:48:38'),
(9582, '2019-07-23', 15, '2019-07-23 08:34:54', NULL),
(9583, '2019-07-23', 140, '2019-07-23 08:35:17', '2019-07-23 11:38:02'),
(9584, '2019-07-23', 29, '2019-07-23 08:35:24', NULL),
(9585, '2019-07-23', 151, '2019-07-23 08:35:34', '2019-07-23 11:38:11'),
(9586, '2019-07-23', 166, '2019-07-23 08:36:38', '2019-07-23 12:15:06'),
(9587, '2019-07-23', 120, '2019-07-23 08:36:59', NULL),
(9588, '2019-07-23', 153, '2019-07-23 08:37:21', '2019-07-23 11:37:51'),
(9589, '2019-07-23', 80, '2019-07-23 08:39:16', NULL),
(9590, '2019-07-23', 66, '2019-07-23 08:39:19', '2019-07-23 12:48:29'),
(9591, '2019-07-23', 19, '2019-07-23 08:40:16', NULL),
(9592, '2019-07-23', 156, '2019-07-23 08:40:22', '2019-07-23 11:37:14'),
(9593, '2019-07-23', 186, '2019-07-23 08:41:19', NULL),
(9594, '2019-07-23', 134, '2019-07-23 08:43:34', '2019-07-23 11:37:30'),
(9595, '2019-07-23', 105, '2019-07-23 10:20:22', '2019-07-23 12:44:13'),
(9596, '2019-07-23', 103, '2019-07-23 10:30:40', NULL),
(9597, '2019-07-23', 174, '2019-07-23 10:30:43', '2019-07-23 12:43:51'),
(9598, '2019-07-23', 78, '2019-07-23 10:32:58', NULL),
(9599, '2019-07-23', 93, '2019-07-23 10:33:52', NULL),
(9600, '2019-07-23', 40, '2019-07-23 10:36:13', '2019-07-23 12:36:09'),
(9601, '2019-07-23', 35, '2019-07-23 10:36:41', '2019-07-23 12:35:14'),
(9602, '2019-07-23', 36, '2019-07-23 10:36:59', NULL),
(9603, '2019-07-23', 104, '2019-07-23 10:37:40', '2019-07-23 12:42:15'),
(9604, '2019-07-23', 28, '2019-07-23 10:38:18', '2019-07-23 12:35:10'),
(9605, '2019-07-23', 102, '2019-07-23 10:38:30', '2019-07-23 12:43:37'),
(9606, '2019-07-23', 111, '2019-07-23 10:38:35', '2019-07-23 12:44:07'),
(9607, '2019-07-23', 41, '2019-07-23 10:38:45', '2019-07-23 12:49:29'),
(9608, '2019-07-23', 42, '2019-07-23 10:39:18', '2019-07-23 12:49:46'),
(9609, '2019-07-23', 192, '2019-07-23 10:40:04', '2019-07-23 12:44:01');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(9610, '2019-07-23', 187, '2019-07-23 10:42:37', '2019-07-23 12:43:58'),
(9611, '2019-07-23', 112, '2019-07-23 10:46:42', NULL),
(9612, '2019-07-23', 183, '2019-07-23 10:48:16', '2019-07-23 12:44:04'),
(9613, '2019-07-23', 125, '2019-07-23 11:36:25', NULL),
(9614, '2019-07-23', 126, '2019-07-23 11:36:29', NULL),
(9615, '2019-07-23', 143, '2019-07-23 11:36:39', NULL),
(9616, '2019-07-23', 137, '2019-07-23 11:36:44', NULL),
(9617, '2019-07-23', 123, '2019-07-23 11:36:59', NULL),
(9618, '2019-07-23', 132, '2019-07-23 11:37:43', NULL),
(9619, '2019-07-23', 131, '2019-07-23 11:37:48', NULL),
(9620, '2019-07-23', 184, '2019-07-23 12:35:56', NULL),
(9621, '2019-07-23', 44, '2019-07-23 12:47:05', NULL),
(9622, '2019-07-23', 55, '2019-07-23 12:48:26', NULL),
(9623, '2019-07-24', 55, '2019-07-24 07:44:34', '2019-07-24 12:44:56'),
(9624, '2019-07-24', 141, '2019-07-24 07:44:37', '2019-07-24 11:36:22'),
(9625, '2019-07-24', 18, '2019-07-24 07:44:53', '2019-07-24 12:07:14'),
(9626, '2019-07-24', 147, '2019-07-24 07:45:07', '2019-07-24 11:36:53'),
(9627, '2019-07-24', 34, '2019-07-24 07:45:37', NULL),
(9628, '2019-07-24', 67, '2019-07-24 07:50:39', NULL),
(9629, '2019-07-24', 167, '2019-07-24 07:54:40', '2019-07-24 12:48:22'),
(9630, '2019-07-24', 16, '2019-07-24 07:57:47', '2019-07-24 12:07:24'),
(9631, '2019-07-24', 57, '2019-07-24 07:57:50', NULL),
(9632, '2019-07-24', 25, '2019-07-24 07:59:19', '2019-07-24 12:07:19'),
(9633, '2019-07-24', 91, '2019-07-24 07:59:25', '2019-07-24 10:31:24'),
(9634, '2019-07-24', 48, '2019-07-24 07:59:33', '2019-07-24 12:49:17'),
(9635, '2019-07-24', 124, '2019-07-24 07:59:47', '2019-07-24 11:35:56'),
(9636, '2019-07-24', 162, '2019-07-24 08:03:04', '2019-07-24 12:06:43'),
(9637, '2019-07-24', 168, '2019-07-24 08:04:12', '2019-07-24 12:52:32'),
(9638, '2019-07-24', 68, '2019-07-24 08:07:06', '2019-07-24 12:45:01'),
(9639, '2019-07-24', 7, '2019-07-24 08:07:42', '2019-07-24 12:07:33'),
(9640, '2019-07-24', 126, '2019-07-24 08:07:53', '2019-07-24 11:36:26'),
(9641, '2019-07-24', 92, '2019-07-24 08:08:40', '2019-07-24 10:30:23'),
(9642, '2019-07-24', 89, '2019-07-24 08:08:46', '2019-07-24 10:32:00'),
(9643, '2019-07-24', 138, '2019-07-24 08:10:57', '2019-07-24 11:37:39'),
(9644, '2019-07-24', 154, '2019-07-24 08:11:51', '2019-07-24 11:35:46'),
(9645, '2019-07-24', 65, '2019-07-24 08:12:34', NULL),
(9646, '2019-07-24', 139, '2019-07-24 08:12:54', '2019-07-24 11:36:07'),
(9647, '2019-07-24', 84, '2019-07-24 08:13:19', '2019-07-24 10:31:04'),
(9648, '2019-07-24', 99, '2019-07-24 08:13:39', '2019-07-24 10:30:28'),
(9649, '2019-07-24', 86, '2019-07-24 08:13:43', '2019-07-24 10:30:37'),
(9650, '2019-07-24', 101, '2019-07-24 08:15:23', '2019-07-24 10:31:52'),
(9651, '2019-07-24', 27, '2019-07-24 08:16:18', '2019-07-24 10:21:18'),
(9652, '2019-07-24', 135, '2019-07-24 08:17:55', NULL),
(9653, '2019-07-24', 46, '2019-07-24 08:18:14', '2019-07-24 12:49:02'),
(9654, '2019-07-24', 85, '2019-07-24 08:18:21', '2019-07-24 10:30:52'),
(9655, '2019-07-24', 14, '2019-07-24 08:18:42', '2019-07-24 12:07:37'),
(9656, '2019-07-24', 71, '2019-07-24 08:18:57', '2019-07-24 12:44:43'),
(9657, '2019-07-24', 45, '2019-07-24 08:20:32', '2019-07-24 12:50:24'),
(9658, '2019-07-24', 29, '2019-07-24 08:30:36', '2019-07-24 10:30:31'),
(9659, '2019-07-24', 128, '2019-07-24 08:30:41', '2019-07-24 11:36:37'),
(9660, '2019-07-24', 75, '2019-07-24 08:30:48', NULL),
(9661, '2019-07-24', 60, '2019-07-24 08:31:17', '2019-07-24 12:44:37'),
(9662, '2019-07-24', 191, '2019-07-24 08:31:21', NULL),
(9663, '2019-07-24', 56, '2019-07-24 08:31:25', '2019-07-24 12:44:22'),
(9664, '2019-07-24', 63, '2019-07-24 08:31:33', NULL),
(9665, '2019-07-24', 144, '2019-07-24 08:31:59', '2019-07-24 11:37:34'),
(9666, '2019-07-24', 79, '2019-07-24 08:32:03', NULL),
(9667, '2019-07-24', 64, '2019-07-24 08:32:09', NULL),
(9668, '2019-07-24', 178, '2019-07-24 08:32:13', NULL),
(9669, '2019-07-24', 152, '2019-07-24 08:32:18', '2019-07-24 11:42:19'),
(9670, '2019-07-24', 113, '2019-07-24 08:32:23', '2019-07-24 10:23:00'),
(9671, '2019-07-24', 97, '2019-07-24 08:32:27', '2019-07-24 10:31:16'),
(9672, '2019-07-24', 72, '2019-07-24 08:32:31', '2019-07-24 12:44:26'),
(9673, '2019-07-24', 189, '2019-07-24 08:32:35', '2019-07-24 12:44:50'),
(9674, '2019-07-24', 151, '2019-07-24 08:32:43', '2019-07-24 11:37:13'),
(9675, '2019-07-24', 5, '2019-07-24 08:32:46', '2019-07-24 12:07:29'),
(9676, '2019-07-24', 11, '2019-07-24 08:32:50', '2019-07-24 12:07:48'),
(9677, '2019-07-24', 77, '2019-07-24 08:32:54', '2019-07-24 10:30:43'),
(9678, '2019-07-24', 130, '2019-07-24 08:32:59', '2019-07-24 11:35:39'),
(9679, '2019-07-24', 88, '2019-07-24 08:33:03', NULL),
(9680, '2019-07-24', 125, '2019-07-24 08:33:08', '2019-07-24 11:37:28'),
(9681, '2019-07-24', 131, '2019-07-24 08:33:12', '2019-07-24 11:36:47'),
(9682, '2019-07-24', 123, '2019-07-24 08:33:19', '2019-07-24 11:36:02'),
(9683, '2019-07-24', 17, '2019-07-24 08:33:48', NULL),
(9684, '2019-07-24', 120, '2019-07-24 08:34:36', '2019-07-24 10:21:51'),
(9685, '2019-07-24', 148, '2019-07-24 08:34:55', '2019-07-24 11:37:02'),
(9686, '2019-07-24', 61, '2019-07-24 08:35:43', '2019-07-24 12:53:34'),
(9687, '2019-07-24', 166, '2019-07-24 08:35:50', '2019-07-24 12:07:03'),
(9688, '2019-07-24', 117, '2019-07-24 08:36:01', '2019-07-24 10:34:27'),
(9689, '2019-07-24', 44, '2019-07-24 08:36:10', '2019-07-24 12:49:44'),
(9690, '2019-07-24', 142, '2019-07-24 08:37:00', '2019-07-24 11:37:44'),
(9691, '2019-07-24', 150, '2019-07-24 08:37:06', '2019-07-24 11:37:06'),
(9692, '2019-07-24', 31, '2019-07-24 08:38:20', '2019-07-24 10:34:21'),
(9693, '2019-07-24', 80, '2019-07-24 08:38:24', NULL),
(9694, '2019-07-24', 66, '2019-07-24 08:38:30', '2019-07-24 12:44:14'),
(9695, '2019-07-24', 177, '2019-07-24 08:38:51', '2019-07-24 12:44:34'),
(9696, '2019-07-24', 180, '2019-07-24 08:40:44', '2019-07-24 11:37:18'),
(9697, '2019-07-24', 134, '2019-07-24 08:45:36', '2019-07-24 11:36:58'),
(9698, '2019-07-24', 19, '2019-07-24 08:48:52', NULL),
(9699, '2019-07-24', 156, '2019-07-24 09:08:46', '2019-07-24 11:36:16'),
(9700, '2019-07-24', 105, '2019-07-24 10:20:00', '2019-07-24 12:40:46'),
(9701, '2019-07-24', 174, '2019-07-24 10:23:23', NULL),
(9702, '2019-07-24', 103, '2019-07-24 10:26:37', '2019-07-24 12:40:52'),
(9703, '2019-07-24', 78, '2019-07-24 10:30:11', NULL),
(9704, '2019-07-24', 93, '2019-07-24 10:31:41', NULL),
(9705, '2019-07-24', 30, '2019-07-24 10:36:59', NULL),
(9706, '2019-07-24', 102, '2019-07-24 10:37:07', '2019-07-24 12:40:14'),
(9707, '2019-07-24', 40, '2019-07-24 10:37:10', '2019-07-24 12:34:03'),
(9708, '2019-07-24', 111, '2019-07-24 10:37:13', '2019-07-24 12:55:00'),
(9709, '2019-07-24', 192, '2019-07-24 10:37:21', '2019-07-24 12:40:30'),
(9710, '2019-07-24', 33, '2019-07-24 10:38:12', NULL),
(9711, '2019-07-24', 41, '2019-07-24 10:38:17', '2019-07-24 12:52:37'),
(9712, '2019-07-24', 36, '2019-07-24 10:39:19', NULL),
(9713, '2019-07-24', 35, '2019-07-24 10:39:24', NULL),
(9714, '2019-07-24', 104, '2019-07-24 10:39:39', '2019-07-24 12:40:49'),
(9715, '2019-07-24', 28, '2019-07-24 10:43:09', '2019-07-24 12:33:06'),
(9716, '2019-07-24', 183, '2019-07-24 10:47:57', '2019-07-24 12:40:25'),
(9717, '2019-07-24', 129, '2019-07-24 11:35:51', NULL),
(9718, '2019-07-24', 137, '2019-07-24 11:36:32', NULL),
(9719, '2019-07-24', 132, '2019-07-24 11:37:49', NULL),
(9720, '2019-07-24', 23, '2019-07-24 12:06:39', NULL),
(9721, '2019-07-24', 10, '2019-07-24 12:07:53', NULL),
(9722, '2019-07-24', 184, '2019-07-24 12:33:10', NULL),
(9723, '2019-07-24', 176, '2019-07-24 12:48:55', NULL),
(9724, '2019-07-24', 190, '2019-07-24 12:49:56', NULL),
(9725, '2019-07-24', 170, '2019-07-24 12:50:27', NULL),
(9726, '2019-07-24', 42, '2019-07-24 12:52:40', NULL),
(9727, '2019-07-27', 147, '2019-07-27 07:40:02', NULL),
(9728, '2019-07-27', 18, '2019-07-27 07:40:07', '2019-07-27 12:09:41'),
(9729, '2019-07-27', 34, '2019-07-27 07:40:20', '2019-07-27 10:22:37'),
(9730, '2019-07-27', 67, '2019-07-27 07:58:45', NULL),
(9731, '2019-07-27', 57, '2019-07-27 08:01:48', '2019-07-27 12:47:08'),
(9732, '2019-07-27', 176, '2019-07-27 08:01:53', '2019-07-27 12:47:18'),
(9733, '2019-07-27', 23, '2019-07-27 08:01:59', '2019-07-27 12:11:34'),
(9734, '2019-07-27', 91, '2019-07-27 08:02:05', '2019-07-27 10:37:06'),
(9735, '2019-07-27', 98, '2019-07-27 08:02:15', '2019-07-27 10:37:11'),
(9736, '2019-07-27', 169, '2019-07-27 08:02:50', '2019-07-27 12:46:44'),
(9737, '2019-07-27', 163, '2019-07-27 08:02:56', NULL),
(9738, '2019-07-27', 25, '2019-07-27 08:04:05', '2019-07-27 12:09:38'),
(9739, '2019-07-27', 168, '2019-07-27 08:06:03', '2019-07-27 12:46:52'),
(9740, '2019-07-27', 46, '2019-07-27 08:06:12', NULL),
(9741, '2019-07-27', 68, '2019-07-27 08:09:33', '2019-07-27 12:47:36'),
(9742, '2019-07-27', 139, '2019-07-27 08:10:56', NULL),
(9743, '2019-07-27', 129, '2019-07-27 08:11:00', '2019-07-27 11:38:03'),
(9744, '2019-07-27', 48, '2019-07-27 08:12:56', '2019-07-27 12:46:29'),
(9745, '2019-07-27', 181, '2019-07-27 08:13:12', '2019-07-27 12:46:57'),
(9746, '2019-07-27', 145, '2019-07-27 08:13:17', '2019-07-27 11:46:24'),
(9747, '2019-07-27', 138, '2019-07-27 08:13:24', '2019-07-27 11:38:55'),
(9748, '2019-07-27', 99, '2019-07-27 08:13:43', '2019-07-27 10:36:32'),
(9749, '2019-07-27', 7, '2019-07-27 08:13:49', NULL),
(9750, '2019-07-27', 92, '2019-07-27 08:14:42', '2019-07-27 10:36:20'),
(9751, '2019-07-27', 5, '2019-07-27 08:16:20', '2019-07-27 12:12:32'),
(9752, '2019-07-27', 144, '2019-07-27 08:16:23', NULL),
(9753, '2019-07-27', 69, '2019-07-27 08:16:38', '2019-07-27 12:48:11'),
(9754, '2019-07-27', 16, '2019-07-27 08:16:43', '2019-07-27 12:12:27'),
(9755, '2019-07-27', 70, '2019-07-27 08:16:49', '2019-07-27 12:47:51'),
(9756, '2019-07-27', 131, '2019-07-27 08:16:56', NULL),
(9757, '2019-07-27', 96, '2019-07-27 08:17:05', '2019-07-27 10:37:48'),
(9758, '2019-07-27', 86, '2019-07-27 08:19:08', '2019-07-27 10:37:30'),
(9759, '2019-07-27', 142, '2019-07-27 08:19:31', '2019-07-27 11:38:47'),
(9760, '2019-07-27', 14, '2019-07-27 08:19:37', NULL),
(9761, '2019-07-27', 84, '2019-07-27 08:21:45', '2019-07-27 10:37:21'),
(9762, '2019-07-27', 87, '2019-07-27 08:32:51', '2019-07-27 10:37:16'),
(9763, '2019-07-27', 97, '2019-07-27 08:32:56', '2019-07-27 10:36:39'),
(9764, '2019-07-27', 141, '2019-07-27 08:33:11', '2019-07-27 11:38:00'),
(9765, '2019-07-27', 156, '2019-07-27 08:33:16', '2019-07-27 11:41:26'),
(9766, '2019-07-27', 78, '2019-07-27 08:33:20', '2019-07-27 10:36:09'),
(9767, '2019-07-27', 152, '2019-07-27 08:33:30', '2019-07-27 11:39:06'),
(9768, '2019-07-27', 135, '2019-07-27 08:33:35', '2019-07-27 11:38:28'),
(9769, '2019-07-27', 150, '2019-07-27 08:33:39', '2019-07-27 11:38:33'),
(9770, '2019-07-27', 157, '2019-07-27 08:33:45', '2019-07-27 11:56:58'),
(9771, '2019-07-27', 61, '2019-07-27 08:33:56', '2019-07-27 12:51:18'),
(9772, '2019-07-27', 45, '2019-07-27 08:34:01', '2019-07-27 12:46:32'),
(9773, '2019-07-27', 72, '2019-07-27 08:34:15', '2019-07-27 12:48:26'),
(9774, '2019-07-27', 190, '2019-07-27 08:34:25', '2019-07-27 12:47:28'),
(9775, '2019-07-27', 191, '2019-07-27 08:34:29', NULL),
(9776, '2019-07-27', 113, '2019-07-27 08:34:34', '2019-07-27 10:29:48'),
(9777, '2019-07-27', 189, '2019-07-27 08:34:39', '2019-07-27 12:48:05'),
(9778, '2019-07-27', 52, '2019-07-27 08:34:43', NULL),
(9779, '2019-07-27', 58, '2019-07-27 08:34:48', '2019-07-27 12:47:46'),
(9780, '2019-07-27', 160, '2019-07-27 08:34:55', '2019-07-27 10:37:27'),
(9781, '2019-07-27', 88, '2019-07-27 08:35:04', '2019-07-27 10:37:42'),
(9782, '2019-07-27', 56, '2019-07-27 08:36:13', NULL),
(9783, '2019-07-27', 27, '2019-07-27 08:36:27', '2019-07-27 10:21:38'),
(9784, '2019-07-27', 44, '2019-07-27 08:36:50', '2019-07-27 12:46:05'),
(9785, '2019-07-27', 66, '2019-07-27 08:37:09', '2019-07-27 12:47:33'),
(9786, '2019-07-27', 80, '2019-07-27 08:37:18', NULL),
(9787, '2019-07-27', 128, '2019-07-27 08:37:58', '2019-07-27 11:38:38'),
(9788, '2019-07-27', 120, '2019-07-27 08:38:28', NULL),
(9789, '2019-07-27', 71, '2019-07-27 08:38:40', '2019-07-27 12:48:31'),
(9790, '2019-07-27', 117, '2019-07-27 08:42:57', '2019-07-27 10:43:41'),
(9791, '2019-07-27', 151, '2019-07-27 08:44:20', '2019-07-27 11:38:18'),
(9792, '2019-07-27', 134, '2019-07-27 08:45:24', '2019-07-27 11:38:09'),
(9793, '2019-07-27', 153, '2019-07-27 08:48:13', '2019-07-27 11:44:18'),
(9794, '2019-07-27', 19, '2019-07-27 08:55:46', NULL),
(9795, '2019-07-27', 105, '2019-07-27 10:19:17', '2019-07-27 12:47:14'),
(9796, '2019-07-27', 174, '2019-07-27 10:29:32', NULL),
(9797, '2019-07-27', 30, '2019-07-27 10:33:23', NULL),
(9798, '2019-07-27', 102, '2019-07-27 10:34:15', NULL),
(9799, '2019-07-27', 111, '2019-07-27 10:34:20', '2019-07-27 12:47:23'),
(9800, '2019-07-27', 175, '2019-07-27 10:34:37', '2019-07-27 12:48:17'),
(9801, '2019-07-27', 104, '2019-07-27 10:34:51', '2019-07-27 12:46:01'),
(9802, '2019-07-27', 90, '2019-07-27 10:37:01', NULL),
(9803, '2019-07-27', 33, '2019-07-27 10:38:20', NULL),
(9804, '2019-07-27', 40, '2019-07-27 10:42:15', '2019-07-27 12:43:33'),
(9805, '2019-07-27', 35, '2019-07-27 10:46:11', NULL),
(9806, '2019-07-27', 36, '2019-07-27 10:46:33', NULL),
(9807, '2019-07-27', 149, '2019-07-27 10:48:38', NULL),
(9808, '2019-07-27', 103, '2019-07-27 10:50:26', NULL),
(9809, '2019-07-27', 183, '2019-07-27 11:00:18', '2019-07-27 12:47:01'),
(9810, '2019-07-27', 125, '2019-07-27 11:38:43', NULL),
(9811, '2019-07-27', 143, '2019-07-27 11:38:50', NULL),
(9812, '2019-07-27', 146, '2019-07-27 11:56:03', NULL),
(9813, '2019-07-28', 7, '2019-07-28 07:39:12', '2019-07-28 12:08:31'),
(9814, '2019-07-28', 67, '2019-07-28 07:42:03', NULL),
(9815, '2019-07-28', 147, '2019-07-28 07:45:45', '2019-07-28 11:35:12'),
(9816, '2019-07-28', 25, '2019-07-28 07:51:11', '2019-07-28 12:08:44'),
(9817, '2019-07-28', 141, '2019-07-28 07:52:11', '2019-07-28 11:34:02'),
(9818, '2019-07-28', 57, '2019-07-28 07:52:41', '2019-07-28 12:52:57'),
(9819, '2019-07-28', 98, '2019-07-28 07:52:56', '2019-07-28 10:25:20'),
(9820, '2019-07-28', 91, '2019-07-28 07:53:01', '2019-07-28 10:25:25'),
(9821, '2019-07-28', 90, '2019-07-28 07:53:06', '2019-07-28 10:24:59'),
(9822, '2019-07-28', 16, '2019-07-28 07:55:50', NULL),
(9823, '2019-07-28', 70, '2019-07-28 07:55:54', '2019-07-28 12:53:44'),
(9824, '2019-07-28', 191, '2019-07-28 07:58:01', NULL),
(9825, '2019-07-28', 190, '2019-07-28 07:58:05', '2019-07-28 12:48:19'),
(9826, '2019-07-28', 92, '2019-07-28 07:58:15', '2019-07-28 10:25:09'),
(9827, '2019-07-28', 123, '2019-07-28 07:58:29', '2019-07-28 11:37:51'),
(9828, '2019-07-28', 135, '2019-07-28 08:00:23', '2019-07-28 11:45:00'),
(9829, '2019-07-28', 51, '2019-07-28 08:01:00', NULL),
(9830, '2019-07-28', 63, '2019-07-28 08:01:38', '2019-07-28 12:52:53'),
(9831, '2019-07-28', 157, '2019-07-28 08:02:16', '2019-07-28 11:34:42'),
(9832, '2019-07-28', 48, '2019-07-28 08:04:46', '2019-07-28 12:48:25'),
(9833, '2019-07-28', 145, '2019-07-28 08:05:04', '2019-07-28 11:34:54'),
(9834, '2019-07-28', 181, '2019-07-28 08:05:12', '2019-07-28 12:48:30'),
(9835, '2019-07-28', 99, '2019-07-28 08:05:18', '2019-07-28 10:25:14'),
(9836, '2019-07-28', 68, '2019-07-28 08:06:33', '2019-07-28 12:53:32'),
(9837, '2019-07-28', 124, '2019-07-28 08:06:56', NULL),
(9838, '2019-07-28', 168, '2019-07-28 08:07:11', '2019-07-28 12:54:58'),
(9839, '2019-07-28', 142, '2019-07-28 08:07:34', '2019-07-28 11:33:52'),
(9840, '2019-07-28', 128, '2019-07-28 08:08:35', '2019-07-28 11:33:03'),
(9841, '2019-07-28', 46, '2019-07-28 08:09:00', '2019-07-28 12:47:54'),
(9842, '2019-07-28', 150, '2019-07-28 08:09:12', '2019-07-28 11:34:08'),
(9843, '2019-07-28', 101, '2019-07-28 08:09:22', '2019-07-28 10:25:03'),
(9844, '2019-07-28', 169, '2019-07-28 08:10:19', NULL),
(9845, '2019-07-28', 126, '2019-07-28 08:11:14', NULL),
(9846, '2019-07-28', 93, '2019-07-28 08:11:54', '2019-07-28 10:25:48'),
(9847, '2019-07-28', 84, '2019-07-28 08:12:13', '2019-07-28 10:25:34'),
(9848, '2019-07-28', 189, '2019-07-28 08:12:40', '2019-07-28 12:53:19'),
(9849, '2019-07-28', 129, '2019-07-28 08:12:43', NULL),
(9850, '2019-07-28', 10, '2019-07-28 08:12:55', '2019-07-28 12:09:17'),
(9851, '2019-07-28', 34, '2019-07-28 08:14:50', NULL),
(9852, '2019-07-28', 115, '2019-07-28 08:15:05', NULL),
(9853, '2019-07-28', 170, '2019-07-28 08:15:26', '2019-07-28 12:54:45'),
(9854, '2019-07-28', 167, '2019-07-28 08:16:01', '2019-07-28 12:48:03'),
(9855, '2019-07-28', 176, '2019-07-28 08:16:05', '2019-07-28 12:50:45'),
(9856, '2019-07-28', 14, '2019-07-28 08:16:54', NULL),
(9857, '2019-07-28', 86, '2019-07-28 08:17:06', NULL),
(9858, '2019-07-28', 97, '2019-07-28 08:26:57', '2019-07-28 10:26:22'),
(9859, '2019-07-28', 131, '2019-07-28 08:27:23', '2019-07-28 11:38:40'),
(9860, '2019-07-28', 182, '2019-07-28 08:27:38', NULL),
(9861, '2019-07-28', 56, '2019-07-28 08:27:45', '2019-07-28 12:53:11'),
(9862, '2019-07-28', 66, '2019-07-28 08:27:49', NULL),
(9863, '2019-07-28', 45, '2019-07-28 08:27:59', '2019-07-28 12:50:23'),
(9864, '2019-07-28', 44, '2019-07-28 08:28:04', '2019-07-28 12:47:58'),
(9865, '2019-07-28', 171, '2019-07-28 08:28:12', NULL),
(9866, '2019-07-28', 179, '2019-07-28 08:28:15', '2019-07-28 12:54:42'),
(9867, '2019-07-28', 144, '2019-07-28 08:28:21', '2019-07-28 11:41:12'),
(9868, '2019-07-28', 64, '2019-07-28 08:28:25', NULL),
(9869, '2019-07-28', 52, '2019-07-28 08:28:31', '2019-07-28 12:48:11'),
(9870, '2019-07-28', 75, '2019-07-28 08:28:36', NULL),
(9871, '2019-07-28', 113, '2019-07-28 08:28:42', '2019-07-28 10:38:49'),
(9872, '2019-07-28', 148, '2019-07-28 08:28:47', '2019-07-28 11:37:37'),
(9873, '2019-07-28', 125, '2019-07-28 08:28:52', '2019-07-28 11:34:47'),
(9874, '2019-07-28', 17, '2019-07-28 08:28:57', NULL),
(9875, '2019-07-28', 5, '2019-07-28 08:29:00', '2019-07-28 12:09:23'),
(9876, '2019-07-28', 130, '2019-07-28 08:29:05', '2019-07-28 11:34:59'),
(9877, '2019-07-28', 166, '2019-07-28 08:29:12', '2019-07-28 12:08:02'),
(9878, '2019-07-28', 49, '2019-07-28 08:29:41', '2019-07-28 12:50:28'),
(9879, '2019-07-28', 140, '2019-07-28 08:30:19', '2019-07-28 11:34:31'),
(9880, '2019-07-28', 78, '2019-07-28 08:31:09', '2019-07-28 10:24:42'),
(9881, '2019-07-28', 71, '2019-07-28 08:31:18', '2019-07-28 12:54:24'),
(9882, '2019-07-28', 60, '2019-07-28 08:31:34', '2019-07-28 12:53:15'),
(9883, '2019-07-28', 154, '2019-07-28 08:32:21', '2019-07-28 11:34:37'),
(9884, '2019-07-28', 186, '2019-07-28 08:33:42', '2019-07-28 11:45:47'),
(9885, '2019-07-28', 77, '2019-07-28 08:34:17', '2019-07-28 10:26:01'),
(9886, '2019-07-28', 160, '2019-07-28 08:36:52', '2019-07-28 10:25:54'),
(9887, '2019-07-28', 47, '2019-07-28 08:37:01', NULL),
(9888, '2019-07-28', 156, '2019-07-28 08:38:57', '2019-07-28 11:36:52'),
(9889, '2019-07-28', 151, '2019-07-28 08:39:04', '2019-07-28 11:33:57'),
(9890, '2019-07-28', 117, '2019-07-28 08:39:57', '2019-07-28 10:47:30'),
(9891, '2019-07-28', 88, '2019-07-28 08:40:03', '2019-07-28 10:26:27'),
(9892, '2019-07-28', 122, '2019-07-28 08:41:07', '2019-07-28 10:26:14'),
(9893, '2019-07-28', 19, '2019-07-28 08:44:28', NULL),
(9894, '2019-07-28', 120, '2019-07-28 08:45:39', NULL),
(9895, '2019-07-28', 27, '2019-07-28 10:16:15', NULL),
(9896, '2019-07-28', 31, '2019-07-28 10:17:51', NULL),
(9897, '2019-07-28', 73, '2019-07-28 10:24:46', NULL),
(9898, '2019-07-28', 85, '2019-07-28 10:26:08', NULL),
(9899, '2019-07-28', 40, '2019-07-28 10:30:58', '2019-07-28 12:31:31'),
(9900, '2019-07-28', 103, '2019-07-28 10:31:09', '2019-07-28 12:40:24'),
(9901, '2019-07-28', 111, '2019-07-28 10:33:50', '2019-07-28 12:40:09'),
(9902, '2019-07-28', 102, '2019-07-28 10:33:55', '2019-07-28 12:39:41'),
(9903, '2019-07-28', 41, '2019-07-28 10:34:00', '2019-07-28 12:46:12'),
(9904, '2019-07-28', 33, '2019-07-28 10:34:05', '2019-07-28 12:46:15'),
(9905, '2019-07-28', 104, '2019-07-28 10:34:14', '2019-07-28 12:40:40'),
(9906, '2019-07-28', 30, '2019-07-28 10:37:21', '2019-07-28 12:47:23'),
(9907, '2019-07-28', 28, '2019-07-28 10:41:55', '2019-07-28 12:31:18'),
(9908, '2019-07-28', 187, '2019-07-28 10:42:38', '2019-07-28 12:40:03'),
(9909, '2019-07-28', 175, '2019-07-28 10:43:01', '2019-07-28 12:40:30'),
(9910, '2019-07-28', 35, '2019-07-28 10:50:14', '2019-07-28 12:42:56'),
(9911, '2019-07-28', 36, '2019-07-28 10:50:33', NULL),
(9912, '2019-07-28', 183, '2019-07-28 10:51:10', '2019-07-28 12:39:51'),
(9913, '2019-07-28', 192, '2019-07-28 10:53:09', '2019-07-28 12:40:12'),
(9914, '2019-07-28', 133, '2019-07-28 11:30:26', NULL),
(9915, '2019-07-28', 136, '2019-07-28 11:34:25', NULL),
(9916, '2019-07-28', 139, '2019-07-28 11:35:26', NULL),
(9917, '2019-07-28', 132, '2019-07-28 11:35:57', NULL),
(9918, '2019-07-28', 137, '2019-07-28 11:36:02', NULL),
(9919, '2019-07-28', 134, '2019-07-28 11:38:37', NULL),
(9920, '2019-07-28', 23, '2019-07-28 12:07:49', NULL),
(9921, '2019-07-28', 164, '2019-07-28 12:07:57', NULL),
(9922, '2019-07-28', 18, '2019-07-28 12:08:40', NULL),
(9923, '2019-07-28', 105, '2019-07-28 12:40:46', NULL),
(9924, '2019-07-28', 184, '2019-07-28 12:47:27', NULL),
(9925, '2019-07-29', 147, '2019-07-29 07:39:24', '2019-07-29 11:36:39'),
(9926, '2019-07-29', 55, '2019-07-29 07:39:27', NULL),
(9927, '2019-07-29', 18, '2019-07-29 07:39:48', NULL),
(9928, '2019-07-29', 157, '2019-07-29 07:40:10', '2019-07-29 11:35:55'),
(9929, '2019-07-29', 67, '2019-07-29 07:41:47', NULL),
(9930, '2019-07-29', 46, '2019-07-29 07:48:22', '2019-07-29 12:52:26'),
(9931, '2019-07-29', 70, '2019-07-29 07:50:43', '2019-07-29 10:52:22'),
(9932, '2019-07-29', 69, '2019-07-29 07:50:49', '2019-07-29 12:53:35'),
(9933, '2019-07-29', 16, '2019-07-29 07:51:17', '2019-07-29 12:10:46'),
(9934, '2019-07-29', 25, '2019-07-29 07:53:11', '2019-07-29 12:09:41'),
(9935, '2019-07-29', 154, '2019-07-29 07:53:33', '2019-07-29 11:34:47'),
(9936, '2019-07-29', 133, '2019-07-29 07:57:09', '2019-07-29 11:36:26'),
(9937, '2019-07-29', 57, '2019-07-29 07:58:02', '2019-07-29 12:51:00'),
(9938, '2019-07-29', 91, '2019-07-29 07:58:09', NULL),
(9939, '2019-07-29', 98, '2019-07-29 07:58:17', NULL),
(9940, '2019-07-29', 90, '2019-07-29 07:58:26', NULL),
(9941, '2019-07-29', 63, '2019-07-29 07:58:56', '2019-07-29 12:50:56'),
(9942, '2019-07-29', 124, '2019-07-29 08:01:48', '2019-07-29 11:35:34'),
(9943, '2019-07-29', 48, '2019-07-29 08:02:27', '2019-07-29 12:54:18'),
(9944, '2019-07-29', 169, '2019-07-29 08:03:25', NULL),
(9945, '2019-07-29', 163, '2019-07-29 08:03:42', NULL),
(9946, '2019-07-29', 126, '2019-07-29 08:03:50', '2019-07-29 11:36:08'),
(9947, '2019-07-29', 99, '2019-07-29 08:04:31', '2019-07-29 10:35:03'),
(9948, '2019-07-29', 141, '2019-07-29 08:05:08', '2019-07-29 11:34:50'),
(9949, '2019-07-29', 191, '2019-07-29 08:06:49', NULL),
(9950, '2019-07-29', 190, '2019-07-29 08:06:53', '2019-07-29 12:31:18'),
(9951, '2019-07-29', 168, '2019-07-29 08:08:06', NULL),
(9952, '2019-07-29', 123, '2019-07-29 08:08:23', '2019-07-29 11:35:45'),
(9953, '2019-07-29', 89, '2019-07-29 08:10:40', '2019-07-29 10:35:40'),
(9954, '2019-07-29', 23, '2019-07-29 08:10:50', NULL),
(9955, '2019-07-29', 39, '2019-07-29 08:11:35', NULL),
(9956, '2019-07-29', 84, '2019-07-29 08:13:33', NULL),
(9957, '2019-07-29', 145, '2019-07-29 08:13:38', '2019-07-29 11:35:13'),
(9958, '2019-07-29', 181, '2019-07-29 08:13:43', '2019-07-29 12:52:57'),
(9959, '2019-07-29', 14, '2019-07-29 08:13:53', NULL),
(9960, '2019-07-29', 132, '2019-07-29 08:14:02', NULL),
(9961, '2019-07-29', 131, '2019-07-29 08:14:46', '2019-07-29 11:35:04'),
(9962, '2019-07-29', 135, '2019-07-29 08:14:55', '2019-07-29 11:34:56'),
(9963, '2019-07-29', 95, '2019-07-29 08:15:16', NULL),
(9964, '2019-07-29', 85, '2019-07-29 08:15:26', NULL),
(9965, '2019-07-29', 10, '2019-07-29 08:15:43', '2019-07-29 12:16:24'),
(9966, '2019-07-29', 150, '2019-07-29 08:15:57', '2019-07-29 11:36:03'),
(9967, '2019-07-29', 86, '2019-07-29 08:16:13', '2019-07-29 10:35:48'),
(9968, '2019-07-29', 129, '2019-07-29 08:16:31', '2019-07-29 11:34:59'),
(9969, '2019-07-29', 170, '2019-07-29 08:19:32', NULL),
(9970, '2019-07-29', 7, '2019-07-29 08:19:36', NULL),
(9971, '2019-07-29', 144, '2019-07-29 08:27:48', '2019-07-29 11:36:13'),
(9972, '2019-07-29', 97, '2019-07-29 08:32:10', '2019-07-29 10:36:20'),
(9973, '2019-07-29', 27, '2019-07-29 08:32:14', '2019-07-29 10:09:01'),
(9974, '2019-07-29', 77, '2019-07-29 08:32:33', '2019-07-29 10:35:55'),
(9975, '2019-07-29', 13, '2019-07-29 08:32:41', NULL),
(9976, '2019-07-29', 162, '2019-07-29 08:32:46', NULL),
(9977, '2019-07-29', 5, '2019-07-29 08:32:51', '2019-07-29 12:09:59'),
(9978, '2019-07-29', 176, '2019-07-29 08:33:04', '2019-07-29 12:53:08'),
(9979, '2019-07-29', 179, '2019-07-29 08:33:13', '2019-07-29 12:54:21'),
(9980, '2019-07-29', 142, '2019-07-29 08:33:18', '2019-07-29 11:36:53'),
(9981, '2019-07-29', 45, '2019-07-29 08:33:23', '2019-07-29 12:33:30'),
(9982, '2019-07-29', 189, '2019-07-29 08:33:28', '2019-07-29 12:54:34'),
(9983, '2019-07-29', 71, '2019-07-29 08:33:33', '2019-07-29 12:54:42'),
(9984, '2019-07-29', 171, '2019-07-29 08:33:38', '2019-07-29 12:54:27'),
(9985, '2019-07-29', 72, '2019-07-29 08:33:43', NULL),
(9986, '2019-07-29', 113, '2019-07-29 08:33:48', '2019-07-29 10:30:10'),
(9987, '2019-07-29', 118, '2019-07-29 08:33:52', '2019-07-29 10:22:38'),
(9988, '2019-07-29', 44, '2019-07-29 08:33:57', '2019-07-29 12:52:32'),
(9989, '2019-07-29', 52, '2019-07-29 08:34:02', NULL),
(9990, '2019-07-29', 148, '2019-07-29 08:34:11', '2019-07-29 11:36:48'),
(9991, '2019-07-29', 64, '2019-07-29 08:34:16', NULL),
(9992, '2019-07-29', 75, '2019-07-29 08:34:21', NULL),
(9993, '2019-07-29', 140, '2019-07-29 08:34:25', NULL),
(9994, '2019-07-29', 130, '2019-07-29 08:34:30', '2019-07-29 11:36:30'),
(9995, '2019-07-29', 125, '2019-07-29 08:34:34', '2019-07-29 11:35:24'),
(9996, '2019-07-29', 61, '2019-07-29 08:34:51', '2019-07-29 12:55:20'),
(9997, '2019-07-29', 128, '2019-07-29 08:34:55', '2019-07-29 11:35:08'),
(9998, '2019-07-29', 117, '2019-07-29 08:34:59', '2019-07-29 10:30:33'),
(9999, '2019-07-29', 56, '2019-07-29 08:35:04', '2019-07-29 12:50:44'),
(10000, '2019-07-29', 60, '2019-07-29 08:35:08', '2019-07-29 12:50:40'),
(10001, '2019-07-29', 88, '2019-07-29 08:35:13', NULL),
(10002, '2019-07-29', 151, '2019-07-29 08:35:18', '2019-07-29 11:35:50'),
(10003, '2019-07-29', 120, '2019-07-29 08:35:24', NULL),
(10004, '2019-07-29', 166, '2019-07-29 08:35:29', '2019-07-29 12:09:48'),
(10005, '2019-07-29', 80, '2019-07-29 08:38:18', NULL),
(10006, '2019-07-29', 66, '2019-07-29 08:38:24', '2019-07-29 12:50:37'),
(10007, '2019-07-29', 19, '2019-07-29 08:39:08', NULL),
(10008, '2019-07-29', 49, '2019-07-29 08:39:42', NULL),
(10009, '2019-07-29', 122, '2019-07-29 08:41:13', '2019-07-29 10:31:40'),
(10010, '2019-07-29', 156, '2019-07-29 08:43:48', '2019-07-29 11:36:36'),
(10011, '2019-07-29', 134, '2019-07-29 08:47:50', '2019-07-29 11:35:29'),
(10012, '2019-07-29', 186, '2019-07-29 08:52:24', '2019-07-29 11:35:41'),
(10013, '2019-07-29', 36, '2019-07-29 10:24:36', '2019-07-29 12:36:04'),
(10014, '2019-07-29', 35, '2019-07-29 10:24:39', '2019-07-29 12:35:31'),
(10015, '2019-07-29', 31, '2019-07-29 10:26:27', NULL),
(10016, '2019-07-29', 29, '2019-07-29 10:28:28', NULL),
(10017, '2019-07-29', 28, '2019-07-29 10:29:52', NULL),
(10018, '2019-07-29', 30, '2019-07-29 10:30:01', '2019-07-29 12:36:01'),
(10019, '2019-07-29', 178, '2019-07-29 10:30:40', NULL),
(10020, '2019-07-29', 34, '2019-07-29 10:30:54', NULL),
(10021, '2019-07-29', 87, '2019-07-29 10:35:08', NULL),
(10022, '2019-07-29', 160, '2019-07-29 10:35:14', NULL),
(10023, '2019-07-29', 159, '2019-07-29 10:35:23', NULL),
(10024, '2019-07-29', 78, '2019-07-29 10:35:31', NULL),
(10025, '2019-07-29', 111, '2019-07-29 10:38:47', '2019-07-29 12:41:58'),
(10026, '2019-07-29', 183, '2019-07-29 10:39:17', NULL),
(10027, '2019-07-29', 33, '2019-07-29 10:39:26', '2019-07-29 12:50:30'),
(10028, '2019-07-29', 41, '2019-07-29 10:39:30', NULL),
(10029, '2019-07-29', 42, '2019-07-29 10:39:44', '2019-07-29 12:50:53'),
(10030, '2019-07-29', 187, '2019-07-29 10:44:05', '2019-07-29 12:41:47'),
(10031, '2019-07-29', 192, '2019-07-29 10:45:41', '2019-07-29 12:41:50'),
(10032, '2019-07-29', 143, '2019-07-29 11:36:19', NULL),
(10033, '2019-07-29', 137, '2019-07-29 11:36:23', NULL),
(10034, '2019-07-29', 103, '2019-07-29 12:41:53', NULL),
(10035, '2019-07-29', 105, '2019-07-29 12:42:19', NULL),
(10036, '2019-07-30', 18, '2019-07-30 07:35:34', NULL),
(10037, '2019-07-30', 55, '2019-07-30 07:35:38', NULL),
(10038, '2019-07-30', 67, '2019-07-30 07:42:01', NULL),
(10039, '2019-07-30', 154, '2019-07-30 07:43:44', NULL),
(10040, '2019-07-30', 31, '2019-07-30 07:52:59', '2019-07-30 10:18:01'),
(10041, '2019-07-30', 157, '2019-07-30 07:53:09', '2019-07-30 11:42:56'),
(10042, '2019-07-30', 99, '2019-07-30 07:54:06', '2019-07-30 10:30:10'),
(10043, '2019-07-30', 62, '2019-07-30 07:58:07', NULL),
(10044, '2019-07-30', 15, '2019-07-30 07:58:12', NULL),
(10045, '2019-07-30', 91, '2019-07-30 07:58:20', '2019-07-30 10:29:16'),
(10046, '2019-07-30', 90, '2019-07-30 07:58:24', '2019-07-30 10:29:19'),
(10047, '2019-07-30', 57, '2019-07-30 07:58:27', '2019-07-30 12:16:02'),
(10048, '2019-07-30', 98, '2019-07-30 07:58:32', '2019-07-30 10:29:10'),
(10049, '2019-07-30', 176, '2019-07-30 07:58:38', '2019-07-30 12:17:47'),
(10050, '2019-07-30', 124, '2019-07-30 08:01:22', '2019-07-30 11:30:33'),
(10051, '2019-07-30', 159, '2019-07-30 08:01:50', '2019-07-30 10:29:45'),
(10052, '2019-07-30', 48, '2019-07-30 08:01:53', NULL),
(10053, '2019-07-30', 118, '2019-07-30 08:02:53', '2019-07-30 10:19:13'),
(10054, '2019-07-30', 138, '2019-07-30 08:04:02', NULL),
(10055, '2019-07-30', 92, '2019-07-30 08:04:12', '2019-07-30 10:29:06'),
(10056, '2019-07-30', 141, '2019-07-30 08:04:43', NULL),
(10057, '2019-07-30', 142, '2019-07-30 08:05:25', '2019-07-30 11:45:07'),
(10058, '2019-07-30', 131, '2019-07-30 08:05:28', '2019-07-30 10:43:16'),
(10059, '2019-07-30', 79, '2019-07-30 08:08:08', NULL),
(10060, '2019-07-30', 129, '2019-07-30 08:10:28', '2019-07-30 11:28:02'),
(10061, '2019-07-30', 89, '2019-07-30 08:10:47', '2019-07-30 10:30:06'),
(10062, '2019-07-30', 53, '2019-07-30 08:10:58', NULL),
(10063, '2019-07-30', 27, '2019-07-30 08:11:23', '2019-07-30 10:19:18'),
(10064, '2019-07-30', 139, '2019-07-30 08:11:50', '2019-07-30 11:43:45'),
(10065, '2019-07-30', 169, '2019-07-30 08:13:23', NULL),
(10066, '2019-07-30', 84, '2019-07-30 08:14:54', '2019-07-30 10:31:04'),
(10067, '2019-07-30', 37, '2019-07-30 08:14:58', '2019-07-30 10:18:18'),
(10068, '2019-07-30', 14, '2019-07-30 08:15:43', NULL),
(10069, '2019-07-30', 46, '2019-07-30 08:15:55', '2019-07-30 12:52:53'),
(10070, '2019-07-30', 168, '2019-07-30 08:16:01', '2019-07-30 12:20:21'),
(10071, '2019-07-30', 133, '2019-07-30 08:16:05', '2019-07-30 10:36:01'),
(10072, '2019-07-30', 167, '2019-07-30 08:16:25', '2019-07-30 12:45:16'),
(10073, '2019-07-30', 148, '2019-07-30 08:16:31', '2019-07-30 11:48:45'),
(10074, '2019-07-30', 86, '2019-07-30 08:16:36', '2019-07-30 10:30:30'),
(10075, '2019-07-30', 150, '2019-07-30 08:17:06', '2019-07-30 11:27:53'),
(10076, '2019-07-30', 137, '2019-07-30 08:17:09', '2019-07-30 11:31:38'),
(10077, '2019-07-30', 145, '2019-07-30 08:17:22', '2019-07-30 11:28:12'),
(10078, '2019-07-30', 181, '2019-07-30 08:17:29', '2019-07-30 13:02:17'),
(10079, '2019-07-30', 72, '2019-07-30 08:17:42', '2019-07-30 12:53:21'),
(10080, '2019-07-30', 25, '2019-07-30 08:17:47', '2019-07-30 11:00:04'),
(10081, '2019-07-30', 23, '2019-07-30 08:17:53', '2019-07-30 12:15:42'),
(10082, '2019-07-30', 97, '2019-07-30 08:18:04', '2019-07-30 10:30:43'),
(10083, '2019-07-30', 156, '2019-07-30 08:18:33', '2019-07-30 11:56:50'),
(10084, '2019-07-30', 101, '2019-07-30 08:18:50', '2019-07-30 10:29:56'),
(10085, '2019-07-30', 170, '2019-07-30 08:19:21', NULL),
(10086, '2019-07-30', 7, '2019-07-30 08:19:31', NULL),
(10087, '2019-07-30', 144, '2019-07-30 08:25:30', '2019-07-30 10:43:23'),
(10088, '2019-07-30', 17, '2019-07-30 08:29:47', '2019-07-30 10:18:52'),
(10089, '2019-07-30', 10, '2019-07-30 08:29:51', NULL),
(10090, '2019-07-30', 76, '2019-07-30 08:29:54', NULL),
(10091, '2019-07-30', 75, '2019-07-30 08:30:14', '2019-07-30 10:29:40'),
(10092, '2019-07-30', 123, '2019-07-30 08:30:27', '2019-07-30 11:30:49'),
(10093, '2019-07-30', 60, '2019-07-30 08:30:41', NULL),
(10094, '2019-07-30', 66, '2019-07-30 08:30:54', NULL),
(10095, '2019-07-30', 16, '2019-07-30 08:30:58', NULL),
(10096, '2019-07-30', 45, '2019-07-30 08:31:10', '2019-07-30 12:45:11'),
(10097, '2019-07-30', 64, '2019-07-30 08:31:15', NULL),
(10098, '2019-07-30', 69, '2019-07-30 08:31:19', NULL),
(10099, '2019-07-30', 71, '2019-07-30 08:31:24', NULL),
(10100, '2019-07-30', 135, '2019-07-30 08:31:29', '2019-07-30 11:42:52'),
(10101, '2019-07-30', 56, '2019-07-30 08:31:34', NULL),
(10102, '2019-07-30', 50, '2019-07-30 08:31:38', NULL),
(10103, '2019-07-30', 77, '2019-07-30 08:31:47', '2019-07-30 10:30:02'),
(10104, '2019-07-30', 113, '2019-07-30 08:31:52', '2019-07-30 10:32:34'),
(10105, '2019-07-30', 151, '2019-07-30 08:31:56', '2019-07-30 11:43:27'),
(10106, '2019-07-30', 52, '2019-07-30 08:32:02', '2019-07-30 12:17:18'),
(10107, '2019-07-30', 130, '2019-07-30 08:32:16', '2019-07-30 10:36:07'),
(10108, '2019-07-30', 125, '2019-07-30 08:32:20', NULL),
(10109, '2019-07-30', 189, '2019-07-30 08:32:24', NULL),
(10110, '2019-07-30', 11, '2019-07-30 08:32:30', NULL),
(10111, '2019-07-30', 182, '2019-07-30 08:32:35', '2019-07-30 11:56:54'),
(10112, '2019-07-30', 140, '2019-07-30 08:32:39', NULL),
(10113, '2019-07-30', 128, '2019-07-30 08:33:50', '2019-07-30 11:32:25'),
(10114, '2019-07-30', 44, '2019-07-30 08:35:23', '2019-07-30 12:01:57'),
(10115, '2019-07-30', 73, '2019-07-30 08:36:20', '2019-07-30 10:29:31'),
(10116, '2019-07-30', 120, '2019-07-30 08:40:23', NULL),
(10117, '2019-07-30', 186, '2019-07-30 08:40:47', NULL),
(10118, '2019-07-30', 153, '2019-07-30 08:42:14', NULL),
(10119, '2019-07-30', 117, '2019-07-30 08:42:17', '2019-07-30 10:33:20'),
(10120, '2019-07-30', 19, '2019-07-30 08:43:34', NULL),
(10121, '2019-07-30', 105, '2019-07-30 10:14:55', NULL),
(10122, '2019-07-30', 95, '2019-07-30 10:29:25', NULL),
(10123, '2019-07-30', 85, '2019-07-30 10:30:19', NULL),
(10124, '2019-07-30', 103, '2019-07-30 10:30:37', NULL),
(10125, '2019-07-30', 174, '2019-07-30 10:32:59', '2019-07-30 12:18:16'),
(10126, '2019-07-30', 34, '2019-07-30 10:33:39', NULL),
(10127, '2019-07-30', 192, '2019-07-30 10:36:33', NULL),
(10128, '2019-07-30', 111, '2019-07-30 10:37:13', NULL),
(10129, '2019-07-30', 102, '2019-07-30 10:37:19', '2019-07-30 11:59:46'),
(10130, '2019-07-30', 41, '2019-07-30 10:37:53', '2019-07-30 11:54:38'),
(10131, '2019-07-30', 42, '2019-07-30 10:38:09', '2019-07-30 11:54:32'),
(10132, '2019-07-30', 30, '2019-07-30 10:38:58', NULL),
(10133, '2019-07-30', 187, '2019-07-30 10:43:45', NULL),
(10134, '2019-07-30', 40, '2019-07-30 10:45:08', '2019-07-30 11:52:12'),
(10135, '2019-07-30', 104, '2019-07-30 10:47:07', NULL),
(10136, '2019-07-30', 36, '2019-07-30 10:47:14', NULL),
(10137, '2019-07-30', 132, '2019-07-30 11:28:07', NULL),
(10138, '2019-07-30', 126, '2019-07-30 11:32:36', NULL),
(10139, '2019-07-30', 184, '2019-07-30 11:52:54', NULL),
(10140, '2019-07-30', 35, '2019-07-30 11:53:04', NULL),
(10141, '2019-07-30', 61, '2019-07-30 11:59:23', NULL),
(10142, '2019-07-30', 5, '2019-07-30 12:08:50', NULL),
(10143, '2019-07-31', 96, '2019-07-31 07:38:17', '2019-07-31 10:47:59'),
(10144, '2019-07-31', 147, '2019-07-31 07:46:00', NULL),
(10145, '2019-07-31', 18, '2019-07-31 07:46:05', NULL),
(10146, '2019-07-31', 55, '2019-07-31 07:46:12', NULL),
(10147, '2019-07-31', 167, '2019-07-31 07:54:24', '2019-07-31 11:02:49'),
(10148, '2019-07-31', 92, '2019-07-31 08:01:02', NULL),
(10149, '2019-07-31', 90, '2019-07-31 08:01:27', '2019-07-31 10:46:22'),
(10150, '2019-07-31', 91, '2019-07-31 08:01:41', '2019-07-31 10:45:43'),
(10151, '2019-07-31', 98, '2019-07-31 08:01:46', '2019-07-31 10:45:49'),
(10152, '2019-07-31', 57, '2019-07-31 08:01:50', NULL),
(10153, '2019-07-31', 190, '2019-07-31 08:05:00', NULL),
(10154, '2019-07-31', 157, '2019-07-31 08:05:41', '2019-07-31 10:59:22'),
(10155, '2019-07-31', 131, '2019-07-31 08:08:27', NULL),
(10156, '2019-07-31', 89, '2019-07-31 08:08:30', '2019-07-31 10:48:03'),
(10157, '2019-07-31', 99, '2019-07-31 08:08:41', '2019-07-31 11:00:34'),
(10158, '2019-07-31', 84, '2019-07-31 08:09:59', '2019-07-31 11:01:25'),
(10159, '2019-07-31', 170, '2019-07-31 08:10:25', '2019-07-31 11:13:53'),
(10160, '2019-07-31', 168, '2019-07-31 08:10:45', NULL),
(10161, '2019-07-31', 25, '2019-07-31 08:11:06', '2019-07-31 11:02:22'),
(10162, '2019-07-31', 48, '2019-07-31 08:11:26', '2019-07-31 10:59:49'),
(10163, '2019-07-31', 95, '2019-07-31 08:11:37', '2019-07-31 10:46:50'),
(10164, '2019-07-31', 101, '2019-07-31 08:11:41', '2019-07-31 10:46:45'),
(10165, '2019-07-31', 124, '2019-07-31 08:11:46', '2019-07-31 11:01:42'),
(10166, '2019-07-31', 14, '2019-07-31 08:12:24', '2019-07-31 11:02:01'),
(10167, '2019-07-31', 169, '2019-07-31 08:12:48', NULL),
(10168, '2019-07-31', 45, '2019-07-31 08:12:51', '2019-07-31 11:01:58'),
(10169, '2019-07-31', 163, '2019-07-31 08:13:06', '2019-07-31 11:02:10'),
(10170, '2019-07-31', 63, '2019-07-31 08:14:15', NULL),
(10171, '2019-07-31', 137, '2019-07-31 08:14:27', NULL),
(10172, '2019-07-31', 126, '2019-07-31 08:14:30', NULL),
(10173, '2019-07-31', 46, '2019-07-31 08:14:51', '2019-07-31 10:59:45'),
(10174, '2019-07-31', 31, '2019-07-31 08:15:59', NULL),
(10175, '2019-07-31', 79, '2019-07-31 08:17:09', NULL),
(10176, '2019-07-31', 123, '2019-07-31 08:17:31', '2019-07-31 11:01:35'),
(10177, '2019-07-31', 129, '2019-07-31 08:18:18', NULL),
(10178, '2019-07-31', 133, '2019-07-31 08:18:50', '2019-07-31 10:59:10'),
(10179, '2019-07-31', 7, '2019-07-31 08:19:03', NULL),
(10180, '2019-07-31', 176, '2019-07-31 08:20:19', '2019-07-31 11:02:27'),
(10181, '2019-07-31', 86, '2019-07-31 08:20:49', NULL),
(10182, '2019-07-31', 30, '2019-07-31 08:23:00', NULL),
(10183, '2019-07-31', 27, '2019-07-31 08:31:50', '2019-07-31 10:46:58'),
(10184, '2019-07-31', 150, '2019-07-31 08:32:02', NULL),
(10185, '2019-07-31', 151, '2019-07-31 08:32:06', '2019-07-31 11:02:06'),
(10186, '2019-07-31', 66, '2019-07-31 08:32:37', NULL),
(10187, '2019-07-31', 71, '2019-07-31 08:32:54', '2019-07-31 11:05:00'),
(10188, '2019-07-31', 174, '2019-07-31 08:33:00', '2019-07-31 10:46:08'),
(10189, '2019-07-31', 144, '2019-07-31 08:33:08', '2019-07-31 10:59:18'),
(10190, '2019-07-31', 187, '2019-07-31 08:33:11', '2019-07-31 10:45:29'),
(10191, '2019-07-31', 37, '2019-07-31 08:33:15', '2019-07-31 10:48:27'),
(10192, '2019-07-31', 105, '2019-07-31 08:33:19', '2019-07-31 10:46:39'),
(10193, '2019-07-31', 5, '2019-07-31 08:33:23', NULL),
(10194, '2019-07-31', 16, '2019-07-31 08:33:29', '2019-07-31 11:02:39'),
(10195, '2019-07-31', 64, '2019-07-31 08:33:33', NULL),
(10196, '2019-07-31', 189, '2019-07-31 08:33:39', '2019-07-31 11:04:52'),
(10197, '2019-07-31', 44, '2019-07-31 08:33:43', NULL),
(10198, '2019-07-31', 97, '2019-07-31 08:33:51', NULL),
(10199, '2019-07-31', 128, '2019-07-31 08:33:56', NULL),
(10200, '2019-07-31', 118, '2019-07-31 08:34:00', NULL),
(10201, '2019-07-31', 74, '2019-07-31 08:34:05', '2019-07-31 10:45:23'),
(10202, '2019-07-31', 72, '2019-07-31 08:34:10', '2019-07-31 11:04:12'),
(10203, '2019-07-31', 178, '2019-07-31 08:34:15', '2019-07-31 10:48:30'),
(10204, '2019-07-31', 179, '2019-07-31 08:34:21', '2019-07-31 11:11:28'),
(10205, '2019-07-31', 142, '2019-07-31 08:34:26', '2019-07-31 11:01:50'),
(10206, '2019-07-31', 183, '2019-07-31 08:34:31', '2019-07-31 10:45:26'),
(10207, '2019-07-31', 40, '2019-07-31 08:35:26', '2019-07-31 10:59:13'),
(10208, '2019-07-31', 148, '2019-07-31 08:36:08', '2019-07-31 11:01:29'),
(10209, '2019-07-31', 156, '2019-07-31 08:37:31', NULL),
(10210, '2019-07-31', 56, '2019-07-31 08:39:29', NULL),
(10211, '2019-07-31', 60, '2019-07-31 08:39:39', NULL),
(10212, '2019-07-31', 117, '2019-07-31 08:39:44', '2019-07-31 10:46:53'),
(10213, '2019-07-31', 135, '2019-07-31 08:40:25', '2019-07-31 11:01:18'),
(10214, '2019-07-31', 52, '2019-07-31 08:40:30', '2019-07-31 11:02:44'),
(10215, '2019-07-31', 11, '2019-07-31 08:40:38', NULL),
(10216, '2019-07-31', 113, '2019-07-31 08:40:44', '2019-07-31 10:48:11'),
(10217, '2019-07-31', 49, '2019-07-31 08:40:51', NULL),
(10218, '2019-07-31', 73, '2019-07-31 08:40:57', '2019-07-31 10:45:34'),
(10219, '2019-07-31', 120, '2019-07-31 08:42:23', NULL),
(10220, '2019-07-31', 61, '2019-07-31 08:45:16', '2019-07-31 11:05:06'),
(10221, '2019-07-31', 122, '2019-07-31 08:45:36', NULL),
(10222, '2019-07-31', 93, '2019-07-31 08:48:52', NULL),
(10223, '2019-07-31', 134, '2019-07-31 08:49:29', NULL),
(10224, '2019-07-31', 186, '2019-07-31 08:50:56', NULL),
(10225, '2019-07-31', 65, '2019-07-31 09:00:21', NULL),
(10226, '2019-07-31', 19, '2019-07-31 09:01:55', NULL),
(10227, '2019-07-31', 102, '2019-07-31 09:02:10', '2019-07-31 10:46:02'),
(10228, '2019-07-31', 42, '2019-07-31 09:20:09', NULL),
(10229, '2019-07-31', 29, '2019-07-31 10:48:18', NULL),
(10230, '2019-07-31', 139, '2019-07-31 10:58:42', NULL),
(10231, '2019-07-31', 78, '2019-07-31 11:01:07', NULL),
(10232, '2019-07-31', 103, '2019-07-31 11:02:35', NULL),
(10233, '2019-08-03', 67, '2019-08-03 07:42:07', NULL),
(10234, '2019-08-03', 167, '2019-08-03 07:59:44', '2019-08-03 11:26:59'),
(10235, '2019-08-03', 89, '2019-08-03 08:03:29', '2019-08-03 10:38:26'),
(10236, '2019-08-03', 99, '2019-08-03 08:05:05', '2019-08-03 10:37:37'),
(10237, '2019-08-03', 27, '2019-08-03 08:07:15', '2019-08-03 10:20:28'),
(10238, '2019-08-03', 154, '2019-08-03 08:07:21', NULL),
(10239, '2019-08-03', 141, '2019-08-03 08:08:23', '2019-08-03 11:15:49'),
(10240, '2019-08-03', 159, '2019-08-03 08:08:48', NULL),
(10241, '2019-08-03', 50, '2019-08-03 08:09:37', NULL),
(10242, '2019-08-03', 25, '2019-08-03 08:09:57', '2019-08-03 11:25:53'),
(10243, '2019-08-03', 169, '2019-08-03 08:10:00', '2019-08-03 11:27:09'),
(10244, '2019-08-03', 91, '2019-08-03 08:10:17', '2019-08-03 10:37:31'),
(10245, '2019-08-03', 133, '2019-08-03 08:10:30', '2019-08-03 11:40:41'),
(10246, '2019-08-03', 174, '2019-08-03 08:10:45', NULL),
(10247, '2019-08-03', 145, '2019-08-03 08:11:03', '2019-08-03 11:22:06'),
(10248, '2019-08-03', 181, '2019-08-03 08:11:09', '2019-08-03 11:25:32'),
(10249, '2019-08-03', 90, '2019-08-03 08:11:49', '2019-08-03 10:37:46'),
(10250, '2019-08-03', 92, '2019-08-03 08:12:30', '2019-08-03 10:36:20'),
(10251, '2019-08-03', 46, '2019-08-03 08:12:33', '2019-08-03 11:25:14'),
(10252, '2019-08-03', 150, '2019-08-03 08:13:24', '2019-08-03 11:12:18'),
(10253, '2019-08-03', 138, '2019-08-03 08:13:29', '2019-08-03 11:21:44'),
(10254, '2019-08-03', 168, '2019-08-03 08:14:10', NULL),
(10255, '2019-08-03', 190, '2019-08-03 08:14:25', '2019-08-03 11:24:35'),
(10256, '2019-08-03', 44, '2019-08-03 08:14:54', '2019-08-03 11:25:03'),
(10257, '2019-08-03', 31, '2019-08-03 08:15:38', NULL),
(10258, '2019-08-03', 124, '2019-08-03 08:17:39', NULL),
(10259, '2019-08-03', 23, '2019-08-03 08:18:04', '2019-08-03 11:26:08'),
(10260, '2019-08-03', 148, '2019-08-03 08:20:02', NULL),
(10261, '2019-08-03', 86, '2019-08-03 08:20:42', '2019-08-03 10:36:45'),
(10262, '2019-08-03', 189, '2019-08-03 08:20:48', NULL),
(10263, '2019-08-03', 7, '2019-08-03 08:22:33', NULL),
(10264, '2019-08-03', 135, '2019-08-03 08:22:45', '2019-08-03 11:32:35'),
(10265, '2019-08-03', 144, '2019-08-03 08:28:59', '2019-08-03 11:15:09'),
(10266, '2019-08-03', 64, '2019-08-03 08:29:03', NULL),
(10267, '2019-08-03', 37, '2019-08-03 08:33:06', '2019-08-03 10:20:34'),
(10268, '2019-08-03', 97, '2019-08-03 08:33:10', '2019-08-03 10:37:53'),
(10269, '2019-08-03', 74, '2019-08-03 08:33:18', NULL),
(10270, '2019-08-03', 38, '2019-08-03 08:33:23', '2019-08-03 10:24:36'),
(10271, '2019-08-03', 45, '2019-08-03 08:33:53', '2019-08-03 11:27:03'),
(10272, '2019-08-03', 16, '2019-08-03 08:33:58', '2019-08-03 11:26:00'),
(10273, '2019-08-03', 163, '2019-08-03 08:34:01', NULL),
(10274, '2019-08-03', 56, '2019-08-03 08:34:06', '2019-08-03 11:25:37'),
(10275, '2019-08-03', 66, '2019-08-03 08:34:11', '2019-08-03 11:26:16'),
(10276, '2019-08-03', 191, '2019-08-03 08:34:16', '2019-08-03 11:24:01'),
(10277, '2019-08-03', 69, '2019-08-03 08:34:21', '2019-08-03 11:25:41'),
(10278, '2019-08-03', 70, '2019-08-03 08:34:26', '2019-08-03 11:26:22'),
(10279, '2019-08-03', 72, '2019-08-03 08:34:31', '2019-08-03 11:25:25'),
(10280, '2019-08-03', 177, '2019-08-03 08:34:37', '2019-08-03 11:25:48'),
(10281, '2019-08-03', 137, '2019-08-03 08:34:42', NULL),
(10282, '2019-08-03', 71, '2019-08-03 08:34:53', '2019-08-03 11:26:11'),
(10283, '2019-08-03', 112, '2019-08-03 08:34:58', '2019-08-03 10:38:15'),
(10284, '2019-08-03', 142, '2019-08-03 08:35:18', '2019-08-03 11:21:33'),
(10285, '2019-08-03', 10, '2019-08-03 08:35:28', NULL),
(10286, '2019-08-03', 192, '2019-08-03 08:35:36', '2019-08-03 10:36:32'),
(10287, '2019-08-03', 88, '2019-08-03 08:38:06', '2019-08-03 10:37:57'),
(10288, '2019-08-03', 61, '2019-08-03 08:38:20', '2019-08-03 11:32:33'),
(10289, '2019-08-03', 118, '2019-08-03 08:38:55', '2019-08-03 10:20:24'),
(10290, '2019-08-03', 113, '2019-08-03 08:39:01', '2019-08-03 10:25:19'),
(10291, '2019-08-03', 130, '2019-08-03 08:39:05', '2019-08-03 11:13:29'),
(10292, '2019-08-03', 151, '2019-08-03 08:39:32', '2019-08-03 11:22:11'),
(10293, '2019-08-03', 183, '2019-08-03 08:43:51', '2019-08-03 10:36:23'),
(10294, '2019-08-03', 60, '2019-08-03 08:44:04', '2019-08-03 11:26:14'),
(10295, '2019-08-03', 117, '2019-08-03 08:45:10', '2019-08-03 10:39:45'),
(10296, '2019-08-03', 134, '2019-08-03 08:51:10', NULL),
(10297, '2019-08-03', 19, '2019-08-03 08:56:00', NULL),
(10298, '2019-08-03', 120, '2019-08-03 08:56:36', NULL),
(10299, '2019-08-03', 153, '2019-08-03 08:58:00', '2019-08-03 11:22:02'),
(10300, '2019-08-03', 105, '2019-08-03 10:25:34', NULL),
(10301, '2019-08-03', 187, '2019-08-03 10:29:08', '2019-08-03 11:37:12'),
(10302, '2019-08-03', 30, '2019-08-03 10:33:45', NULL),
(10303, '2019-08-03', 101, '2019-08-03 10:36:53', NULL),
(10304, '2019-08-03', 84, '2019-08-03 10:37:25', NULL),
(10305, '2019-08-03', 85, '2019-08-03 10:37:41', NULL),
(10306, '2019-08-03', 28, '2019-08-03 10:38:13', NULL),
(10307, '2019-08-03', 111, '2019-08-03 10:40:22', NULL),
(10308, '2019-08-03', 42, '2019-08-03 10:43:04', NULL),
(10309, '2019-08-03', 102, '2019-08-03 10:45:11', NULL),
(10310, '2019-08-03', 180, '2019-08-03 11:21:39', NULL),
(10311, '2019-08-03', 126, '2019-08-03 11:21:49', NULL),
(10312, '2019-08-03', 125, '2019-08-03 11:22:41', NULL),
(10313, '2019-08-03', 5, '2019-08-03 11:26:05', NULL),
(10314, '2019-08-04', 157, '2019-08-04 07:41:09', '2019-08-04 11:37:47'),
(10315, '2019-08-04', 18, '2019-08-04 07:49:45', '2019-08-04 11:40:56'),
(10316, '2019-08-04', 55, '2019-08-04 07:49:48', NULL),
(10317, '2019-08-04', 147, '2019-08-04 07:49:57', NULL),
(10318, '2019-08-04', 34, '2019-08-04 07:50:01', '2019-08-04 10:48:18'),
(10319, '2019-08-04', 99, '2019-08-04 07:57:57', '2019-08-04 10:27:25'),
(10320, '2019-08-04', 141, '2019-08-04 07:59:28', NULL),
(10321, '2019-08-04', 61, '2019-08-04 08:00:42', NULL),
(10322, '2019-08-04', 89, '2019-08-04 08:01:48', '2019-08-04 10:28:49'),
(10323, '2019-08-04', 124, '2019-08-04 08:03:05', '2019-08-04 11:38:03'),
(10324, '2019-08-04', 190, '2019-08-04 08:03:37', '2019-08-04 12:04:28'),
(10325, '2019-08-04', 167, '2019-08-04 08:04:00', '2019-08-04 12:03:41'),
(10326, '2019-08-04', 163, '2019-08-04 08:04:45', NULL),
(10327, '2019-08-04', 169, '2019-08-04 08:04:50', NULL),
(10328, '2019-08-04', 96, '2019-08-04 08:05:22', '2019-08-04 10:28:42'),
(10329, '2019-08-04', 92, '2019-08-04 08:05:58', '2019-08-04 10:26:36'),
(10330, '2019-08-04', 23, '2019-08-04 08:06:04', '2019-08-04 12:02:36'),
(10331, '2019-08-04', 11, '2019-08-04 08:06:46', '2019-08-04 11:45:17'),
(10332, '2019-08-04', 84, '2019-08-04 08:07:36', '2019-08-04 10:28:18'),
(10333, '2019-08-04', 95, '2019-08-04 08:09:21', '2019-08-04 10:26:30'),
(10334, '2019-08-04', 7, '2019-08-04 08:10:00', '2019-08-04 12:03:28'),
(10335, '2019-08-04', 57, '2019-08-04 08:10:24', '2019-08-04 12:07:37'),
(10336, '2019-08-04', 46, '2019-08-04 08:10:26', '2019-08-04 12:03:13'),
(10337, '2019-08-04', 136, '2019-08-04 08:10:30', NULL),
(10338, '2019-08-04', 138, '2019-08-04 08:10:34', '2019-08-04 11:41:01'),
(10339, '2019-08-04', 91, '2019-08-04 08:11:03', '2019-08-04 10:27:42'),
(10340, '2019-08-04', 98, '2019-08-04 08:11:08', '2019-08-04 10:27:38'),
(10341, '2019-08-04', 174, '2019-08-04 08:11:16', NULL),
(10342, '2019-08-04', 90, '2019-08-04 08:11:21', '2019-08-04 10:27:33'),
(10343, '2019-08-04', 31, '2019-08-04 08:11:40', NULL),
(10344, '2019-08-04', 191, '2019-08-04 08:11:54', '2019-08-04 12:03:51'),
(10345, '2019-08-04', 62, '2019-08-04 08:12:04', NULL),
(10346, '2019-08-04', 14, '2019-08-04 08:12:16', NULL),
(10347, '2019-08-04', 170, '2019-08-04 08:12:25', '2019-08-04 12:12:19'),
(10348, '2019-08-04', 38, '2019-08-04 08:14:18', '2019-08-04 10:31:53'),
(10349, '2019-08-04', 181, '2019-08-04 08:15:13', '2019-08-04 12:04:05'),
(10350, '2019-08-04', 145, '2019-08-04 08:15:17', NULL),
(10351, '2019-08-04', 150, '2019-08-04 08:16:13', '2019-08-04 11:37:52'),
(10352, '2019-08-04', 168, '2019-08-04 08:16:23', '2019-08-04 12:10:19'),
(10353, '2019-08-04', 27, '2019-08-04 08:17:02', '2019-08-04 10:16:37'),
(10354, '2019-08-04', 142, '2019-08-04 08:18:18', NULL),
(10355, '2019-08-04', 44, '2019-08-04 08:18:57', '2019-08-04 12:04:08'),
(10356, '2019-08-04', 128, '2019-08-04 08:19:01', '2019-08-04 11:37:34'),
(10357, '2019-08-04', 86, '2019-08-04 08:19:33', '2019-08-04 10:28:04'),
(10358, '2019-08-04', 63, '2019-08-04 08:19:45', '2019-08-04 12:02:58'),
(10359, '2019-08-04', 15, '2019-08-04 08:20:00', NULL),
(10360, '2019-08-04', 78, '2019-08-04 08:20:06', '2019-08-04 10:26:25'),
(10361, '2019-08-04', 135, '2019-08-04 08:21:30', NULL),
(10362, '2019-08-04', 37, '2019-08-04 08:21:32', '2019-08-04 10:16:27'),
(10363, '2019-08-04', 5, '2019-08-04 08:21:45', '2019-08-04 12:03:46'),
(10364, '2019-08-04', 70, '2019-08-04 08:21:50', '2019-08-04 12:03:19'),
(10365, '2019-08-04', 69, '2019-08-04 08:21:56', '2019-08-04 12:06:20'),
(10366, '2019-08-04', 126, '2019-08-04 08:31:24', '2019-08-04 11:37:38'),
(10367, '2019-08-04', 156, '2019-08-04 08:31:30', '2019-08-04 11:41:38'),
(10368, '2019-08-04', 131, '2019-08-04 08:31:35', '2019-08-04 11:37:56'),
(10369, '2019-08-04', 10, '2019-08-04 08:31:52', '2019-08-04 12:04:15'),
(10370, '2019-08-04', 189, '2019-08-04 08:32:04', '2019-08-04 12:13:32'),
(10371, '2019-08-04', 64, '2019-08-04 08:32:15', NULL),
(10372, '2019-08-04', 71, '2019-08-04 08:32:20', '2019-08-04 12:15:17'),
(10373, '2019-08-04', 79, '2019-08-04 08:32:29', '2019-08-04 10:26:23'),
(10374, '2019-08-04', 101, '2019-08-04 08:32:36', '2019-08-04 10:29:10'),
(10375, '2019-08-04', 118, '2019-08-04 08:32:42', '2019-08-04 10:16:31'),
(10376, '2019-08-04', 112, '2019-08-04 08:32:48', '2019-08-04 10:56:09'),
(10377, '2019-08-04', 180, '2019-08-04 08:34:23', '2019-08-04 11:41:59'),
(10378, '2019-08-04', 166, '2019-08-04 08:36:56', '2019-08-04 12:03:25'),
(10379, '2019-08-04', 80, '2019-08-04 08:38:10', NULL),
(10380, '2019-08-04', 60, '2019-08-04 08:38:19', '2019-08-04 12:08:07'),
(10381, '2019-08-04', 66, '2019-08-04 08:38:26', NULL),
(10382, '2019-08-04', 120, '2019-08-04 08:38:35', NULL),
(10383, '2019-08-04', 160, '2019-08-04 08:38:53', '2019-08-04 10:29:05');
INSERT INTO `student_attendance` (`id`, `date`, `student_id`, `in_time`, `out_time`) VALUES
(10384, '2019-08-04', 56, '2019-08-04 08:39:03', '2019-08-04 12:08:19'),
(10385, '2019-08-04', 58, '2019-08-04 08:39:05', '2019-08-04 12:08:13'),
(10386, '2019-08-04', 117, '2019-08-04 08:39:54', '2019-08-04 10:50:59'),
(10387, '2019-08-04', 179, '2019-08-04 08:40:12', '2019-08-04 12:12:20'),
(10388, '2019-08-04', 152, '2019-08-04 08:41:01', '2019-08-04 11:43:56'),
(10389, '2019-08-04', 72, '2019-08-04 08:41:06', '2019-08-04 12:13:26'),
(10390, '2019-08-04', 88, '2019-08-04 08:44:01', '2019-08-04 10:28:28'),
(10391, '2019-08-04', 52, '2019-08-04 08:45:01', NULL),
(10392, '2019-08-04', 113, '2019-08-04 08:45:05', '2019-08-04 10:16:13'),
(10393, '2019-08-04', 130, '2019-08-04 08:45:21', '2019-08-04 11:38:26'),
(10394, '2019-08-04', 125, '2019-08-04 08:45:26', '2019-08-04 11:38:10'),
(10395, '2019-08-04', 19, '2019-08-04 08:54:22', NULL),
(10396, '2019-08-04', 67, '2019-08-04 08:55:13', '2019-08-04 12:14:46'),
(10397, '2019-08-04', 77, '2019-08-04 09:18:22', '2019-08-04 10:27:14'),
(10398, '2019-08-04', 115, '2019-08-04 10:16:34', NULL),
(10399, '2019-08-04', 97, '2019-08-04 10:26:41', NULL),
(10400, '2019-08-04', 159, '2019-08-04 10:27:59', NULL),
(10401, '2019-08-04', 104, '2019-08-04 10:29:30', '2019-08-04 11:41:53'),
(10402, '2019-08-04', 187, '2019-08-04 10:34:00', '2019-08-04 12:02:08'),
(10403, '2019-08-04', 30, '2019-08-04 10:34:50', '2019-08-04 11:57:51'),
(10404, '2019-08-04', 103, '2019-08-04 10:35:02', NULL),
(10405, '2019-08-04', 28, '2019-08-04 10:41:58', NULL),
(10406, '2019-08-04', 111, '2019-08-04 10:43:43', '2019-08-04 12:04:25'),
(10407, '2019-08-04', 41, '2019-08-04 10:43:50', '2019-08-04 12:24:58'),
(10408, '2019-08-04', 33, '2019-08-04 10:43:55', '2019-08-04 12:24:48'),
(10409, '2019-08-04', 102, '2019-08-04 10:47:51', '2019-08-04 12:04:36'),
(10410, '2019-08-04', 178, '2019-08-04 10:48:22', NULL),
(10411, '2019-08-04', 183, '2019-08-04 10:49:48', '2019-08-04 11:55:20'),
(10412, '2019-08-04', 192, '2019-08-04 10:51:57', '2019-08-04 11:55:52'),
(10413, '2019-08-04', 35, '2019-08-04 10:57:26', NULL),
(10414, '2019-08-04', 36, '2019-08-04 10:57:32', '2019-08-04 12:02:35'),
(10415, '2019-08-04', 129, '2019-08-04 11:37:13', NULL),
(10416, '2019-08-04', 151, '2019-08-04 11:37:29', NULL),
(10417, '2019-08-04', 123, '2019-08-04 11:38:15', NULL),
(10418, '2019-08-04', 137, '2019-08-04 11:41:27', NULL),
(10419, '2019-08-04', 143, '2019-08-04 11:41:30', NULL),
(10420, '2019-08-04', 184, '2019-08-04 11:53:58', NULL),
(10421, '2019-08-04', 177, '2019-08-04 12:03:53', NULL),
(10422, '2019-08-04', 182, '2019-08-04 12:04:43', NULL),
(10423, '2019-08-04', 105, '2019-08-04 12:12:25', NULL),
(10424, '2019-08-05', 147, '2019-08-05 08:05:58', NULL),
(10425, '2019-08-05', 55, '2019-08-05 08:06:03', NULL),
(10426, '2019-08-05', 11, '2019-08-05 08:12:53', NULL),
(10427, '2019-08-05', 62, '2019-08-05 08:23:08', NULL),
(10428, '2019-08-05', 176, '2019-08-05 08:23:11', NULL),
(10429, '2019-08-05', 90, '2019-08-05 08:23:25', '2019-08-05 10:43:38'),
(10430, '2019-08-05', 98, '2019-08-05 08:23:45', '2019-08-05 10:44:15'),
(10431, '2019-08-05', 136, '2019-08-05 08:24:05', NULL),
(10432, '2019-08-05', 91, '2019-08-05 08:24:10', '2019-08-05 10:44:21'),
(10433, '2019-08-05', 191, '2019-08-05 08:31:36', NULL),
(10434, '2019-08-05', 190, '2019-08-05 08:31:41', NULL),
(10435, '2019-08-05', 88, '2019-08-05 08:33:08', NULL),
(10436, '2019-08-05', 138, '2019-08-05 08:35:40', NULL),
(10437, '2019-08-05', 60, '2019-08-05 08:36:14', NULL),
(10438, '2019-08-05', 168, '2019-08-05 08:38:45', NULL),
(10439, '2019-08-05', 189, '2019-08-05 08:40:59', NULL),
(10440, '2019-08-05', 101, '2019-08-05 08:44:19', NULL),
(10441, '2019-08-05', 44, '2019-08-05 08:44:28', NULL),
(10442, '2019-08-05', 169, '2019-08-05 08:45:21', NULL),
(10443, '2019-08-05', 163, '2019-08-05 08:45:24', NULL),
(10444, '2019-08-05', 124, '2019-08-05 08:46:18', NULL),
(10445, '2019-08-05', 89, '2019-08-05 08:46:54', NULL),
(10446, '2019-08-05', 48, '2019-08-05 08:47:09', NULL),
(10447, '2019-08-05', 97, '2019-08-05 08:47:32', '2019-08-05 10:44:46'),
(10448, '2019-08-05', 92, '2019-08-05 08:49:08', '2019-08-05 10:44:10'),
(10449, '2019-08-05', 45, '2019-08-05 08:49:11', NULL),
(10450, '2019-08-05', 145, '2019-08-05 08:49:15', NULL),
(10451, '2019-08-05', 25, '2019-08-05 08:49:19', NULL),
(10452, '2019-08-05', 181, '2019-08-05 08:49:24', NULL),
(10453, '2019-08-05', 167, '2019-08-05 08:49:32', NULL),
(10454, '2019-08-05', 23, '2019-08-05 08:49:44', NULL),
(10455, '2019-08-05', 27, '2019-08-05 08:49:52', '2019-08-05 10:23:36'),
(10456, '2019-08-05', 66, '2019-08-05 08:50:34', NULL),
(10457, '2019-08-05', 5, '2019-08-05 08:50:40', NULL),
(10458, '2019-08-05', 70, '2019-08-05 08:50:54', NULL),
(10459, '2019-08-05', 10, '2019-08-05 08:51:18', NULL),
(10460, '2019-08-05', 95, '2019-08-05 08:51:43', '2019-08-05 10:43:33'),
(10461, '2019-08-05', 47, '2019-08-05 08:51:48', NULL),
(10462, '2019-08-05', 61, '2019-08-05 08:51:51', NULL),
(10463, '2019-08-05', 142, '2019-08-05 08:53:03', NULL),
(10464, '2019-08-05', 141, '2019-08-05 08:53:08', NULL),
(10465, '2019-08-05', 84, '2019-08-05 08:54:01', NULL),
(10466, '2019-08-05', 150, '2019-08-05 08:55:49', NULL),
(10467, '2019-08-05', 99, '2019-08-05 08:56:02', '2019-08-05 10:44:00'),
(10468, '2019-08-05', 159, '2019-08-05 08:56:34', '2019-08-05 10:44:33'),
(10469, '2019-08-05', 34, '2019-08-05 08:56:37', NULL),
(10470, '2019-08-05', 18, '2019-08-05 08:56:41', NULL),
(10471, '2019-08-05', 17, '2019-08-05 08:58:12', '2019-08-05 10:34:20'),
(10472, '2019-08-05', 76, '2019-08-05 08:58:15', '2019-08-05 10:43:45'),
(10473, '2019-08-05', 46, '2019-08-05 08:58:18', NULL),
(10474, '2019-08-05', 122, '2019-08-05 08:59:30', NULL),
(10475, '2019-08-05', 52, '2019-08-05 08:59:34', NULL),
(10476, '2019-08-05', 125, '2019-08-05 08:59:40', NULL),
(10477, '2019-08-05', 113, '2019-08-05 08:59:43', '2019-08-05 10:34:04'),
(10478, '2019-08-05', 77, '2019-08-05 09:00:09', '2019-08-05 10:44:27'),
(10479, '2019-08-05', 117, '2019-08-05 09:02:15', NULL),
(10480, '2019-08-05', 35, '2019-08-05 09:02:30', '2019-08-05 10:24:40'),
(10481, '2019-08-05', 166, '2019-08-05 09:02:34', NULL),
(10482, '2019-08-05', 36, '2019-08-05 09:02:40', '2019-08-05 10:25:00'),
(10483, '2019-08-05', 85, '2019-08-05 09:03:01', '2019-08-05 10:44:39'),
(10484, '2019-08-05', 180, '2019-08-05 09:03:07', NULL),
(10485, '2019-08-05', 103, '2019-08-05 09:03:22', NULL),
(10486, '2019-08-05', 19, '2019-08-05 09:04:38', NULL),
(10487, '2019-08-05', 38, '2019-08-05 09:04:42', '2019-08-05 10:32:48'),
(10488, '2019-08-05', 112, '2019-08-05 09:04:47', NULL),
(10489, '2019-08-05', 53, '2019-08-05 09:04:53', NULL),
(10490, '2019-08-05', 192, '2019-08-05 09:04:58', '2019-08-05 10:45:10'),
(10491, '2019-08-05', 78, '2019-08-05 09:05:33', '2019-08-05 10:43:28'),
(10492, '2019-08-05', 15, '2019-08-05 09:05:42', NULL),
(10493, '2019-08-05', 178, '2019-08-05 09:06:03', NULL),
(10494, '2019-08-05', 164, '2019-08-05 09:06:20', NULL),
(10495, '2019-08-05', 152, '2019-08-05 09:06:50', NULL),
(10496, '2019-08-05', 120, '2019-08-05 09:06:56', NULL),
(10497, '2019-08-05', 72, '2019-08-05 09:07:01', NULL),
(10498, '2019-08-05', 134, '2019-08-05 09:07:07', NULL),
(10499, '2019-08-05', 151, '2019-08-05 09:07:12', NULL),
(10500, '2019-08-05', 30, '2019-08-05 09:07:49', '2019-08-05 10:32:37'),
(10501, '2019-08-05', 7, '2019-08-05 09:08:11', NULL),
(10502, '2019-08-05', 96, '2019-08-05 09:08:33', '2019-08-05 10:44:54'),
(10503, '2019-08-05', 29, '2019-08-05 09:08:43', NULL),
(10504, '2019-08-05', 140, '2019-08-05 09:08:49', NULL),
(10505, '2019-08-05', 71, '2019-08-05 09:08:55', NULL),
(10506, '2019-08-05', 183, '2019-08-05 09:09:00', '2019-08-05 10:43:54'),
(10507, '2019-08-05', 86, '2019-08-05 09:09:44', '2019-08-05 10:44:50'),
(10508, '2019-08-05', 170, '2019-08-05 09:10:05', NULL),
(10509, '2019-08-05', 37, '2019-08-05 09:10:34', '2019-08-05 10:30:15'),
(10510, '2019-08-05', 156, '2019-08-05 09:16:47', NULL),
(10511, '2019-08-05', 154, '2019-08-05 09:21:52', NULL),
(10512, '2019-08-05', 31, '2019-08-05 10:23:53', NULL),
(10513, '2019-08-05', 187, '2019-08-05 10:26:34', NULL),
(10514, '2019-08-05', 105, '2019-08-05 10:28:55', NULL),
(10515, '2019-08-05', 111, '2019-08-05 10:37:01', NULL),
(10516, '2019-08-05', 33, '2019-08-05 10:37:12', NULL),
(10517, '2019-08-05', 42, '2019-08-05 10:37:21', NULL),
(10518, '2019-08-05', 102, '2019-08-05 10:42:40', NULL),
(10519, '2019-08-05', 175, '2019-08-05 10:43:18', NULL),
(10520, '2019-08-05', 174, '2019-08-05 10:45:20', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `student_class_section`
--
CREATE TABLE `student_class_section` (
`id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`class_id` int(11) NOT NULL,
`section_id` int(11) NOT NULL,
`roll` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `student_class_section`
--
INSERT INTO `student_class_section` (`id`, `student_id`, `class_id`, `section_id`, `roll`) VALUES
(1, 1, 1, 1, '1'),
(2, 1, 1, 1, '914464'),
(3, 2, 1, 1, '12'),
(4, 3, 1, 1, '2'),
(5, 4, 1, 1, '1'),
(6, 5, 4, 1, '1'),
(7, 6, 4, 1, '2'),
(8, 7, 4, 1, '3'),
(9, 8, 4, 1, '4'),
(10, 9, 4, 1, '5'),
(11, 10, 4, 1, '6'),
(12, 11, 4, 1, '7'),
(13, 12, 4, 1, '8'),
(14, 13, 4, 1, '9'),
(15, 14, 4, 1, '10'),
(16, 15, 4, 1, '11'),
(17, 16, 4, 1, '12'),
(18, 17, 3, 1, '01'),
(19, 18, 4, 1, '13'),
(20, 19, 3, 1, '02'),
(21, 20, 4, 1, '14'),
(22, 21, 4, 1, '15'),
(23, 22, 3, 1, '03'),
(24, 23, 4, 1, '16'),
(25, 24, 4, 1, '17'),
(26, 25, 4, 1, '18'),
(27, 26, 3, 1, '4'),
(28, 27, 3, 1, '5'),
(29, 28, 3, 2, '01'),
(30, 29, 3, 1, '6'),
(31, 30, 3, 2, '02'),
(32, 31, 3, 1, '7'),
(33, 32, 3, 2, '03'),
(34, 33, 3, 2, '04'),
(35, 34, 3, 1, '8'),
(36, 35, 3, 2, '10'),
(37, 36, 3, 2, '05'),
(38, 37, 3, 1, '10'),
(39, 38, 3, 1, '11'),
(40, 39, 3, 1, '12'),
(41, 40, 3, 2, '06'),
(42, 41, 3, 2, '7'),
(43, 42, 3, 2, '8'),
(44, 43, 6, 1, '1'),
(45, 44, 6, 1, '2'),
(46, 45, 6, 1, '3'),
(47, 46, 6, 1, '4'),
(48, 47, 6, 1, '5'),
(49, 48, 6, 1, '6'),
(50, 49, 6, 1, '7'),
(51, 50, 6, 1, '8'),
(52, 51, 6, 1, '9'),
(53, 52, 6, 1, '10'),
(54, 53, 6, 1, '11'),
(55, 54, 6, 1, '12'),
(56, 55, 5, 1, '1'),
(57, 56, 5, 1, '2'),
(58, 57, 5, 1, '3'),
(59, 58, 5, 1, '4'),
(60, 59, 5, 1, '5'),
(61, 60, 5, 1, '6'),
(62, 61, 5, 1, '7'),
(63, 62, 5, 1, '8'),
(64, 63, 5, 1, '9'),
(65, 64, 5, 1, '10'),
(66, 65, 5, 1, '11'),
(67, 66, 5, 1, '12'),
(68, 67, 5, 1, '13'),
(69, 68, 5, 1, '14'),
(70, 69, 5, 1, '15'),
(71, 70, 5, 1, '16'),
(72, 71, 5, 1, '17'),
(73, 72, 5, 1, '18'),
(74, 73, 2, 1, '1'),
(75, 74, 2, 1, '2'),
(76, 75, 2, 1, '3'),
(77, 76, 2, 1, '4'),
(78, 77, 2, 1, '5'),
(79, 78, 2, 1, '6'),
(80, 79, 2, 1, '7'),
(81, 80, 2, 1, '8'),
(82, 81, 2, 1, '9'),
(83, 82, 2, 1, '9'),
(84, 83, 2, 1, '9'),
(85, 84, 2, 1, '9'),
(86, 85, 2, 1, '10'),
(87, 86, 2, 1, '11'),
(88, 87, 2, 1, '12'),
(89, 88, 2, 1, '13'),
(90, 89, 2, 1, '14'),
(91, 90, 2, 1, '15'),
(92, 91, 2, 1, '16'),
(93, 92, 2, 1, '17'),
(94, 93, 2, 1, '18'),
(95, 94, 2, 1, '19'),
(96, 95, 2, 1, '20'),
(97, 96, 2, 1, '21'),
(98, 97, 2, 1, '22'),
(99, 98, 2, 1, '23'),
(100, 99, 2, 1, '24'),
(101, 100, 2, 1, '25'),
(102, 101, 2, 1, '26'),
(103, 102, 2, 2, '1'),
(104, 103, 2, 2, '2'),
(105, 104, 2, 2, '3'),
(106, 105, 2, 2, '4'),
(107, 106, 2, 2, '5'),
(108, 107, 2, 2, '6'),
(109, 108, 2, 2, '7'),
(110, 109, 2, 2, '8'),
(111, 110, 2, 1, '27'),
(112, 111, 2, 2, '9'),
(113, 112, 3, 1, '13'),
(114, 113, 3, 1, '14'),
(115, 114, 3, 1, '15'),
(116, 115, 3, 1, '16'),
(117, 116, 3, 1, '17'),
(118, 117, 3, 1, '18'),
(119, 118, 3, 1, '19'),
(120, 119, 3, 1, '20'),
(121, 120, 3, 1, '21'),
(122, 121, 3, 1, '22'),
(123, 122, 3, 1, '23'),
(124, 123, 1, 1, '2'),
(125, 124, 1, 1, '3'),
(126, 125, 1, 1, '4'),
(127, 126, 1, 1, '5'),
(128, 127, 1, 1, '6'),
(129, 128, 1, 1, '7'),
(130, 129, 1, 1, '8'),
(131, 130, 1, 1, '9'),
(132, 131, 1, 1, '10'),
(133, 132, 1, 1, '11'),
(134, 133, 1, 1, '12'),
(135, 134, 1, 1, '13'),
(136, 135, 1, 1, '14'),
(137, 136, 1, 1, '15'),
(138, 137, 1, 1, '16'),
(139, 138, 1, 1, '17'),
(140, 139, 1, 1, '18'),
(141, 140, 1, 1, '19'),
(142, 141, 1, 1, '20'),
(143, 142, 1, 1, '21'),
(144, 143, 1, 1, '22'),
(145, 144, 1, 1, '23'),
(146, 145, 1, 1, '24'),
(147, 146, 1, 1, '25'),
(148, 147, 1, 1, '26'),
(149, 148, 1, 1, '27'),
(150, 149, 3, 2, '9'),
(151, 150, 1, 1, '28'),
(152, 151, 1, 1, '29'),
(153, 152, 1, 1, '30'),
(154, 153, 1, 1, '31'),
(155, 154, 1, 1, '32'),
(156, 155, 1, 1, '33'),
(157, 156, 1, 1, '34'),
(158, 157, 1, 1, '35'),
(159, 158, 2, 1, '28'),
(160, 159, 2, 1, '29'),
(161, 160, 2, 1, '30'),
(162, 161, 4, 1, '19'),
(163, 162, 4, 1, '20'),
(164, 163, 4, 1, '21'),
(165, 164, 4, 1, '22'),
(166, 165, 4, 1, '23'),
(167, 166, 4, 1, '24'),
(168, 167, 6, 1, '13'),
(169, 168, 7, 1, '3'),
(170, 169, 7, 1, '4'),
(171, 170, 7, 1, '5'),
(172, 171, 7, 1, '6'),
(173, 172, 7, 1, '7'),
(174, 173, 7, 1, '8'),
(175, 174, 2, 2, '10'),
(176, 175, 2, 2, '11'),
(177, 176, 6, 1, '15'),
(178, 177, 5, 1, '19'),
(179, 178, 3, 1, '9'),
(180, 179, 7, 1, '1'),
(181, 180, 1, 1, '36'),
(182, 181, 6, 1, '14'),
(183, 182, 4, 1, '15'),
(184, 183, 2, 2, '12'),
(185, 184, 3, 2, '3'),
(186, 185, 2, 2, '13'),
(187, 186, 1, 1, '37'),
(188, 187, 2, 2, '14'),
(189, 188, 3, 1, '24'),
(190, 189, 5, 1, '20'),
(191, 190, 6, 1, '16'),
(192, 191, 5, 1, '21'),
(193, 192, 2, 2, '15');
-- --------------------------------------------------------
--
-- Table structure for table `student_van`
--
CREATE TABLE `student_van` (
`id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`van_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `student_van`
--
INSERT INTO `student_van` (`id`, `student_id`, `van_id`) VALUES
(1, 1, NULL),
(2, 1, NULL),
(3, 2, NULL),
(4, 3, NULL),
(5, 4, 1),
(6, 5, NULL),
(7, 6, NULL),
(8, 7, NULL),
(9, 8, NULL),
(10, 9, NULL),
(11, 10, NULL),
(12, 11, NULL),
(13, 12, NULL),
(14, 13, NULL),
(15, 14, NULL),
(16, 15, NULL),
(17, 16, NULL),
(18, 17, NULL),
(19, 18, NULL),
(20, 19, NULL),
(21, 20, NULL),
(22, 21, NULL),
(23, 22, NULL),
(24, 23, NULL),
(25, 24, NULL),
(26, 25, NULL),
(27, 26, NULL),
(28, 27, NULL),
(29, 28, NULL),
(30, 29, NULL),
(31, 30, NULL),
(32, 31, NULL),
(33, 32, NULL),
(34, 33, NULL),
(35, 34, NULL),
(36, 35, NULL),
(37, 36, NULL),
(38, 37, NULL),
(39, 38, NULL),
(40, 39, NULL),
(41, 40, NULL),
(42, 41, NULL),
(43, 42, NULL),
(44, 43, NULL),
(45, 44, NULL),
(46, 45, NULL),
(47, 46, NULL),
(48, 47, NULL),
(49, 48, NULL),
(50, 49, NULL),
(51, 50, NULL),
(52, 51, NULL),
(53, 52, NULL),
(54, 53, NULL),
(55, 54, NULL),
(56, 55, NULL),
(57, 56, NULL),
(58, 57, NULL),
(59, 58, NULL),
(60, 59, NULL),
(61, 60, NULL),
(62, 61, NULL),
(63, 62, NULL),
(64, 63, NULL),
(65, 64, NULL),
(66, 65, NULL),
(67, 66, NULL),
(68, 67, NULL),
(69, 68, NULL),
(70, 69, NULL),
(71, 70, NULL),
(72, 71, NULL),
(73, 72, NULL),
(74, 73, NULL),
(75, 74, NULL),
(76, 75, NULL),
(77, 76, NULL),
(78, 77, NULL),
(79, 78, NULL),
(80, 79, NULL),
(81, 80, NULL),
(82, 81, NULL),
(83, 82, NULL),
(84, 83, NULL),
(85, 84, NULL),
(86, 85, NULL),
(87, 86, NULL),
(88, 87, NULL),
(89, 88, NULL),
(90, 89, NULL),
(91, 90, NULL),
(92, 91, NULL),
(93, 92, NULL),
(94, 93, NULL),
(95, 94, NULL),
(96, 95, NULL),
(97, 96, NULL),
(98, 97, NULL),
(99, 98, NULL),
(100, 99, NULL),
(101, 100, NULL),
(102, 101, NULL),
(103, 102, NULL),
(104, 103, NULL),
(105, 104, NULL),
(106, 105, NULL),
(107, 106, NULL),
(108, 107, NULL),
(109, 108, NULL),
(110, 109, NULL),
(111, 110, NULL),
(112, 111, NULL),
(113, 112, NULL),
(114, 113, NULL),
(115, 114, NULL),
(116, 115, NULL),
(117, 116, NULL),
(118, 117, NULL),
(119, 118, NULL),
(120, 119, NULL),
(121, 120, NULL),
(122, 121, NULL),
(123, 122, NULL),
(124, 123, NULL),
(125, 124, NULL),
(126, 125, NULL),
(127, 126, NULL),
(128, 127, NULL),
(129, 128, NULL),
(130, 129, NULL),
(131, 130, NULL),
(132, 131, NULL),
(133, 132, NULL),
(134, 133, NULL),
(135, 134, NULL),
(136, 135, NULL),
(137, 136, NULL),
(138, 137, NULL),
(139, 138, NULL),
(140, 139, NULL),
(141, 140, NULL),
(142, 141, NULL),
(143, 142, NULL),
(144, 143, NULL),
(145, 144, NULL),
(146, 145, NULL),
(147, 146, NULL),
(148, 147, NULL),
(149, 148, NULL),
(150, 149, NULL),
(151, 150, NULL),
(152, 151, NULL),
(153, 152, NULL),
(154, 153, NULL),
(155, 154, NULL),
(156, 155, NULL),
(157, 156, NULL),
(158, 157, NULL),
(159, 158, NULL),
(160, 159, NULL),
(161, 160, NULL),
(162, 161, NULL),
(163, 162, NULL),
(164, 163, NULL),
(165, 164, NULL),
(166, 165, NULL),
(167, 166, NULL),
(168, 167, NULL),
(169, 168, NULL),
(170, 169, NULL),
(171, 170, NULL),
(172, 171, NULL),
(173, 172, NULL),
(174, 173, NULL),
(175, 174, NULL),
(176, 175, NULL),
(177, 176, NULL),
(178, 177, NULL),
(179, 178, NULL),
(180, 179, NULL),
(181, 180, NULL),
(182, 181, NULL),
(183, 182, NULL),
(184, 183, NULL),
(185, 184, NULL),
(186, 185, NULL),
(187, 186, NULL),
(188, 187, NULL),
(189, 188, NULL),
(190, 189, NULL),
(191, 190, NULL),
(192, 191, NULL),
(193, 192, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `teachers`
--
CREATE TABLE `teachers` (
`id` int(11) NOT NULL,
`metric_id` int(11) DEFAULT NULL,
`name` varchar(250) NOT NULL,
`mobile_no` varchar(30) NOT NULL,
`designation` varchar(50) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`address` text DEFAULT NULL,
`image` text DEFAULT NULL,
`other_contact_type` varchar(50) DEFAULT NULL,
`other_contact_name` varchar(50) DEFAULT NULL,
`other_contact_mobile_no` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `teachers`
--
INSERT INTO `teachers` (`id`, `metric_id`, `name`, `mobile_no`, `designation`, `email`, `address`, `image`, `other_contact_type`, `other_contact_name`, `other_contact_mobile_no`) VALUES
(1, 180, '<NAME>', '8801922513296', 'Vice Principle', NULL, 'Th<NAME>jid road,Mohona Building,Agrabad,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01977628099'),
(2, 177, '<NAME>', '8801793248304', 'Senior Teacher', NULL, 'Shantibag,Uttor Agrabad,Ctg', 'public/image/avatar.png', NULL, 'Md.<NAME>', '01957242282'),
(4, 173, '<NAME>', '8801716084067', 'Assistance Teacher', NULL, 'CDA road no 9,Gentry Salam House,Flat no 4/B,Abidarpara,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01850173540'),
(5, 178, '<NAME>', '8801742379954', 'Assistance Teacher', NULL, 'CDA road no 13,Agrabad,Ctg', 'public/image/avatar.png', NULL, 'MD.R<NAME>', '01712616785'),
(6, 171, '<NAME>', '8801832834787', 'Assistance Teacher', NULL, 'CDA road no 9,Gentry Salam House,1st floor C,Abidarpara,Ctg', 'public/image/avatar.png', NULL, 'A<NAME>', '01821329623'),
(7, 179, '<NAME>', '8801825271969', 'Assistance Teacher', NULL, '3 no Fokirhat,<NAME>,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01813298330'),
(8, 166, '<NAME>', '8801619947465', 'Assistance Teacher', NULL, 'Islamia Brickfield,Chotopol,Ctg', 'public/image/avatar.png', NULL, 'MRS.<NAME>', '01817748202'),
(9, 176, '<NAME>', '8801869338371', 'Assistance Teacher', NULL, 'CDA road no 25,Poly Mension,Agrabad,Ctg', 'public/image/avatar.png', NULL, 'MD.Os<NAME>', '01811203935'),
(10, 172, '<NAME>', '8801677970628', 'Assistance Teacher', NULL, 'CDA road no 13,Agrabad,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '018125683178'),
(11, 194, '<NAME>', '8801824804159', 'Assistance Teacher', NULL, 'CDA road no 12,Chowdhury Villa,Agrabad,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '031-714112'),
(12, 169, '<NAME>', '8801787791517', 'Senior Teacher', NULL, 'CDA road no 17/1,Agrabad,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01554333543'),
(13, 165, '<NAME>', '8801625368520', 'Assistance Teacher', NULL, 'Moddom Goshaildangga,Abul Hossain Building,Ctg', 'public/image/avatar.png', NULL, 'MD.Harun Howlader', '01832833450'),
(14, 181, '<NAME>', '8801830081936', 'Assistance Teacher', NULL, 'Saiba Villa,Daiyyapara,Agrabad,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01819821566'),
(15, 167, '<NAME>', '8801814701054', 'Assistance Teacher', NULL, 'Banani Complex,Upoher center,Loknathdham Lain,Agrabad,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01855042101'),
(16, 168, '<NAME>', '8801557195578', 'Assistance Teacher', NULL, 'Shantibag,Uttor Agrabad,Ctg', 'public/image/avatar.png', NULL, 'Md,<NAME>', '01957242282'),
(17, 175, '<NAME>', '8801869337211', 'Senior Teacher', NULL, '<NAME>,Anonto Nil Building,Chotopol,Ctg', 'public/image/avatar.png', NULL, '<NAME>', '01630641268'),
(18, 170, '<NAME>', '8801715710650', 'Huzur', NULL, 'Facy Building (3rd floor), 87 Agrabad C/A, Ctg', 'public/image/avatar.png', NULL, NULL, NULL),
(19, 210, '<NAME>', '8801830142898', 'Senior Teacher', NULL, 'Agrabad', 'public/image/avatar.png', NULL, '01741740739', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `teacher_attendance`
--
CREATE TABLE `teacher_attendance` (
`id` int(11) NOT NULL,
`date` date NOT NULL,
`teacher_id` int(11) NOT NULL,
`in_time` datetime NOT NULL,
`out_time` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `teacher_attendance`
--
INSERT INTO `teacher_attendance` (`id`, `date`, `teacher_id`, `in_time`, `out_time`) VALUES
(2, '2019-01-15', 8, '2019-01-15 07:48:14', '2019-01-15 13:34:27'),
(3, '2019-01-15', 10, '2019-01-15 07:54:28', '2019-01-15 13:34:44'),
(4, '2019-01-15', 14, '2019-01-15 07:58:13', '2019-01-15 13:34:30'),
(5, '2019-01-15', 15, '2019-01-15 08:06:45', '2019-01-15 13:34:16'),
(6, '2019-01-15', 7, '2019-01-15 08:10:12', NULL),
(7, '2019-01-15', 17, '2019-01-15 08:12:26', '2019-01-15 13:34:11'),
(8, '2019-01-15', 13, '2019-01-15 08:12:39', '2019-01-15 13:34:25'),
(9, '2019-01-15', 5, '2019-01-15 08:13:25', '2019-01-15 13:34:20'),
(10, '2019-01-15', 6, '2019-01-15 08:14:03', '2019-01-15 13:35:36'),
(11, '2019-01-15', 4, '2019-01-15 08:14:24', '2019-01-15 13:35:34'),
(12, '2019-01-15', 1, '2019-01-15 08:15:25', NULL),
(13, '2019-01-15', 9, '2019-01-15 08:17:00', '2019-01-15 13:35:39'),
(14, '2019-01-15', 16, '2019-01-15 08:21:27', '2019-01-15 13:39:52'),
(15, '2019-01-15', 2, '2019-01-15 08:22:39', '2019-01-15 13:39:48'),
(16, '2019-01-19', 15, '2019-01-19 07:50:12', '2019-01-19 14:01:30'),
(17, '2019-01-19', 10, '2019-01-19 07:55:04', '2019-01-19 14:01:23'),
(18, '2019-01-19', 8, '2019-01-19 08:06:47', '2019-01-19 14:02:22'),
(19, '2019-01-19', 12, '2019-01-19 08:07:32', NULL),
(20, '2019-01-19', 18, '2019-01-19 10:06:57', NULL),
(21, '2019-01-19', 13, '2019-01-19 14:01:28', NULL),
(22, '2019-01-19', 17, '2019-01-19 14:01:33', NULL),
(23, '2019-01-19', 5, '2019-01-19 14:02:27', NULL),
(24, '2019-01-19', 4, '2019-01-19 14:02:35', NULL),
(25, '2019-01-19', 6, '2019-01-19 14:03:20', NULL),
(26, '2019-01-19', 7, '2019-01-19 14:03:26', NULL),
(27, '2019-01-19', 9, '2019-01-19 14:03:30', NULL),
(28, '2019-01-19', 2, '2019-01-19 14:06:38', NULL),
(29, '2019-01-19', 16, '2019-01-19 14:06:47', NULL),
(30, '2019-01-20', 15, '2019-01-20 07:50:00', NULL),
(31, '2019-01-20', 10, '2019-01-20 07:59:37', NULL),
(32, '2019-01-20', 14, '2019-01-20 08:00:10', NULL),
(33, '2019-01-20', 8, '2019-01-20 08:07:28', NULL),
(34, '2019-01-20', 13, '2019-01-20 08:12:19', '2019-01-20 08:12:20'),
(35, '2019-01-20', 7, '2019-01-20 08:12:50', NULL),
(36, '2019-01-20', 5, '2019-01-20 08:15:55', NULL),
(37, '2019-01-20', 4, '2019-01-20 08:15:59', '2019-01-20 12:54:45'),
(38, '2019-01-20', 6, '2019-01-20 08:16:00', NULL),
(39, '2019-01-20', 17, '2019-01-20 08:16:04', NULL),
(40, '2019-01-20', 16, '2019-01-20 08:17:06', NULL),
(41, '2019-01-20', 2, '2019-01-20 08:17:16', NULL),
(42, '2019-01-20', 9, '2019-01-20 08:18:51', NULL),
(43, '2019-01-20', 1, '2019-01-20 08:22:14', '2019-01-20 08:22:15'),
(44, '2019-01-21', 10, '2019-01-21 07:55:56', NULL),
(45, '2019-01-21', 7, '2019-01-21 08:05:03', NULL),
(46, '2019-01-21', 12, '2019-01-21 08:08:38', '2019-01-21 08:08:39'),
(47, '2019-01-21', 14, '2019-01-21 08:10:22', NULL),
(48, '2019-01-21', 8, '2019-01-21 08:10:57', NULL),
(49, '2019-01-21', 17, '2019-01-21 08:13:07', NULL),
(50, '2019-01-21', 13, '2019-01-21 08:14:40', '2019-01-21 08:14:41'),
(51, '2019-01-21', 4, '2019-01-21 08:15:26', NULL),
(52, '2019-01-21', 6, '2019-01-21 08:15:29', NULL),
(53, '2019-01-21', 1, '2019-01-21 08:16:15', NULL),
(54, '2019-01-21', 5, '2019-01-21 08:16:49', NULL),
(55, '2019-01-21', 16, '2019-01-21 08:18:48', NULL),
(56, '2019-01-21', 2, '2019-01-21 08:19:31', NULL),
(57, '2019-01-21', 9, '2019-01-21 08:57:56', NULL),
(58, '2019-01-22', 10, '2019-01-22 07:53:17', NULL),
(59, '2019-01-22', 14, '2019-01-22 07:57:36', NULL),
(60, '2019-01-22', 15, '2019-01-22 08:05:20', NULL),
(61, '2019-01-22', 7, '2019-01-22 08:08:19', NULL),
(62, '2019-01-22', 5, '2019-01-22 08:09:06', NULL),
(63, '2019-01-22', 8, '2019-01-22 08:10:22', NULL),
(64, '2019-01-22', 6, '2019-01-22 08:14:04', NULL),
(65, '2019-01-22', 4, '2019-01-22 08:14:06', NULL),
(66, '2019-01-22', 16, '2019-01-22 08:14:50', NULL),
(67, '2019-01-22', 2, '2019-01-22 08:15:23', NULL),
(68, '2019-01-22', 1, '2019-01-22 08:17:14', NULL),
(69, '2019-01-22', 13, '2019-01-22 08:28:54', NULL),
(70, '2019-01-22', 3, '2019-01-22 08:30:06', NULL),
(71, '2019-01-22', 17, '2019-01-22 08:30:20', NULL),
(72, '2019-01-22', 9, '2019-01-22 08:32:32', NULL),
(73, '2019-01-23', 14, '2019-01-23 07:58:00', NULL),
(74, '2019-01-23', 10, '2019-01-23 07:58:32', NULL),
(75, '2019-01-23', 15, '2019-01-23 08:01:39', NULL),
(76, '2019-01-23', 8, '2019-01-23 08:08:06', NULL),
(77, '2019-01-23', 7, '2019-01-23 08:08:37', NULL),
(78, '2019-01-23', 5, '2019-01-23 08:09:08', NULL),
(79, '2019-01-23', 12, '2019-01-23 08:11:04', NULL),
(80, '2019-01-23', 1, '2019-01-23 08:14:47', NULL),
(81, '2019-01-23', 6, '2019-01-23 08:14:56', NULL),
(82, '2019-01-23', 4, '2019-01-23 08:14:57', NULL),
(83, '2019-01-23', 17, '2019-01-23 08:16:45', NULL),
(84, '2019-01-23', 3, '2019-01-23 08:18:17', NULL),
(85, '2019-01-23', 9, '2019-01-23 08:19:35', NULL),
(86, '2019-01-23', 13, '2019-01-23 08:29:05', NULL),
(87, '2019-01-23', 16, '2019-01-23 08:30:34', NULL),
(88, '2019-01-26', 8, '2019-01-26 08:23:28', '2019-01-26 14:12:15'),
(89, '2019-01-26', 9, '2019-01-26 08:37:16', '2019-01-26 14:12:01'),
(90, '2019-01-26', 3, '2019-01-26 08:38:58', '2019-01-26 14:12:11'),
(91, '2019-01-26', 18, '2019-01-26 09:14:53', '2019-01-26 12:52:30'),
(92, '2019-01-26', 4, '2019-01-26 14:12:16', NULL),
(93, '2019-01-26', 13, '2019-01-26 14:12:24', NULL),
(94, '2019-01-26', 6, '2019-01-26 14:12:31', NULL),
(95, '2019-01-26', 5, '2019-01-26 14:12:36', NULL),
(96, '2019-01-26', 10, '2019-01-26 14:13:06', NULL),
(97, '2019-01-26', 14, '2019-01-26 14:13:15', NULL),
(98, '2019-01-27', 16, '2019-01-27 08:18:30', '2019-01-27 13:40:30'),
(99, '2019-01-27', 3, '2019-01-27 08:34:41', '2019-01-27 13:40:40'),
(100, '2019-01-27', 6, '2019-01-27 13:24:38', NULL),
(101, '2019-01-27', 4, '2019-01-27 13:24:43', NULL),
(102, '2019-01-27', 15, '2019-01-27 13:25:01', NULL),
(103, '2019-01-27', 10, '2019-01-27 13:25:29', NULL),
(104, '2019-01-27', 8, '2019-01-27 13:25:38', NULL),
(105, '2019-01-27', 5, '2019-01-27 13:25:43', NULL),
(106, '2019-01-27', 9, '2019-01-27 13:26:09', NULL),
(107, '2019-01-27', 14, '2019-01-27 13:26:17', NULL),
(108, '2019-01-27', 13, '2019-01-27 13:37:43', NULL),
(109, '2019-01-27', 2, '2019-01-27 13:40:25', NULL),
(110, '2019-01-27', 7, '2019-01-27 13:40:49', NULL),
(111, '2019-01-27', 1, '2019-01-27 13:40:58', NULL),
(112, '2019-01-28', 12, '2019-01-28 07:58:26', NULL),
(113, '2019-01-28', 14, '2019-01-28 07:58:44', '2019-01-28 13:08:23'),
(114, '2019-01-28', 10, '2019-01-28 07:59:01', '2019-01-28 13:06:13'),
(115, '2019-01-28', 7, '2019-01-28 08:04:26', '2019-01-28 13:30:54'),
(116, '2019-01-28', 1, '2019-01-28 08:05:33', '2019-01-28 13:29:56'),
(117, '2019-01-28', 8, '2019-01-28 08:07:01', '2019-01-28 13:08:05'),
(118, '2019-01-28', 13, '2019-01-28 08:09:49', '2019-01-28 13:30:59'),
(119, '2019-01-28', 15, '2019-01-28 08:09:54', '2019-01-28 13:06:22'),
(120, '2019-01-28', 4, '2019-01-28 08:10:18', '2019-01-28 13:15:32'),
(121, '2019-01-28', 6, '2019-01-28 08:10:25', '2019-01-28 13:15:41'),
(122, '2019-01-28', 9, '2019-01-28 08:14:30', '2019-01-28 13:18:50'),
(123, '2019-01-28', 16, '2019-01-28 08:16:00', '2019-01-28 13:32:05'),
(124, '2019-01-28', 2, '2019-01-28 08:16:06', '2019-01-28 13:32:10'),
(125, '2019-01-28', 5, '2019-01-28 08:17:56', '2019-01-28 13:08:10'),
(126, '2019-01-28', 11, '2019-01-28 08:18:58', '2019-01-28 13:08:16'),
(127, '2019-01-28', 3, '2019-01-28 08:33:35', '2019-01-28 13:15:44'),
(128, '2019-01-29', 14, '2019-01-29 07:50:31', '2019-01-29 12:51:44'),
(129, '2019-01-29', 10, '2019-01-29 08:03:37', '2019-01-29 13:35:45'),
(130, '2019-01-29', 17, '2019-01-29 08:03:42', '2019-01-29 13:36:24'),
(131, '2019-01-29', 5, '2019-01-29 08:05:33', '2019-01-29 13:37:14'),
(132, '2019-01-29', 7, '2019-01-29 08:09:30', '2019-01-29 13:43:45'),
(133, '2019-01-29', 4, '2019-01-29 08:13:48', '2019-01-29 13:37:07'),
(134, '2019-01-29', 6, '2019-01-29 08:13:51', '2019-01-29 13:39:13'),
(135, '2019-01-29', 13, '2019-01-29 08:14:14', '2019-01-29 13:34:31'),
(136, '2019-01-29', 8, '2019-01-29 08:17:21', '2019-01-29 13:36:27'),
(137, '2019-01-29', 16, '2019-01-29 08:20:04', '2019-01-29 13:43:33'),
(138, '2019-01-29', 2, '2019-01-29 08:21:24', '2019-01-29 13:43:20'),
(139, '2019-01-29', 11, '2019-01-29 08:21:42', '2019-01-29 13:43:39'),
(140, '2019-01-29', 9, '2019-01-29 08:22:13', '2019-01-29 13:43:26'),
(141, '2019-01-29', 3, '2019-01-29 08:30:34', '2019-01-29 13:35:11'),
(142, '2019-02-02', 14, '2019-02-02 07:52:28', '2019-02-02 14:22:46'),
(143, '2019-02-02', 15, '2019-02-02 08:06:12', NULL),
(144, '2019-02-02', 13, '2019-02-02 08:06:17', NULL),
(145, '2019-02-02', 7, '2019-02-02 08:06:23', '2019-02-02 14:22:28'),
(146, '2019-02-02', 5, '2019-02-02 08:06:44', NULL),
(147, '2019-02-02', 8, '2019-02-02 08:10:44', NULL),
(148, '2019-02-02', 1, '2019-02-02 08:11:38', '2019-02-02 14:30:49'),
(149, '2019-02-02', 17, '2019-02-02 08:12:45', NULL),
(150, '2019-02-02', 4, '2019-02-02 08:13:26', '2019-02-02 14:22:20'),
(151, '2019-02-02', 6, '2019-02-02 08:13:38', '2019-02-02 14:22:20'),
(152, '2019-02-02', 9, '2019-02-02 08:17:22', '2019-02-02 14:22:36'),
(153, '2019-02-02', 16, '2019-02-02 08:20:03', '2019-02-02 14:22:41'),
(154, '2019-02-02', 2, '2019-02-02 08:20:14', NULL),
(155, '2019-02-02', 11, '2019-02-02 08:28:24', '2019-02-02 14:22:33'),
(156, '2019-02-02', 18, '2019-02-02 09:02:49', NULL),
(157, '2019-02-02', 12, '2019-02-02 10:02:38', NULL),
(160, '2019-02-03', 7, '2019-02-03 12:53:23', NULL),
(161, '2019-02-03', 17, '2019-02-03 13:10:39', NULL),
(162, '2019-02-03', 15, '2019-02-03 13:10:44', NULL),
(163, '2019-02-03', 9, '2019-02-03 13:11:04', NULL),
(164, '2019-02-03', 14, '2019-02-03 13:22:26', NULL),
(165, '2019-02-03', 5, '2019-02-03 13:22:35', NULL),
(166, '2019-02-03', 11, '2019-02-03 13:23:25', NULL),
(167, '2019-02-03', 4, '2019-02-03 13:25:01', NULL),
(168, '2019-02-03', 13, '2019-02-03 13:38:37', NULL),
(169, '2019-02-03', 2, '2019-02-03 13:38:56', NULL),
(170, '2019-02-03', 16, '2019-02-03 13:39:00', NULL),
(171, '2019-02-03', 1, '2019-02-03 13:39:09', NULL),
(172, '2019-02-04', 14, '2019-02-04 07:55:53', NULL),
(173, '2019-02-04', 12, '2019-02-04 08:02:53', NULL),
(174, '2019-02-04', 15, '2019-02-04 08:07:02', '2019-02-04 13:23:57'),
(175, '2019-02-04', 8, '2019-02-04 08:07:40', '2019-02-04 13:24:10'),
(176, '2019-02-04', 5, '2019-02-04 08:08:40', '2019-02-04 13:45:04'),
(177, '2019-02-04', 13, '2019-02-04 08:09:41', '2019-02-04 13:44:58'),
(178, '2019-02-04', 7, '2019-02-04 08:12:32', '2019-02-04 13:46:03'),
(179, '2019-02-04', 4, '2019-02-04 08:15:05', '2019-02-04 13:45:16'),
(180, '2019-02-04', 6, '2019-02-04 08:15:11', '2019-02-04 13:45:21'),
(181, '2019-02-04', 17, '2019-02-04 08:17:15', '2019-02-04 13:24:20'),
(182, '2019-02-04', 9, '2019-02-04 08:18:52', '2019-02-04 13:45:27'),
(183, '2019-02-04', 16, '2019-02-04 08:19:52', '2019-02-04 13:45:53'),
(184, '2019-02-04', 11, '2019-02-04 08:20:50', '2019-02-04 13:45:11'),
(185, '2019-02-04', 2, '2019-02-04 08:23:07', '2019-02-04 13:45:58'),
(186, '2019-02-04', 10, '2019-02-04 08:34:13', '2019-02-04 13:23:58'),
(187, '2019-02-05', 14, '2019-02-05 07:57:49', '2019-02-05 13:16:00'),
(188, '2019-02-05', 7, '2019-02-05 08:04:48', '2019-02-05 13:35:19'),
(189, '2019-02-05', 13, '2019-02-05 08:05:44', '2019-02-05 13:35:04'),
(190, '2019-02-05', 15, '2019-02-05 08:05:48', '2019-02-05 13:15:38'),
(191, '2019-02-05', 17, '2019-02-05 08:06:51', '2019-02-05 13:15:32'),
(192, '2019-02-05', 5, '2019-02-05 08:09:34', '2019-02-05 13:16:11'),
(193, '2019-02-05', 6, '2019-02-05 08:12:19', '2019-02-05 13:35:14'),
(194, '2019-02-05', 4, '2019-02-05 08:12:34', '2019-02-05 13:35:09'),
(195, '2019-02-05', 8, '2019-02-05 08:12:52', '2019-02-05 13:15:30'),
(196, '2019-02-05', 11, '2019-02-05 08:19:52', '2019-02-05 13:35:02'),
(197, '2019-02-05', 10, '2019-02-05 08:20:28', '2019-02-05 13:15:42'),
(198, '2019-02-05', 1, '2019-02-05 08:22:50', '2019-02-05 13:19:34'),
(199, '2019-02-05', 16, '2019-02-05 08:34:24', '2019-02-05 13:35:29'),
(200, '2019-02-05', 9, '2019-02-05 08:34:29', '2019-02-05 13:35:39'),
(201, '2019-02-05', 2, '2019-02-05 08:40:24', '2019-02-05 13:35:24'),
(202, '2019-02-06', 14, '2019-02-06 08:01:19', '2019-02-06 13:22:11'),
(203, '2019-02-06', 12, '2019-02-06 08:03:15', NULL),
(204, '2019-02-06', 15, '2019-02-06 08:05:21', '2019-02-06 13:22:03'),
(205, '2019-02-06', 8, '2019-02-06 08:06:27', '2019-02-06 13:20:42'),
(206, '2019-02-06', 13, '2019-02-06 08:08:14', '2019-02-06 13:47:13'),
(207, '2019-02-06', 5, '2019-02-06 08:12:17', NULL),
(208, '2019-02-06', 4, '2019-02-06 08:13:21', '2019-02-06 13:50:47'),
(209, '2019-02-06', 6, '2019-02-06 08:13:26', '2019-02-06 13:50:51'),
(210, '2019-02-06', 10, '2019-02-06 08:13:42', '2019-02-06 13:22:19'),
(211, '2019-02-06', 9, '2019-02-06 08:17:00', NULL),
(212, '2019-02-06', 17, '2019-02-06 08:19:16', NULL),
(213, '2019-02-06', 11, '2019-02-06 08:21:26', NULL),
(214, '2019-02-06', 16, '2019-02-06 08:26:33', '2019-02-06 13:47:27'),
(215, '2019-02-06', 2, '2019-02-06 08:29:37', '2019-02-06 13:47:21'),
(216, '2019-02-06', 1, '2019-02-06 08:34:21', '2019-02-06 13:47:17'),
(217, '2019-02-06', 7, '2019-02-06 08:34:38', '2019-02-06 13:49:10'),
(218, '2019-02-09', 14, '2019-02-09 07:52:39', '2019-02-09 14:46:51'),
(219, '2019-02-09', 10, '2019-02-09 08:00:58', '2019-02-09 14:45:09'),
(220, '2019-02-09', 8, '2019-02-09 08:02:30', '2019-02-09 14:44:59'),
(221, '2019-02-09', 12, '2019-02-09 08:05:38', NULL),
(222, '2019-02-09', 1, '2019-02-09 08:09:38', '2019-02-09 14:50:43'),
(223, '2019-02-09', 5, '2019-02-09 08:09:59', '2019-02-09 14:46:23'),
(224, '2019-02-09', 4, '2019-02-09 08:12:42', '2019-02-09 14:50:25'),
(225, '2019-02-09', 6, '2019-02-09 08:12:50', '2019-02-09 14:50:30'),
(226, '2019-02-09', 13, '2019-02-09 08:13:25', '2019-02-09 14:45:12'),
(227, '2019-02-09', 7, '2019-02-09 08:15:31', '2019-02-09 14:45:05'),
(228, '2019-02-09', 17, '2019-02-09 08:15:38', '2019-02-09 14:44:57'),
(229, '2019-02-09', 16, '2019-02-09 08:22:15', '2019-02-09 14:50:48'),
(230, '2019-02-09', 2, '2019-02-09 08:22:54', '2019-02-09 14:50:53'),
(231, '2019-02-09', 9, '2019-02-09 08:25:02', '2019-02-09 14:50:34'),
(232, '2019-02-09', 11, '2019-02-09 08:31:36', '2019-02-09 14:50:20'),
(233, '2019-02-09', 18, '2019-02-09 09:03:31', NULL),
(234, '2019-02-11', 7, '2019-02-11 07:59:52', '2019-02-11 13:52:28'),
(235, '2019-02-11', 14, '2019-02-11 08:00:16', '2019-02-11 13:17:23'),
(236, '2019-02-11', 15, '2019-02-11 08:05:13', '2019-02-11 13:15:09'),
(237, '2019-02-11', 12, '2019-02-11 08:06:13', NULL),
(238, '2019-02-11', 10, '2019-02-11 08:07:19', '2019-02-11 13:15:02'),
(239, '2019-02-11', 8, '2019-02-11 08:07:46', NULL),
(240, '2019-02-11', 5, '2019-02-11 08:08:43', '2019-02-11 13:30:33'),
(241, '2019-02-11', 13, '2019-02-11 08:13:40', '2019-02-11 13:48:47'),
(242, '2019-02-11', 1, '2019-02-11 08:13:56', '2019-02-11 13:42:22'),
(243, '2019-02-11', 4, '2019-02-11 08:14:26', '2019-02-11 13:48:43'),
(244, '2019-02-11', 6, '2019-02-11 08:14:32', '2019-02-11 13:48:56'),
(245, '2019-02-11', 11, '2019-02-11 08:15:58', '2019-02-11 13:48:35'),
(246, '2019-02-11', 9, '2019-02-11 08:17:52', '2019-02-11 13:52:21'),
(247, '2019-02-11', 17, '2019-02-11 08:19:13', NULL),
(248, '2019-02-11', 2, '2019-02-11 08:38:21', '2019-02-11 13:42:36'),
(249, '2019-02-11', 16, '2019-02-11 08:39:30', '2019-02-11 13:42:30'),
(250, '2019-02-12', 14, '2019-02-12 07:55:08', '2019-02-12 13:25:53'),
(251, '2019-02-12', 7, '2019-02-12 08:01:33', '2019-02-12 13:54:36'),
(252, '2019-02-12', 15, '2019-02-12 08:05:59', NULL),
(253, '2019-02-12', 5, '2019-02-12 08:10:54', '2019-02-12 13:25:32'),
(254, '2019-02-12', 8, '2019-02-12 08:11:32', '2019-02-12 13:25:22'),
(255, '2019-02-12', 4, '2019-02-12 08:13:11', '2019-02-12 13:54:30'),
(256, '2019-02-12', 6, '2019-02-12 08:13:16', '2019-02-12 13:57:45'),
(257, '2019-02-12', 10, '2019-02-12 08:13:36', '2019-02-12 13:24:07'),
(258, '2019-02-12', 13, '2019-02-12 08:13:41', '2019-02-12 13:54:27'),
(259, '2019-02-12', 17, '2019-02-12 08:16:29', NULL),
(260, '2019-02-12', 11, '2019-02-12 08:17:55', '2019-02-12 13:54:21'),
(261, '2019-02-12', 9, '2019-02-12 08:19:46', '2019-02-12 13:54:42'),
(262, '2019-02-12', 1, '2019-02-12 08:24:37', '2019-02-12 13:55:02'),
(263, '2019-02-12', 16, '2019-02-12 08:24:43', '2019-02-12 13:55:12'),
(264, '2019-02-12', 2, '2019-02-12 08:24:50', '2019-02-12 13:55:07'),
(265, '2019-02-13', 14, '2019-02-13 07:57:09', NULL),
(266, '2019-02-13', 7, '2019-02-13 08:01:33', NULL),
(267, '2019-02-13', 15, '2019-02-13 08:07:45', NULL),
(268, '2019-02-13', 5, '2019-02-13 08:11:32', NULL),
(269, '2019-02-13', 10, '2019-02-13 08:11:39', NULL),
(270, '2019-02-13', 8, '2019-02-13 08:12:00', NULL),
(271, '2019-02-13', 12, '2019-02-13 08:13:04', NULL),
(272, '2019-02-13', 13, '2019-02-13 08:13:49', NULL),
(273, '2019-02-13', 11, '2019-02-13 08:17:48', NULL),
(274, '2019-02-13', 4, '2019-02-13 08:18:04', NULL),
(275, '2019-02-13', 6, '2019-02-13 08:18:16', NULL),
(276, '2019-02-13', 9, '2019-02-13 08:21:10', NULL),
(277, '2019-02-13', 17, '2019-02-13 08:23:07', NULL),
(278, '2019-02-13', 16, '2019-02-13 08:34:12', NULL),
(279, '2019-02-13', 2, '2019-02-13 08:34:32', NULL),
(280, '2019-02-18', 14, '2019-02-18 08:01:01', '2019-02-18 13:31:59'),
(281, '2019-02-18', 8, '2019-02-18 08:06:31', '2019-02-18 13:31:31'),
(282, '2019-02-18', 15, '2019-02-18 08:06:39', '2019-02-18 13:31:55'),
(283, '2019-02-18', 12, '2019-02-18 08:07:15', NULL),
(284, '2019-02-18', 17, '2019-02-18 08:07:49', '2019-02-18 13:31:34'),
(285, '2019-02-18', 5, '2019-02-18 08:10:20', '2019-02-18 13:38:25'),
(286, '2019-02-18', 13, '2019-02-18 08:11:22', '2019-02-18 13:38:13'),
(287, '2019-02-18', 6, '2019-02-18 08:14:25', '2019-02-18 13:38:07'),
(288, '2019-02-18', 4, '2019-02-18 08:14:30', '2019-02-18 13:34:56'),
(289, '2019-02-18', 11, '2019-02-18 08:18:41', '2019-02-18 13:40:06'),
(290, '2019-02-18', 10, '2019-02-18 08:18:46', '2019-02-18 13:31:22'),
(291, '2019-02-18', 9, '2019-02-18 08:19:05', '2019-02-18 13:40:14'),
(292, '2019-02-18', 2, '2019-02-18 08:20:26', '2019-02-18 13:39:41'),
(293, '2019-02-18', 16, '2019-02-18 08:20:38', '2019-02-18 13:39:47'),
(294, '2019-02-18', 1, '2019-02-18 08:25:56', '2019-02-18 13:39:11'),
(295, '2019-02-18', 7, '2019-02-18 08:40:52', '2019-02-18 13:32:03'),
(296, '2019-02-20', 14, '2019-02-20 08:00:08', '2019-02-20 13:10:49'),
(297, '2019-02-20', 7, '2019-02-20 08:01:46', NULL),
(298, '2019-02-20', 12, '2019-02-20 08:05:11', NULL),
(299, '2019-02-20', 15, '2019-02-20 08:07:49', '2019-02-20 13:10:43'),
(300, '2019-02-20', 13, '2019-02-20 08:09:21', '2019-02-20 13:37:06'),
(301, '2019-02-20', 9, '2019-02-20 08:10:17', '2019-02-20 13:19:26'),
(302, '2019-02-20', 17, '2019-02-20 08:10:20', '2019-02-20 12:01:04'),
(303, '2019-02-20', 6, '2019-02-20 08:12:33', '2019-02-20 12:57:50'),
(304, '2019-02-20', 4, '2019-02-20 08:12:47', '2019-02-20 12:57:58'),
(305, '2019-02-20', 5, '2019-02-20 08:13:40', '2019-02-20 13:10:55'),
(306, '2019-02-20', 11, '2019-02-20 08:16:26', '2019-02-20 13:19:21'),
(307, '2019-02-20', 10, '2019-02-20 08:17:18', '2019-02-20 13:10:37'),
(308, '2019-02-20', 1, '2019-02-20 08:18:49', '2019-02-20 13:37:19'),
(309, '2019-02-20', 16, '2019-02-20 08:30:03', '2019-02-20 13:37:25'),
(310, '2019-02-20', 2, '2019-02-20 08:30:17', '2019-02-20 13:37:14'),
(312, '2019-02-23', 15, '2019-02-23 08:03:49', NULL),
(313, '2019-02-23', 7, '2019-02-23 08:04:12', NULL),
(315, '2019-02-23', 13, '2019-02-23 08:09:05', NULL),
(316, '2019-02-23', 8, '2019-02-23 08:12:21', NULL),
(317, '2019-02-23', 8, '2019-02-23 08:12:21', NULL),
(319, '2019-02-23', 17, '2019-02-23 08:12:44', NULL),
(320, '2019-02-23', 5, '2019-02-23 08:12:50', '2019-02-23 12:52:44'),
(322, '2019-02-23', 4, '2019-02-23 08:16:03', '2019-02-23 12:52:24'),
(324, '2019-02-23', 6, '2019-02-23 08:16:11', '2019-02-23 12:52:24'),
(326, '2019-02-23', 10, '2019-02-23 08:19:31', NULL),
(328, '2019-02-23', 16, '2019-02-23 08:22:28', NULL),
(329, '2019-02-23', 2, '2019-02-23 08:23:00', NULL),
(330, '2019-02-23', 9, '2019-02-23 08:25:51', NULL),
(331, '2019-02-23', 14, '2019-02-23 08:29:02', NULL),
(333, '2019-02-23', 12, '2019-02-23 08:31:22', NULL),
(334, '2019-02-23', 1, '2019-02-23 08:35:52', NULL),
(335, '2019-02-23', 11, '2019-02-23 08:38:37', '2019-02-23 12:52:25'),
(336, '2019-02-24', 14, '2019-02-24 07:51:00', NULL),
(337, '2019-02-24', 15, '2019-02-24 08:03:56', NULL),
(338, '2019-02-24', 13, '2019-02-24 08:05:09', NULL),
(339, '2019-02-24', 7, '2019-02-24 08:08:41', NULL),
(340, '2019-02-24', 8, '2019-02-24 08:10:30', NULL),
(341, '2019-02-24', 5, '2019-02-24 08:10:54', NULL),
(342, '2019-02-24', 16, '2019-02-24 08:14:47', NULL),
(343, '2019-02-24', 2, '2019-02-24 08:14:59', NULL),
(344, '2019-02-24', 9, '2019-02-24 08:15:12', NULL),
(345, '2019-02-24', 4, '2019-02-24 08:15:44', NULL),
(346, '2019-02-24', 6, '2019-02-24 08:15:50', NULL),
(347, '2019-02-24', 1, '2019-02-24 08:16:35', NULL),
(348, '2019-02-24', 17, '2019-02-24 08:17:43', NULL),
(349, '2019-02-24', 10, '2019-02-24 08:23:43', NULL),
(350, '2019-02-24', 11, '2019-02-24 08:26:52', NULL),
(351, '2019-02-25', 12, '2019-02-25 07:59:41', NULL),
(352, '2019-02-25', 15, '2019-02-25 08:06:37', '2019-02-25 12:59:24'),
(353, '2019-02-25', 7, '2019-02-25 08:07:06', '2019-02-25 10:55:48'),
(354, '2019-02-25', 13, '2019-02-25 08:07:11', '2019-02-25 13:29:55'),
(355, '2019-02-25', 8, '2019-02-25 08:11:33', NULL),
(356, '2019-02-25', 17, '2019-02-25 08:11:44', NULL),
(357, '2019-02-25', 1, '2019-02-25 08:12:00', '2019-02-25 13:08:46'),
(358, '2019-02-25', 5, '2019-02-25 08:14:58', '2019-02-25 13:06:27'),
(359, '2019-02-25', 6, '2019-02-25 08:15:14', '2019-02-25 13:19:59'),
(360, '2019-02-25', 4, '2019-02-25 08:15:21', '2019-02-25 13:19:49'),
(361, '2019-02-25', 16, '2019-02-25 08:16:56', '2019-02-25 13:27:34'),
(362, '2019-02-25', 2, '2019-02-25 08:17:02', '2019-02-25 13:27:40'),
(363, '2019-02-25', 14, '2019-02-25 08:17:10', NULL),
(364, '2019-02-25', 10, '2019-02-25 08:17:17', '2019-02-25 12:59:30'),
(365, '2019-02-25', 11, '2019-02-25 08:18:10', '2019-02-25 13:19:54'),
(366, '2019-02-25', 9, '2019-02-25 08:23:14', '2019-02-25 13:20:04'),
(367, '2019-02-26', 13, '2019-02-26 08:01:27', NULL),
(368, '2019-02-26', 7, '2019-02-26 08:03:29', '2019-02-26 13:27:53'),
(369, '2019-02-26', 15, '2019-02-26 08:05:25', '2019-02-26 13:24:35'),
(370, '2019-02-26', 5, '2019-02-26 08:15:38', '2019-02-26 13:25:17'),
(371, '2019-02-26', 8, '2019-02-26 08:15:43', '2019-02-26 13:24:53'),
(372, '2019-02-26', 17, '2019-02-26 08:17:11', '2019-02-26 13:24:48'),
(373, '2019-02-26', 14, '2019-02-26 08:17:18', '2019-02-26 13:25:23'),
(374, '2019-02-26', 1, '2019-02-26 08:18:39', '2019-02-26 13:32:25'),
(375, '2019-02-26', 9, '2019-02-26 08:18:55', '2019-02-26 13:35:36'),
(376, '2019-02-26', 11, '2019-02-26 08:19:19', '2019-02-26 13:32:59'),
(377, '2019-02-26', 16, '2019-02-26 08:22:40', NULL),
(378, '2019-02-26', 2, '2019-02-26 08:22:45', NULL),
(379, '2019-02-26', 4, '2019-02-26 08:24:02', '2019-02-26 13:33:11'),
(380, '2019-02-26', 6, '2019-02-26 08:24:08', '2019-02-26 13:36:06'),
(381, '2019-02-26', 10, '2019-02-26 08:26:29', '2019-02-26 13:24:42'),
(382, '2019-02-27', 12, '2019-02-27 08:03:49', NULL),
(383, '2019-02-27', 14, '2019-02-27 08:04:10', '2019-02-27 11:54:22'),
(384, '2019-02-27', 13, '2019-02-27 08:05:01', '2019-02-27 13:52:50'),
(385, '2019-02-27', 7, '2019-02-27 08:06:00', '2019-02-27 13:35:45'),
(386, '2019-02-27', 15, '2019-02-27 08:13:42', '2019-02-27 13:11:05'),
(387, '2019-02-27', 4, '2019-02-27 08:15:13', '2019-02-27 13:35:27'),
(388, '2019-02-27', 6, '2019-02-27 08:15:20', '2019-02-27 13:35:38'),
(389, '2019-02-27', 8, '2019-02-27 08:18:17', '2019-02-27 13:12:57'),
(390, '2019-02-27', 17, '2019-02-27 08:18:23', '2019-02-27 13:11:12'),
(391, '2019-02-27', 11, '2019-02-27 08:18:49', '2019-02-27 13:35:33'),
(392, '2019-02-27', 5, '2019-02-27 08:18:55', '2019-02-27 12:02:06'),
(393, '2019-02-27', 9, '2019-02-27 08:20:30', '2019-02-27 13:35:50'),
(394, '2019-02-27', 1, '2019-02-27 08:21:43', '2019-02-27 13:37:41'),
(395, '2019-02-27', 2, '2019-02-27 08:26:48', '2019-02-27 13:52:03'),
(396, '2019-02-27', 16, '2019-02-27 08:26:52', '2019-02-27 13:51:58'),
(397, '2019-02-27', 10, '2019-02-27 08:38:17', '2019-02-27 13:11:08'),
(398, '2019-03-02', 12, '2019-03-02 08:01:28', NULL),
(399, '2019-03-02', 7, '2019-03-02 08:03:08', NULL),
(400, '2019-03-02', 10, '2019-03-02 08:08:13', '2019-03-02 13:56:53'),
(401, '2019-03-02', 14, '2019-03-02 08:09:18', '2019-03-02 13:57:05'),
(402, '2019-03-02', 15, '2019-03-02 08:09:55', '2019-03-02 13:52:59'),
(403, '2019-03-02', 5, '2019-03-02 08:12:14', '2019-03-02 13:56:29'),
(404, '2019-03-02', 4, '2019-03-02 08:14:12', '2019-03-02 13:54:07'),
(405, '2019-03-02', 6, '2019-03-02 08:14:29', NULL),
(406, '2019-03-02', 13, '2019-03-02 08:15:55', NULL),
(407, '2019-03-02', 11, '2019-03-02 08:16:39', NULL),
(408, '2019-03-02', 17, '2019-03-02 08:16:49', NULL),
(409, '2019-03-02', 8, '2019-03-02 08:18:02', NULL),
(410, '2019-03-02', 9, '2019-03-02 08:22:02', '2019-03-02 13:53:01'),
(411, '2019-03-02', 16, '2019-03-02 08:33:32', '2019-03-02 13:54:02'),
(412, '2019-03-02', 2, '2019-03-02 08:34:16', '2019-03-02 13:55:21'),
(413, '2019-03-02', 18, '2019-03-02 09:03:12', '2019-03-02 12:47:42'),
(414, '2019-03-03', 14, '2019-03-03 08:01:28', '2019-03-03 13:25:29'),
(415, '2019-03-03', 7, '2019-03-03 08:02:17', '2019-03-03 13:35:03'),
(416, '2019-03-03', 17, '2019-03-03 08:09:31', '2019-03-03 13:25:18'),
(417, '2019-03-03', 13, '2019-03-03 08:09:55', '2019-03-03 13:37:52'),
(418, '2019-03-03', 9, '2019-03-03 08:11:06', '2019-03-03 13:33:37'),
(419, '2019-03-03', 5, '2019-03-03 08:13:34', '2019-03-03 13:25:53'),
(420, '2019-03-03', 10, '2019-03-03 08:15:16', '2019-03-03 13:25:12'),
(421, '2019-03-03', 6, '2019-03-03 08:15:36', '2019-03-03 13:33:17'),
(422, '2019-03-03', 11, '2019-03-03 08:16:29', '2019-03-03 13:33:32'),
(423, '2019-03-03', 4, '2019-03-03 08:16:35', '2019-03-03 13:33:26'),
(424, '2019-03-03', 1, '2019-03-03 08:16:59', '2019-03-03 13:25:33'),
(425, '2019-03-03', 8, '2019-03-03 08:17:12', '2019-03-03 13:25:37'),
(426, '2019-03-03', 16, '2019-03-03 08:22:25', '2019-03-03 13:25:48'),
(427, '2019-03-03', 2, '2019-03-03 08:22:48', '2019-03-03 13:34:56'),
(428, '2019-03-03', 15, '2019-03-03 13:25:23', NULL),
(429, '2019-03-04', 7, '2019-03-04 08:01:03', NULL),
(430, '2019-03-04', 13, '2019-03-04 08:01:33', '2019-03-04 13:54:48'),
(431, '2019-03-04', 12, '2019-03-04 08:06:43', NULL),
(432, '2019-03-04', 14, '2019-03-04 08:06:50', '2019-03-04 13:27:19'),
(433, '2019-03-04', 8, '2019-03-04 08:09:42', '2019-03-04 13:26:39'),
(434, '2019-03-04', 15, '2019-03-04 08:10:41', '2019-03-04 11:57:12'),
(435, '2019-03-04', 17, '2019-03-04 08:10:51', '2019-03-04 13:27:04'),
(436, '2019-03-04', 10, '2019-03-04 08:14:16', '2019-03-04 13:34:01'),
(437, '2019-03-04', 5, '2019-03-04 08:15:48', '2019-03-04 13:26:50'),
(438, '2019-03-04', 6, '2019-03-04 08:16:11', '2019-03-04 13:46:12'),
(439, '2019-03-04', 4, '2019-03-04 08:16:23', '2019-03-04 13:46:16'),
(440, '2019-03-04', 11, '2019-03-04 08:16:38', '2019-03-04 13:46:26'),
(441, '2019-03-04', 16, '2019-03-04 08:17:14', '2019-03-04 13:54:39'),
(442, '2019-03-04', 2, '2019-03-04 08:17:18', '2019-03-04 13:56:39'),
(443, '2019-03-04', 9, '2019-03-04 08:22:26', '2019-03-04 13:46:29'),
(444, '2019-03-04', 18, '2019-03-04 09:02:48', '2019-03-04 12:22:49'),
(445, '2019-03-05', 7, '2019-03-05 08:02:56', '2019-03-05 13:53:09'),
(446, '2019-03-05', 17, '2019-03-05 08:08:06', '2019-03-05 13:19:07'),
(447, '2019-03-05', 15, '2019-03-05 08:09:21', '2019-03-05 13:19:36'),
(448, '2019-03-05', 13, '2019-03-05 08:11:53', '2019-03-05 14:00:22'),
(449, '2019-03-05', 8, '2019-03-05 08:12:44', '2019-03-05 13:19:03'),
(450, '2019-03-05', 14, '2019-03-05 08:12:56', '2019-03-05 13:19:14'),
(451, '2019-03-05', 5, '2019-03-05 08:14:57', '2019-03-05 13:19:21'),
(452, '2019-03-05', 4, '2019-03-05 08:17:30', '2019-03-05 13:46:07'),
(453, '2019-03-05', 6, '2019-03-05 08:17:36', '2019-03-05 13:46:01'),
(454, '2019-03-05', 2, '2019-03-05 08:23:04', '2019-03-05 14:00:32'),
(455, '2019-03-05', 11, '2019-03-05 08:23:09', '2019-03-05 13:46:19'),
(456, '2019-03-05', 10, '2019-03-05 08:23:49', '2019-03-05 13:19:31'),
(457, '2019-03-05', 16, '2019-03-05 08:24:28', '2019-03-05 13:53:20'),
(458, '2019-03-05', 1, '2019-03-05 08:24:35', '2019-03-05 13:19:41'),
(459, '2019-03-05', 9, '2019-03-05 08:24:49', '2019-03-05 13:42:12'),
(460, '2019-03-06', 7, '2019-03-06 08:00:44', '2019-03-06 13:23:09'),
(461, '2019-03-06', 12, '2019-03-06 08:03:09', NULL),
(462, '2019-03-06', 13, '2019-03-06 08:06:39', '2019-03-06 13:47:08'),
(463, '2019-03-06', 15, '2019-03-06 08:07:29', '2019-03-06 13:17:24'),
(464, '2019-03-06', 14, '2019-03-06 08:08:00', '2019-03-06 13:22:57'),
(465, '2019-03-06', 8, '2019-03-06 08:10:34', NULL),
(466, '2019-03-06', 17, '2019-03-06 08:12:21', '2019-03-06 13:17:21'),
(467, '2019-03-06', 5, '2019-03-06 08:13:16', '2019-03-06 13:22:51'),
(468, '2019-03-06', 4, '2019-03-06 08:16:19', '2019-03-06 13:28:00'),
(469, '2019-03-06', 6, '2019-03-06 08:16:24', '2019-03-06 13:34:25'),
(470, '2019-03-06', 11, '2019-03-06 08:16:32', '2019-03-06 13:34:14'),
(471, '2019-03-06', 2, '2019-03-06 08:17:09', NULL),
(472, '2019-03-06', 16, '2019-03-06 08:17:14', NULL),
(473, '2019-03-06', 9, '2019-03-06 08:27:43', '2019-03-06 13:34:21'),
(474, '2019-03-06', 10, '2019-03-06 08:29:37', '2019-03-06 13:11:18'),
(475, '2019-03-09', 7, '2019-03-09 08:04:52', '2019-03-09 14:04:26'),
(476, '2019-03-09', 13, '2019-03-09 08:05:56', '2019-03-09 14:03:01'),
(477, '2019-03-09', 12, '2019-03-09 08:06:38', NULL),
(478, '2019-03-09', 14, '2019-03-09 08:07:11', '2019-03-09 14:02:56'),
(479, '2019-03-09', 10, '2019-03-09 08:09:00', '2019-03-09 14:01:53'),
(480, '2019-03-09', 8, '2019-03-09 08:09:21', '2019-03-09 14:03:25'),
(481, '2019-03-09', 15, '2019-03-09 08:10:20', '2019-03-09 14:01:56'),
(482, '2019-03-09', 11, '2019-03-09 08:13:01', '2019-03-09 14:04:21'),
(483, '2019-03-09', 6, '2019-03-09 08:14:22', '2019-03-09 14:03:40'),
(484, '2019-03-09', 4, '2019-03-09 08:14:35', '2019-03-09 14:03:31'),
(485, '2019-03-09', 5, '2019-03-09 08:15:50', '2019-03-09 14:04:09'),
(486, '2019-03-09', 1, '2019-03-09 08:21:12', '2019-03-09 14:06:02'),
(487, '2019-03-09', 9, '2019-03-09 08:24:14', '2019-03-09 14:01:54'),
(488, '2019-03-09', 2, '2019-03-09 08:35:40', '2019-03-09 14:06:43'),
(489, '2019-03-09', 16, '2019-03-09 08:35:45', '2019-03-09 14:03:18'),
(490, '2019-03-09', 18, '2019-03-09 09:04:34', '2019-03-09 12:49:09'),
(491, '2019-03-10', 10, '2019-03-10 07:41:47', '2019-03-10 13:01:52'),
(492, '2019-03-10', 7, '2019-03-10 08:00:17', NULL),
(493, '2019-03-10', 15, '2019-03-10 08:03:55', '2019-03-10 13:02:01'),
(494, '2019-03-10', 17, '2019-03-10 08:07:27', '2019-03-10 13:01:57'),
(495, '2019-03-10', 6, '2019-03-10 08:12:35', NULL),
(496, '2019-03-10', 4, '2019-03-10 08:12:40', NULL),
(497, '2019-03-10', 5, '2019-03-10 08:13:03', '2019-03-10 13:04:49'),
(498, '2019-03-10', 8, '2019-03-10 08:13:10', '2019-03-10 13:02:18'),
(499, '2019-03-10', 13, '2019-03-10 08:14:23', NULL),
(500, '2019-03-10', 11, '2019-03-10 08:16:26', NULL),
(501, '2019-03-10', 9, '2019-03-10 08:16:48', NULL),
(502, '2019-03-10', 1, '2019-03-10 08:19:39', NULL),
(503, '2019-03-10', 2, '2019-03-10 08:20:04', NULL),
(504, '2019-03-10', 16, '2019-03-10 08:20:13', NULL),
(505, '2019-03-10', 14, '2019-03-10 08:20:19', NULL),
(506, '2019-03-11', 10, '2019-03-11 07:49:40', NULL),
(507, '2019-03-11', 14, '2019-03-11 07:52:28', NULL),
(508, '2019-03-11', 7, '2019-03-11 08:04:08', NULL),
(509, '2019-03-11', 17, '2019-03-11 08:05:37', NULL),
(510, '2019-03-11', 12, '2019-03-11 08:06:30', NULL),
(511, '2019-03-11', 15, '2019-03-11 08:07:07', NULL),
(512, '2019-03-11', 13, '2019-03-11 08:08:21', NULL),
(513, '2019-03-11', 6, '2019-03-11 08:10:09', NULL),
(514, '2019-03-11', 4, '2019-03-11 08:10:15', NULL),
(515, '2019-03-11', 8, '2019-03-11 08:10:47', NULL),
(516, '2019-03-11', 5, '2019-03-11 08:13:02', NULL),
(517, '2019-03-11', 11, '2019-03-11 08:16:50', NULL),
(518, '2019-03-11', 9, '2019-03-11 08:19:11', NULL),
(519, '2019-03-11', 16, '2019-03-11 08:23:04', NULL),
(520, '2019-03-11', 2, '2019-03-11 08:24:52', NULL),
(521, '2019-03-11', 1, '2019-03-11 08:28:13', NULL),
(522, '2019-03-12', 10, '2019-03-12 07:53:51', NULL),
(523, '2019-03-12', 7, '2019-03-12 08:01:10', NULL),
(524, '2019-03-12', 14, '2019-03-12 08:04:22', NULL),
(525, '2019-03-12', 17, '2019-03-12 08:06:17', NULL),
(526, '2019-03-12', 6, '2019-03-12 08:11:26', NULL),
(527, '2019-03-12', 15, '2019-03-12 08:11:32', NULL),
(528, '2019-03-12', 4, '2019-03-12 08:11:35', NULL),
(529, '2019-03-12', 9, '2019-03-12 08:11:45', NULL),
(530, '2019-03-12', 11, '2019-03-12 08:14:40', NULL),
(531, '2019-03-12', 13, '2019-03-12 08:14:45', NULL),
(532, '2019-03-12', 8, '2019-03-12 08:15:30', NULL),
(533, '2019-03-12', 5, '2019-03-12 08:15:55', NULL),
(534, '2019-03-12', 16, '2019-03-12 08:23:19', NULL),
(535, '2019-03-12', 2, '2019-03-12 08:24:04', NULL),
(536, '2019-03-16', 18, '2019-03-16 12:52:18', NULL),
(537, '2019-03-16', 15, '2019-03-16 12:58:00', NULL),
(538, '2019-03-16', 10, '2019-03-16 12:58:17', NULL),
(539, '2019-03-16', 8, '2019-03-16 12:58:27', NULL),
(540, '2019-03-16', 17, '2019-03-16 13:00:07', NULL),
(541, '2019-03-16', 14, '2019-03-16 13:00:25', NULL),
(542, '2019-03-16', 13, '2019-03-16 13:24:24', NULL),
(543, '2019-03-16', 2, '2019-03-16 13:24:51', NULL),
(544, '2019-03-16', 16, '2019-03-16 13:24:56', NULL),
(545, '2019-03-16', 4, '2019-03-16 13:37:44', NULL),
(546, '2019-03-16', 9, '2019-03-16 13:38:49', NULL),
(547, '2019-03-16', 11, '2019-03-16 13:38:55', NULL),
(548, '2019-03-16', 7, '2019-03-16 13:39:04', NULL),
(549, '2019-03-16', 6, '2019-03-16 13:39:43', NULL),
(550, '2019-03-18', 10, '2019-03-18 07:52:24', NULL),
(551, '2019-03-18', 7, '2019-03-18 07:58:33', NULL),
(552, '2019-03-18', 17, '2019-03-18 08:02:23', NULL),
(553, '2019-03-18', 14, '2019-03-18 08:04:15', NULL),
(554, '2019-03-18', 8, '2019-03-18 08:04:45', NULL),
(555, '2019-03-18', 15, '2019-03-18 08:06:16', NULL),
(556, '2019-03-18', 13, '2019-03-18 08:11:00', NULL),
(557, '2019-03-18', 5, '2019-03-18 08:14:14', NULL),
(558, '2019-03-18', 4, '2019-03-18 08:15:04', NULL),
(559, '2019-03-18', 6, '2019-03-18 08:15:11', NULL),
(560, '2019-03-18', 11, '2019-03-18 08:15:56', NULL),
(561, '2019-03-18', 16, '2019-03-18 08:19:07', NULL),
(562, '2019-03-18', 2, '2019-03-18 08:19:15', NULL),
(563, '2019-03-18', 9, '2019-03-18 08:19:34', NULL),
(564, '2019-03-19', 10, '2019-03-19 07:54:14', NULL),
(565, '2019-03-19', 7, '2019-03-19 07:57:26', NULL),
(566, '2019-03-19', 15, '2019-03-19 08:08:43', NULL),
(567, '2019-03-19', 8, '2019-03-19 08:10:32', NULL),
(568, '2019-03-19', 17, '2019-03-19 08:10:41', NULL),
(569, '2019-03-19', 13, '2019-03-19 08:12:25', NULL),
(570, '2019-03-19', 14, '2019-03-19 08:13:27', '2019-03-19 12:51:26'),
(571, '2019-03-19', 5, '2019-03-19 08:14:45', NULL),
(572, '2019-03-19', 16, '2019-03-19 08:15:30', NULL),
(573, '2019-03-19', 11, '2019-03-19 08:16:15', NULL),
(574, '2019-03-19', 6, '2019-03-19 08:16:43', NULL),
(575, '2019-03-19', 4, '2019-03-19 08:16:45', NULL),
(576, '2019-03-19', 2, '2019-03-19 08:17:00', NULL),
(577, '2019-03-19', 9, '2019-03-19 08:20:42', NULL),
(578, '2019-03-19', 1, '2019-03-19 08:23:58', NULL),
(579, '2019-03-20', 10, '2019-03-20 07:58:27', NULL),
(580, '2019-03-20', 7, '2019-03-20 08:02:33', NULL),
(581, '2019-03-20', 17, '2019-03-20 08:03:42', NULL),
(582, '2019-03-23', 14, '2019-03-23 07:55:16', NULL),
(583, '2019-03-23', 14, '2019-03-23 07:55:16', NULL),
(584, '2019-03-23', 10, '2019-03-23 07:55:47', NULL),
(585, '2019-03-23', 10, '2019-03-23 07:55:47', NULL),
(586, '2019-03-23', 7, '2019-03-23 08:00:30', NULL),
(587, '2019-03-23', 7, '2019-03-23 08:00:30', NULL),
(588, '2019-03-23', 15, '2019-03-23 08:06:34', NULL),
(589, '2019-03-23', 15, '2019-03-23 08:06:34', NULL),
(590, '2019-03-23', 8, '2019-03-23 08:11:42', NULL),
(591, '2019-03-23', 8, '2019-03-23 08:11:42', NULL),
(592, '2019-03-23', 5, '2019-03-23 08:14:10', NULL),
(593, '2019-03-23', 5, '2019-03-23 08:14:10', NULL),
(594, '2019-03-23', 13, '2019-03-23 08:15:43', NULL),
(595, '2019-03-23', 6, '2019-03-23 08:18:03', NULL),
(596, '2019-03-23', 6, '2019-03-23 08:18:03', NULL),
(597, '2019-03-23', 4, '2019-03-23 08:18:08', NULL),
(598, '2019-03-23', 11, '2019-03-23 08:18:13', NULL),
(599, '2019-03-23', 16, '2019-03-23 08:22:08', NULL),
(600, '2019-03-23', 16, '2019-03-23 08:22:08', NULL),
(601, '2019-03-23', 9, '2019-03-23 08:24:22', NULL),
(602, '2019-03-23', 9, '2019-03-23 08:24:22', NULL),
(603, '2019-03-23', 17, '2019-03-23 08:31:45', NULL),
(604, '2019-03-24', 14, '2019-03-24 07:44:05', NULL),
(605, '2019-03-24', 10, '2019-03-24 07:56:02', NULL),
(606, '2019-03-24', 7, '2019-03-24 08:00:14', NULL),
(607, '2019-03-24', 1, '2019-03-24 08:08:46', NULL),
(608, '2019-03-24', 15, '2019-03-24 08:09:33', NULL),
(609, '2019-03-24', 13, '2019-03-24 08:10:08', NULL),
(610, '2019-03-24', 5, '2019-03-24 08:13:49', NULL),
(611, '2019-03-24', 4, '2019-03-24 08:14:12', NULL),
(612, '2019-03-24', 6, '2019-03-24 08:14:18', NULL),
(613, '2019-03-24', 8, '2019-03-24 08:14:50', NULL),
(614, '2019-03-24', 17, '2019-03-24 08:15:54', NULL),
(615, '2019-03-24', 11, '2019-03-24 08:18:12', NULL),
(616, '2019-03-24', 16, '2019-03-24 08:22:22', NULL),
(617, '2019-03-24', 2, '2019-03-24 08:22:37', NULL),
(618, '2019-03-24', 9, '2019-03-24 08:23:29', NULL),
(619, '2019-03-25', 10, '2019-03-25 07:56:57', NULL),
(620, '2019-03-25', 14, '2019-03-25 08:03:44', NULL),
(621, '2019-03-25', 1, '2019-03-25 08:06:30', NULL),
(622, '2019-03-25', 15, '2019-03-25 08:06:45', NULL),
(623, '2019-03-25', 9, '2019-03-25 13:10:43', NULL),
(624, '2019-03-27', 14, '2019-03-27 07:46:33', NULL),
(625, '2019-03-27', 7, '2019-03-27 07:56:42', NULL),
(626, '2019-03-27', 10, '2019-03-27 07:57:50', '2019-03-27 14:17:37'),
(627, '2019-03-27', 13, '2019-03-27 08:02:57', '2019-03-27 14:17:38'),
(628, '2019-03-27', 15, '2019-03-27 08:05:48', NULL),
(629, '2019-03-27', 12, '2019-03-27 08:09:37', NULL),
(630, '2019-03-27', 5, '2019-03-27 08:10:47', NULL),
(631, '2019-03-27', 9, '2019-03-27 08:13:15', '2019-03-27 14:18:20'),
(632, '2019-03-27', 11, '2019-03-27 08:16:40', '2019-03-27 14:18:25'),
(633, '2019-03-27', 6, '2019-03-27 08:17:13', '2019-03-27 14:26:24'),
(634, '2019-03-27', 4, '2019-03-27 08:17:25', '2019-03-27 14:18:33'),
(635, '2019-03-27', 8, '2019-03-27 08:18:08', '2019-03-27 14:18:29'),
(636, '2019-03-27', 1, '2019-03-27 08:20:32', NULL),
(637, '2019-03-27', 16, '2019-03-27 08:21:09', '2019-03-27 14:18:43'),
(638, '2019-03-27', 2, '2019-03-27 08:22:00', '2019-03-27 14:18:38'),
(639, '2019-04-01', 10, '2019-04-01 08:05:05', '2019-04-01 13:31:29'),
(640, '2019-04-01', 5, '2019-04-01 08:10:31', '2019-04-01 13:34:14'),
(641, '2019-04-01', 8, '2019-04-01 08:10:42', '2019-04-01 13:34:08'),
(642, '2019-04-01', 1, '2019-04-01 08:14:44', NULL),
(643, '2019-04-01', 15, '2019-04-01 08:15:03', '2019-04-01 13:31:33'),
(644, '2019-04-01', 9, '2019-04-01 08:15:09', '2019-04-01 13:53:42'),
(645, '2019-04-01', 17, '2019-04-01 08:15:16', '2019-04-01 13:34:04'),
(646, '2019-04-01', 4, '2019-04-01 08:18:45', '2019-04-01 13:43:55'),
(647, '2019-04-01', 6, '2019-04-01 08:18:52', '2019-04-01 13:44:02'),
(648, '2019-04-01', 11, '2019-04-01 08:18:59', '2019-04-01 13:44:03'),
(649, '2019-04-01', 7, '2019-04-01 08:19:38', '2019-04-01 13:56:02'),
(650, '2019-04-01', 13, '2019-04-01 08:20:21', '2019-04-01 13:41:57'),
(651, '2019-04-01', 16, '2019-04-01 08:27:34', '2019-04-01 13:53:47'),
(652, '2019-04-01', 14, '2019-04-01 08:28:29', NULL),
(653, '2019-04-01', 2, '2019-04-01 08:28:44', '2019-04-01 13:53:39'),
(654, '2019-04-02', 10, '2019-04-02 07:59:42', '2019-04-02 13:26:11'),
(655, '2019-04-02', 17, '2019-04-02 08:05:21', '2019-04-02 13:26:13'),
(656, '2019-04-02', 7, '2019-04-02 08:06:21', '2019-04-02 13:43:06'),
(657, '2019-04-02', 8, '2019-04-02 08:09:45', '2019-04-02 13:25:07'),
(658, '2019-04-02', 14, '2019-04-02 08:09:51', '2019-04-02 13:46:37'),
(659, '2019-04-02', 5, '2019-04-02 08:12:51', '2019-04-02 13:46:22'),
(660, '2019-04-02', 11, '2019-04-02 08:15:59', '2019-04-02 13:40:50'),
(661, '2019-04-02', 4, '2019-04-02 08:17:07', '2019-04-02 13:43:18'),
(662, '2019-04-02', 6, '2019-04-02 08:17:31', '2019-04-02 13:40:44'),
(663, '2019-04-02', 9, '2019-04-02 08:20:38', '2019-04-02 13:40:55'),
(664, '2019-04-02', 1, '2019-04-02 08:21:24', NULL),
(665, '2019-04-02', 16, '2019-04-02 08:22:46', '2019-04-02 13:47:56'),
(666, '2019-04-02', 2, '2019-04-02 08:23:08', '2019-04-02 14:03:53'),
(667, '2019-04-02', 13, '2019-04-02 08:30:59', '2019-04-02 14:05:27'),
(668, '2019-04-03', 7, '2019-04-03 08:02:31', '2019-04-03 13:49:36'),
(669, '2019-04-03', 10, '2019-04-03 08:03:16', '2019-04-03 13:23:11'),
(670, '2019-04-03', 15, '2019-04-03 08:07:09', '2019-04-03 13:23:04'),
(671, '2019-04-03', 8, '2019-04-03 08:13:02', NULL),
(672, '2019-04-03', 17, '2019-04-03 08:13:09', '2019-04-03 13:23:02'),
(673, '2019-04-03', 13, '2019-04-03 08:14:16', NULL),
(674, '2019-04-03', 5, '2019-04-03 08:14:51', '2019-04-03 13:28:20'),
(675, '2019-04-03', 6, '2019-04-03 08:14:58', '2019-04-03 13:50:08'),
(676, '2019-04-03', 4, '2019-04-03 08:15:04', '2019-04-03 13:50:03'),
(677, '2019-04-03', 14, '2019-04-03 08:15:24', '2019-04-03 13:28:11'),
(678, '2019-04-03', 11, '2019-04-03 08:17:22', '2019-04-03 13:36:00'),
(679, '2019-04-03', 16, '2019-04-03 08:17:38', NULL),
(680, '2019-04-03', 2, '2019-04-03 08:18:32', NULL),
(681, '2019-04-03', 1, '2019-04-03 08:24:52', '2019-04-03 13:50:13'),
(682, '2019-04-03', 9, '2019-04-03 08:25:17', NULL),
(683, '2019-04-06', 10, '2019-04-06 07:57:35', NULL),
(684, '2019-04-06', 12, '2019-04-06 08:06:24', NULL),
(685, '2019-04-06', 7, '2019-04-06 08:07:11', '2019-04-06 14:12:32'),
(686, '2019-04-06', 14, '2019-04-06 08:07:42', '2019-04-06 14:12:29'),
(687, '2019-04-06', 5, '2019-04-06 08:09:03', '2019-04-06 14:10:00'),
(688, '2019-04-06', 15, '2019-04-06 08:10:17', '2019-04-06 14:05:39'),
(689, '2019-04-06', 13, '2019-04-06 08:11:31', NULL),
(690, '2019-04-06', 4, '2019-04-06 08:14:56', '2019-04-06 14:10:06'),
(691, '2019-04-06', 6, '2019-04-06 08:15:04', '2019-04-06 14:10:25'),
(692, '2019-04-06', 11, '2019-04-06 08:19:18', NULL),
(693, '2019-04-06', 8, '2019-04-06 08:21:03', NULL),
(694, '2019-04-06', 17, '2019-04-06 08:21:31', '2019-04-06 14:05:44'),
(695, '2019-04-06', 2, '2019-04-06 08:35:16', NULL),
(696, '2019-04-06', 16, '2019-04-06 08:35:21', NULL),
(697, '2019-04-06', 9, '2019-04-06 08:35:31', '2019-04-06 14:09:21'),
(698, '2019-04-06', 1, '2019-04-06 08:36:39', '2019-04-06 14:12:46'),
(699, '2019-04-06', 18, '2019-04-06 09:01:30', '2019-04-06 12:50:32'),
(700, '2019-04-07', 10, '2019-04-07 07:56:12', '2019-04-07 13:29:55'),
(701, '2019-04-07', 14, '2019-04-07 08:05:22', '2019-04-07 13:48:41'),
(702, '2019-04-07', 15, '2019-04-07 08:08:23', '2019-04-07 13:29:59'),
(703, '2019-04-07', 13, '2019-04-07 08:09:37', NULL),
(704, '2019-04-07', 4, '2019-04-07 08:13:24', '2019-04-07 13:43:14'),
(705, '2019-04-07', 6, '2019-04-07 08:13:32', '2019-04-07 13:45:11'),
(706, '2019-04-07', 5, '2019-04-07 08:13:47', '2019-04-07 13:48:46'),
(707, '2019-04-07', 11, '2019-04-07 08:16:51', '2019-04-07 13:53:31'),
(708, '2019-04-07', 9, '2019-04-07 08:17:21', '2019-04-07 13:48:36'),
(709, '2019-04-07', 1, '2019-04-07 08:18:45', NULL),
(710, '2019-04-07', 16, '2019-04-07 08:19:21', NULL),
(711, '2019-04-07', 2, '2019-04-07 08:19:57', NULL),
(712, '2019-04-07', 17, '2019-04-07 08:24:00', '2019-04-07 12:05:24'),
(713, '2019-04-07', 7, '2019-04-07 08:34:33', '2019-04-07 13:48:50'),
(714, '2019-04-08', 15, '2019-04-08 08:02:03', '2019-04-08 13:13:17'),
(715, '2019-04-08', 10, '2019-04-08 08:03:18', '2019-04-08 13:13:09'),
(716, '2019-04-08', 7, '2019-04-08 08:06:29', '2019-04-08 13:27:44'),
(717, '2019-04-08', 5, '2019-04-08 08:09:26', '2019-04-08 13:15:11'),
(718, '2019-04-08', 13, '2019-04-08 08:11:42', NULL),
(719, '2019-04-08', 8, '2019-04-08 08:13:46', '2019-04-08 13:27:53'),
(720, '2019-04-08', 14, '2019-04-08 08:14:29', '2019-04-08 12:50:05'),
(721, '2019-04-08', 4, '2019-04-08 08:14:36', '2019-04-08 13:18:42'),
(722, '2019-04-08', 6, '2019-04-08 08:14:44', '2019-04-08 13:18:58'),
(723, '2019-04-08', 1, '2019-04-08 08:17:58', NULL),
(724, '2019-04-08', 11, '2019-04-08 08:22:09', '2019-04-08 13:13:25'),
(725, '2019-04-08', 9, '2019-04-08 08:23:22', '2019-04-08 13:10:48'),
(726, '2019-04-08', 2, '2019-04-08 08:31:49', NULL),
(727, '2019-04-08', 16, '2019-04-08 08:31:57', NULL),
(728, '2019-04-08', 17, '2019-04-08 11:30:02', NULL),
(729, '2019-04-09', 10, '2019-04-09 07:58:09', '2019-04-09 13:35:35'),
(730, '2019-04-09', 7, '2019-04-09 08:08:53', '2019-04-09 13:41:37'),
(731, '2019-04-09', 13, '2019-04-09 08:10:18', NULL),
(732, '2019-04-09', 15, '2019-04-09 08:10:59', '2019-04-09 13:36:01'),
(733, '2019-04-09', 8, '2019-04-09 08:12:05', NULL),
(734, '2019-04-09', 17, '2019-04-09 08:12:24', '2019-04-09 13:36:15'),
(735, '2019-04-09', 14, '2019-04-09 08:12:36', '2019-04-09 13:41:33'),
(736, '2019-04-09', 5, '2019-04-09 08:13:42', '2019-04-09 13:41:12'),
(737, '2019-04-09', 4, '2019-04-09 08:15:18', '2019-04-09 13:41:28'),
(738, '2019-04-09', 6, '2019-04-09 08:15:26', '2019-04-09 13:41:22'),
(739, '2019-04-09', 11, '2019-04-09 08:18:13', '2019-04-09 13:35:53'),
(740, '2019-04-09', 9, '2019-04-09 08:24:01', '2019-04-09 13:30:19'),
(741, '2019-04-09', 1, '2019-04-09 08:24:05', '2019-04-09 13:41:56'),
(742, '2019-04-09', 16, '2019-04-09 08:28:09', NULL),
(743, '2019-04-09', 2, '2019-04-09 08:28:24', NULL),
(744, '2019-04-10', 10, '2019-04-10 08:04:10', '2019-04-10 13:19:05'),
(745, '2019-04-10', 7, '2019-04-10 08:04:37', NULL),
(746, '2019-04-10', 15, '2019-04-10 08:06:47', '2019-04-10 13:18:42'),
(747, '2019-04-10', 14, '2019-04-10 08:10:20', '2019-04-10 12:42:59'),
(748, '2019-04-10', 13, '2019-04-10 08:11:05', '2019-04-10 14:08:01'),
(749, '2019-04-10', 17, '2019-04-10 08:13:49', '2019-04-10 13:19:01'),
(750, '2019-04-10', 5, '2019-04-10 08:15:21', '2019-04-10 13:12:31'),
(751, '2019-04-10', 6, '2019-04-10 08:19:02', '2019-04-10 13:35:51'),
(752, '2019-04-10', 11, '2019-04-10 08:19:17', '2019-04-10 13:35:56'),
(753, '2019-04-10', 9, '2019-04-10 08:20:51', '2019-04-10 13:35:45'),
(754, '2019-04-10', 16, '2019-04-10 08:28:03', '2019-04-10 14:11:02'),
(755, '2019-04-10', 2, '2019-04-10 08:30:43', '2019-04-10 14:10:54'),
(756, '2019-04-10', 4, '2019-04-10 08:33:51', '2019-04-10 13:35:43'),
(757, '2019-04-11', 10, '2019-04-11 08:01:13', NULL),
(758, '2019-04-11', 7, '2019-04-11 08:07:09', NULL),
(759, '2019-04-11', 14, '2019-04-11 08:10:01', NULL),
(760, '2019-04-11', 4, '2019-04-11 08:12:12', NULL),
(761, '2019-04-11', 6, '2019-04-11 08:12:19', NULL),
(762, '2019-04-11', 17, '2019-04-11 08:14:02', NULL),
(763, '2019-04-11', 13, '2019-04-11 08:14:39', NULL),
(764, '2019-04-11', 5, '2019-04-11 08:14:51', NULL),
(765, '2019-04-11', 1, '2019-04-11 08:19:26', NULL),
(766, '2019-04-11', 11, '2019-04-11 08:19:38', NULL),
(767, '2019-04-11', 16, '2019-04-11 08:22:36', NULL),
(768, '2019-04-11', 2, '2019-04-11 08:23:05', NULL),
(769, '2019-04-11', 8, '2019-04-11 08:29:06', NULL),
(770, '2019-04-11', 9, '2019-04-11 08:33:08', NULL),
(772, '2019-04-15', 10, '2019-04-15 07:56:33', '2019-04-15 11:47:38'),
(773, '2019-04-15', 13, '2019-04-15 08:04:17', NULL),
(774, '2019-04-15', 7, '2019-04-15 08:07:37', NULL),
(775, '2019-04-15', 12, '2019-04-15 08:08:19', NULL),
(776, '2019-04-15', 15, '2019-04-15 08:11:31', '2019-04-15 12:52:21'),
(777, '2019-04-15', 5, '2019-04-15 08:12:50', NULL),
(778, '2019-04-15', 8, '2019-04-15 08:18:21', NULL),
(779, '2019-04-15', 17, '2019-04-15 08:19:05', '2019-04-15 12:52:24'),
(780, '2019-04-15', 9, '2019-04-15 08:19:22', NULL),
(781, '2019-04-15', 4, '2019-04-15 08:21:08', NULL),
(782, '2019-04-15', 16, '2019-04-15 08:33:17', NULL),
(783, '2019-04-15', 2, '2019-04-15 08:33:31', NULL),
(784, '2019-04-16', 10, '2019-04-16 08:03:04', '2019-04-16 13:21:58'),
(785, '2019-04-16', 14, '2019-04-16 08:06:36', NULL),
(786, '2019-04-16', 13, '2019-04-16 08:09:38', '2019-04-16 13:26:49'),
(787, '2019-04-16', 8, '2019-04-16 08:12:20', '2019-04-16 13:21:49'),
(788, '2019-04-16', 17, '2019-04-16 08:12:45', '2019-04-16 13:21:45'),
(789, '2019-04-16', 15, '2019-04-16 08:12:49', '2019-04-16 13:21:29'),
(790, '2019-04-16', 5, '2019-04-16 08:15:40', '2019-04-16 13:27:50'),
(791, '2019-04-16', 6, '2019-04-16 08:17:52', '2019-04-16 13:25:29'),
(792, '2019-04-16', 1, '2019-04-16 08:19:37', NULL),
(793, '2019-04-16', 11, '2019-04-16 08:19:44', '2019-04-16 13:21:54'),
(794, '2019-04-16', 4, '2019-04-16 08:21:01', '2019-04-16 13:25:00'),
(795, '2019-04-16', 9, '2019-04-16 08:23:13', '2019-04-16 13:21:31'),
(796, '2019-04-16', 16, '2019-04-16 08:31:41', '2019-04-16 13:22:03'),
(797, '2019-04-16', 7, '2019-04-16 08:32:51', NULL),
(798, '2019-04-16', 2, '2019-04-16 08:33:01', '2019-04-16 13:26:44'),
(799, '2019-04-17', 14, '2019-04-17 07:49:06', '2019-04-17 12:17:01'),
(800, '2019-04-17', 15, '2019-04-17 08:09:54', '2019-04-17 12:53:43'),
(801, '2019-04-17', 17, '2019-04-17 08:10:44', '2019-04-17 12:53:45'),
(802, '2019-04-17', 13, '2019-04-17 08:11:35', '2019-04-17 13:09:23'),
(803, '2019-04-17', 10, '2019-04-17 08:12:37', '2019-04-17 12:53:39'),
(804, '2019-04-17', 5, '2019-04-17 08:16:54', '2019-04-17 12:21:43'),
(805, '2019-04-17', 11, '2019-04-17 08:18:36', '2019-04-17 13:08:51'),
(806, '2019-04-17', 8, '2019-04-17 08:23:51', '2019-04-17 12:26:05'),
(807, '2019-04-17', 6, '2019-04-17 08:29:00', '2019-04-17 13:09:18'),
(808, '2019-04-17', 7, '2019-04-17 08:29:06', NULL),
(809, '2019-04-17', 4, '2019-04-17 08:29:16', '2019-04-17 13:09:13'),
(810, '2019-04-17', 12, '2019-04-17 08:39:04', NULL),
(811, '2019-04-17', 9, '2019-04-17 08:39:39', '2019-04-17 12:53:54'),
(812, '2019-04-17', 16, '2019-04-17 08:52:55', '2019-04-17 13:09:29'),
(813, '2019-04-17', 2, '2019-04-17 08:54:10', '2019-04-17 13:09:32'),
(814, '2019-04-17', 1, '2019-04-17 08:54:39', NULL),
(815, '2019-04-18', 10, '2019-04-18 08:10:05', NULL),
(816, '2019-04-18', 14, '2019-04-18 08:11:07', '2019-04-18 13:02:26'),
(817, '2019-04-18', 15, '2019-04-18 08:11:21', '2019-04-18 13:02:03'),
(818, '2019-04-18', 8, '2019-04-18 08:20:05', '2019-04-18 13:02:14'),
(819, '2019-04-18', 5, '2019-04-18 08:22:39', '2019-04-18 13:02:21'),
(820, '2019-04-18', 7, '2019-04-18 08:32:03', NULL),
(821, '2019-04-18', 4, '2019-04-18 08:32:08', '2019-04-18 13:01:58'),
(822, '2019-04-18', 1, '2019-04-18 08:32:19', NULL),
(823, '2019-04-18', 6, '2019-04-18 08:32:29', '2019-04-18 13:02:34'),
(824, '2019-04-18', 11, '2019-04-18 08:34:14', '2019-04-18 13:02:09'),
(825, '2019-04-18', 13, '2019-04-18 08:38:12', '2019-04-18 13:01:40'),
(826, '2019-04-18', 9, '2019-04-18 08:38:56', '2019-04-18 13:01:51'),
(827, '2019-04-18', 16, '2019-04-18 08:54:46', NULL),
(828, '2019-04-18', 17, '2019-04-18 13:01:52', NULL),
(829, '2019-04-20', 14, '2019-04-20 08:12:26', '2019-04-20 13:30:34'),
(830, '2019-04-20', 15, '2019-04-20 08:13:05', '2019-04-20 13:28:31'),
(831, '2019-04-20', 5, '2019-04-20 08:18:02', '2019-04-20 13:30:54'),
(832, '2019-04-20', 13, '2019-04-20 08:28:36', '2019-04-20 13:28:20'),
(833, '2019-04-20', 11, '2019-04-20 08:32:37', '2019-04-20 13:31:08'),
(834, '2019-04-20', 6, '2019-04-20 08:33:16', '2019-04-20 13:31:16'),
(835, '2019-04-20', 4, '2019-04-20 08:33:23', '2019-04-20 13:29:43'),
(836, '2019-04-20', 10, '2019-04-20 08:37:20', '2019-04-20 13:31:04'),
(837, '2019-04-20', 7, '2019-04-20 08:39:07', '2019-04-20 13:31:37');
INSERT INTO `teacher_attendance` (`id`, `date`, `teacher_id`, `in_time`, `out_time`) VALUES
(838, '2019-04-20', 9, '2019-04-20 08:40:36', '2019-04-20 10:34:25'),
(839, '2019-04-20', 18, '2019-04-20 08:56:23', NULL),
(840, '2019-04-20', 16, '2019-04-20 08:56:33', '2019-04-20 13:32:11'),
(841, '2019-04-20', 2, '2019-04-20 08:57:17', '2019-04-20 13:31:43'),
(842, '2019-04-23', 1, '2019-04-23 08:11:08', NULL),
(843, '2019-04-23', 10, '2019-04-23 08:12:52', NULL),
(844, '2019-04-23', 5, '2019-04-23 08:15:19', NULL),
(845, '2019-04-23', 15, '2019-04-23 08:17:27', NULL),
(846, '2019-04-23', 17, '2019-04-23 08:19:00', NULL),
(847, '2019-04-23', 14, '2019-04-23 08:20:55', NULL),
(848, '2019-04-24', 10, '2019-04-24 07:55:08', '2019-04-24 11:57:49'),
(849, '2019-04-24', 5, '2019-04-24 08:11:01', '2019-04-24 13:20:08'),
(850, '2019-04-24', 15, '2019-04-24 08:17:46', '2019-04-24 11:57:51'),
(851, '2019-04-24', 8, '2019-04-24 08:19:28', '2019-04-24 11:58:05'),
(852, '2019-04-24', 17, '2019-04-24 08:20:03', '2019-04-24 11:57:54'),
(853, '2019-04-24', 1, '2019-04-24 08:22:06', NULL),
(854, '2019-04-24', 14, '2019-04-24 08:25:15', '2019-04-24 13:19:58'),
(855, '2019-04-24', 4, '2019-04-24 08:34:08', '2019-04-24 13:20:59'),
(856, '2019-04-24', 6, '2019-04-24 08:34:14', '2019-04-24 13:23:04'),
(857, '2019-04-24', 7, '2019-04-24 08:34:53', NULL),
(858, '2019-04-24', 11, '2019-04-24 08:35:06', '2019-04-24 13:20:03'),
(859, '2019-04-24', 13, '2019-04-24 08:41:14', '2019-04-24 13:26:56'),
(860, '2019-04-24', 12, '2019-04-24 08:41:20', NULL),
(861, '2019-04-24', 16, '2019-04-24 08:51:28', '2019-04-24 13:26:51'),
(862, '2019-04-24', 2, '2019-04-24 08:52:27', '2019-04-24 13:27:16'),
(863, '2019-04-24', 9, '2019-04-24 08:56:40', '2019-04-24 13:19:55'),
(864, '2019-04-25', 10, '2019-04-25 07:54:52', '2019-04-25 12:27:17'),
(865, '2019-04-25', 14, '2019-04-25 08:12:57', '2019-04-25 13:17:29'),
(866, '2019-04-25', 5, '2019-04-25 08:17:22', '2019-04-25 13:17:02'),
(867, '2019-04-25', 15, '2019-04-25 08:23:59', '2019-04-25 12:27:41'),
(868, '2019-04-25', 8, '2019-04-25 08:25:12', '2019-04-25 13:17:06'),
(869, '2019-04-25', 9, '2019-04-25 08:39:12', '2019-04-25 12:43:47'),
(870, '2019-04-25', 6, '2019-04-25 08:43:03', '2019-04-25 13:14:44'),
(871, '2019-04-25', 4, '2019-04-25 08:43:19', '2019-04-25 13:14:39'),
(872, '2019-04-25', 11, '2019-04-25 08:43:43', '2019-04-25 13:17:34'),
(873, '2019-04-25', 7, '2019-04-25 08:45:30', '2019-04-25 13:17:17'),
(874, '2019-04-25', 13, '2019-04-25 08:50:59', '2019-04-25 13:14:48'),
(875, '2019-04-25', 16, '2019-04-25 08:55:28', '2019-04-25 13:17:22'),
(876, '2019-04-25', 2, '2019-04-25 08:55:40', '2019-04-25 13:16:38'),
(877, '2019-04-25', 17, '2019-04-25 09:35:47', '2019-04-25 12:28:05'),
(878, '2019-04-27', 1, '2019-04-27 07:32:28', NULL),
(879, '2019-04-27', 10, '2019-04-27 07:51:31', '2019-04-27 14:06:05'),
(880, '2019-04-27', 15, '2019-04-27 08:12:27', '2019-04-27 14:05:25'),
(881, '2019-04-27', 5, '2019-04-27 08:12:48', '2019-04-27 14:08:34'),
(882, '2019-04-27', 14, '2019-04-27 08:13:14', '2019-04-27 14:11:17'),
(883, '2019-04-27', 4, '2019-04-27 08:17:59', '2019-04-27 14:06:27'),
(884, '2019-04-27', 6, '2019-04-27 08:18:05', '2019-04-27 14:11:12'),
(885, '2019-04-27', 8, '2019-04-27 08:18:40', '2019-04-27 14:05:46'),
(886, '2019-04-27', 17, '2019-04-27 08:19:14', '2019-04-27 14:05:29'),
(887, '2019-04-27', 11, '2019-04-27 08:20:06', '2019-04-27 14:05:23'),
(888, '2019-04-27', 13, '2019-04-27 08:22:27', '2019-04-27 14:05:40'),
(889, '2019-04-27', 12, '2019-04-27 08:29:15', NULL),
(890, '2019-04-27', 9, '2019-04-27 08:30:27', '2019-04-27 14:06:44'),
(891, '2019-04-27', 2, '2019-04-27 08:38:23', '2019-04-27 14:10:22'),
(892, '2019-04-27', 16, '2019-04-27 08:38:24', '2019-04-27 14:09:57'),
(893, '2019-04-27', 7, '2019-04-27 08:42:04', '2019-04-27 14:10:30'),
(894, '2019-04-27', 18, '2019-04-27 09:04:43', NULL),
(895, '2019-04-28', 14, '2019-04-28 07:43:59', '2019-04-28 13:14:07'),
(896, '2019-04-28', 10, '2019-04-28 07:59:36', '2019-04-28 13:14:31'),
(897, '2019-04-28', 9, '2019-04-28 08:11:30', '2019-04-28 13:06:52'),
(898, '2019-04-28', 1, '2019-04-28 08:14:40', NULL),
(899, '2019-04-28', 15, '2019-04-28 08:14:55', '2019-04-28 13:07:12'),
(900, '2019-04-28', 5, '2019-04-28 08:15:35', '2019-04-28 13:01:01'),
(901, '2019-04-28', 8, '2019-04-28 08:24:17', '2019-04-28 13:15:49'),
(902, '2019-04-28', 6, '2019-04-28 08:24:32', '2019-04-28 13:44:03'),
(903, '2019-04-28', 4, '2019-04-28 08:24:37', '2019-04-28 13:43:59'),
(904, '2019-04-28', 17, '2019-04-28 08:24:42', NULL),
(905, '2019-04-28', 11, '2019-04-28 08:24:48', '2019-04-28 13:14:12'),
(906, '2019-04-28', 7, '2019-04-28 08:31:41', NULL),
(907, '2019-04-28', 2, '2019-04-28 08:31:55', NULL),
(908, '2019-04-28', 16, '2019-04-28 08:32:14', NULL),
(909, '2019-04-28', 13, '2019-04-28 08:39:13', NULL),
(910, '2019-04-29', 14, '2019-04-29 07:52:29', NULL),
(911, '2019-04-29', 10, '2019-04-29 07:56:20', '2019-04-29 13:22:06'),
(912, '2019-04-29', 5, '2019-04-29 08:10:57', '2019-04-29 13:33:09'),
(913, '2019-04-29', 17, '2019-04-29 08:20:08', '2019-04-29 13:22:13'),
(914, '2019-04-29', 11, '2019-04-29 08:21:07', '2019-04-29 13:23:54'),
(915, '2019-04-29', 8, '2019-04-29 08:22:31', '2019-04-29 13:25:04'),
(916, '2019-04-29', 9, '2019-04-29 08:27:21', '2019-04-29 13:23:59'),
(917, '2019-04-29', 7, '2019-04-29 08:28:42', '2019-04-29 13:33:25'),
(918, '2019-04-29', 13, '2019-04-29 08:28:48', NULL),
(919, '2019-04-29', 16, '2019-04-29 08:30:00', NULL),
(920, '2019-04-29', 2, '2019-04-29 08:30:05', NULL),
(921, '2019-04-29', 6, '2019-04-29 08:33:01', '2019-04-29 13:33:20'),
(922, '2019-04-29', 4, '2019-04-29 08:33:09', '2019-04-29 13:33:14'),
(923, '2019-04-30', 10, '2019-04-30 08:05:41', '2019-04-30 13:43:55'),
(924, '2019-04-30', 5, '2019-04-30 08:08:48', '2019-04-30 13:51:27'),
(925, '2019-04-30', 13, '2019-04-30 08:08:58', NULL),
(926, '2019-04-30', 15, '2019-04-30 08:11:29', '2019-04-30 13:43:49'),
(927, '2019-04-30', 14, '2019-04-30 08:15:44', '2019-04-30 11:49:52'),
(928, '2019-04-30', 6, '2019-04-30 08:21:05', '2019-04-30 13:59:32'),
(929, '2019-04-30', 4, '2019-04-30 08:21:19', '2019-04-30 13:59:26'),
(930, '2019-04-30', 8, '2019-04-30 08:22:29', NULL),
(931, '2019-04-30', 17, '2019-04-30 08:22:37', '2019-04-30 13:43:59'),
(932, '2019-04-30', 11, '2019-04-30 08:25:26', NULL),
(933, '2019-04-30', 16, '2019-04-30 08:25:45', NULL),
(934, '2019-04-30', 9, '2019-04-30 08:26:11', '2019-04-30 13:46:57'),
(935, '2019-04-30', 2, '2019-04-30 08:26:16', NULL),
(936, '2019-04-30', 7, '2019-04-30 08:33:49', '2019-04-30 13:54:34'),
(937, '2019-05-04', 13, '2019-05-04 07:57:57', NULL),
(938, '2019-05-04', 14, '2019-05-04 08:00:15', NULL),
(939, '2019-05-04', 7, '2019-05-04 08:05:34', NULL),
(940, '2019-05-04', 12, '2019-05-04 08:08:14', NULL),
(941, '2019-05-04', 15, '2019-05-04 08:09:49', NULL),
(942, '2019-05-04', 5, '2019-05-04 08:09:58', NULL),
(943, '2019-05-04', 10, '2019-05-04 08:10:38', '2019-05-04 12:11:47'),
(944, '2019-05-04', 8, '2019-05-04 08:16:03', NULL),
(945, '2019-05-04', 17, '2019-05-04 08:16:17', NULL),
(946, '2019-05-04', 4, '2019-05-04 08:22:32', '2019-05-04 12:12:32'),
(947, '2019-05-04', 6, '2019-05-04 08:23:33', '2019-05-04 12:12:59'),
(948, '2019-05-04', 11, '2019-05-04 08:24:14', '2019-05-04 12:11:54'),
(949, '2019-05-04', 9, '2019-05-04 08:32:37', '2019-05-04 12:11:42'),
(950, '2019-05-04', 2, '2019-05-04 08:41:14', '2019-05-04 12:15:27'),
(951, '2019-05-04', 16, '2019-05-04 08:41:21', '2019-05-04 12:13:34'),
(952, '2019-05-04', 18, '2019-05-04 09:09:21', NULL),
(953, '2019-05-05', 10, '2019-05-05 07:52:50', '2019-05-05 12:20:39'),
(954, '2019-05-05', 14, '2019-05-05 07:53:36', '2019-05-05 12:14:34'),
(955, '2019-05-05', 7, '2019-05-05 08:02:58', '2019-05-05 12:15:14'),
(956, '2019-05-05', 5, '2019-05-05 08:09:34', NULL),
(957, '2019-05-05', 15, '2019-05-05 08:12:38', '2019-05-05 12:20:43'),
(958, '2019-05-05', 8, '2019-05-05 08:12:43', NULL),
(959, '2019-05-05', 13, '2019-05-05 08:12:58', '2019-05-05 12:57:25'),
(960, '2019-05-05', 17, '2019-05-05 08:13:03', '2019-05-05 12:20:44'),
(961, '2019-05-05', 4, '2019-05-05 08:18:53', '2019-05-05 12:15:40'),
(962, '2019-05-05', 6, '2019-05-05 08:19:13', '2019-05-05 12:46:15'),
(963, '2019-05-05', 9, '2019-05-05 08:22:10', '2019-05-05 12:45:15'),
(964, '2019-05-05', 11, '2019-05-05 08:23:52', '2019-05-05 12:45:32'),
(965, '2019-05-05', 2, '2019-05-05 08:39:54', '2019-05-05 12:57:53'),
(966, '2019-05-05', 16, '2019-05-05 12:58:05', NULL),
(967, '2019-06-11', 14, '2019-06-11 07:33:17', '2019-06-11 13:36:05'),
(968, '2019-06-11', 10, '2019-06-11 07:57:48', '2019-06-11 13:33:01'),
(969, '2019-06-11', 15, '2019-06-11 07:58:28', '2019-06-11 13:33:09'),
(970, '2019-06-11', 8, '2019-06-11 08:07:51', '2019-06-11 13:36:01'),
(971, '2019-06-11', 17, '2019-06-11 08:10:57', '2019-06-11 13:33:11'),
(972, '2019-06-11', 7, '2019-06-11 08:13:05', '2019-06-11 13:35:56'),
(973, '2019-06-11', 4, '2019-06-11 08:16:38', '2019-06-11 13:35:55'),
(974, '2019-06-11', 6, '2019-06-11 08:16:43', NULL),
(975, '2019-06-11', 11, '2019-06-11 08:21:34', '2019-06-11 13:33:04'),
(976, '2019-06-11', 9, '2019-06-11 08:24:00', '2019-06-11 13:33:15'),
(977, '2019-06-11', 2, '2019-06-11 08:33:44', '2019-06-11 13:36:28'),
(978, '2019-06-12', 14, '2019-06-12 07:57:10', '2019-06-12 13:43:47'),
(979, '2019-06-12', 15, '2019-06-12 08:05:06', '2019-06-12 13:43:38'),
(980, '2019-06-12', 12, '2019-06-12 08:07:43', NULL),
(981, '2019-06-12', 17, '2019-06-12 08:07:45', NULL),
(982, '2019-06-12', 8, '2019-06-12 08:12:14', NULL),
(983, '2019-06-12', 4, '2019-06-12 08:16:16', '2019-06-12 13:43:40'),
(984, '2019-06-12', 11, '2019-06-12 08:24:52', NULL),
(985, '2019-06-12', 9, '2019-06-12 08:24:58', '2019-06-12 13:43:43'),
(986, '2019-06-12', 7, '2019-06-12 08:25:45', '2019-06-12 13:44:11'),
(987, '2019-06-12', 16, '2019-06-12 08:28:00', '2019-06-12 13:45:04'),
(988, '2019-06-12', 2, '2019-06-12 08:28:05', '2019-06-12 13:45:20'),
(989, '2019-06-15', 10, '2019-06-15 07:47:50', '2019-06-15 14:04:15'),
(990, '2019-06-15', 14, '2019-06-15 07:52:31', '2019-06-15 14:04:53'),
(991, '2019-06-15', 8, '2019-06-15 08:08:09', NULL),
(992, '2019-06-15', 12, '2019-06-15 08:08:49', NULL),
(993, '2019-06-15', 7, '2019-06-15 08:09:53', '2019-06-15 14:04:10'),
(994, '2019-06-15', 15, '2019-06-15 08:10:16', '2019-06-15 14:04:03'),
(995, '2019-06-15', 4, '2019-06-15 08:17:13', '2019-06-15 14:04:57'),
(996, '2019-06-15', 6, '2019-06-15 08:17:27', '2019-06-15 14:04:19'),
(997, '2019-06-15', 11, '2019-06-15 08:26:36', '2019-06-15 14:05:02'),
(998, '2019-06-15', 2, '2019-06-15 08:26:43', '2019-06-15 14:08:04'),
(999, '2019-06-15', 16, '2019-06-15 08:26:50', '2019-06-15 14:07:57'),
(1000, '2019-06-15', 9, '2019-06-15 08:34:56', NULL),
(1001, '2019-06-15', 18, '2019-06-15 08:58:00', '2019-06-15 12:45:47'),
(1002, '2019-06-16', 14, '2019-06-16 07:47:35', '2019-06-16 13:54:33'),
(1003, '2019-06-16', 10, '2019-06-16 07:54:23', '2019-06-16 13:54:12'),
(1004, '2019-06-16', 15, '2019-06-16 08:06:10', '2019-06-16 13:54:15'),
(1005, '2019-06-16', 8, '2019-06-16 08:10:29', '2019-06-16 13:56:06'),
(1006, '2019-06-16', 7, '2019-06-16 08:10:51', '2019-06-16 13:54:02'),
(1007, '2019-06-16', 17, '2019-06-16 08:16:09', '2019-06-16 13:54:17'),
(1008, '2019-06-16', 6, '2019-06-16 08:17:12', '2019-06-16 13:54:55'),
(1009, '2019-06-16', 4, '2019-06-16 08:17:17', '2019-06-16 13:54:39'),
(1010, '2019-06-16', 11, '2019-06-16 08:21:48', '2019-06-16 13:54:28'),
(1011, '2019-06-16', 9, '2019-06-16 08:21:57', '2019-06-16 13:54:04'),
(1012, '2019-06-16', 16, '2019-06-16 08:24:27', '2019-06-16 13:56:10'),
(1013, '2019-06-16', 2, '2019-06-16 08:24:36', '2019-06-16 13:55:51'),
(1014, '2019-06-17', 14, '2019-06-17 07:58:25', '2019-06-17 13:25:26'),
(1015, '2019-06-17', 10, '2019-06-17 08:00:52', '2019-06-17 13:23:42'),
(1016, '2019-06-17', 12, '2019-06-17 08:12:10', NULL),
(1017, '2019-06-17', 15, '2019-06-17 08:12:25', '2019-06-17 13:23:58'),
(1018, '2019-06-17', 8, '2019-06-17 08:15:44', '2019-06-17 13:25:16'),
(1019, '2019-06-17', 11, '2019-06-17 08:17:18', NULL),
(1020, '2019-06-17', 17, '2019-06-17 08:17:34', '2019-06-17 13:23:41'),
(1021, '2019-06-17', 4, '2019-06-17 08:17:39', NULL),
(1022, '2019-06-17', 6, '2019-06-17 08:17:44', NULL),
(1023, '2019-06-17', 9, '2019-06-17 08:17:53', NULL),
(1024, '2019-06-17', 16, '2019-06-17 08:25:13', '2019-06-17 13:31:09'),
(1025, '2019-06-17', 2, '2019-06-17 08:25:28', '2019-06-17 13:31:57'),
(1026, '2019-06-19', 7, '2019-06-19 08:07:43', NULL),
(1027, '2019-06-19', 11, '2019-06-19 08:21:42', NULL),
(1028, '2019-06-19', 16, '2019-06-19 08:27:14', NULL),
(1029, '2019-06-19', 2, '2019-06-19 08:27:28', NULL),
(1030, '2019-06-19', 13, '2019-06-19 08:40:19', NULL),
(1031, '2019-06-22', 8, '2019-06-22 08:29:54', NULL),
(1032, '2019-06-22', 9, '2019-06-22 08:29:58', '2019-06-22 15:32:53'),
(1033, '2019-06-22', 17, '2019-06-22 08:30:03', '2019-06-22 15:33:36'),
(1034, '2019-06-22', 16, '2019-06-22 08:30:08', '2019-06-22 15:34:11'),
(1035, '2019-06-22', 11, '2019-06-22 08:35:03', '2019-06-22 15:33:18'),
(1036, '2019-06-22', 12, '2019-06-22 08:35:10', NULL),
(1037, '2019-06-22', 15, '2019-06-22 08:35:14', '2019-06-22 15:29:01'),
(1038, '2019-06-22', 2, '2019-06-22 08:36:06', '2019-06-22 15:34:06'),
(1039, '2019-06-22', 13, '2019-06-22 08:36:10', '2019-06-22 15:27:49'),
(1040, '2019-06-22', 7, '2019-06-22 08:36:22', NULL),
(1041, '2019-06-22', 14, '2019-06-22 08:36:26', NULL),
(1042, '2019-06-22', 10, '2019-06-22 08:36:32', '2019-06-22 15:33:10'),
(1043, '2019-06-22', 6, '2019-06-22 08:38:10', '2019-06-22 15:24:42'),
(1044, '2019-06-22', 4, '2019-06-22 08:39:16', '2019-06-22 15:24:30'),
(1045, '2019-06-22', 18, '2019-06-22 09:01:34', '2019-06-22 12:51:55'),
(1046, '2019-06-23', 14, '2019-06-23 07:46:37', '2019-06-23 14:13:19'),
(1047, '2019-06-23', 10, '2019-06-23 08:01:04', '2019-06-23 14:12:25'),
(1048, '2019-06-23', 8, '2019-06-23 08:12:08', '2019-06-23 14:13:41'),
(1049, '2019-06-23', 7, '2019-06-23 08:13:23', '2019-06-23 14:13:46'),
(1050, '2019-06-23', 4, '2019-06-23 08:15:29', '2019-06-23 14:15:45'),
(1051, '2019-06-23', 6, '2019-06-23 08:15:36', '2019-06-23 14:15:55'),
(1052, '2019-06-23', 15, '2019-06-23 08:16:31', '2019-06-23 14:12:40'),
(1053, '2019-06-23', 9, '2019-06-23 08:16:44', '2019-06-23 14:12:54'),
(1054, '2019-06-23', 17, '2019-06-23 08:16:45', '2019-06-23 14:13:08'),
(1055, '2019-06-23', 13, '2019-06-23 08:17:18', '2019-06-23 14:12:35'),
(1056, '2019-06-23', 11, '2019-06-23 08:19:51', '2019-06-23 14:12:31'),
(1057, '2019-06-23', 16, '2019-06-23 08:24:03', '2019-06-23 14:15:50'),
(1058, '2019-06-23', 2, '2019-06-23 08:24:28', '2019-06-23 14:16:01'),
(1059, '2019-06-25', 10, '2019-06-25 08:07:01', '2019-06-25 14:01:42'),
(1060, '2019-06-25', 7, '2019-06-25 08:10:10', '2019-06-25 14:05:35'),
(1061, '2019-06-25', 8, '2019-06-25 08:12:05', NULL),
(1062, '2019-06-25', 13, '2019-06-25 08:15:16', '2019-06-25 14:01:33'),
(1063, '2019-06-25', 4, '2019-06-25 08:16:09', NULL),
(1064, '2019-06-25', 6, '2019-06-25 08:16:14', NULL),
(1065, '2019-06-25', 15, '2019-06-25 08:17:57', '2019-06-25 14:01:13'),
(1066, '2019-06-25', 17, '2019-06-25 08:18:31', NULL),
(1067, '2019-06-25', 14, '2019-06-25 08:20:18', '2019-06-25 14:05:36'),
(1068, '2019-06-25', 11, '2019-06-25 08:21:42', '2019-06-25 14:01:47'),
(1069, '2019-06-25', 9, '2019-06-25 08:24:50', '2019-06-25 14:05:40'),
(1070, '2019-06-25', 2, '2019-06-25 08:27:59', NULL),
(1071, '2019-06-25', 16, '2019-06-25 08:28:45', NULL),
(1072, '2019-06-26', 14, '2019-06-26 07:57:54', '2019-06-26 14:10:35'),
(1073, '2019-06-26', 10, '2019-06-26 08:02:03', '2019-06-26 14:08:18'),
(1074, '2019-06-26', 8, '2019-06-26 08:12:17', '2019-06-26 14:10:29'),
(1075, '2019-06-26', 7, '2019-06-26 08:12:22', '2019-06-26 14:10:13'),
(1076, '2019-06-26', 12, '2019-06-26 08:14:08', NULL),
(1077, '2019-06-26', 6, '2019-06-26 08:15:23', '2019-06-26 14:10:34'),
(1078, '2019-06-26', 4, '2019-06-26 08:15:30', '2019-06-26 14:10:47'),
(1079, '2019-06-26', 17, '2019-06-26 08:17:17', '2019-06-26 14:08:09'),
(1080, '2019-06-26', 13, '2019-06-26 08:17:54', '2019-06-26 14:04:48'),
(1081, '2019-06-26', 9, '2019-06-26 08:20:04', '2019-06-26 14:10:23'),
(1082, '2019-06-26', 11, '2019-06-26 08:21:38', '2019-06-26 14:08:13'),
(1083, '2019-06-26', 15, '2019-06-26 08:22:15', '2019-06-26 14:06:13'),
(1084, '2019-06-26', 16, '2019-06-26 08:34:45', '2019-06-26 14:10:18'),
(1085, '2019-06-26', 2, '2019-06-26 08:34:56', '2019-06-26 14:10:02'),
(1086, '2019-06-29', 10, '2019-06-29 08:02:10', '2019-06-29 14:11:44'),
(1087, '2019-06-29', 7, '2019-06-29 08:07:47', '2019-06-29 14:17:11'),
(1088, '2019-06-29', 12, '2019-06-29 08:10:23', NULL),
(1089, '2019-06-29', 15, '2019-06-29 08:15:34', '2019-06-29 14:11:53'),
(1090, '2019-06-29', 9, '2019-06-29 08:16:01', '2019-06-29 12:08:31'),
(1091, '2019-06-29', 6, '2019-06-29 08:17:03', '2019-06-29 14:13:01'),
(1092, '2019-06-29', 4, '2019-06-29 08:17:12', '2019-06-29 14:11:00'),
(1093, '2019-06-29', 14, '2019-06-29 08:17:45', NULL),
(1094, '2019-06-29', 13, '2019-06-29 08:22:25', '2019-06-29 14:11:04'),
(1095, '2019-06-29', 11, '2019-06-29 08:23:59', '2019-06-29 14:10:51'),
(1096, '2019-06-29', 2, '2019-06-29 08:26:26', '2019-06-29 14:12:29'),
(1097, '2019-06-29', 16, '2019-06-29 08:26:31', '2019-06-29 14:11:58'),
(1098, '2019-06-29', 17, '2019-06-29 08:31:33', '2019-06-29 14:11:51'),
(1099, '2019-06-29', 18, '2019-06-29 09:15:44', '2019-06-29 12:47:13'),
(1100, '2019-06-30', 14, '2019-06-30 07:44:52', '2019-06-30 14:12:47'),
(1101, '2019-06-30', 10, '2019-06-30 07:53:33', '2019-06-30 14:07:11'),
(1102, '2019-06-30', 8, '2019-06-30 08:06:54', '2019-06-30 14:04:05'),
(1103, '2019-06-30', 15, '2019-06-30 08:10:13', '2019-06-30 14:16:53'),
(1104, '2019-06-30', 7, '2019-06-30 08:16:26', '2019-06-30 14:12:45'),
(1105, '2019-06-30', 6, '2019-06-30 08:17:46', '2019-06-30 14:17:20'),
(1106, '2019-06-30', 13, '2019-06-30 08:17:51', '2019-06-30 14:15:14'),
(1107, '2019-06-30', 4, '2019-06-30 08:18:20', '2019-06-30 14:17:03'),
(1108, '2019-06-30', 11, '2019-06-30 08:18:47', '2019-06-30 14:13:00'),
(1109, '2019-06-30', 9, '2019-06-30 08:20:30', '2019-06-30 14:12:53'),
(1110, '2019-06-30', 16, '2019-06-30 08:22:53', '2019-06-30 14:17:15'),
(1111, '2019-06-30', 2, '2019-06-30 08:23:11', '2019-06-30 14:17:05'),
(1112, '2019-07-01', 10, '2019-07-01 07:59:30', '2019-07-01 14:00:14'),
(1113, '2019-07-01', 12, '2019-07-01 08:09:14', NULL),
(1114, '2019-07-01', 7, '2019-07-01 08:09:52', NULL),
(1115, '2019-07-01', 8, '2019-07-01 08:10:41', NULL),
(1116, '2019-07-01', 15, '2019-07-01 08:11:13', '2019-07-01 14:00:07'),
(1117, '2019-07-01', 4, '2019-07-01 08:13:09', '2019-07-01 14:01:00'),
(1118, '2019-07-01', 6, '2019-07-01 08:13:35', '2019-07-01 10:03:11'),
(1119, '2019-07-01', 17, '2019-07-01 08:15:20', '2019-07-01 14:00:26'),
(1120, '2019-07-01', 13, '2019-07-01 08:19:17', '2019-07-01 14:00:07'),
(1121, '2019-07-01', 9, '2019-07-01 08:20:54', '2019-07-01 14:00:22'),
(1122, '2019-07-01', 16, '2019-07-01 08:21:11', NULL),
(1123, '2019-07-01', 2, '2019-07-01 08:21:26', NULL),
(1124, '2019-07-01', 14, '2019-07-01 08:23:17', NULL),
(1125, '2019-07-02', 10, '2019-07-02 08:01:47', NULL),
(1126, '2019-07-02', 15, '2019-07-02 08:08:14', NULL),
(1127, '2019-07-02', 7, '2019-07-02 08:11:48', NULL),
(1128, '2019-07-02', 13, '2019-07-02 08:12:56', '2019-07-02 14:19:54'),
(1129, '2019-07-02', 8, '2019-07-02 08:14:32', '2019-07-02 14:26:06'),
(1130, '2019-07-02', 6, '2019-07-02 08:15:45', '2019-07-02 12:11:17'),
(1131, '2019-07-02', 4, '2019-07-02 08:15:50', NULL),
(1132, '2019-07-02', 16, '2019-07-02 08:16:41', NULL),
(1133, '2019-07-02', 2, '2019-07-02 08:16:53', NULL),
(1134, '2019-07-02', 17, '2019-07-02 08:17:44', '2019-07-02 14:19:38'),
(1135, '2019-07-02', 11, '2019-07-02 08:19:29', '2019-07-02 14:25:38'),
(1136, '2019-07-02', 9, '2019-07-02 08:31:46', '2019-07-02 14:20:01'),
(1137, '2019-07-03', 8, '2019-07-03 08:04:01', NULL),
(1138, '2019-07-03', 10, '2019-07-03 08:05:11', '2019-07-03 12:58:52'),
(1139, '2019-07-03', 7, '2019-07-03 08:14:19', NULL),
(1140, '2019-07-03', 4, '2019-07-03 08:18:45', NULL),
(1141, '2019-07-03', 6, '2019-07-03 08:18:50', NULL),
(1142, '2019-07-03', 9, '2019-07-03 08:19:38', '2019-07-03 12:59:02'),
(1143, '2019-07-03', 15, '2019-07-03 08:20:22', '2019-07-03 12:58:51'),
(1144, '2019-07-03', 13, '2019-07-03 08:22:31', '2019-07-03 12:59:46'),
(1145, '2019-07-03', 11, '2019-07-03 08:22:48', '2019-07-03 12:59:06'),
(1146, '2019-07-03', 16, '2019-07-03 08:23:03', NULL),
(1147, '2019-07-03', 2, '2019-07-03 08:23:23', NULL),
(1148, '2019-07-06', 10, '2019-07-06 07:53:27', '2019-07-06 14:19:48'),
(1149, '2019-07-06', 7, '2019-07-06 08:08:00', '2019-07-06 14:19:53'),
(1150, '2019-07-06', 12, '2019-07-06 08:10:07', NULL),
(1151, '2019-07-06', 8, '2019-07-06 08:10:14', NULL),
(1152, '2019-07-06', 15, '2019-07-06 08:13:41', '2019-07-06 14:19:21'),
(1153, '2019-07-06', 17, '2019-07-06 08:16:44', '2019-07-06 14:19:43'),
(1154, '2019-07-06', 4, '2019-07-06 08:18:20', '2019-07-06 14:20:14'),
(1155, '2019-07-06', 6, '2019-07-06 08:18:28', '2019-07-06 14:20:03'),
(1156, '2019-07-06', 11, '2019-07-06 08:25:01', '2019-07-06 14:19:41'),
(1157, '2019-07-06', 9, '2019-07-06 08:26:07', '2019-07-06 14:20:07'),
(1158, '2019-07-06', 16, '2019-07-06 08:28:41', '2019-07-06 14:20:24'),
(1159, '2019-07-06', 2, '2019-07-06 08:34:49', '2019-07-06 14:20:19'),
(1160, '2019-07-06', 13, '2019-07-06 08:39:04', '2019-07-06 14:19:18'),
(1161, '2019-07-06', 18, '2019-07-06 09:13:54', '2019-07-06 12:46:45'),
(1162, '2019-07-07', 10, '2019-07-07 07:59:45', '2019-07-07 13:05:39'),
(1163, '2019-07-07', 4, '2019-07-07 08:01:05', '2019-07-07 13:20:42'),
(1164, '2019-07-07', 17, '2019-07-07 08:04:23', '2019-07-07 13:05:34'),
(1165, '2019-07-07', 8, '2019-07-07 08:05:50', '2019-07-07 13:18:46'),
(1166, '2019-07-07', 6, '2019-07-07 08:09:37', '2019-07-07 13:06:14'),
(1167, '2019-07-07', 15, '2019-07-07 08:13:29', '2019-07-07 13:20:26'),
(1168, '2019-07-07', 19, '2019-07-07 08:13:37', NULL),
(1169, '2019-07-07', 9, '2019-07-07 08:13:48', '2019-07-07 13:10:28'),
(1170, '2019-07-07', 7, '2019-07-07 08:14:05', '2019-07-07 13:18:47'),
(1171, '2019-07-07', 13, '2019-07-07 08:16:23', '2019-07-07 13:10:50'),
(1172, '2019-07-07', 11, '2019-07-07 08:22:32', '2019-07-07 13:10:24'),
(1173, '2019-07-07', 16, '2019-07-07 08:22:55', '2019-07-07 13:24:14'),
(1174, '2019-07-07', 2, '2019-07-07 08:24:49', '2019-07-07 13:25:35'),
(1175, '2019-07-08', 10, '2019-07-08 07:50:42', NULL),
(1176, '2019-07-08', 4, '2019-07-08 07:59:27', '2019-07-08 12:49:43'),
(1177, '2019-07-08', 12, '2019-07-08 08:10:51', NULL),
(1178, '2019-07-08', 8, '2019-07-08 08:11:20', NULL),
(1179, '2019-07-08', 13, '2019-07-08 08:11:48', '2019-07-08 12:46:45'),
(1180, '2019-07-08', 6, '2019-07-08 08:12:11', '2019-07-08 12:49:44'),
(1181, '2019-07-08', 15, '2019-07-08 08:12:17', '2019-07-08 12:34:13'),
(1182, '2019-07-08', 19, '2019-07-08 08:12:45', '2019-07-08 12:34:11'),
(1183, '2019-07-08', 17, '2019-07-08 08:15:27', '2019-07-08 12:38:22'),
(1184, '2019-07-08', 9, '2019-07-08 08:17:06', '2019-07-08 13:43:08'),
(1185, '2019-07-08', 16, '2019-07-08 08:19:20', '2019-07-08 12:29:41'),
(1186, '2019-07-08', 7, '2019-07-08 08:19:53', NULL),
(1187, '2019-07-08', 2, '2019-07-08 08:20:13', '2019-07-08 12:29:41'),
(1188, '2019-07-08', 11, '2019-07-08 08:22:11', NULL),
(1189, '2019-07-10', 10, '2019-07-10 07:56:50', '2019-07-10 13:25:57'),
(1190, '2019-07-10', 13, '2019-07-10 08:00:43', '2019-07-10 13:56:38'),
(1191, '2019-07-10', 4, '2019-07-10 08:03:06', '2019-07-10 14:11:36'),
(1192, '2019-07-10', 6, '2019-07-10 08:03:15', '2019-07-10 14:11:37'),
(1193, '2019-07-10', 8, '2019-07-10 08:10:03', NULL),
(1194, '2019-07-10', 7, '2019-07-10 08:10:57', NULL),
(1195, '2019-07-10', 15, '2019-07-10 08:14:54', '2019-07-10 13:59:15'),
(1196, '2019-07-10', 19, '2019-07-10 08:15:19', '2019-07-10 14:01:04'),
(1197, '2019-07-10', 17, '2019-07-10 08:17:16', '2019-07-10 14:02:23'),
(1198, '2019-07-10', 9, '2019-07-10 08:21:02', '2019-07-10 13:52:50'),
(1199, '2019-07-10', 2, '2019-07-10 08:24:20', '2019-07-10 14:03:01'),
(1200, '2019-07-10', 16, '2019-07-10 08:24:48', '2019-07-10 14:02:54'),
(1201, '2019-07-10', 12, '2019-07-10 08:31:37', NULL),
(1202, '2019-07-10', 11, '2019-07-10 14:03:21', NULL),
(1203, '2019-07-13', 4, '2019-07-13 08:03:03', NULL),
(1204, '2019-07-13', 6, '2019-07-13 08:03:16', NULL),
(1205, '2019-07-13', 7, '2019-07-13 08:11:43', '2019-07-13 14:02:43'),
(1206, '2019-07-13', 12, '2019-07-13 08:17:02', NULL),
(1207, '2019-07-13', 9, '2019-07-13 08:17:23', '2019-07-13 14:02:28'),
(1208, '2019-07-13', 11, '2019-07-13 08:17:28', NULL),
(1209, '2019-07-13', 13, '2019-07-13 08:18:23', '2019-07-13 14:01:58'),
(1210, '2019-07-13', 8, '2019-07-13 08:18:59', NULL),
(1211, '2019-07-13', 19, '2019-07-13 08:27:10', '2019-07-13 14:02:08'),
(1212, '2019-07-13', 15, '2019-07-13 08:27:14', '2019-07-13 14:01:58'),
(1213, '2019-07-13', 17, '2019-07-13 08:35:48', '2019-07-13 14:02:15'),
(1214, '2019-07-13', 16, '2019-07-13 08:59:05', NULL),
(1215, '2019-07-13', 18, '2019-07-13 09:12:22', '2019-07-13 12:46:13'),
(1216, '2019-07-13', 2, '2019-07-13 11:56:38', NULL),
(1217, '2019-07-14', 10, '2019-07-14 07:52:05', '2019-07-14 13:25:49'),
(1218, '2019-07-14', 9, '2019-07-14 08:04:49', '2019-07-14 13:37:43'),
(1219, '2019-07-14', 13, '2019-07-14 08:06:42', '2019-07-14 13:25:48'),
(1220, '2019-07-14', 7, '2019-07-14 08:07:53', '2019-07-14 13:40:15'),
(1221, '2019-07-14', 6, '2019-07-14 08:08:08', '2019-07-14 13:38:23'),
(1222, '2019-07-14', 4, '2019-07-14 08:08:13', '2019-07-14 13:38:06'),
(1223, '2019-07-14', 19, '2019-07-14 08:10:27', '2019-07-14 13:27:03'),
(1224, '2019-07-14', 11, '2019-07-14 08:19:44', '2019-07-14 13:37:37'),
(1225, '2019-07-14', 16, '2019-07-14 08:24:13', '2019-07-14 13:46:26'),
(1226, '2019-07-14', 2, '2019-07-14 08:24:20', '2019-07-14 13:46:24'),
(1227, '2019-07-15', 10, '2019-07-15 07:53:17', '2019-07-15 13:12:56'),
(1228, '2019-07-15', 13, '2019-07-15 08:04:37', '2019-07-15 13:12:05'),
(1229, '2019-07-15', 4, '2019-07-15 08:05:15', '2019-07-15 13:32:41'),
(1230, '2019-07-15', 6, '2019-07-15 08:05:21', '2019-07-15 13:32:24'),
(1231, '2019-07-15', 7, '2019-07-15 08:07:15', '2019-07-15 13:22:36'),
(1232, '2019-07-15', 17, '2019-07-15 08:10:23', '2019-07-15 13:13:01'),
(1233, '2019-07-15', 19, '2019-07-15 08:11:36', NULL),
(1234, '2019-07-15', 15, '2019-07-15 08:11:42', '2019-07-15 13:14:32'),
(1235, '2019-07-15', 9, '2019-07-15 08:11:47', '2019-07-15 13:23:21'),
(1236, '2019-07-15', 8, '2019-07-15 08:11:55', NULL),
(1237, '2019-07-15', 12, '2019-07-15 08:16:31', NULL),
(1238, '2019-07-15', 16, '2019-07-15 08:17:39', '2019-07-15 13:33:11'),
(1239, '2019-07-15', 11, '2019-07-15 08:19:42', '2019-07-15 13:22:16'),
(1240, '2019-07-15', 2, '2019-07-15 08:20:08', '2019-07-15 13:44:17'),
(1241, '2019-07-16', 10, '2019-07-16 07:53:22', '2019-07-16 12:47:01'),
(1242, '2019-07-16', 13, '2019-07-16 08:05:07', '2019-07-16 12:46:46'),
(1243, '2019-07-16', 7, '2019-07-16 08:08:48', '2019-07-16 12:48:29'),
(1244, '2019-07-16', 15, '2019-07-16 08:09:47', '2019-07-16 12:47:37'),
(1245, '2019-07-16', 19, '2019-07-16 08:09:53', '2019-07-16 12:47:09'),
(1246, '2019-07-16', 6, '2019-07-16 08:09:59', NULL),
(1247, '2019-07-16', 4, '2019-07-16 08:10:04', NULL),
(1248, '2019-07-16', 8, '2019-07-16 08:10:53', '2019-07-16 12:49:31'),
(1249, '2019-07-16', 9, '2019-07-16 08:13:28', NULL),
(1250, '2019-07-16', 17, '2019-07-16 08:18:11', '2019-07-16 12:47:16'),
(1251, '2019-07-16', 11, '2019-07-16 08:19:42', NULL),
(1252, '2019-07-16', 16, '2019-07-16 08:22:52', NULL),
(1253, '2019-07-16', 2, '2019-07-16 08:23:04', NULL),
(1254, '2019-07-17', 7, '2019-07-17 08:06:27', '2019-07-17 13:09:25'),
(1255, '2019-07-17', 4, '2019-07-17 08:08:22', '2019-07-17 13:09:42'),
(1256, '2019-07-17', 6, '2019-07-17 08:08:35', '2019-07-17 13:09:47'),
(1257, '2019-07-17', 10, '2019-07-17 08:10:04', '2019-07-17 13:02:59'),
(1258, '2019-07-17', 8, '2019-07-17 08:10:09', '2019-07-17 13:02:05'),
(1259, '2019-07-17', 13, '2019-07-17 08:11:25', '2019-07-17 13:03:04'),
(1260, '2019-07-17', 9, '2019-07-17 08:13:49', '2019-07-17 13:09:35'),
(1261, '2019-07-17', 15, '2019-07-17 08:14:40', '2019-07-17 13:02:49'),
(1262, '2019-07-17', 19, '2019-07-17 08:14:57', '2019-07-17 13:02:53'),
(1263, '2019-07-17', 17, '2019-07-17 08:15:22', '2019-07-17 13:02:39'),
(1264, '2019-07-17', 12, '2019-07-17 08:15:58', NULL),
(1265, '2019-07-17', 11, '2019-07-17 08:16:23', '2019-07-17 13:09:31'),
(1266, '2019-07-17', 16, '2019-07-17 08:18:50', '2019-07-17 12:59:40'),
(1267, '2019-07-17', 2, '2019-07-17 08:20:30', '2019-07-17 13:00:06'),
(1268, '2019-07-20', 10, '2019-07-20 07:47:44', '2019-07-20 14:10:43'),
(1269, '2019-07-20', 14, '2019-07-20 08:03:45', '2019-07-20 14:14:48'),
(1270, '2019-07-20', 4, '2019-07-20 08:07:15', '2019-07-20 12:16:06'),
(1271, '2019-07-20', 15, '2019-07-20 08:10:41', '2019-07-20 14:11:04'),
(1272, '2019-07-20', 19, '2019-07-20 08:10:48', '2019-07-20 14:11:16'),
(1273, '2019-07-20', 7, '2019-07-20 08:11:25', '2019-07-20 14:14:49'),
(1274, '2019-07-20', 11, '2019-07-20 08:13:13', '2019-07-20 14:10:54'),
(1275, '2019-07-20', 8, '2019-07-20 08:14:04', '2019-07-20 14:11:08'),
(1276, '2019-07-20', 9, '2019-07-20 08:15:46', '2019-07-20 14:11:13'),
(1277, '2019-07-20', 13, '2019-07-20 08:17:54', '2019-07-20 14:10:42'),
(1278, '2019-07-20', 2, '2019-07-20 08:21:16', '2019-07-20 14:11:26'),
(1279, '2019-07-20', 16, '2019-07-20 08:21:22', '2019-07-20 14:11:43'),
(1280, '2019-07-20', 17, '2019-07-20 08:34:01', '2019-07-20 14:10:56'),
(1281, '2019-07-20', 18, '2019-07-20 09:09:31', '2019-07-20 12:48:02'),
(1282, '2019-07-21', 14, '2019-07-21 07:53:24', '2019-07-21 13:22:43'),
(1283, '2019-07-21', 7, '2019-07-21 08:03:54', '2019-07-21 13:20:05'),
(1284, '2019-07-21', 4, '2019-07-21 08:04:20', '2019-07-21 13:19:42'),
(1285, '2019-07-21', 8, '2019-07-21 08:07:26', '2019-07-21 13:19:18'),
(1286, '2019-07-21', 10, '2019-07-21 08:07:59', '2019-07-21 13:19:36'),
(1287, '2019-07-21', 13, '2019-07-21 08:11:16', '2019-07-21 13:26:15'),
(1288, '2019-07-21', 15, '2019-07-21 08:11:38', '2019-07-21 10:15:56'),
(1289, '2019-07-21', 9, '2019-07-21 08:12:01', '2019-07-21 13:34:26'),
(1290, '2019-07-21', 19, '2019-07-21 08:12:18', NULL),
(1291, '2019-07-21', 17, '2019-07-21 08:15:39', NULL),
(1292, '2019-07-21', 11, '2019-07-21 08:18:28', '2019-07-21 13:33:22'),
(1293, '2019-07-21', 16, '2019-07-21 08:18:40', '2019-07-21 13:37:10'),
(1294, '2019-07-21', 2, '2019-07-21 08:19:07', '2019-07-21 13:37:58'),
(1295, '2019-07-22', 14, '2019-07-22 07:57:06', '2019-07-22 13:29:24'),
(1296, '2019-07-22', 7, '2019-07-22 08:05:36', '2019-07-22 13:28:52'),
(1297, '2019-07-22', 10, '2019-07-22 08:07:26', '2019-07-22 13:21:12'),
(1298, '2019-07-22', 4, '2019-07-22 08:07:58', '2019-07-22 13:28:33'),
(1299, '2019-07-22', 8, '2019-07-22 08:10:47', '2019-07-22 13:28:32'),
(1300, '2019-07-22', 15, '2019-07-22 08:11:22', '2019-07-22 13:32:08'),
(1301, '2019-07-22', 19, '2019-07-22 08:11:53', '2019-07-22 13:29:14'),
(1302, '2019-07-22', 13, '2019-07-22 08:12:35', '2019-07-22 13:32:04'),
(1303, '2019-07-22', 9, '2019-07-22 08:15:45', NULL),
(1304, '2019-07-22', 2, '2019-07-22 08:18:39', '2019-07-22 13:34:40'),
(1305, '2019-07-22', 16, '2019-07-22 08:19:09', '2019-07-22 13:33:48'),
(1306, '2019-07-22', 11, '2019-07-22 08:20:16', NULL),
(1307, '2019-07-22', 17, '2019-07-22 09:17:58', '2019-07-22 12:34:50'),
(1308, '2019-07-23', 7, '2019-07-23 08:02:34', NULL),
(1309, '2019-07-23', 14, '2019-07-23 08:04:04', '2019-07-23 13:14:53'),
(1310, '2019-07-23', 10, '2019-07-23 08:07:20', '2019-07-23 12:38:45'),
(1311, '2019-07-23', 4, '2019-07-23 08:09:53', '2019-07-23 13:15:11'),
(1312, '2019-07-23', 8, '2019-07-23 08:11:48', '2019-07-23 13:15:16'),
(1313, '2019-07-23', 13, '2019-07-23 08:14:15', '2019-07-23 13:35:39'),
(1314, '2019-07-23', 15, '2019-07-23 08:14:39', NULL),
(1315, '2019-07-23', 19, '2019-07-23 08:14:46', '2019-07-23 13:14:21'),
(1316, '2019-07-23', 11, '2019-07-23 08:15:17', '2019-07-23 13:39:45'),
(1317, '2019-07-23', 9, '2019-07-23 08:15:21', '2019-07-23 13:39:42'),
(1318, '2019-07-23', 16, '2019-07-23 08:22:29', '2019-07-23 13:33:54'),
(1319, '2019-07-23', 2, '2019-07-23 08:22:46', '2019-07-23 13:33:53'),
(1320, '2019-07-23', 17, '2019-07-23 08:52:56', '2019-07-23 13:14:25'),
(1321, '2019-07-24', 14, '2019-07-24 07:55:38', '2019-07-24 13:32:30'),
(1322, '2019-07-24', 10, '2019-07-24 08:03:10', '2019-07-24 13:28:36'),
(1323, '2019-07-24', 9, '2019-07-24 08:03:28', '2019-07-24 13:39:12'),
(1324, '2019-07-24', 7, '2019-07-24 08:04:07', '2019-07-24 13:32:23'),
(1325, '2019-07-24', 4, '2019-07-24 08:04:32', '2019-07-24 13:32:17'),
(1326, '2019-07-24', 8, '2019-07-24 08:08:51', '2019-07-24 13:32:11'),
(1327, '2019-07-24', 13, '2019-07-24 08:12:26', '2019-07-24 13:28:33'),
(1328, '2019-07-24', 15, '2019-07-24 08:13:46', '2019-07-24 13:28:32'),
(1329, '2019-07-24', 19, '2019-07-24 08:14:15', '2019-07-24 13:30:30'),
(1330, '2019-07-24', 11, '2019-07-24 08:16:13', '2019-07-24 13:39:44'),
(1331, '2019-07-24', 17, '2019-07-24 08:21:25', '2019-07-24 13:28:47'),
(1332, '2019-07-24', 2, '2019-07-24 08:23:15', '2019-07-24 13:40:05'),
(1333, '2019-07-24', 16, '2019-07-24 08:23:19', '2019-07-24 13:39:33'),
(1334, '2019-07-27', 4, '2019-07-27 07:56:15', '2019-07-27 14:10:57'),
(1335, '2019-07-27', 10, '2019-07-27 08:02:10', '2019-07-27 14:10:04'),
(1336, '2019-07-27', 7, '2019-07-27 08:05:43', '2019-07-27 14:12:41'),
(1337, '2019-07-27', 14, '2019-07-27 08:09:01', '2019-07-27 14:12:25'),
(1338, '2019-07-27', 11, '2019-07-27 08:13:28', '2019-07-27 14:10:38'),
(1339, '2019-07-27', 9, '2019-07-27 08:15:39', '2019-07-27 14:10:07'),
(1340, '2019-07-27', 13, '2019-07-27 08:16:13', '2019-07-27 14:10:11'),
(1341, '2019-07-27', 15, '2019-07-27 08:17:22', '2019-07-27 14:10:24'),
(1342, '2019-07-27', 19, '2019-07-27 08:17:27', '2019-07-27 14:10:51'),
(1343, '2019-07-27', 16, '2019-07-27 08:21:39', '2019-07-27 14:12:31'),
(1344, '2019-07-27', 2, '2019-07-27 08:21:50', '2019-07-27 14:12:36'),
(1345, '2019-07-27', 17, '2019-07-27 08:25:09', '2019-07-27 14:10:40'),
(1346, '2019-07-27', 18, '2019-07-27 09:11:07', '2019-07-27 12:48:22'),
(1347, '2019-07-28', 14, '2019-07-28 07:48:46', '2019-07-28 13:29:25'),
(1348, '2019-07-28', 4, '2019-07-28 08:06:17', '2019-07-28 13:11:13'),
(1349, '2019-07-28', 10, '2019-07-28 08:06:37', '2019-07-28 13:11:40'),
(1350, '2019-07-28', 7, '2019-07-28 08:07:39', '2019-07-28 13:29:50'),
(1351, '2019-07-28', 8, '2019-07-28 08:08:13', '2019-07-28 13:27:33'),
(1352, '2019-07-28', 11, '2019-07-28 08:12:49', '2019-07-28 13:29:31'),
(1353, '2019-07-28', 17, '2019-07-28 08:13:50', '2019-07-28 13:11:09'),
(1354, '2019-07-28', 15, '2019-07-28 08:14:40', '2019-07-28 13:11:07'),
(1355, '2019-07-28', 19, '2019-07-28 08:14:55', '2019-07-28 13:11:18'),
(1356, '2019-07-28', 9, '2019-07-28 08:15:00', '2019-07-28 13:27:36'),
(1357, '2019-07-28', 16, '2019-07-28 08:18:05', '2019-07-28 13:29:39'),
(1358, '2019-07-28', 2, '2019-07-28 08:18:26', '2019-07-28 13:31:12'),
(1359, '2019-07-28', 13, '2019-07-28 08:21:49', '2019-07-28 13:11:06'),
(1360, '2019-07-29', 14, '2019-07-29 07:58:40', '2019-07-29 13:47:39'),
(1361, '2019-07-29', 7, '2019-07-29 08:08:12', '2019-07-29 13:47:12'),
(1362, '2019-07-29', 4, '2019-07-29 08:11:02', '2019-07-29 13:47:44'),
(1363, '2019-07-29', 17, '2019-07-29 08:12:14', '2019-07-29 13:46:43'),
(1364, '2019-07-29', 9, '2019-07-29 08:14:36', '2019-07-29 13:42:09'),
(1365, '2019-07-29', 15, '2019-07-29 08:15:06', '2019-07-29 13:46:41'),
(1366, '2019-07-29', 19, '2019-07-29 08:15:22', '2019-07-29 13:46:46'),
(1367, '2019-07-29', 11, '2019-07-29 08:16:02', '2019-07-29 13:47:33'),
(1368, '2019-07-29', 16, '2019-07-29 08:16:07', '2019-07-29 13:50:06'),
(1369, '2019-07-29', 2, '2019-07-29 08:16:22', '2019-07-29 13:50:02'),
(1370, '2019-07-29', 8, '2019-07-29 08:16:35', '2019-07-29 13:43:37'),
(1371, '2019-07-29', 13, '2019-07-29 08:17:10', '2019-07-29 13:43:46'),
(1372, '2019-07-30', 10, '2019-07-30 07:53:45', '2019-07-30 13:09:26'),
(1373, '2019-07-30', 14, '2019-07-30 07:59:07', '2019-07-30 13:13:08'),
(1374, '2019-07-30', 15, '2019-07-30 08:09:35', '2019-07-30 13:12:33'),
(1375, '2019-07-30', 19, '2019-07-30 08:09:50', '2019-07-30 13:13:19'),
(1376, '2019-07-30', 8, '2019-07-30 08:10:53', NULL),
(1377, '2019-07-30', 17, '2019-07-30 08:12:00', '2019-07-30 13:09:42'),
(1378, '2019-07-30', 9, '2019-07-30 08:13:42', NULL),
(1379, '2019-07-30', 13, '2019-07-30 08:14:10', '2019-07-30 13:07:52'),
(1380, '2019-07-30', 4, '2019-07-30 08:14:17', '2019-07-30 13:12:31'),
(1381, '2019-07-30', 7, '2019-07-30 08:15:58', NULL),
(1382, '2019-07-30', 11, '2019-07-30 08:18:27', '2019-07-30 13:20:35'),
(1383, '2019-07-30', 16, '2019-07-30 08:32:42', NULL),
(1384, '2019-07-30', 2, '2019-07-30 08:33:06', NULL),
(1385, '2019-07-31', 10, '2019-07-31 08:01:36', '2019-07-31 12:36:33'),
(1386, '2019-07-31', 8, '2019-07-31 08:10:51', NULL),
(1387, '2019-07-31', 7, '2019-07-31 08:10:56', '2019-07-31 14:02:43'),
(1388, '2019-07-31', 4, '2019-07-31 08:11:59', '2019-07-31 14:03:38'),
(1389, '2019-07-31', 15, '2019-07-31 08:12:04', NULL),
(1390, '2019-07-31', 19, '2019-07-31 08:12:18', '2019-07-31 14:14:16'),
(1391, '2019-07-31', 14, '2019-07-31 08:12:31', '2019-07-31 14:05:46'),
(1392, '2019-07-31', 9, '2019-07-31 08:15:36', '2019-07-31 14:02:36'),
(1393, '2019-07-31', 13, '2019-07-31 08:16:33', '2019-07-31 14:00:19'),
(1394, '2019-07-31', 11, '2019-07-31 08:19:12', '2019-07-31 14:03:29'),
(1395, '2019-07-31', 17, '2019-07-31 08:23:18', '2019-07-31 12:37:07'),
(1396, '2019-07-31', 16, '2019-07-31 08:26:28', NULL),
(1397, '2019-07-31', 2, '2019-07-31 08:26:59', NULL),
(1398, '2019-07-31', 12, '2019-07-31 09:05:48', NULL),
(1399, '2019-08-03', 10, '2019-08-03 08:00:36', '2019-08-03 13:06:48'),
(1400, '2019-08-03', 14, '2019-08-03 08:05:47', NULL),
(1401, '2019-08-03', 13, '2019-08-03 08:07:07', '2019-08-03 13:06:58'),
(1402, '2019-08-03', 4, '2019-08-03 08:08:42', '2019-08-03 13:07:19'),
(1403, '2019-08-03', 15, '2019-08-03 08:11:47', '2019-08-03 13:06:49'),
(1404, '2019-08-03', 19, '2019-08-03 08:11:54', '2019-08-03 13:07:26'),
(1405, '2019-08-03', 8, '2019-08-03 08:12:38', '2019-08-03 13:07:31'),
(1406, '2019-08-03', 7, '2019-08-03 08:14:30', '2019-08-03 13:07:13'),
(1407, '2019-08-03', 11, '2019-08-03 08:20:23', '2019-08-03 13:07:41'),
(1408, '2019-08-03', 17, '2019-08-03 08:21:41', NULL),
(1409, '2019-08-03', 9, '2019-08-03 08:21:47', '2019-08-03 13:07:44'),
(1410, '2019-08-03', 16, '2019-08-03 08:36:08', '2019-08-03 13:11:36'),
(1411, '2019-08-03', 2, '2019-08-03 08:36:51', '2019-08-03 13:11:31'),
(1412, '2019-08-03', 18, '2019-08-03 09:06:10', NULL),
(1413, '2019-08-04', 10, '2019-08-04 07:51:21', '2019-08-04 12:19:14'),
(1414, '2019-08-04', 14, '2019-08-04 07:52:04', NULL),
(1415, '2019-08-04', 4, '2019-08-04 08:04:28', NULL),
(1416, '2019-08-04', 6, '2019-08-04 08:04:35', NULL),
(1417, '2019-08-04', 13, '2019-08-04 08:08:25', '2019-08-04 13:04:45'),
(1418, '2019-08-04', 8, '2019-08-04 08:15:00', '2019-08-04 13:03:27'),
(1419, '2019-08-04', 15, '2019-08-04 08:15:55', '2019-08-04 13:03:29'),
(1420, '2019-08-04', 19, '2019-08-04 08:16:01', '2019-08-04 13:04:01'),
(1421, '2019-08-04', 9, '2019-08-04 08:16:05', '2019-08-04 13:03:34'),
(1422, '2019-08-04', 7, '2019-08-04 08:16:18', NULL),
(1423, '2019-08-04', 11, '2019-08-04 08:18:11', NULL),
(1424, '2019-08-04', 16, '2019-08-04 08:25:01', NULL),
(1425, '2019-08-04', 2, '2019-08-04 08:25:12', NULL),
(1426, '2019-08-05', 13, '2019-08-05 08:01:48', NULL),
(1427, '2019-08-05', 4, '2019-08-05 08:05:39', NULL),
(1428, '2019-08-05', 6, '2019-08-05 08:05:47', NULL),
(1429, '2019-08-05', 8, '2019-08-05 08:09:36', NULL),
(1430, '2019-08-05', 7, '2019-08-05 08:10:19', NULL),
(1431, '2019-08-05', 9, '2019-08-05 08:17:10', NULL),
(1432, '2019-08-05', 15, '2019-08-05 08:17:13', NULL),
(1433, '2019-08-05', 19, '2019-08-05 08:17:41', NULL),
(1434, '2019-08-05', 11, '2019-08-05 08:19:04', NULL),
(1435, '2019-08-05', 17, '2019-08-05 08:21:45', NULL),
(1436, '2019-08-05', 16, '2019-08-05 08:31:40', NULL),
(1437, '2019-08-05', 2, '2019-08-05 08:32:06', NULL),
(1438, '2019-08-05', 14, '2019-08-05 08:46:36', NULL),
(1439, '2019-08-05', 10, '2019-08-05 08:58:07', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `teacher_class_section`
--
CREATE TABLE `teacher_class_section` (
`id` int(11) NOT NULL,
`teacher_id` int(11) NOT NULL,
`class_id` int(11) NOT NULL,
`section_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `teacher_class_section`
--
INSERT INTO `teacher_class_section` (`id`, `teacher_id`, `class_id`, `section_id`) VALUES
(1, 1, 3, 1),
(2, 2, 1, 1),
(3, 3, 3, 1),
(4, 4, 4, 1),
(5, 5, 5, 1),
(6, 6, 2, 1),
(7, 7, 5, 1),
(8, 8, 6, 1),
(9, 9, 2, 1),
(10, 10, 2, 1),
(11, 11, 1, 1),
(12, 12, 4, 1),
(13, 13, 1, 1),
(14, 14, 7, 1),
(15, 15, 3, 1),
(16, 16, 5, 1),
(17, 17, 3, 1),
(18, 18, 5, 1),
(19, 19, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) 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`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Admin', '<EMAIL>', '$2y$10$4VISvfCapdWsbojmiDPINegIxlcrZgd7qEqmPZiPjSTC95AMX/boC', 'spfRcZhJBXuLDvQ3KvpO77KFs1sVycKfi49pAMHvXgNeRoGSzeD2EZDzzrqh', NULL, '2018-12-03 06:08:41'),
(2, 'Admin', '<EMAIL>', <PASSWORD>', 'GSC6MwZlxotMDJhE5Jl98Yejd1jdXCL7ZQpWw8uWfmY3ARnQY88nqtlG4fmb', '2018-04-10 23:23:55', '2018-12-25 16:29:40'),
(4, 'ADMIN', '<EMAIL>', <PASSWORD>', 'pLpcGPgyxIGSIkzbIoTtUc2eKWJSloGOxA9tSPbhLgxyauUd9K5aVQJlnGut', NULL, '2019-02-09 06:50:55');
-- --------------------------------------------------------
--
-- Table structure for table `vans`
--
CREATE TABLE `vans` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`description` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `vans`
--
INSERT INTO `vans` (`id`, `name`, `description`) VALUES
(1, 'Van 1', NULL),
(2, 'Van 2', NULL),
(3, 'Van 3', NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `classes`
--
ALTER TABLE `classes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `members`
--
ALTER TABLE `members`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `metric_id_type`
--
ALTER TABLE `metric_id_type`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_access_tokens`
--
ALTER TABLE `oauth_access_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_access_tokens_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_auth_codes`
--
ALTER TABLE `oauth_auth_codes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_clients_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`);
--
-- Indexes for table `oauth_refresh_tokens`
--
ALTER TABLE `oauth_refresh_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`);
--
-- Indexes for table `parents`
--
ALTER TABLE `parents`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `parents_mobile_no_unique` (`mobile_no`);
--
-- 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 `sections`
--
ALTER TABLE `sections`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sms_logs`
--
ALTER TABLE `sms_logs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sms_templates`
--
ALTER TABLE `sms_templates`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `staffs`
--
ALTER TABLE `staffs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `staff_attendance`
--
ALTER TABLE `staff_attendance`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `students`
--
ALTER TABLE `students`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_attendance`
--
ALTER TABLE `student_attendance`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_class_section`
--
ALTER TABLE `student_class_section`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_van`
--
ALTER TABLE `student_van`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `teachers`
--
ALTER TABLE `teachers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `teacher_attendance`
--
ALTER TABLE `teacher_attendance`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `teacher_class_section`
--
ALTER TABLE `teacher_class_section`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `vans`
--
ALTER TABLE `vans`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `classes`
--
ALTER TABLE `classes`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `members`
--
ALTER TABLE `members`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `metric_id_type`
--
ALTER TABLE `metric_id_type`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=222;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `parents`
--
ALTER TABLE `parents`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=189;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `sections`
--
ALTER TABLE `sections`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `sms_logs`
--
ALTER TABLE `sms_logs`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `sms_templates`
--
ALTER TABLE `sms_templates`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `staffs`
--
ALTER TABLE `staffs`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `staff_attendance`
--
ALTER TABLE `staff_attendance`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=289;
--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=193;
--
-- AUTO_INCREMENT for table `student_attendance`
--
ALTER TABLE `student_attendance`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10521;
--
-- AUTO_INCREMENT for table `student_class_section`
--
ALTER TABLE `student_class_section`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=194;
--
-- AUTO_INCREMENT for table `student_van`
--
ALTER TABLE `student_van`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=194;
--
-- AUTO_INCREMENT for table `teachers`
--
ALTER TABLE `teachers`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
--
-- AUTO_INCREMENT for table `teacher_attendance`
--
ALTER TABLE `teacher_attendance`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1440;
--
-- AUTO_INCREMENT for table `teacher_class_section`
--
ALTER TABLE `teacher_class_section`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `vans`
--
ALTER TABLE `vans`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
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 */;
|
-- phpMyAdmin SQL Dump
-- version 5.0.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 15, 2021 at 04:20 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.2.34
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: `tiket`
--
-- --------------------------------------------------------
--
-- Table structure for table `tiket`
--
CREATE TABLE `tiket` (
`id` int(4) NOT NULL,
`penyedia` varchar(50) NOT NULL,
`waktu` date NOT NULL,
`jurusan` varchar(50) NOT NULL,
`kelas` varchar(50) NOT NULL,
`harga` int(15) NOT NULL,
`kursi` int(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tiket`
--
INSERT INTO `tiket` (`id`, `penyedia`, `waktu`, `jurusan`, `kelas`, `harga`, `kursi`) VALUES
(14, 'sriwijaya', '2021-01-01', 'bali', 'ekonomi', 5000, 500),
(15, 'garuda', '2021-01-08', 'jogjkarta', 'ekonomi', 100, 12),
(16, 'first travel', '2021-01-16', 'jakarta', 'bisnis', 1000, 30);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`user_id` int(11) NOT NULL,
`user_level` int(1) NOT NULL DEFAULT 2,
`user_name` varchar(100) DEFAULT NULL,
`user_email` varchar(100) DEFAULT NULL,
`user_password` varchar(200) DEFAULT NULL,
`user_created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`user_id`, `user_level`, `user_name`, `user_email`, `user_password`, `user_created_at`) VALUES
(1, 1, 'admin', '<EMAIL>', <PASSWORD>', '2020-12-07 07:59:01'),
(3, 2, 'asep', '<EMAIL>', <PASSWORD>', '2020-12-07 08:01:19'),
(4, 2, 'buds', '<EMAIL>', <PASSWORD>', '2020-12-08 03:26:22'),
(5, 2, 'asd', '<EMAIL>', <PASSWORD>', '2021-01-05 07:53:32'),
(6, 2, 'budi su budu', '<EMAIL>', '$2y$10$iewfcypPi1WHiO2UzHMhHOm/f0Hm77.14vTOS4iJRbDTJzMHxzow.', '2021-01-15 07:28:03'),
(7, 2, 'praktek', '<EMAIL>', <PASSWORD>1/O0ve7rf.dgHom<PASSWORD>com0<PASSWORD>4YcVB3m', '2021-01-15 10:21:36');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tiket`
--
ALTER TABLE `tiket`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `user_id` int(11) 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 */;
|
<filename>DevTools/Modules/SimpleNoteService/Database/Scripts/InitialLoading/SimpleNoteService/Drop/FoldersUpdateValueType.sql
DROP TYPE [simple-note-service].[FoldersUpdateValue]; |
USE abundance_db;
INSERT INTO products (item_name, photo_url, category)
VALUES ('apple', 'apple.jpg', 'fruit'),
('avocado','avocado.jpg', 'fruit'),
('blackberry','blackberry.jpg', 'fruit'),
('blueberry','blueberry.jpg', 'fruit'),
('grape','grape.jpg', 'fruit'),
('lemon','lemon.jpg', 'fruit'),
('lime','lime.jpg', 'fruit'),
('orange','orange.jpg', 'fruit'),
('strawberry','strawberry.jpg', 'fruit'),
('tomato','tomato.jpg', 'fruit'),
('basil','basil.jpg', 'herb'),
('chive','chive.jpg', 'herb'),
('dill','dill.jpg', 'herb'),
('ginger','ginger.jpg', 'herb'),
('lavender','lavender.jpg', 'herb'),
('mint','mint.jpg', 'herb'),
('oregano','oregano.jpg', 'herb'),
('parsley','parsley.jpg', 'herb'),
('rosemary','rosemary.jpg', 'herb'),
('thyme','thyme.jpg', 'herb'),
('broccoli','broccoli.jpg', 'vegatable'),
('carrot','carrot.jpg', 'vegatable'),
('cucumber','cucumber.jpg', 'vegatable'),
('eggplant','eggplant.jpg', 'vegatable'),
('garlic','garlic.jpg', 'vegatable'),
('kale','kale.jpg', 'vegatable'),
('lettuce','lettuce.jpg', 'vegatable'),
('onion','onion.jpg', 'vegatable'),
('potato','potato.jpg', 'vegatable'),
('spinach','spinach.jpg', 'vegatable');
|
<filename>docs/DB/quan.sql<gh_stars>1-10
INSERT INTO `quan` (`q_id`, `q_ten`, `q_mota`, `t_id`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 'Quận', 1, NULL, NULL),
(2, '<NAME>', 'Quận', 1, NULL, NULL),
(3, '<NAME>', 'Quận', 1, NULL, NULL),
(4, '<NAME>', 'Quận', 1, NULL, NULL),
(5, '<NAME>', 'Quận', 1, NULL, NULL),
(6, '<NAME>', 'Quận', 1, NULL, NULL),
(7, '<NAME>', 'Quận', 1, NULL, NULL),
(8, '<NAME>', 'Quận', 1, NULL, NULL),
(9, '<NAME>', 'Quận', 1, NULL, NULL),
(16, '<NAME>', 'Huyện', 1, NULL, NULL),
(17, '<NAME>', 'Huyện', 1, NULL, NULL),
(18, '<NAME>', 'Huyện', 1, NULL, NULL),
(19, 'Quận Nam Từ Liêm', 'Quận', 1, NULL, NULL),
(20, '<NAME>', 'Huyện', 1, NULL, NULL),
(21, '<NAME>ừ Liêm', 'Quận', 1, NULL, NULL),
(24, 'Thành phố <NAME>', '<NAME>', 2, NULL, NULL),
(26, '<NAME>', 'Huyện', 2, NULL, NULL),
(27, '<NAME>', 'Huyện', 2, NULL, NULL),
(28, '<NAME>', 'Huyện', 2, NULL, NULL),
(29, '<NAME>', 'Huyện', 2, NULL, NULL),
(30, '<NAME>', 'Huyện', 2, NULL, NULL),
(31, '<NAME>', 'Huyện', 2, NULL, NULL),
(32, '<NAME>', 'Huyện', 2, NULL, NULL),
(33, '<NAME>', 'Huyện', 2, NULL, NULL),
(34, '<NAME>', 'Huyện', 2, NULL, NULL),
(35, '<NAME>', 'Huyện', 2, NULL, NULL),
(40, '<NAME>', '<NAME>', 4, NULL, NULL),
(42, '<NAME>', 'Huyện', 4, NULL, NULL),
(43, '<NAME>', 'Huyện', 4, NULL, NULL),
(44, '<NAME>', 'Huyện', 4, NULL, NULL),
(45, '<NAME>', 'Huyện', 4, NULL, NULL),
(46, '<NAME>', 'Huyện', 4, NULL, NULL),
(47, '<NAME>', 'Huyện', 4, NULL, NULL),
(48, '<NAME>', 'Huyện', 4, NULL, NULL),
(49, '<NAME>', 'Huyện', 4, NULL, NULL),
(50, '<NAME>', 'Huyện', 4, NULL, NULL),
(51, '<NAME>', 'Huyện', 4, NULL, NULL),
(52, '<NAME>', 'Huyện', 4, NULL, NULL),
(53, '<NAME>', 'Huyện', 4, NULL, NULL),
(58, 'Thành Phố Bắ<NAME>', 'Thành phố', 6, NULL, NULL),
(60, '<NAME>', 'Huyện', 6, NULL, NULL),
(61, '<NAME>', 'Huyện', 6, NULL, NULL),
(62, '<NAME>', 'Huyện', 6, NULL, NULL),
(63, '<NAME>', 'Huyện', 6, NULL, NULL),
(64, '<NAME>', 'Huyện', 6, NULL, NULL),
(65, '<NAME>', 'Huyện', 6, NULL, NULL),
(66, '<NAME>', 'Huyện', 6, NULL, NULL),
(70, 'Thành phố <NAME>', 'Thành phố', 8, NULL, NULL),
(71, '<NAME>', 'Huyện', 8, NULL, NULL),
(72, '<NAME>', 'Huyện', 8, NULL, NULL),
(73, '<NAME>', 'Huyện', 8, NULL, NULL),
(74, '<NAME>', 'Huyện', 8, NULL, NULL),
(75, '<NAME>', 'Huyện', 8, NULL, NULL),
(76, '<NAME>', 'Huyện', 8, NULL, NULL),
(80, 'Thành phố Lào Cai', 'Thành phố', 10, NULL, NULL),
(82, '<NAME>', 'Huyện', 10, NULL, NULL),
(83, '<NAME>', 'Huyện', 10, NULL, NULL),
(84, '<NAME>', 'Huyện', 10, NULL, NULL),
(85, '<NAME>', 'Huyện', 10, NULL, NULL),
(86, '<NAME>', 'Huyện', 10, NULL, NULL),
(87, '<NAME>', 'Huyện', 10, NULL, NULL),
(88, '<NAME>', 'Huyện', 10, NULL, NULL),
(89, '<NAME>', 'Huyện', 10, NULL, NULL),
(94, '<NAME> <NAME>', '<NAME>', 11, NULL, NULL),
(95, '<NAME>', '<NAME>', 11, NULL, NULL),
(96, '<NAME>', 'Huyện', 11, NULL, NULL),
(97, '<NAME>', 'Huyện', 11, NULL, NULL),
(98, '<NAME>', 'Huyện', 11, NULL, NULL),
(99, '<NAME>', 'Huyện', 11, NULL, NULL),
(100, '<NAME>', 'Huyện', 11, NULL, NULL),
(101, '<NAME>', 'Huyện', 11, NULL, NULL),
(102, '<NAME>', 'Huyện', 11, NULL, NULL),
(103, '<NAME>', 'Huyện', 11, NULL, NULL),
(105, 'Thành phố Lai Châu', 'Thành phố', 12, NULL, NULL),
(106, '<NAME>', 'Huyện', 12, NULL, NULL),
(107, '<NAME>', 'Huyện', 12, NULL, NULL),
(108, '<NAME>', 'Huyện', 12, NULL, NULL),
(109, '<NAME>', 'Huyện', 12, NULL, NULL),
(110, '<NAME>', 'Huyện', 12, NULL, NULL),
(111, '<NAME>', 'Huyện', 12, NULL, NULL),
(112, '<NAME>', 'Huyện', 12, NULL, NULL),
(116, 'Thành phố Sơn La', '<NAME>', 14, NULL, NULL),
(118, '<NAME>', 'Huyện', 14, NULL, NULL),
(119, '<NAME>', 'Huyện', 14, NULL, NULL),
(120, '<NAME>', 'Huyện', 14, NULL, NULL),
(121, '<NAME>', 'Huyện', 14, NULL, NULL),
(122, '<NAME>', 'Huyện', 14, NULL, NULL),
(123, '<NAME>', 'Huyện', 14, NULL, NULL),
(124, '<NAME>', 'Huyện', 14, NULL, NULL),
(125, '<NAME>', 'Huyện', 14, NULL, NULL),
(126, '<NAME>', 'Huyện', 14, NULL, NULL),
(127, '<NAME>', 'Huyện', 14, NULL, NULL),
(128, '<NAME>', 'Huyện', 14, NULL, NULL),
(132, 'Thành ph<NAME>', '<NAME>', 15, NULL, NULL),
(133, '<NAME>', '<NAME>', 15, NULL, NULL),
(135, '<NAME>', 'Huyện', 15, NULL, NULL),
(136, '<NAME>', 'Huyện', 15, NULL, NULL),
(137, '<NAME>', 'Huyện', 15, NULL, NULL),
(138, '<NAME>', 'Huyện', 15, NULL, NULL),
(139, '<NAME>', 'Huyện', 15, NULL, NULL),
(140, '<NAME>', 'Huyện', 15, NULL, NULL),
(141, '<NAME>', 'Huyện', 15, NULL, NULL),
(148, '<NAME>', '<NAME>', 17, NULL, NULL),
(150, '<NAME>', 'Huyện', 17, NULL, NULL),
(151, '<NAME>', 'Huyện', 17, NULL, NULL),
(152, '<NAME>', 'Huyện', 17, NULL, NULL),
(153, '<NAME>', 'Huyện', 17, NULL, NULL),
(154, '<NAME>', 'Huyện', 17, NULL, NULL),
(155, '<NAME>', 'Huyện', 17, NULL, NULL),
(156, '<NAME>', 'Huyện', 17, NULL, NULL),
(157, '<NAME>', 'Huyện', 17, NULL, NULL),
(158, '<NAME>', 'Huyện', 17, NULL, NULL),
(159, '<NAME>', 'Huyện', 17, NULL, NULL),
(164, 'Thành phố Th<NAME>', '<NAME>', 19, NULL, NULL),
(165, 'Thành phố Sông Công', 'Thành phố', 19, NULL, NULL),
(167, '<NAME>', 'Huyện', 19, NULL, NULL),
(168, '<NAME>', 'Huyện', 19, NULL, NULL),
(169, '<NAME>', 'Huyện', 19, NULL, NULL),
(170, '<NAME>', 'Huyện', 19, NULL, NULL),
(171, '<NAME>', 'Huyện', 19, NULL, NULL),
(172, '<NAME>', '<NAME>', 19, NULL, NULL),
(173, '<NAME>', 'Huyện', 19, NULL, NULL),
(178, 'Thành phố L<NAME>', 'Thành phố', 20, NULL, NULL),
(180, '<NAME>', 'Huyện', 20, NULL, NULL),
(181, '<NAME>', 'Huyện', 20, NULL, NULL),
(182, '<NAME>', 'Huyện', 20, NULL, NULL),
(183, '<NAME>', 'Huyện', 20, NULL, NULL),
(184, '<NAME>', 'Huyện', 20, NULL, NULL),
(185, '<NAME>', 'Huyện', 20, NULL, NULL),
(186, '<NAME>', 'Huyện', 20, NULL, NULL),
(187, '<NAME>', 'Huyện', 20, NULL, NULL),
(188, '<NAME>', 'Huyện', 20, NULL, NULL),
(189, '<NAME>', 'Huyện', 20, NULL, NULL),
(193, 'Thành phố <NAME>', 'Thành phố', 22, NULL, NULL),
(194, 'Thành phố Móng Cái', 'Thành phố', 22, NULL, NULL),
(195, 'Thành phố <NAME>', 'Thành phố', 22, NULL, NULL),
(196, 'Thành phố <NAME>', 'Thành phố', 22, NULL, NULL),
(198, '<NAME>', 'Huyện', 22, NULL, NULL),
(199, '<NAME>', 'Huyện', 22, NULL, NULL),
(200, '<NAME>', 'Huyện', 22, NULL, NULL),
(201, '<NAME>', 'Huyện', 22, NULL, NULL),
(202, '<NAME>', 'Huyện', 22, NULL, NULL),
(203, '<NAME>', 'Huyện', 22, NULL, NULL),
(204, '<NAME>', 'Huyện', 22, NULL, NULL),
(205, '<NAME>', '<NAME>', 22, NULL, NULL),
(206, '<NAME>', '<NAME>', 22, NULL, NULL),
(207, '<NAME>', 'Huyện', 22, NULL, NULL),
(213, 'Thành phố <NAME>', 'Thành phố', 24, NULL, NULL),
(215, '<NAME>', 'Huyện', 24, NULL, NULL),
(216, '<NAME>', 'Huyện', 24, NULL, NULL),
(217, '<NAME>', 'Huyện', 24, NULL, NULL),
(218, '<NAME>', 'Huyện', 24, NULL, NULL),
(219, '<NAME>', 'Huyện', 24, NULL, NULL),
(220, '<NAME>', 'Huyện', 24, NULL, NULL),
(221, '<NAME>', 'Huyện', 24, NULL, NULL),
(222, '<NAME>', 'Huyện', 24, NULL, NULL),
(223, '<NAME>', 'Huyện', 24, NULL, NULL),
(227, 'Thành phố <NAME>', 'Thành phố', 25, NULL, NULL),
(228, '<NAME>', '<NAME>', 25, NULL, NULL),
(230, '<NAME>', 'Huyện', 25, NULL, NULL),
(231, '<NAME>', 'Huyện', 25, NULL, NULL),
(232, '<NAME>', 'Huyện', 25, NULL, NULL),
(233, '<NAME>', 'Huyện', 25, NULL, NULL),
(234, '<NAME>', 'Huyện', 25, NULL, NULL),
(235, '<NAME>', 'Huyện', 25, NULL, NULL),
(236, '<NAME>', 'Huyện', 25, NULL, NULL),
(237, '<NAME>', 'Huyện', 25, NULL, NULL),
(238, '<NAME>', 'Huyện', 25, NULL, NULL),
(239, '<NAME>', 'Huyện', 25, NULL, NULL),
(240, '<NAME>', 'Huyện', 25, NULL, NULL),
(243, '<NAME>', '<NAME>', 26, NULL, NULL),
(244, '<NAME>', '<NAME>', 26, NULL, NULL),
(246, '<NAME>', 'Huyện', 26, NULL, NULL),
(247, '<NAME>', 'Huyện', 26, NULL, NULL),
(248, '<NAME>', 'Huyện', 26, NULL, NULL),
(249, '<NAME>', 'Huyện', 26, NULL, NULL),
(250, '<NAME>', 'Huyện', 1, NULL, NULL),
(251, '<NAME>', 'Huyện', 26, NULL, NULL),
(252, 'Huyện <NAME>', 'Huyện', 26, NULL, NULL),
(253, '<NAME>', 'Huyện', 26, NULL, NULL),
(256, 'Thành phố <NAME>', '<NAME>', 27, NULL, NULL),
(258, '<NAME>', 'Huyện', 27, NULL, NULL),
(259, '<NAME>', 'Huyện', 27, NULL, NULL),
(260, '<NAME>', 'Huyện', 27, NULL, NULL),
(261, '<NAME>', '<NAME>', 27, NULL, NULL),
(262, '<NAME>', 'Huyện', 27, NULL, NULL),
(263, '<NAME>', 'Huyện', 27, NULL, NULL),
(264, '<NAME>', 'Huyện', 27, NULL, NULL),
(268, '<NAME>', 'Quận', 1, NULL, NULL),
(269, '<NAME>', '<NAME>', 1, NULL, NULL),
(271, '<NAME>', 'Huyện', 1, NULL, NULL),
(272, '<NAME>', 'Huyện', 1, NULL, NULL),
(273, '<NAME>', 'Huyện', 1, NULL, NULL),
(274, '<NAME>', 'Huyện', 1, NULL, NULL),
(275, '<NAME>', 'Huyện', 1, NULL, NULL),
(276, '<NAME>', 'Huyện', 1, NULL, NULL),
(277, 'Huyện <NAME>', 'Huyện', 1, NULL, NULL),
(278, '<NAME>', 'Huyện', 1, NULL, NULL),
(279, '<NAME>', 'Huyện', 1, NULL, NULL),
(280, '<NAME>', 'Huyện', 1, NULL, NULL),
(281, '<NAME>', 'Huyện', 1, NULL, NULL),
(282, '<NAME>', 'Huyện', 1, NULL, NULL),
(288, '<NAME> <NAME>', '<NAME>', 30, NULL, NULL),
(290, '<NAME>', '<NAME>', 30, NULL, NULL),
(291, '<NAME>', 'Huyện', 30, NULL, NULL),
(292, '<NAME>', 'Huyện', 30, NULL, NULL),
(293, '<NAME>', 'Huyện', 30, NULL, NULL),
(294, '<NAME>', 'Huyện', 30, NULL, NULL),
(295, '<NAME>', 'Huyện', 30, NULL, NULL),
(296, '<NAME>', 'Huyện', 30, NULL, NULL),
(297, '<NAME>', 'Huyện', 30, NULL, NULL),
(298, '<NAME>', 'Huyện', 30, NULL, NULL),
(299, '<NAME>', 'Huyện', 30, NULL, NULL),
(300, '<NAME>', 'Huyện', 30, NULL, NULL),
(303, '<NAME>', 'Quận', 31, NULL, NULL),
(304, '<NAME>', 'Quận', 31, NULL, NULL),
(305, '<NAME>', 'Quận', 31, NULL, NULL),
(306, '<NAME>', 'Quận', 31, NULL, NULL),
(307, '<NAME>', 'Quận', 31, NULL, NULL),
(308, '<NAME>', 'Quận', 31, NULL, NULL),
(309, '<NAME>', 'Quận', 31, NULL, NULL),
(311, '<NAME>', 'Huyện', 31, NULL, NULL),
(312, '<NAME>', 'Huyện', 31, NULL, NULL),
(313, '<NAME>', 'Huyện', 31, NULL, NULL),
(314, '<NAME>', 'Huyện', 31, NULL, NULL),
(315, '<NAME>', 'Huyện', 31, NULL, NULL),
(316, '<NAME>', 'Huyện', 31, NULL, NULL),
(317, '<NAME>', 'Huyện', 31, NULL, NULL),
(323, '<NAME>', '<NAME>', 33, NULL, NULL),
(325, '<NAME>', 'Huyện', 33, NULL, NULL),
(326, '<NAME>', 'Huyện', 33, NULL, NULL),
(327, '<NAME>', 'Huyện', 33, NULL, NULL),
(328, '<NAME>', 'Huyện', 33, NULL, NULL),
(329, '<NAME>', 'Huyện', 33, NULL, NULL),
(330, '<NAME>', 'Huyện', 33, NULL, NULL),
(331, '<NAME>', 'Huyện', 33, NULL, NULL),
(332, '<NAME>', 'Huyện', 33, NULL, NULL),
(333, '<NAME>', 'Huyện', 33, NULL, NULL),
(336, 'Thành phố Th<NAME>', 'Thành phố', 34, NULL, NULL),
(338, '<NAME>', 'Huyện', 34, NULL, NULL),
(339, '<NAME>', 'Huyện', 34, NULL, NULL),
(340, '<NAME>', 'Huyện', 34, NULL, NULL),
(341, '<NAME>', 'Huyện', 34, NULL, NULL),
(342, '<NAME>', 'Huyện', 34, NULL, NULL),
(343, '<NAME>', 'Huyện', 34, NULL, NULL),
(344, '<NAME>', 'Huyện', 34, NULL, NULL),
(347, 'Thành phố Ph<NAME>ý', 'Thành phố', 35, NULL, NULL),
(349, '<NAME>', 'Huyện', 35, NULL, NULL),
(350, '<NAME>', 'Huyện', 35, NULL, NULL),
(351, '<NAME>', 'Huyện', 35, NULL, NULL),
(352, '<NAME>', 'Huyện', 35, NULL, NULL),
(353, '<NAME>', 'Huyện', 35, NULL, NULL),
(356, 'Thành phố <NAME>', 'Thành phố', 36, NULL, NULL),
(358, '<NAME>', 'Huyện', 36, NULL, NULL),
(359, '<NAME>', 'Huyện', 36, NULL, NULL),
(360, '<NAME>', 'Huyện', 36, NULL, NULL),
(361, '<NAME>', 'Huyện', 36, NULL, NULL),
(362, '<NAME>', 'Huyện', 36, NULL, NULL),
(363, '<NAME>', 'Huyện', 36, NULL, NULL),
(364, '<NAME>', 'Huyện', 36, NULL, NULL),
(365, '<NAME>', 'Huyện', 36, NULL, NULL),
(366, '<NAME>', 'Huyện', 36, NULL, NULL),
(369, 'Thành phố <NAME>', 'Thành phố', 37, NULL, NULL),
(370, 'Thành phố <NAME>', 'Thành phố', 37, NULL, NULL),
(372, '<NAME>', 'Huyện', 37, NULL, NULL),
(373, '<NAME>', 'Huyện', 37, NULL, NULL),
(374, '<NAME>', 'Huyện', 37, NULL, NULL),
(375, '<NAME>', 'Huyện', 37, NULL, NULL),
(376, '<NAME>', 'Huyện', 37, NULL, NULL),
(377, '<NAME>', 'Huyện', 37, NULL, NULL),
(380, 'Thành phố <NAME>', 'Th<NAME>ố', 38, NULL, NULL),
(381, '<NAME>', '<NAME>', 38, NULL, NULL),
(382, 'Thành phố <NAME>', '<NAME>', 38, NULL, NULL),
(384, '<NAME>', 'Huyện', 38, NULL, NULL),
(385, '<NAME>', 'Huyện', 38, NULL, NULL),
(386, '<NAME>', 'Huyện', 38, NULL, NULL),
(387, '<NAME>', 'Huyện', 38, NULL, NULL),
(388, '<NAME>', 'Huyện', 38, NULL, NULL),
(389, '<NAME>', 'Huyện', 38, NULL, NULL),
(390, '<NAME>', 'Huyện', 38, NULL, NULL),
(391, '<NAME>', 'Huyện', 38, NULL, NULL),
(392, '<NAME>', 'Huyện', 38, NULL, NULL),
(393, '<NAME>', 'Huyện', 38, NULL, NULL),
(394, '<NAME>', 'Huyện', 38, NULL, NULL),
(395, '<NAME>', 'Huyện', 38, NULL, NULL),
(396, '<NAME>', 'Huyện', 38, NULL, NULL),
(397, '<NAME>', 'Huyện', 38, NULL, NULL),
(398, '<NAME>', 'Huyện', 38, NULL, NULL),
(399, '<NAME>', 'Huyện', 38, NULL, NULL),
(400, '<NAME>', 'Huyện', 38, NULL, NULL),
(401, '<NAME>', 'Huyện', 38, NULL, NULL),
(402, '<NAME>', 'Huyện', 38, NULL, NULL),
(403, '<NAME>', 'Huyện', 38, NULL, NULL),
(404, '<NAME>', 'Huyện', 38, NULL, NULL),
(405, '<NAME>', 'Huyện', 38, NULL, NULL),
(406, '<NAME>', 'Huyện', 38, NULL, NULL),
(407, '<NAME>', 'Huyện', 38, NULL, NULL),
(412, '<NAME>', 'Th<NAME>', 40, NULL, NULL),
(413, '<NAME>', '<NAME>', 40, NULL, NULL),
(414, '<NAME>', '<NAME>', 40, NULL, NULL),
(415, '<NAME>', 'Huyện', 40, NULL, NULL),
(416, '<NAME>', 'Huyện', 40, NULL, NULL),
(417, '<NAME>', 'Huyện', 40, NULL, NULL),
(418, '<NAME>', 'Huyện', 40, NULL, NULL),
(419, '<NAME>', 'Huyện', 40, NULL, NULL),
(420, '<NAME>', 'Huyện', 40, NULL, NULL),
(421, '<NAME>', 'Huyện', 40, NULL, NULL),
(422, '<NAME>', 'Huyện', 40, NULL, NULL),
(423, '<NAME>', 'Huyện', 40, NULL, NULL),
(424, '<NAME>', 'Huyện', 40, NULL, NULL),
(425, '<NAME>', 'Huyện', 40, NULL, NULL),
(426, '<NAME>', 'Huyện', 40, NULL, NULL),
(427, '<NAME>', 'Huyện', 40, NULL, NULL),
(428, '<NAME>', 'Huyện', 40, NULL, NULL),
(429, '<NAME>', 'Huyện', 40, NULL, NULL),
(430, '<NAME>', 'Huyện', 40, NULL, NULL),
(431, '<NAME>', 'Huyện', 40, NULL, NULL),
(432, '<NAME>', '<NAME>', 40, NULL, NULL),
(436, 'Thành phố H<NAME>', '<NAME>', 42, NULL, NULL),
(437, '<NAME>', '<NAME>', 42, NULL, NULL),
(439, '<NAME>', 'Huyện', 42, NULL, NULL),
(440, '<NAME>', 'Huyện', 42, NULL, NULL),
(441, '<NAME>', 'Huyện', 42, NULL, NULL),
(442, '<NAME>', 'Huyện', 42, NULL, NULL),
(443, '<NAME>', 'Huyện', 42, NULL, NULL),
(444, '<NAME>', 'Huyện', 42, NULL, NULL),
(445, '<NAME>', 'Huyện', 42, NULL, NULL),
(446, '<NAME>', 'Huyện', 42, NULL, NULL),
(447, '<NAME>', 'Huyện', 42, NULL, NULL),
(448, '<NAME>', 'Huyện', 42, NULL, NULL),
(449, '<NAME> <NAME>', '<NAME>', 42, NULL, NULL),
(450, '<NAME>', '<NAME>', 44, NULL, NULL),
(452, '<NAME>', 'Huyện', 44, NULL, NULL),
(453, '<NAME>', 'Huyện', 44, NULL, NULL),
(454, '<NAME>', 'Huyện', 44, NULL, NULL),
(455, '<NAME>', 'Huyện', 44, NULL, NULL),
(456, '<NAME>', 'Huyện', 44, NULL, NULL),
(457, '<NAME>', 'Huyện', 44, NULL, NULL),
(458, '<NAME> <NAME>', '<NAME>', 44, NULL, NULL),
(461, '<NAME> <NAME>', 'Th<NAME>', 45, NULL, NULL),
(462, '<NAME> <NAME>', '<NAME>', 45, NULL, NULL),
(464, '<NAME>', 'Huyện', 45, NULL, NULL),
(465, '<NAME>', 'Huyện', 45, NULL, NULL),
(466, '<NAME>', 'Huyện', 45, NULL, NULL),
(467, '<NAME>', 'Huyện', 45, NULL, NULL),
(468, '<NAME>', 'Huyện', 45, NULL, NULL),
(469, '<NAME>', 'Huyện', 45, NULL, NULL),
(470, '<NAME>', 'Huyện', 45, NULL, NULL),
(474, '<NAME>', '<NAME>', 46, NULL, NULL),
(476, '<NAME>', 'Huyện', 46, NULL, NULL),
(477, '<NAME>', 'Huyện', 46, NULL, NULL),
(478, '<NAME>', 'Huyện', 46, NULL, NULL),
(479, '<NAME>', '<NAME>', 46, NULL, NULL),
(480, '<NAME> <NAME>', '<NAME>', 46, NULL, NULL),
(481, '<NAME>', 'Huyện', 46, NULL, NULL),
(482, '<NAME>', 'Huyện', 46, NULL, NULL),
(483, '<NAME>', 'Huyện', 46, NULL, NULL),
(490, '<NAME>', 'Quận', 48, NULL, NULL),
(491, '<NAME>', 'Quận', 48, NULL, NULL),
(492, '<NAME>', 'Quận', 48, NULL, NULL),
(493, '<NAME>', 'Quận', 48, NULL, NULL),
(494, '<NAME>', 'Quận', 48, NULL, NULL),
(495, '<NAME>', 'Quận', 48, NULL, NULL),
(497, '<NAME>', 'Huyện', 48, NULL, NULL),
(502, 'Thành phố <NAME>', 'Th<NAME>', 49, NULL, NULL),
(503, 'Thành phố H<NAME>', 'Thành phố', 49, NULL, NULL),
(504, '<NAME>', 'Huyện', 49, NULL, NULL),
(505, '<NAME>', 'Huyện', 49, NULL, NULL),
(506, '<NAME>', 'Huyện', 49, NULL, NULL),
(507, '<NAME>', '<NAME>', 49, NULL, NULL),
(508, '<NAME>', 'Huyện', 49, NULL, NULL),
(509, '<NAME>', 'Huyện', 49, NULL, NULL),
(510, '<NAME>', 'Huyện', 49, NULL, NULL),
(511, '<NAME>', 'Huyện', 49, NULL, NULL),
(512, '<NAME>', 'Huyện', 49, NULL, NULL),
(513, '<NAME>', 'Huyện', 49, NULL, NULL),
(514, '<NAME>', 'Huyện', 49, NULL, NULL),
(515, '<NAME>', 'Huyện', 49, NULL, NULL),
(516, '<NAME>', 'Huyện', 49, NULL, NULL),
(517, '<NAME>', 'Huyện', 49, NULL, NULL),
(518, '<NAME>', 'Huyện', 49, NULL, NULL),
(519, '<NAME>', 'Huyện', 49, NULL, NULL),
(522, '<NAME> <NAME>', '<NAME>', 51, NULL, NULL),
(524, '<NAME>', 'Huyện', 51, NULL, NULL),
(525, '<NAME>', 'Huyện', 51, NULL, NULL),
(526, '<NAME>', 'Huyện', 51, NULL, NULL),
(527, '<NAME>', 'Huyện', 51, NULL, NULL),
(528, '<NAME>', 'Huyện', 51, NULL, NULL),
(529, '<NAME>', 'Huyện', 51, NULL, NULL),
(530, '<NAME>', 'Huyện', 51, NULL, NULL),
(531, '<NAME>', 'Huyện', 51, NULL, NULL),
(532, '<NAME>', 'Huyện', 51, NULL, NULL),
(533, '<NAME>', 'Huyện', 51, NULL, NULL),
(534, '<NAME>', 'Huyện', 51, NULL, NULL),
(535, '<NAME>', 'Huyện', 51, NULL, NULL),
(536, '<NAME>', 'Huyện', 51, NULL, NULL),
(540, '<NAME>', '<NAME>', 52, NULL, NULL),
(542, '<NAME>', 'Huyện', 52, NULL, NULL),
(543, '<NAME>', 'Huyện', 52, NULL, NULL),
(544, '<NAME>', 'Huyện', 52, NULL, NULL),
(545, '<NAME>', 'Huyện', 52, NULL, NULL),
(546, '<NAME>', 'Huyện', 52, NULL, NULL),
(547, '<NAME>', 'Huyện', 52, NULL, NULL),
(548, '<NAME>', 'Huyện', 52, NULL, NULL),
(549, '<NAME>', '<NAME>', 52, NULL, NULL),
(550, '<NAME>', 'Huyện', 52, NULL, NULL),
(551, '<NAME>', 'Huyện', 52, NULL, NULL),
(555, 'Thành phố <NAME>', 'Thành phố', 54, NULL, NULL),
(557, '<NAME>', '<NAME>', 54, NULL, NULL),
(558, '<NAME>', 'Huyện', 54, NULL, NULL),
(559, '<NAME>', 'Huyện', 54, NULL, NULL),
(560, '<NAME>', 'Huyện', 54, NULL, NULL),
(561, '<NAME>', 'Huyện', 54, NULL, NULL),
(562, '<NAME>', 'Huyện', 54, NULL, NULL),
(563, '<NAME>', 'Huyện', 54, NULL, NULL),
(564, '<NAME>', 'Huyện', 54, NULL, NULL),
(568, '<NAME> <NAME>', 'Th<NAME>', 56, NULL, NULL),
(569, 'Thành phố <NAME>', 'Th<NAME>', 56, NULL, NULL),
(570, '<NAME>', 'Huyện', 56, NULL, NULL),
(571, '<NAME>', 'Huyện', 56, NULL, NULL),
(572, '<NAME>', '<NAME>', 56, NULL, NULL),
(573, '<NAME>', 'Huyện', 56, NULL, NULL),
(574, '<NAME>', 'Huyện', 56, NULL, NULL),
(575, '<NAME>', 'Huyện', 56, NULL, NULL),
(576, '<NAME>', 'Huyện', 56, NULL, NULL),
(582, 'Thành phố Phan Rang-Th<NAME>', 'Thành phố', 58, NULL, NULL),
(584, '<NAME>', 'Huyện', 58, NULL, NULL),
(585, '<NAME>', 'Huyện', 58, NULL, NULL),
(586, '<NAME>', 'Huyện', 58, NULL, NULL),
(587, '<NAME>', 'Huyện', 58, NULL, NULL),
(588, '<NAME>', 'Huyện', 58, NULL, NULL),
(589, '<NAME>', 'Huyện', 58, NULL, NULL),
(593, 'Thành phố <NAME>', 'Th<NAME>', 60, NULL, NULL),
(594, '<NAME>', '<NAME>', 60, NULL, NULL),
(595, '<NAME>', 'Huyện', 60, NULL, NULL),
(596, '<NAME>', 'Huyện', 60, NULL, NULL),
(597, '<NAME>', 'Huyện', 60, NULL, NULL),
(598, '<NAME>', 'Huyện', 60, NULL, NULL),
(599, '<NAME>', 'Huyện', 60, NULL, NULL),
(600, '<NAME>', 'Huyện', 60, NULL, NULL),
(601, '<NAME>', 'Huyện', 60, NULL, NULL),
(602, '<NAME>', 'Huyện', 60, NULL, NULL),
(608, 'Thành phố <NAME>', 'Th<NAME>', 62, NULL, NULL),
(610, '<NAME>', 'Huyện', 62, NULL, NULL),
(611, '<NAME>', 'Huyện', 62, NULL, NULL),
(612, '<NAME>', 'Huyện', 62, NULL, NULL),
(613, '<NAME>', 'Huyện', 62, NULL, NULL),
(614, '<NAME>', 'Huyện', 62, NULL, NULL),
(615, '<NAME>', 'Huyện', 62, NULL, NULL),
(616, '<NAME>', 'Huyện', 62, NULL, NULL),
(617, '<NAME>', 'Huyện', 62, NULL, NULL),
(618, '<NAME>', 'Huyện', 62, NULL, NULL),
(622, 'Thành phố Pleiku', 'Th<NAME>', 64, NULL, NULL),
(623, '<NAME>', '<NAME>', 64, NULL, NULL),
(624, '<NAME>', '<NAME>', 64, NULL, NULL),
(625, '<NAME>', 'Huyện', 64, NULL, NULL),
(626, '<NAME>', 'Huyện', 64, NULL, NULL),
(627, '<NAME>', 'Huyện', 64, NULL, NULL),
(628, '<NAME>', 'Huyện', 64, NULL, NULL),
(629, '<NAME>', 'Huyện', 64, NULL, NULL),
(630, '<NAME>', 'Huyện', 64, NULL, NULL),
(631, '<NAME>', 'Huyện', 64, NULL, NULL),
(632, '<NAME>', 'Huyện', 64, NULL, NULL),
(633, '<NAME>', 'Huyện', 64, NULL, NULL),
(634, '<NAME>', 'Huyện', 64, NULL, NULL),
(635, '<NAME>', 'Huyện', 64, NULL, NULL),
(637, '<NAME>', 'Huyện', 64, NULL, NULL),
(638, '<NAME>', 'Huyện', 64, NULL, NULL),
(639, '<NAME>', 'Huyện', 64, NULL, NULL),
(643, '<NAME> <NAME>', '<NAME>', 66, NULL, NULL),
(644, '<NAME>', '<NAME>', 66, NULL, NULL),
(645, '<NAME>', 'Huyện', 66, NULL, NULL),
(646, '<NAME>', 'Huyện', 66, NULL, NULL),
(647, '<NAME>', 'Huyện', 66, NULL, NULL),
(648, '<NAME>', 'Huyện', 66, NULL, NULL),
(649, '<NAME>', 'Huyện', 66, NULL, NULL),
(650, '<NAME>', 'Huyện', 66, NULL, NULL),
(651, '<NAME>', 'Huyện', 66, NULL, NULL),
(652, '<NAME>', 'Huyện', 66, NULL, NULL),
(653, '<NAME>', 'Huyện', 66, NULL, NULL),
(654, '<NAME>', 'Huyện', 66, NULL, NULL),
(655, '<NAME>', 'Huyện', 66, NULL, NULL),
(656, '<NAME>', 'Huyện', 66, NULL, NULL),
(657, '<NAME>', 'Huyện', 66, NULL, NULL),
(660, '<NAME>', '<NAME>', 67, NULL, NULL),
(661, '<NAME>', 'Huyện', 67, NULL, NULL),
(662, '<NAME>', 'Huyện', 67, NULL, NULL),
(663, '<NAME>', 'Huyện', 67, NULL, NULL),
(664, '<NAME>', 'Huyện', 67, NULL, NULL),
(665, '<NAME>', 'Huyện', 67, NULL, NULL),
(666, '<NAME>', 'Huyện', 67, NULL, NULL),
(667, '<NAME>', 'Huyện', 67, NULL, NULL),
(672, 'Thành phố <NAME>', 'Thành phố', 68, NULL, NULL),
(673, 'Thành phố Bảo Lộc', 'Thành phố', 68, NULL, NULL),
(674, '<NAME>', 'Huyện', 68, NULL, NULL),
(675, '<NAME>', 'Huyện', 68, NULL, NULL),
(676, '<NAME>', 'Huyện', 68, NULL, NULL),
(677, '<NAME>', 'Huyện', 68, NULL, NULL),
(678, '<NAME>', 'Huyện', 68, NULL, NULL),
(679, '<NAME>', 'Huyện', 68, NULL, NULL),
(680, '<NAME>', 'Huyện', 68, NULL, NULL),
(681, '<NAME>', 'Huyện', 68, NULL, NULL),
(682, '<NAME>', 'Huyện', 68, NULL, NULL),
(683, '<NAME>', 'Huyện', 68, NULL, NULL),
(688, '<NAME>', '<NAME>', 70, NULL, NULL),
(689, '<NAME> <NAME>', '<NAME>', 70, NULL, NULL),
(690, '<NAME>', '<NAME>', 70, NULL, NULL),
(691, '<NAME>', 'Huyện', 70, NULL, NULL),
(692, '<NAME>', 'Huyện', 70, NULL, NULL),
(693, '<NAME>', 'Huyện', 70, NULL, NULL),
(694, '<NAME>', 'Huyện', 70, NULL, NULL),
(695, '<NAME>', 'Huyện', 70, NULL, NULL),
(696, '<NAME>', 'Huyện', 70, NULL, NULL),
(697, '<NAME>', 'Huyện', 70, NULL, NULL),
(698, '<NAME>', 'Huyện', 70, NULL, NULL),
(703, 'Thành phố <NAME>', 'Thành phố', 72, NULL, NULL),
(705, '<NAME>', 'Huyện', 72, NULL, NULL),
(706, '<NAME>', 'Huyện', 72, NULL, NULL),
(707, '<NAME>', 'Huyện', 72, NULL, NULL),
(708, '<NAME>', 'Huyện', 72, NULL, NULL),
(709, '<NAME>', 'Huyện', 72, NULL, NULL),
(710, '<NAME>', 'Huyện', 72, NULL, NULL),
(711, '<NAME>', 'Huyện', 72, NULL, NULL),
(712, '<NAME>', 'Huyện', 72, NULL, NULL),
(718, 'Thành phố <NAME>', 'Thành phố', 74, NULL, NULL),
(719, '<NAME>', 'Huyện', 74, NULL, NULL),
(720, '<NAME>', 'Huyện', 74, NULL, NULL),
(721, '<NAME>', '<NAME>', 74, NULL, NULL),
(722, '<NAME>', 'Huyện', 74, NULL, NULL),
(723, '<NAME>', '<NAME>', 74, NULL, NULL),
(724, '<NAME>', '<NAME>', 74, NULL, NULL),
(725, '<NAME>', '<NAME>', 74, NULL, NULL),
(726, '<NAME>', 'Huyện', 74, NULL, NULL),
(731, 'Thành phố <NAME>', 'Thành phố', 75, NULL, NULL),
(732, '<NAME>', '<NAME>', 75, NULL, NULL),
(734, '<NAME>', 'Huyện', 75, NULL, NULL),
(735, '<NAME>', 'Huyện', 75, NULL, NULL),
(736, '<NAME>', 'Huyện', 75, NULL, NULL),
(737, '<NAME>', 'Huyện', 75, NULL, NULL),
(738, '<NAME>', 'Huyện', 75, NULL, NULL),
(739, '<NAME>', 'Huyện', 75, NULL, NULL),
(740, '<NAME>', 'Huyện', 75, NULL, NULL),
(741, '<NAME>', 'Huyện', 75, NULL, NULL),
(742, '<NAME>', 'Huyện', 75, NULL, NULL),
(747, 'Thành phố V<NAME>', 'Thành phố', 77, NULL, NULL),
(748, 'Thành phố B<NAME>', 'Thành phố', 77, NULL, NULL),
(750, '<NAME>', 'Huyện', 77, NULL, NULL),
(751, '<NAME>', 'Huyện', 77, NULL, NULL),
(752, '<NAME>', 'Huyện', 77, NULL, NULL),
(753, '<NAME>', 'Huyện', 77, NULL, NULL),
(754, '<NAME>', 'Huyện', 77, NULL, NULL),
(760, 'Quận 1', 'Quận', 79, NULL, NULL),
(761, 'Quận 12', 'Quận', 79, NULL, NULL),
(762, '<NAME>', 'Quận', 79, NULL, NULL),
(763, 'Quận 9', 'Quận', 79, NULL, NULL),
(764, '<NAME>', 'Quận', 79, NULL, NULL),
(765, '<NAME>', 'Quận', 79, NULL, NULL),
(766, '<NAME>', 'Quận', 79, NULL, NULL),
(767, 'Quận <NAME>', 'Quận', 79, NULL, NULL),
(768, 'Quận <NAME>', 'Quận', 79, NULL, NULL),
(769, 'Quận 2', 'Quận', 79, NULL, NULL),
(770, 'Quận 3', 'Quận', 79, NULL, NULL),
(771, 'Quận 10', 'Quận', 79, NULL, NULL),
(772, 'Quận 11', 'Quận', 79, NULL, NULL),
(773, 'Quận 4', 'Quận', 79, NULL, NULL),
(774, 'Quận 5', 'Quận', 79, NULL, NULL),
(775, 'Quận 6', 'Quận', 79, NULL, NULL),
(776, 'Quận 8', 'Quận', 79, NULL, NULL),
(777, '<NAME>', 'Quận', 79, NULL, NULL),
(778, 'Quận 7', 'Quận', 79, NULL, NULL),
(783, '<NAME>', 'Huyện', 79, NULL, NULL),
(784, '<NAME>', 'Huyện', 79, NULL, NULL),
(785, '<NAME>', 'Huyện', 79, NULL, NULL),
(786, '<NAME>', 'Huyện', 79, NULL, NULL),
(787, '<NAME>', 'Huyện', 79, NULL, NULL),
(794, '<NAME> <NAME>', '<NAME>', 80, NULL, NULL),
(795, '<NAME>', '<NAME>', 80, NULL, NULL),
(796, '<NAME>', 'Huyện', 80, NULL, NULL),
(797, '<NAME>', 'Huyện', 80, NULL, NULL),
(798, '<NAME>', 'Huyện', 80, NULL, NULL),
(799, '<NAME>', 'Huyện', 80, NULL, NULL),
(800, '<NAME>', 'Huyện', 80, NULL, NULL),
(801, '<NAME>', 'Huyện', 80, NULL, NULL),
(802, '<NAME>', 'Huyện', 80, NULL, NULL),
(803, '<NAME>', 'Huyện', 80, NULL, NULL),
(804, '<NAME>', 'Huyện', 80, NULL, NULL),
(805, '<NAME>', 'Huyện', 80, NULL, NULL),
(806, '<NAME>', 'Huyện', 80, NULL, NULL),
(807, '<NAME>', 'Huyện', 80, NULL, NULL),
(808, '<NAME>', 'Huyện', 80, NULL, NULL),
(815, '<NAME>', '<NAME>', 82, NULL, NULL),
(816, '<NAME>', '<NAME>', 82, NULL, NULL),
(817, '<NAME>', '<NAME>', 82, NULL, NULL),
(818, '<NAME>', 'Huyện', 82, NULL, NULL),
(819, '<NAME>', 'Huyện', 82, NULL, NULL),
(820, '<NAME>', 'Huyện', 82, NULL, NULL),
(821, '<NAME>', 'Huyện', 82, NULL, NULL),
(822, '<NAME>', 'Huyện', 82, NULL, NULL),
(823, '<NAME>', 'Huyện', 82, NULL, NULL),
(824, '<NAME>', 'Huyện', 82, NULL, NULL),
(825, '<NAME>', 'Huyện', 82, NULL, NULL),
(829, 'Thành phố B<NAME>', 'Thành phố', 83, NULL, NULL),
(831, '<NAME>', 'Huyện', 83, NULL, NULL),
(832, '<NAME>', 'Huyện', 83, NULL, NULL),
(833, '<NAME>', 'Huyện', 83, NULL, NULL),
(834, '<NAME>', 'Huyện', 83, NULL, NULL),
(835, '<NAME>', 'Huyện', 83, NULL, NULL),
(836, '<NAME>', 'Huyện', 83, NULL, NULL),
(837, '<NAME>', 'Huyện', 83, NULL, NULL),
(838, '<NAME>', 'Huyện', 83, NULL, NULL),
(842, 'Thành phố <NAME>', 'Th<NAME>', 84, NULL, NULL),
(844, '<NAME>', 'Huyện', 84, NULL, NULL),
(845, '<NAME>', 'Huyện', 84, NULL, NULL),
(846, '<NAME>', 'Huyện', 84, NULL, NULL),
(847, '<NAME>', 'Huyện', 84, NULL, NULL),
(848, '<NAME>', 'Huyện', 84, NULL, NULL),
(849, '<NAME>', 'Huyện', 84, NULL, NULL),
(850, '<NAME>', 'Huyện', 84, NULL, NULL),
(851, '<NAME>', '<NAME>', 84, NULL, NULL),
(855, 'Thành phố <NAME>', 'Th<NAME>', 86, NULL, NULL),
(857, '<NAME>', 'Huyện', 86, NULL, NULL),
(858, '<NAME>', 'Huyện', 86, NULL, NULL),
(859, '<NAME>', 'Huyện', 86, NULL, NULL),
(860, '<NAME>', 'Huyện', 86, NULL, NULL),
(861, '<NAME>', '<NAME>', 86, NULL, NULL),
(862, '<NAME>', 'Huyện', 86, NULL, NULL),
(863, '<NAME>', 'Huyện', 86, NULL, NULL),
(866, 'Thành phố <NAME>', 'Th<NAME>', 87, NULL, NULL),
(867, 'Thành phố <NAME>', 'Thành phố', 87, NULL, NULL),
(868, '<NAME>', '<NAME>', 87, NULL, NULL),
(869, '<NAME>', 'Huyện', 87, NULL, NULL),
(870, '<NAME>', 'Huyện', 87, NULL, NULL),
(871, '<NAME>', 'Huyện', 87, NULL, NULL),
(872, '<NAME>', 'Huyện', 87, NULL, NULL),
(873, '<NAME>', 'Huyện', 87, NULL, NULL),
(874, '<NAME>', 'Huyện', 87, NULL, NULL),
(875, '<NAME>', 'Huyện', 87, NULL, NULL),
(876, '<NAME>', 'Huyện', 87, NULL, NULL),
(877, '<NAME>', 'Huyện', 87, NULL, NULL),
(883, 'Thành phố <NAME>', 'Thành phố', 89, NULL, NULL),
(884, 'Thành phố Ch<NAME>', 'Thành phố', 89, NULL, NULL),
(886, '<NAME>', 'Huyện', 89, NULL, NULL),
(887, '<NAME>', '<NAME>', 89, NULL, NULL),
(888, '<NAME>', 'Huyện', 89, NULL, NULL),
(889, '<NAME>', 'Huyện', 89, NULL, NULL),
(890, '<NAME>', 'Huyện', 89, NULL, NULL),
(891, '<NAME>', 'Huyện', 89, NULL, NULL),
(892, '<NAME>', 'Huyện', 89, NULL, NULL),
(893, '<NAME>', 'Huyện', 89, NULL, NULL),
(894, '<NAME>', 'Huyện', 89, NULL, NULL),
(899, 'Thành phố <NAME>', 'Th<NAME>', 91, NULL, NULL),
(900, '<NAME>', '<NAME>', 91, NULL, NULL),
(902, '<NAME>', 'Huyện', 91, NULL, NULL),
(903, '<NAME>', 'Huyện', 91, NULL, NULL),
(904, '<NAME>', 'Huyện', 91, NULL, NULL),
(905, '<NAME>', 'Huyện', 91, NULL, NULL),
(906, '<NAME>', 'Huyện', 91, NULL, NULL),
(907, '<NAME>', 'Huyện', 91, NULL, NULL),
(908, '<NAME>', 'Huyện', 91, NULL, NULL),
(909, '<NAME>', 'Huyện', 91, NULL, NULL),
(910, '<NAME>', 'Huyện', 91, NULL, NULL),
(911, '<NAME>', 'Huyện', 91, NULL, NULL),
(912, '<NAME>', 'Huyện', 91, NULL, NULL),
(913, '<NAME>', 'Huyện', 91, NULL, NULL),
(914, '<NAME>', 'Huyện', 91, NULL, NULL),
(916, '<NAME>', 'Quận', 92, NULL, NULL),
(917, '<NAME>', 'Quận', 92, NULL, NULL),
(918, '<NAME>', 'Quận', 92, NULL, NULL),
(919, '<NAME>', 'Quận', 92, NULL, NULL),
(923, '<NAME>', 'Quận', 92, NULL, NULL),
(924, '<NAME>', 'Huyện', 92, NULL, NULL),
(925, '<NAME>', 'Huyện', 92, NULL, NULL),
(926, '<NAME>', 'Huyện', 92, NULL, NULL),
(927, '<NAME>', 'Huyện', 92, NULL, NULL),
(930, 'Thành phố <NAME>', 'Thành phố', 93, NULL, NULL),
(931, '<NAME>', '<NAME>', 93, NULL, NULL),
(932, '<NAME>', 'Huyện', 93, NULL, NULL),
(933, '<NAME>', 'Huyện', 93, NULL, NULL),
(934, '<NAME>', 'Huyện', 93, NULL, NULL),
(935, '<NAME>', 'Huyện', 93, NULL, NULL),
(936, '<NAME>', 'Huyện', 93, NULL, NULL),
(937, '<NAME>', '<NAME>', 93, NULL, NULL),
(941, 'Thành phố S<NAME>', 'Th<NAME>', 94, NULL, NULL),
(942, '<NAME>', 'Huyện', 94, NULL, NULL),
(943, '<NAME>', 'Huyện', 94, NULL, NULL),
(944, '<NAME>', 'Huyện', 94, NULL, NULL),
(945, '<NAME>', 'Huyện', 94, NULL, NULL),
(946, '<NAME>', 'Huyện', 94, NULL, NULL),
(947, '<NAME>', 'Huyện', 94, NULL, NULL),
(948, '<NAME>', '<NAME>', 94, NULL, NULL),
(949, '<NAME>', 'Huyện', 94, NULL, NULL),
(950, '<NAME>', '<NAME>', 94, NULL, NULL),
(951, '<NAME>', 'Huyện', 94, NULL, NULL),
(954, 'Thành phố <NAME>', 'Th<NAME>', 95, NULL, NULL),
(956, '<NAME>', 'Huyện', 95, NULL, NULL),
(957, '<NAME>', 'Huyện', 95, NULL, NULL),
(958, '<NAME>', 'Huyện', 95, NULL, NULL),
(959, '<NAME>', '<NAME>', 95, NULL, NULL),
(960, '<NAME>', 'Huyện', 95, NULL, NULL),
(961, '<NAME>', 'Huyện', 95, NULL, NULL),
(964, 'Thành phố <NAME>', 'Th<NAME>ố', 96, NULL, NULL),
(966, '<NAME>', 'Huyện', 96, NULL, NULL),
(967, '<NAME>', 'Huyện', 96, NULL, NULL),
(968, '<NAME>', 'Huyện', 96, NULL, NULL),
(969, '<NAME>', 'Huyện', 96, NULL, NULL),
(970, '<NAME>', 'Huyện', 96, NULL, NULL),
(971, '<NAME>', 'Huyện', 96, NULL, NULL),
(972, '<NAME>', 'Huyện', 96, NULL, NULL),
(973, '<NAME>', 'Huyện', 96, NULL, NULL);
|
<filename>sql/schema_voc/load_voc_tbls.sql
--Select database
USE @database;
GO
--Load cdm.drug_strength from csv
IF(OBJECT_ID('cdm.drug_strength') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.drug_strength;
BULK INSERT cdm.drug_strength
FROM '@vocab_data_pathDRUG_STRENGTH.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathDRUG_STRENGTH.bad',
TABLOCK
);
END
;
GO
--Load cdm.concept from csv
IF(OBJECT_ID('cdm.concept') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.concept;
BULK INSERT cdm.concept
FROM '@vocab_data_pathCONCEPT.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathCONCEPT.bad',
TABLOCK
);
END
;
GO
--Load cdm.concept_relationship from csv
IF(OBJECT_ID('cdm.concept_relationship') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.concept_relationship;
BULK INSERT cdm.concept_relationship
FROM '@vocab_data_pathCONCEPT_RELATIONSHIP.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathCONCEPT_RELATIONSHIP.bad',
TABLOCK
);
END
;
GO
--Load cdm.concept_ancestor from csv
IF(OBJECT_ID('cdm.concept_ancestor') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.concept_ancestor;
BULK INSERT cdm.concept_ancestor
FROM '@vocab_data_pathCONCEPT_ANCESTOR.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathCONCEPT_ANCESTOR.bad',
TABLOCK
);
END
;
GO
--Load cdm.concept_synonym from csv
IF(OBJECT_ID('cdm.concept_synonym') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.concept_synonym;
BULK INSERT cdm.concept_synonym
FROM '@vocab_data_pathCONCEPT_SYNONYM.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathCONCEPT_SYNONYM.bad',
TABLOCK
);
END
;
GO
--Load cdm.vocabulary from csv
IF(OBJECT_ID('cdm.vocabulary') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.vocabulary;
BULK INSERT cdm.vocabulary
FROM '@vocab_data_pathVOCABULARY.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathVOCABULARY.bad',
TABLOCK
);
END
;
GO
--Load cdm.relationship from csv
IF(OBJECT_ID('cdm.relationship') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.relationship;
BULK INSERT cdm.relationship
FROM '@vocab_data_pathRELATIONSHIP.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathRELATIONSHIP.bad',
TABLOCK
);
END
;
GO
--Load cdm.concept_class from csv
IF(OBJECT_ID('cdm.concept_class') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.concept_class;
BULK INSERT cdm.concept_class
FROM '@vocab_data_pathCONCEPT_CLASS.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathCONCEPT_CLASS.bad',
TABLOCK
);
END
;
GO
--Load cdm.domain from csv
IF(OBJECT_ID('cdm.domain') IS NOT NULL)
BEGIN
TRUNCATE TABLE cdm.domain;
BULK INSERT cdm.domain
FROM '@vocab_data_pathDOMAIN.csv'
WITH (
FIRSTROW = 2,
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '0x0a',
ERRORFILE = '@vocab_error_pathDOMAIN.bad',
TABLOCK
);
END
;
|
CREATE OR REPLACE PACKAGE #plg_short_name#_plg_pkg IS
--
-- Plug-in Execution Function
-- #param p_process
-- #param p_plugin
-- #return apex_plugin.t_process_exec_result
FUNCTION exec_#plg_short_name#(p_process IN apex_plugin.t_process,
p_plugin IN apex_plugin.t_plugin)
RETURN apex_plugin.t_process_exec_result;
--
END #plg_short_name#_plg_pkg;
/
|
<gh_stars>1-10
CREATE PROCEDURE [dbo].[GetTablesNoteByIdWithOutput]
@Id int = 0,
@Note NVarChar(Max) Output
AS
Select @Note = Note From Tables Where Id = @Id
Go
|
-- UPDATE PLAN
-- 8 TABLES ARE BEING USED BY DBT
-- 4 NO_PII TABLES - CREATE THE INDIVIDUAL READ ROLES FOR THESE
-- 4 PII TABLE-- 4 VIEWS NEEDED
-- ADD THE read ROLES TO THE NO_PII GROUP ROLE
-- ADD THE NO_PII GROUP ROLE TO BOTH DBT ROLES
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_CONTACT_KEY_LKU
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_CLAIM_CODE_LOG
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_REWARD_LOG
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_PREFERENCE_CENTER_DE
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SHOPIFY_GIFT_CARD_CODES
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_LOG_MASTER
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_REPLY_LOG
--RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_LOB_SENDS_MASTER
USE ROLE AIRFLOW_SERVICE_ROLE;
USE DATABASE RAW;
USE SCHEMA STITCH_EXACT_TARGET;
CREATE OR REPLACE VIEW VW_DATA_EXTENSION_CONTACT_KEY_LKU COPY GRANTS AS
(
SELECT
CASE_ID ,
CASE_NUMBER ,
CATEGORYID ,
CONTACT_KEY ,
CASE WHEN PII_ACCESS = TRUE THEN EMAIL_ADDRESS ELSE sha2(EMAIL_ADDRESS,512) END AS EMAIL_ADDRESS,
MODIFIEDDATE ,
PHONE ,
USER_ID ,
_CUSTOMOBJECTKEY ,
_SDC_BATCHED_AT ,
_SDC_RECEIVED_AT ,
_SDC_SEQUENCE ,
_SDC_TABLE_VERSION
FROM DATA_EXTENSION_CONTACT_KEY_LKU
LEFT JOIN DATAENG_UTILS.MAPPINGS.PII_MAPPINGS PII ON PII.ROLE = CURRENT_ROLE()
);
CREATE OR REPLACE VIEW VW_DATA_EXTENSION_GC_CLAIM_CODE_LOG COPY GRANTS AS
(
SELECT
CAMPAIGN ,
CATEGORYID ,
CLAIMCODE ,
CLAIMSTATUS ,
CONTACT_KEY ,
DATECLAIMED ,
DATECREATED ,
EMAILSTATUS ,
CASE WHEN PII_ACCESS = TRUE THEN EMAIL_ADDRESS ELSE sha2(EMAIL_ADDRESS,512) END AS EMAIL_ADDRESS,
EXTERNALREFID ,
GUID ,
MODIFIEDDATE ,
ORDER_ID ,
REFERENCEORDERID ,
UTID ,
VALUE ,
_CUSTOMOBJECTKEY ,
_SDC_BATCHED_AT ,
_SDC_RECEIVED_AT ,
_SDC_SEQUENCE ,
_SDC_TABLE_VERSION
FROM DATA_EXTENSION_GC_CLAIM_CODE_LOG
LEFT JOIN DATAENG_UTILS.MAPPINGS.PII_MAPPINGS PII ON PII.ROLE = CURRENT_ROLE()
);
CREATE OR REPLACE VIEW VW_DATA_EXTENSION_GC_REWARD_LOG COPY GRANTS AS
(
SELECT
CAMPAIGN ,
CATEGORYID ,
CONTACT_KEY ,
CREATEDAT ,
CURRENCYCODE ,
EMAILSTATUS ,
EMAILTRIGGER ,
CASE WHEN PII_ACCESS = TRUE THEN EMAIL_ADDRESS ELSE sha2(EMAIL_ADDRESS,512) END AS EMAIL_ADDRESS,
EXTERNALREFID ,
GUID ,
ISRESEND ,
MODIFIEDDATE ,
NOTES ,
ORDER_ID ,
REFERENCEORDERID ,
REWARDCODE ,
REWARDLABEL,
REWARDNAME ,
REWARDURL ,
STATUS ,
UTID ,
VALUE ,
_CUSTOMOBJECTKEY ,
_SDC_BATCHED_AT ,
_SDC_RECEIVED_AT ,
_SDC_SEQUENCE ,
_SDC_TABLE_VERSION
FROM DATA_EXTENSION_GC_REWARD_LOG
LEFT JOIN DATAENG_UTILS.MAPPINGS.PII_MAPPINGS PII ON PII.ROLE = CURRENT_ROLE()
);
CREATE OR REPLACE VIEW VW_DATA_EXTENSION_PREFERENCE_CENTER_DE COPY GRANTS AS
(
SELECT
CATEGORYID ,
CLUB_MEMBER_EMAIL_LAST_UPDATE ,
CLUB_MEMBER_EMAIL_OPT_STATUS ,
CONTACT_KEY ,
CUSTOMER_EMAIL_LAST_UPDATE ,
CUSTOMER_EMAIL_OPT_STATUS ,
CASE WHEN PII_ACCESS = TRUE THEN EMAIL_ADDRESS ELSE sha2(EMAIL_ADDRESS,512) END AS EMAIL_ADDRESS,
LEAD_EMAIL_LAST_UPDATE ,
LEAD_EMAIL_OPT_STATUS ,
MODIFIEDDATE ,
SHOPIFY_EMAIL_LAST_UPDATE ,
SHOPIFY_EMAIL_OPT_STATUS ,
SNOOZE_EMAIL,
SNOOZE_EMAIL_DATE ,
TRANSACTIONAL_EMAIL_LAST_UPDATE ,
TRANSACTIONAL_EMAIL_OPT_STATUS ,
_CUSTOMOBJECTKEY ,
_SDC_BATCHED_AT ,
_SDC_RECEIVED_AT ,
_SDC_SEQUENCE ,
_SDC_TABLE_VERSION ,
REFERAFRIEND_EMAIL_OPT_STATUS ,
REFERAFRIEND_EMAIL_LAST_UPDATE ,
TRAYSWITCH_EMAIL_OPT_STATUS ,
TRAYSWITCH_EMAIL_LAST_UPDATE ,
LANGUAGE_PREFERENCE ,
PHONE_NUMBER
FROM DATA_EXTENSION_PREFERENCE_CENTER_DE
LEFT JOIN DATAENG_UTILS.MAPPINGS.PII_MAPPINGS PII ON PII.ROLE = CURRENT_ROLE()
);
USE ROLE SECURITYADMIN;
-- CREATE THE GROUP ROLES
CREATE ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
-- ADD PERMISIONS
GRANT USAGE ON DATABASE RAW TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT USAGE ON SCHEMA RAW.STITCH_EXACT_TARGET TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
-- CREATE THE INDIVIDUAL TABLE ROLES AND ONE VIEW ROLE
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_CONTACT_KEY_LKU.no_pii.view.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_CLAIM_CODE_LOG.no_pii.view.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_REWARD_LOG.no_pii.view.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_PREFERENCE_CENTER_DE.no_pii.view.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SHOPIFY_GIFT_CARD_CODES.no_pii.table.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_LOG_MASTER.no_pii.table.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_REPLY_LOG.no_pii.table.reader";
CREATE ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_LOB_SENDS_MASTER.no_pii.table.reader";
-- ADD THE INVIDUAL ROLES TO THIER TABLES/VIEW
GRANT SELECT ON VIEW "RAW"."STITCH_EXACT_TARGET"."VW_DATA_EXTENSION_CONTACT_KEY_LKU" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_CONTACT_KEY_LKU.no_pii.view.reader";
GRANT SELECT ON VIEW "RAW"."STITCH_EXACT_TARGET"."VW_DATA_EXTENSION_GC_CLAIM_CODE_LOG" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_CLAIM_CODE_LOG.no_pii.view.reader";
GRANT SELECT ON VIEW "RAW"."STITCH_EXACT_TARGET"."VW_DATA_EXTENSION_GC_REWARD_LOG" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_REWARD_LOG.no_pii.view.reader";
GRANT SELECT ON VIEW "RAW"."STITCH_EXACT_TARGET"."VW_DATA_EXTENSION_PREFERENCE_CENTER_DE" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_PREFERENCE_CENTER_DE.no_pii.view.reader";
GRANT SELECT ON TABLE "RAW"."STITCH_EXACT_TARGET"."DATA_EXTENSION_SHOPIFY_GIFT_CARD_CODES" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SHOPIFY_GIFT_CARD_CODES.no_pii.table.reader";
GRANT SELECT ON TABLE "RAW"."STITCH_EXACT_TARGET"."DATA_EXTENSION_SMS_LOG_MASTER" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_LOG_MASTER.no_pii.table.reader";
GRANT SELECT ON TABLE "RAW"."STITCH_EXACT_TARGET"."DATA_EXTENSION_SMS_REPLY_LOG" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_REPLY_LOG.no_pii.table.reader";
GRANT SELECT ON TABLE "RAW"."STITCH_EXACT_TARGET"."DATA_EXTENSION_LOB_SENDS_MASTER" TO ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_LOB_SENDS_MASTER.no_pii.table.reader";
-- ADD THE INVIDUAL ROLES TO ITS GrOUP ROLES
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_CONTACT_KEY_LKU.no_pii.view.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_CLAIM_CODE_LOG.no_pii.view.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_GC_REWARD_LOG.no_pii.view.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_PREFERENCE_CENTER_DE.no_pii.view.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SHOPIFY_GIFT_CARD_CODES.no_pii.table.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_LOG_MASTER.no_pii.table.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_SMS_REPLY_LOG.no_pii.table.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.DATA_EXTENSION_LOB_SENDS_MASTER.no_pii.table.reader" TO ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" ;
-- ADD GROUP ROLES TO THE DBT ROLE
GRANT ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" TO ROLE DBT_DEV;
GRANT ROLE "RAW.STITCH_EXACT_TARGET.no_pii.reader.role" TO ROLE DBT_PROD;
-------############################################################
-------############################################################
-- TEST AND JUNK STUFF BELOW ----------------------------
------###############################################################
USE WAREHOUSE TRANSFORMING_WAREHOUSE;
USE DATABASE RAW;
USE SCHEMA STITCH_EXACT_TARGET;
show grants on schema STITCH_EXACT_TARGET;
FIVETRAN_ROLE
TRANSFORMER
show grants to ROLE FIVETRAN_ROLE ;
show grants ON ROLE FIVETRAN_ROLE;
SHOW GRANTS ON TABLE
"RAW"."SILVERPOP_HISTORICAL"."STG_SILVERPOP_EVENTS"
-- TRANSFORMER HAS OWNERSHIP DIRECTLY ON THE TABLE |
<reponame>marco-aurelioo/MindStruture
;
CREATE USER IF NOT EXISTS "SA" SALT 'e1409cab4e563c26' HASH 'fa5bd694e52fdb186ddc6807bb150d2842192fbd308e9595c6a62547e81d2de6' ADMIN;
CREATE SEQUENCE "PUBLIC"."SYSTEM_SEQUENCE_D4DAA309_A51A_4CD0_9B41_245BA705B596" START WITH 5 BELONGS_TO_TABLE;
CREATE MEMORY TABLE "PUBLIC"."USERCONNECTION"(
"USERID" VARCHAR(255) NOT NULL,
"PROVIDERID" VARCHAR(255) NOT NULL,
"PROVIDERUSERID" VARCHAR(255) NOT NULL,
"RANK" INT NOT NULL,
"DISPLAYNAME" VARCHAR(255),
"PROFILEURL" VARCHAR(512),
"IMAGEURL" VARCHAR(512),
"ACCESSTOKEN" VARCHAR(512) NOT NULL,
"SECRET" VARCHAR(512),
"REFRESHTOKEN" VARCHAR(512),
"EXPIRETIME" BIGINT
);
ALTER TABLE "PUBLIC"."USERCONNECTION" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_5" PRIMARY KEY("USERID", "PROVIDERID", "PROVIDERUSERID");
-- 1 +/- SELECT COUNT(*) FROM PUBLIC.USERCONNECTION;
INSERT INTO "PUBLIC"."USERCONNECTION" VALUES
('6565231086850331', 'facebook', '6565231086850331', 1, '<NAME>', NULL, 'https://graph.facebook.com/v2.5/6565231086850331/picture', 'EAAFDEzANAwYBABGhzNM6o08gdOuJurDdQfa0NDr4Hl2tDOLyACpmyibwRZAVpmRyZB62tpgbInaYFKwz5zoBAZC1uuHXxwFVySNr9uyY5UJPPYDL<KEY>', NULL, NULL, 1636205917041);
CREATE UNIQUE INDEX "PUBLIC"."USERCONNECTIONRANK" ON "PUBLIC"."USERCONNECTION"("USERID", "PROVIDERID", "RANK");
CREATE MEMORY TABLE "PUBLIC"."FRIEND_LIST"(
"ID" BINARY NOT NULL,
"USER_ID" BINARY
);
ALTER TABLE "PUBLIC"."FRIEND_LIST" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_D" PRIMARY KEY("ID");
-- 2 +/- SELECT COUNT(*) FROM PUBLIC.FRIEND_LIST;
INSERT INTO "PUBLIC"."FRIEND_LIST" VALUES
(X'6c7ade2dc762456d94f7ee57fb27072f', X'fe08f7bb3e864d8193b007610cccf175'),
(X'fbfaa708d28942f8a40f03273d6c67ac', X'eefa134d94d84940a6f3c72715e1ea4d');
CREATE MEMORY TABLE "PUBLIC"."FRIEND_LIST_FRIENDS"(
"FRIEND_LIST_ENTITY_ID" BINARY NOT NULL,
"FRIENDS_ID" BINARY NOT NULL
);
-- 2 +/- SELECT COUNT(*) FROM PUBLIC.FRIEND_LIST_FRIENDS;
INSERT INTO "PUBLIC"."FRIEND_LIST_FRIENDS" VALUES
(X'6c7ade2dc762456d94f7ee57fb27072f', X'eefa134d94d84940a6f3c72715e1ea4d'),
(X'fbfaa708d28942f8a40f03273d6c67ac', X'fe08f7bb3e864d8193b007610cccf175');
CREATE MEMORY TABLE "PUBLIC"."ROLE"(
"ID" INTEGER DEFAULT (NEXT VALUE FOR "PUBLIC"."SYSTEM_SEQUENCE_D4DAA309_A51A_4CD0_9B41_245BA705B596") NOT NULL NULL_TO_DEFAULT SEQUENCE "PUBLIC"."SYSTEM_SEQUENCE_D4DAA309_A51A_4CD0_9B41_245BA705B596",
"ROLE" VARCHAR(255)
);
ALTER TABLE "PUBLIC"."ROLE" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_2" PRIMARY KEY("ID");
-- 4 +/- SELECT COUNT(*) FROM PUBLIC.ROLE;
INSERT INTO "PUBLIC"."ROLE" VALUES
(1, 'USER'),
(2, 'COORD'),
(3, 'ADMIN'),
(4, 'ANONIMO');
CREATE MEMORY TABLE "PUBLIC"."MESSAGE"(
"ID" BINARY NOT NULL,
"ROLE" VARCHAR(255),
"FROM_USER_ID" BINARY(255),
"TO" VARCHAR(255),
"MSG" VARCHAR(255),
"READED" BIT
);
ALTER TABLE "PUBLIC"."MESSAGE" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_6" PRIMARY KEY("ID");
-- 1 +/- SELECT COUNT(*) FROM PUBLIC.MESSAGE;
INSERT INTO "PUBLIC"."MESSAGE" VALUES
(X'9662d80e6d224a06a28b3941480ffafb', NULL, X'eefa134d94d84940a6f3c72715e1ea4d', '<EMAIL>', STRINGDECODE('solicita\u00e7\u00e3o de amizade de marco acesso o link http://localhost:8080/amigos/confirmacao?from=eefa134d-94d8-4940-a6f3-c72715e1ea4d&msgId=9662d80e-6d22-4a06-a28b-3941480ffafb'), FALSE);
CREATE MEMORY TABLE "PUBLIC"."USER"(
"ID" BINARY NOT NULL,
"AVATAR_URL" VARCHAR(255),
"EMAIL" VARCHAR(255),
"NAME" VARCHAR(255),
"PASSWORD" VARCHAR(255)
);
ALTER TABLE "PUBLIC"."USER" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_27" PRIMARY KEY("ID");
-- 2 +/- SELECT COUNT(*) FROM PUBLIC.USER;
INSERT INTO "PUBLIC"."USER" VALUES
(X'fe08f7bb3e864d8193b007610cccf175', 'https://graph.facebook.com/v2.5/6565231086850331/picture', '<EMAIL>', '<NAME>', '$2a$10$bVvrIRQ7DWJ6A5ueiHGGW.VGESorg4lUkH8WB4CaaC2S4gut4FpPe'),
(X'eefa134d94d84940a6f3c72715e1ea4d', NULL, '<EMAIL>', 'marco', '$2a$10$lZ1VbgnWZyl6hakD9KwRfuj2T2TRf.Pcp4Ihe96eeJWl89/0mCP9a');
CREATE MEMORY TABLE "PUBLIC"."USER_ROLES"(
"USER_ID" BINARY NOT NULL,
"ROLE_ID" INTEGER NOT NULL
);
ALTER TABLE "PUBLIC"."USER_ROLES" ADD CONSTRAINT "PUBLIC"."CONSTRAINT_C" PRIMARY KEY("USER_ID", "ROLE_ID");
-- 2 +/- SELECT COUNT(*) FROM PUBLIC.USER_ROLES;
INSERT INTO "PUBLIC"."USER_ROLES" VALUES
(X'fe08f7bb3e864d8193b007610cccf175', 1),
(X'eefa134d94d84940a6f3c72715e1ea4d', 1);
ALTER TABLE "PUBLIC"."FRIEND_LIST_FRIENDS" ADD CONSTRAINT "PUBLIC"."FKCPYQANGBH5KL18M7EWB7P0OUG" FOREIGN KEY("FRIENDS_ID") REFERENCES "PUBLIC"."USER"("ID") NOCHECK;
ALTER TABLE "PUBLIC"."FRIEND_LIST" ADD CONSTRAINT "PUBLIC"."FK838N1NM0A7WVT1A9PXS0FT8KK" FOREIGN KEY("USER_ID") REFERENCES "PUBLIC"."USER"("ID") NOCHECK;
ALTER TABLE "PUBLIC"."USER_ROLES" ADD CONSTRAINT "PUBLIC"."FK55ITPPKW3I07DO3H7QOCLQD4K" FOREIGN KEY("USER_ID") REFERENCES "PUBLIC"."USER"("ID") NOCHECK;
ALTER TABLE "PUBLIC"."FRIEND_LIST_FRIENDS" ADD CONSTRAINT "PUBLIC"."FK6DW7JCES1OJFEQ6WMVBJ51GUF" FOREIGN KEY("FRIEND_LIST_ENTITY_ID") REFERENCES "PUBLIC"."FRIEND_LIST"("ID") NOCHECK;
ALTER TABLE "PUBLIC"."USER_ROLES" ADD CONSTRAINT "PUBLIC"."FKRHFOVTCIQ1L558CW6UDG0H0D3" FOREIGN KEY("ROLE_ID") REFERENCES "PUBLIC"."ROLE"("ID") NOCHECK;
ALTER TABLE "PUBLIC"."MESSAGE" ADD CONSTRAINT "PUBLIC"."FK3NJU8ASF4V72H0D7G6VGTX7P2" FOREIGN KEY("FROM_USER_ID") REFERENCES "PUBLIC"."USER"("ID") NOCHECK;
|
<reponame>himanshugawari/Recipe
insert into category(description) values('American');
insert into category(description) values('Italian');
insert into category(description) values('Mexican');
insert into category(description) values('Fast Food');
insert into unit_of_measure(description) values('Teaspoon');
insert into unit_of_measure(description) values('Tablespoon');
insert into unit_of_measure(description) values('Cup');
insert into unit_of_measure(description) values('Pinch');
insert into unit_of_measure(description) values('Ounce');
insert into unit_of_measure(description) values('Each');
insert into unit_of_measure(description) values('Dash');
insert into unit_of_measure(description) values('Pint'); |
<filename>First Program.sql
#SELECT cast(123 AS DECIMAL(5,2))
#123.00 OUTPUT
#! SELECT CAST(12345.12 AS NUMERIC(10,5))
#SELECT cast(123 AS DECIMAL(5,3))
#99.999 OUTPUT
#SELECT CAST(1234 AS DECIMAL(5,3))
#99.999 OUTPUT
#SELECT CAST(123 AS DECIMAL(5,1))
#123.0 OUTPUT
#SELECT CAST(PI() AS FLOAT)
#3.1415927410125732 OUTPUT
SELECT CAST(PI() AS REAL)
#3.141592653589793 OUTPUT
|
<filename>genehancer/fill-2021/createDatabase-gh50.sql
create database gh50;
|
<gh_stars>100-1000
ALTER TABLE t1 ALTER COLUMN c SET DEFAULT 3 |
--
-- Modification table campagne
--
ALTER TABLE `campagne`
ADD COLUMN `dat_fin_candidat_camp` DATE NULL DEFAULT NULL COMMENT 'date de fin d\'ouverture aux candidats' AFTER `dat_fin_camp`; |
SELECT
YMD
,MAX(TOTAL) AS TOTAL
,MIN(BEFORE_TOTAL) AS BEFORE
FROM
(
SELECT
TO_CHAR(TIMESTAMPADD(
'MINUTE'
,?
,INSERT_DATETIME
), 'YYYYMMDD') AS YMD
,TOTAL
,BEFORE_TOTAL
FROM
POINT_USER_HISTORIES
WHERE
USER_ID = ?
AND INSERT_DATETIME > DATEADD(
'DAY'
,-32
,NOW()
)
) AS SUBQ
GROUP BY
YMD
ORDER BY
YMD;
|
-- Convert schema '/Users/doug/perl/cpantesters/schema/share/CPAN-Testers-Schema-0.019-MySQL.sql' to 'CPAN::Testers::Schema v0.020':;
-- No differences found;
|
<gh_stars>0
ALTER TABLE `domain` ADD `domain_name` VARCHAR( 255 ) NULL AFTER `domain_id` ;
ALTER TABLE `domain` ADD `amazon_id` VARCHAR( 120 ) NULL ;
ALTER TABLE `domain` ADD `amazon_keyword` VARCHAR( 255 ) NULL ;
ALTER TABLE `domain` ADD `ebay_id` VARCHAR( 120 ) NULL ;
ALTER TABLE `domain` ADD `ebay_keyword` VARCHAR( 120 ) NULL ;
ALTER TABLE `domain` ADD `forum_url` VARCHAR( 120 ) NULL ;
ALTER TABLE `domain` ADD `forum_blank` ENUM( '0', '1' ) NOT NULL DEFAULT '0';
|
/*
Navicat MySQL Data Transfer
Source Server : Local
Source Server Version : 50505
Source Host : localhost:3306
Source Database : portal
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2017-05-31 14:43:27
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for auth_assignment
-- ----------------------------
DROP TABLE IF EXISTS `auth_assignment`;
CREATE TABLE `auth_assignment` (
`item_name` varchar(64) COLLATE utf8_bin NOT NULL,
`user_id` int(11) unsigned NOT NULL,
`created_at` int(11) DEFAULT NULL,
PRIMARY KEY (`item_name`,`user_id`),
KEY `user_id` (`user_id`),
CONSTRAINT `auth_assignment_ibfk_1` FOREIGN KEY (`item_name`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `auth_assignment_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of auth_assignment
-- ----------------------------
INSERT INTO `auth_assignment` VALUES ('superAdmin', '1', null);
-- ----------------------------
-- Table structure for auth_item
-- ----------------------------
DROP TABLE IF EXISTS `auth_item`;
CREATE TABLE `auth_item` (
`name` varchar(64) COLLATE utf8_bin NOT NULL,
`type` int(11) NOT NULL,
`description` text COLLATE utf8_bin,
`rule_name` varchar(64) COLLATE utf8_bin DEFAULT NULL,
`data` text COLLATE utf8_bin,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`),
KEY `rule_name` (`rule_name`),
KEY `type` (`type`),
CONSTRAINT `auth_item_ibfk_1` FOREIGN KEY (`rule_name`) REFERENCES `auth_rule` (`name`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of auth_item
-- ----------------------------
INSERT INTO `auth_item` VALUES ('create.user', '1', 0x416C6C6F77204372656174652055736572, null, null, null, null);
INSERT INTO `auth_item` VALUES ('delete.user', '1', 0x416C6C6F772044656C6574652055736572, null, null, null, null);
INSERT INTO `auth_item` VALUES ('superAdmin', '3', 0x416C6C6F7720666F7220616C6C204D616E61676D656E74, null, null, null, null);
INSERT INTO `auth_item` VALUES ('update.user', '1', 0x416C6C6F77205570646174652055736572, null, null, null, null);
INSERT INTO `auth_item` VALUES ('usersManagement', '2', 0x416C6C6F77206D616E616765207573657273, null, null, null, null);
-- ----------------------------
-- Table structure for auth_item_child
-- ----------------------------
DROP TABLE IF EXISTS `auth_item_child`;
CREATE TABLE `auth_item_child` (
`parent` varchar(64) COLLATE utf8_bin NOT NULL,
`child` varchar(64) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`parent`,`child`),
KEY `child` (`child`),
CONSTRAINT `auth_item_child_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `auth_item_child_ibfk_2` FOREIGN KEY (`child`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of auth_item_child
-- ----------------------------
INSERT INTO `auth_item_child` VALUES ('superAdmin', 'usersManagement');
INSERT INTO `auth_item_child` VALUES ('usersManagement', 'create.user');
INSERT INTO `auth_item_child` VALUES ('usersManagement', 'delete.user');
INSERT INTO `auth_item_child` VALUES ('usersManagement', 'update.user');
-- ----------------------------
-- Table structure for auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `auth_rule`;
CREATE TABLE `auth_rule` (
`name` varchar(64) COLLATE utf8_bin NOT NULL,
`data` text COLLATE utf8_bin,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of auth_rule
-- ----------------------------
-- ----------------------------
-- Table structure for migration
-- ----------------------------
DROP TABLE IF EXISTS `migration`;
CREATE TABLE `migration` (
`version` varchar(180) COLLATE utf8_bin NOT NULL,
`apply_time` int(11) DEFAULT NULL,
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of migration
-- ----------------------------
INSERT INTO `migration` VALUES ('m000000_000000_base', '1456041626');
INSERT INTO `migration` VALUES ('m130524_201442_init', '1456041630');
-- ----------------------------
-- Table structure for tbl_blog_category
-- ----------------------------
DROP TABLE IF EXISTS `tbl_blog_category`;
CREATE TABLE `tbl_blog_category` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned DEFAULT NULL,
`title` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`createDatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`),
CONSTRAINT `tbl_blog_category_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_blog_category
-- ----------------------------
INSERT INTO `tbl_blog_category` VALUES ('1', '1', 'learn Yii2', '2017-05-30 12:06:36');
INSERT INTO `tbl_blog_category` VALUES ('4', '1', 'learn bootstrap', '2017-05-31 14:20:03');
-- ----------------------------
-- Table structure for tbl_blog_post
-- ----------------------------
DROP TABLE IF EXISTS `tbl_blog_post`;
CREATE TABLE `tbl_blog_post` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned DEFAULT NULL,
`category_id` int(11) unsigned DEFAULT NULL,
`title` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`description` text COLLATE utf8_bin COMMENT '',
`content` text COLLATE utf8_bin COMMENT '',
`keyWord` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '',
`createDatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`),
KEY `category_id` (`category_id`),
CONSTRAINT `tbl_blog_post_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`),
CONSTRAINT `tbl_blog_post_ibfk_2` FOREIGN KEY (`category_id`) REFERENCES `tbl_blog_category` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_blog_post
-- ----------------------------
INSERT INTO `tbl_blog_post` VALUES ('4', '1', '4', 'My Company', 0x3C70207374796C653D22746578742D616C69676E3A6A757374696679223E4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E204163637573616D7573206163637573616E7469756D20616C6961732C206170657269616D206172636869746563746F20617373756D656E64612061747175652063757069646974617465206572726F72206578706C696361626F2066616365726520667567697420696C6C6F20696E636964756E742C20697073612C206D6178696D65206E65717565206E65736369756E74206E6F737472756D206F64697420706572737069636961746973207175617320717569612072656D20726570726568656E64657269742073657175692073696E742073756E742076657269746174697320766F6C7570746174657321204163637573616E7469756D20616C697175696420636F6D6D6F646920646562697469732064696374612064697374696E6374696F20656E696D2065756D20686172756D2C206C617564616E7469756D2C206D6F6469206E65636573736974617469627573206E65736369756E74206E6F626973206E6F6E206F64696F20706572666572656E64697320706F72726F20706F7373696D7573207072616573656E7469756D2073656420736571756920746F74616D207665726F212049746171756520726570726568656E64657269742073616570652076657269746174697320766F6C757074617320766F6C7570746174652E204163637573616D757320646F6C6F72656D71756520656120657420657865726369746174696F6E656D20696E636964756E7420697073616D206E617475732C2070726F766964656E742071756173692071756F2073617069656E74652073756E7420766F6C7570746174652E204163637573616E7469756D20617373756D656E646120636F6E73657175756E7475722064656C656374757320696E636964756E7420697073756D206F6D6E69732C207061726961747572207175616520717569732071756F732C207265637573616E6461652073657175692073756E74207375736369706974207665726974617469732E3C2F703E0D0A, 0x3C70207374796C653D22746578742D616C69676E3A6A757374696679223E4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E204163637573616D7573206163637573616E7469756D20616C6961732C206170657269616D206172636869746563746F20617373756D656E64612061747175652063757069646974617465206572726F72206578706C696361626F2066616365726520667567697420696C6C6F20696E636964756E742C20697073612C206D6178696D65206E65717565206E65736369756E74206E6F737472756D206F64697420706572737069636961746973207175617320717569612072656D20726570726568656E64657269742073657175692073696E742073756E742076657269746174697320766F6C7570746174657321204163637573616E7469756D20616C697175696420636F6D6D6F646920646562697469732064696374612064697374696E6374696F20656E696D2065756D20686172756D2C206C617564616E7469756D2C206D6F6469206E65636573736974617469627573206E65736369756E74206E6F626973206E6F6E206F64696F20706572666572656E64697320706F72726F20706F7373696D7573207072616573656E7469756D2073656420736571756920746F74616D207665726F212049746171756520726570726568656E64657269742073616570652076657269746174697320766F6C757074617320766F6C7570746174652E204163637573616D757320646F6C6F72656D71756520656120657420657865726369746174696F6E656D20696E636964756E7420697073616D206E617475732C2070726F766964656E742071756173692071756F2073617069656E74652073756E7420766F6C7570746174652E204163637573616E7469756D20617373756D656E646120636F6E73657175756E7475722064656C656374757320696E636964756E7420697073756D206F6D6E69732C207061726961747572207175616520717569732071756F732C207265637573616E6461652073657175692073756E74207375736369706974207665726974617469732E4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E204163637573616D7573206163637573616E7469756D20616C6961732C206170657269616D206172636869746563746F20617373756D656E64612061747175652063757069646974617465206572726F72206578706C696361626F2066616365726520667567697420696C6C6F20696E636964756E742C20697073612C206D6178696D65206E65717565206E65736369756E74206E6F737472756D206F64697420706572737069636961746973207175617320717569612072656D20726570726568656E64657269742073657175692073696E742073756E742076657269746174697320766F6C7570746174657321204163637573616E7469756D20616C697175696420636F6D6D6F646920646562697469732064696374612064697374696E6374696F20656E696D2065756D20686172756D2C206C617564616E7469756D2C206D6F6469206E65636573736974617469627573206E65736369756E74206E6F626973206E6F6E206F64696F20706572666572656E64697320706F72726F20706F7373696D7573207072616573656E7469756D2073656420736571756920746F74616D207665726F212049746171756520726570726568656E64657269742073616570652076657269746174697320766F6C757074617320766F6C7570746174652E204163637573616D757320646F6C6F72656D71756520656120657420657865726369746174696F6E656D20696E636964756E7420697073616D206E617475732C2070726F766964656E742071756173692071756F2073617069656E74652073756E7420766F6C7570746174652E204163637573616E7469756D20617373756D656E646120636F6E73657175756E7475722064656C656374757320696E636964756E7420697073756D206F6D6E69732C207061726961747572207175616520717569732071756F732C207265637573616E6461652073657175692073756E74207375736369706974207665726974617469732E4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E204163637573616D7573206163637573616E7469756D20616C6961732C206170657269616D206172636869746563746F20617373756D656E64612061747175652063757069646974617465206572726F72206578706C696361626F2066616365726520667567697420696C6C6F20696E636964756E742C20697073612C206D6178696D65206E65717565206E65736369756E74206E6F737472756D206F64697420706572737069636961746973207175617320717569612072656D20726570726568656E64657269742073657175692073696E742073756E742076657269746174697320766F6C7570746174657321204163637573616E7469756D20616C697175696420636F6D6D6F646920646562697469732064696374612064697374696E6374696F20656E696D2065756D20686172756D2C206C617564616E7469756D2C206D6F6469206E65636573736974617469627573206E65736369756E74206E6F626973206E6F6E206F64696F20706572666572656E64697320706F72726F20706F7373696D7573207072616573656E7469756D2073656420736571756920746F74616D207665726F212049746171756520726570726568656E64657269742073616570652076657269746174697320766F6C757074617320766F6C7570746174652E204163637573616D757320646F6C6F72656D71756520656120657420657865726369746174696F6E656D20696E636964756E7420697073616D206E617475732C2070726F766964656E742071756173692071756F2073617069656E74652073756E7420766F6C7570746174652E204163637573616E7469756D20617373756D656E646120636F6E73657175756E7475722064656C656374757320696E636964756E7420697073756D206F6D6E69732C207061726961747572207175616520717569732071756F732C207265637573616E6461652073657175692073756E74207375736369706974207665726974617469732E3C2F703E0D0A, 'Lorem ipsum dolor sit amet', '2017-05-31 14:39:13');
-- ----------------------------
-- Table structure for tbl_carousel
-- ----------------------------
DROP TABLE IF EXISTS `tbl_carousel`;
CREATE TABLE `tbl_carousel` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned NOT NULL,
`image` varchar(128) COLLATE utf8_bin NOT NULL,
`link` varchar(255) COLLATE utf8_bin NOT NULL,
`title` varchar(128) COLLATE utf8_bin DEFAULT NULL,
`text` text COLLATE utf8_bin,
`order_num` int(11) DEFAULT NULL,
`status` int(1) DEFAULT '1',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_carousel
-- ----------------------------
INSERT INTO `tbl_carousel` VALUES ('3', '1', 'upload/image/wSeBQN1aBKQDzrEXHk-GEGz8Zn7i5fKT.svg', 'http://127.0.0.1/CertAdmin/backend/web/index.php/carousel/create', 'Lorem ipsum dolor sit amet, consectetur 1', 0x417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F20, '1', '1');
INSERT INTO `tbl_carousel` VALUES ('4', '1', 'upload/image/2SEY50-JMTVUo3SiLrSQzNaHUl6GJv8j.svg', 'http://127.0.0.1/CertAdmin/backend/web/index.php/carousel/create', 'Lorem ipsum dolor sit amet, consectetur 2', 0x417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F, '2', '1');
INSERT INTO `tbl_carousel` VALUES ('5', '1', 'upload/image/uTXLXrurdVrKb6zRh3El4yzQAC025BgJ.svg', '', 'Lorem ipsum dolor sit amet, consectetur 3', 0x417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F, '3', '1');
-- ----------------------------
-- Table structure for tbl_contact_us
-- ----------------------------
DROP TABLE IF EXISTS `tbl_contact_us`;
CREATE TABLE `tbl_contact_us` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`phoneNumber` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT '',
`email` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`subject` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`body` text COLLATE utf8_bin,
`createDateTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_contact_us
-- ----------------------------
INSERT INTO `tbl_contact_us` VALUES ('1', 'lorem', '09122222222', '<EMAIL>', 'lorem', 0xD985D8AAD986, '2016-02-24 14:21:37');
INSERT INTO `tbl_contact_us` VALUES ('2', '<PASSWORD>', '09122222222', '<EMAIL>', '<PASSWORD>', 0xD985D8AAD986, '2016-02-27 17:35:00');
-- ----------------------------
-- Table structure for tbl_faqs
-- ----------------------------
DROP TABLE IF EXISTS `tbl_faqs`;
CREATE TABLE `tbl_faqs` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(9) unsigned DEFAULT NULL,
`question` varchar(150) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`respons` text CHARACTER SET utf8 COLLATE utf8_bin,
`createDateTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of tbl_faqs
-- ----------------------------
-- ----------------------------
-- Table structure for tbl_log
-- ----------------------------
DROP TABLE IF EXISTS `tbl_log`;
CREATE TABLE `tbl_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user` varchar(50) DEFAULT NULL,
`password` varchar(100) DEFAULT NULL,
`success` int(1) DEFAULT NULL,
`ip` varchar(20) DEFAULT NULL,
`userAgent` text,
`createDateTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tbl_log
-- ----------------------------
-- ----------------------------
-- Table structure for tbl_opportunity
-- ----------------------------
DROP TABLE IF EXISTS `tbl_opportunity`;
CREATE TABLE `tbl_opportunity` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`phoneNumber` varchar(20) COLLATE utf8_bin DEFAULT NULL,
`resume` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`email` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`createDateTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_opportunity
-- ----------------------------
INSERT INTO `tbl_opportunity` VALUES ('1', 'lorem', '09122222222', 'upload/resume/Bu-XIP3kO7ZpGH5Mc5iXZDSDxQSMY5jt.pdf', '<EMAIL>', '2016-02-24 14:14:49');
-- ----------------------------
-- Table structure for tbl_order
-- ----------------------------
DROP TABLE IF EXISTS `tbl_order`;
CREATE TABLE `tbl_order` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`company` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`phoneNumber` varchar(20) COLLATE utf8_bin DEFAULT NULL,
`website` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`email` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`description` text COLLATE utf8_bin,
`createDateTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_order
-- ----------------------------
INSERT INTO `tbl_order` VALUES ('1', '123', '123', '123', '123', '[email protected]', 0xD8B4D8B1D8AD20D9BED8B1D988DA98D98720, '2016-02-24 13:52:47');
-- ----------------------------
-- Table structure for tbl_sample
-- ----------------------------
DROP TABLE IF EXISTS `tbl_sample`;
CREATE TABLE `tbl_sample` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned DEFAULT NULL,
`title` varchar(150) COLLATE utf8_bin DEFAULT NULL,
`content` text COLLATE utf8_bin,
`url_link` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`url_display_name` varchar(100) COLLATE utf8_bin DEFAULT NULL,
`image` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`createDateTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_sample
-- ----------------------------
INSERT INTO `tbl_sample` VALUES ('2', '1', 'Lorem ipsum dolor sit amet, consectetur', 0x4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E, 'http://www.google.com', 'Assumenda eligendi ', 'upload/image/eiRlsyTEV7nMUTo16xulxp0ayIZNAQ1P.png', '2017-05-30 14:24:22');
INSERT INTO `tbl_sample` VALUES ('4', '1', 'Lorem ipsum dolor sit amet, consectetur', 0x4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E, 'www.yahoo.com', 'Assumenda eligendi ', 'upload/image/4IvZE5HH2Lxa7O8E1miohyl70F4-EwKS.png', '2017-05-30 14:23:25');
INSERT INTO `tbl_sample` VALUES ('5', '1', 'Lorem ipsum dolor sit amet, consectetur', 0x4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E20416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E, 'www.msn.com', 'Assumenda eligendi ', 'upload/image/Yo7sj_1aAXufs7uikah1XX_gVfV2wXWP.png', '2017-05-30 14:23:58');
-- ----------------------------
-- Table structure for tbl_setting
-- ----------------------------
DROP TABLE IF EXISTS `tbl_setting`;
CREATE TABLE `tbl_setting` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned DEFAULT NULL,
`type` enum('About','Opportunity','WorkingHours','PostalCode','PhoneNumber','Email','Address','FaxNumber','Facebook','Twitter','Aparat','Youtube','Linkedin','Telegram','Instagram','GooglePlus','CompanyName') COLLATE utf8_bin DEFAULT NULL,
`content` text COLLATE utf8_bin,
`updateDateTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tbl_setting
-- ----------------------------
INSERT INTO `tbl_setting` VALUES ('1', '1', 'About', 0x3C70207374796C653D22746578742D616C69676E3A6A757374696679223E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4163637573616D7573206163637573616E7469756D20616C6961732C206170657269616D206172636869746563746F20617373756D656E64612061747175652063757069646974617465206572726F72206578706C696361626F2066616365726520667567697420696C6C6F20696E636964756E742C20697073612C206D6178696D65206E65717565206E65736369756E74206E6F737472756D206F64697420706572737069636961746973207175617320717569612072656D20726570726568656E64657269742073657175692073696E742073756E742076657269746174697320766F6C75707461746573213C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4163637573616E7469756D20616C697175696420636F6D6D6F646920646562697469732064696374612064697374696E6374696F20656E696D2065756D20686172756D2C206C617564616E7469756D2C206D6F6469206E65636573736974617469627573206E65736369756E74206E6F626973206E6F6E206F64696F20706572666572656E64697320706F72726F20706F7373696D7573207072616573656E7469756D2073656420736571756920746F74616D207665726F212049746171756520726570726568656E64657269742073616570652076657269746174697320766F6C757074617320766F6C7570746174652E3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4163637573616D757320646F6C6F72656D71756520656120657420657865726369746174696F6E656D20696E636964756E7420697073616D206E617475732C2070726F766964656E742071756173692071756F2073617069656E74652073756E7420766F6C7570746174652E204163637573616E7469756D20617373756D656E646120636F6E73657175756E7475722064656C656374757320696E636964756E7420697073756D206F6D6E69732C207061726961747572207175616520717569732071756F732C207265637573616E6461652073657175692073756E74207375736369706974207665726974617469732E3C2F7370616E3E3C2F703E0D0A0D0A3C703E266E6273703B3C2F703E0D0A0D0A3C703E266E6273703B3C2F703E0D0A, '2017-05-30 11:09:53');
INSERT INTO `tbl_setting` VALUES ('2', '1', 'Opportunity', 0x3C6469763E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4C6F72656D20697073756D20646F6C6F722073697420616D65742C20636F6E7365637465747572206164697069736963696E6720656C69742E20417373756D656E646120656C6967656E6469206D61676E6920706172696174757220706F7373696D75732074656D706F72613F204164697069736369206265617461652C20646F6C6F72657320656C6967656E646920657420657865726369746174696F6E656D20696420696D7065646974206E657175652C206E6F626973206E756D7175616D206F64696F20706F72726F20736F6C7574612073757363697069742075742E3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E416420636F6E73657175756E7475722063756C706120646F6C6F726962757320647563696D757320667567697420696E636964756E7420697073616D20697073756D206C61626F72696F73616D206C696265726F2C206D6F6C657374696165206E6F6E206E6F737472756D20717569737175616D20726570656C6C656E6475732073616570652073617069656E746520737573636970697420756E64652076656C20766F6C7570746174656D20766F6C7570746174657320766F6C7570746174696275732E20416C697175616D20646F6C6F7220647563696D7573206C61626F72756D206E69736920717561657261742E3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4163637573616D7573206163637573616E7469756D20616C6961732C206170657269616D206172636869746563746F20617373756D656E64612061747175652063757069646974617465206572726F72206578706C696361626F2066616365726520667567697420696C6C6F20696E636964756E742C20697073612C206D6178696D65206E65717565206E65736369756E74206E6F737472756D206F64697420706572737069636961746973207175617320717569612072656D20726570726568656E64657269742073657175692073696E742073756E742076657269746174697320766F6C75707461746573213C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4163637573616E7469756D20616C697175696420636F6D6D6F646920646562697469732064696374612064697374696E6374696F20656E696D2065756D20686172756D2C206C617564616E7469756D2C206D6F6469206E65636573736974617469627573206E65736369756E74206E6F626973206E6F6E206F64696F20706572666572656E64697320706F72726F20706F7373696D7573207072616573656E7469756D2073656420736571756920746F74616D207665726F212049746171756520726570726568656E64657269742073616570652076657269746174697320766F6C757074617320766F6C7570746174652E3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E266E6273703B3C2F7370616E3E3C7370616E207374796C653D22666F6E742D66616D696C793A6972616E73616E737A2C73657269663B20666F6E742D73697A653A31347078223E4163637573616D757320646F6C6F72656D71756520656120657420657865726369746174696F6E656D20696E636964756E7420697073616D206E617475732C2070726F766964656E742071756173692071756F2073617069656E74652073756E7420766F6C7570746174652E204163637573616E7469756D20617373756D656E646120636F6E73657175756E7475722064656C656374757320696E636964756E7420697073756D206F6D6E69732C207061726961747572207175616520717569732071756F732C207265637573616E6461652073657175692073756E74207375736369706974207665726974617469732E3C2F7370616E3E3C2F6469763E0D0A0D0A3C703E266E6273703B3C2F703E0D0A, '2017-05-30 11:09:38');
INSERT INTO `tbl_setting` VALUES ('3', '1', 'Facebook', 0x68747470733A2F2F7777772E66616365626F6F6B2E636F6D2F6B706F7274616C, '2017-05-29 12:49:00');
INSERT INTO `tbl_setting` VALUES ('4', '1', 'Twitter', 0x68747470733A2F2F747769747465722E636F6D2F6B706F7274616C, '2017-05-29 12:49:05');
INSERT INTO `tbl_setting` VALUES ('5', '1', 'Linkedin', 0x68747470733A2F2F7777772E6C696E6B6564696E2E636F6D2F636F6D70616E792F6B706F7274616C, '2017-05-29 12:49:09');
INSERT INTO `tbl_setting` VALUES ('6', '1', 'Aparat', 0x687474703A2F2F7777772E6170617261742E636F6D2F6B706F7274616C, '2017-05-29 12:49:13');
INSERT INTO `tbl_setting` VALUES ('7', '1', 'Telegram', 0x687474703A2F2F7777772E74656C656772616D2E6D652F6B706F7274616C, '2017-05-29 12:49:19');
INSERT INTO `tbl_setting` VALUES ('8', '1', 'GooglePlus', 0x68747470733A2F2F706C75732E676F6F676C652E636F6D2F636F6D6D756E69746965732F6B706F7274616C, '2017-05-29 12:49:26');
INSERT INTO `tbl_setting` VALUES ('9', '1', 'Youtube', null, '2016-10-30 12:25:34');
INSERT INTO `tbl_setting` VALUES ('10', '1', 'Instagram', null, '2016-10-30 12:25:34');
INSERT INTO `tbl_setting` VALUES ('11', '1', 'Address', 0x41646472657373, '2017-05-30 10:09:28');
INSERT INTO `tbl_setting` VALUES ('12', '1', 'Email', 0x696E666F406B506F7274616C2E6972, '2017-05-30 10:09:28');
INSERT INTO `tbl_setting` VALUES ('13', '1', 'PhoneNumber', 0x303931323030303030303020E28093203838313030303030, '2017-05-30 10:09:28');
INSERT INTO `tbl_setting` VALUES ('14', '1', 'FaxNumber', 0x3838303030303030, '2017-05-30 10:09:28');
INSERT INTO `tbl_setting` VALUES ('15', '1', 'PostalCode', 0x313538363030303030, '2017-05-30 10:09:29');
INSERT INTO `tbl_setting` VALUES ('16', '1', 'WorkingHours', 0x54756573646179202D2046726964617920393A3030414D202D20343A3435504D, '2017-05-30 10:09:29');
INSERT INTO `tbl_setting` VALUES ('17', '1', 'CompanyName', 0x436F6D70616E79204E616D65, '2017-05-30 10:09:29');
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`status` smallint(6) NOT NULL DEFAULT '10',
`created_at` int(11) NOT NULL,
`updated_at` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`),
UNIQUE KEY `password_reset_token` (`password_reset_token`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'admin', '<PASSWORD>', '$2y$13$hGF50LVblVTaLs.55TIvB.9DFJpeqnciQN0tKyz7sBV7OZliKZU2O', null, '<EMAIL>', '10', '1456041729', '1496123006');
|
<filename>openGaussBase/testcase/KEYWORDS/restrict/Opengauss_Function_Keyword_Restrict_Case0027.sql
-- @testpoint:opengauss关键字restrict非保留),作为序列名
--关键字不带引号-成功
drop sequence if exists restrict;
create sequence restrict start 100 cache 50;
drop sequence restrict;
--关键字带双引号-成功
drop sequence if exists "restrict";
create sequence "restrict" start 100 cache 50;
drop sequence "restrict";
--关键字带单引号-合理报错
drop sequence if exists 'restrict';
--关键字带反引号-合理报错
drop sequence if exists `restrict`;
|
declare
x number(2);
begin
x:=:enter_value_frm_0-5;
if(x=0)then
dbms_output.put_line('value of x is (zero):'||x)
elsif(x=1) then
dbms_output.put_line('value of x is (one):'||x);
elsif(x=2) then
dbms_output.put_line('value of x is (two):'||x);
elsif(x=3) then
dbms_output.put_line('value of x is (three):'||x);
elsif(x=4) then
dbms_output.put_line('value of x is (four):'||x);
elsif(x=5) then
dbms_output.put_line('value of x is (five):'||x);
else
dbms_output.put_line('value of x is out of range...');
end if;
end;
|
<filename>server/init.sql
-- init
CREATE TABLE public.users (
"id" SERIAL PRIMARY KEY,
"fullname" TEXT NOT NULL,
"email" TEXT NOT NULL UNIQUE,
"password" TEXT NOT NULL,
"bio" TEXT
);
CREATE TABLE public.items (
"id" SERIAL PRIMARY KEY,
"title" TEXT NOT NULL,
"desc" TEXT NOT NULL,
"image_url" TEXT,
"owner_id" INTEGER REFERENCES public.users (id),
"borrower_id" INTEGER REFERENCES public.users (id),
"created_at" TIMESTAMP NOT NULL DEFAULT NOW()
);
CREATE TABLE public.tags (
"id" SERIAL PRIMARY KEY,
"title" TEXT NOT NULL
);
CREATE TABLE public.item_tags (
"item_id" INTEGER REFERENCES public.items (id),
"tag_id" INTEGER REFERENCES public.tags (id)
);
-- example tags
INSERT INTO public.tags ("id", "title")
VALUES (1, 'Household Items');
INSERT INTO public.tags ("id", "title")
VALUES (2, 'Tools');
INSERT INTO public.tags ("id", "title")
VALUES (3, 'Electronics');
INSERT INTO public.tags ("id", "title")
VALUES (4, 'Physical Media');
INSERT INTO public.tags ("id", "title")
VALUES (5, 'Sporting Goods');
INSERT INTO public.tags ("id", "title")
VALUES (6, 'Musical Instruments');
|
SELECT Passagem.Numero, Passagem.CodEscala, Escala.Partida, Escala.Destino, Escala.Preco
FROM Passagem
INNER JOIN Escala
ON Passagem.CodEscala = Escala.CodEscala
AND Partida IN ('Fortaleza','São Paulo')
AND Destino IN ('Frankfurt','Londres','Floripa');
SELECT *
FROM PacoteViagem
WHERE Preco BETWEEN 500.0 AND 2500.0 AND Pais LIKE 'A%';
SELECT Clientes.CPF, Clientes.Nome, Clientes.DataNasc
FROM Clientes
INNER JOIN Desconto
ON Clientes.CPF = DESCONTO.CPF
AND Desconto.porcentagem > 30 ORDER BY Clientes.Nome;
SELECT *
FROM Hotel
WHERE EXISTS(SELECT * FROM avaliacaoHotel WHERE Hotel.CNPJ = AvaliacaoHotel.CNPJ AND AvaliacaoHotel.Nota = 10);
SELECT CodAviao, Modelo, Cor
FROM Aviao
WHERE Aviao.CNPJ
IN(SELECT CompanhiaAerea.CNPJ FROM CompanhiaAerea WHERE Aviao.CNPJ = CompanhiaAerea.CNPJ AND CompanhiaAerea.Nome IN ('Fast & Furious Airlines','Bobcat Airlines'));
CREATE VIEW ChecarEmbarque AS SELECT * FROM Embarque, Voo WHERE NumeroVOO = NUMERO AND Embarque.Plataforma IN(1,3);
SELECT * FROM ChecarEmbarque;
|
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: hstore; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS hstore WITH SCHEMA public;
--
-- Name: EXTENSION hstore; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION hstore IS 'data type for storing sets of (key, value) pairs';
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: accounts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.accounts (
id integer NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
owner_id integer
);
--
-- Name: accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.accounts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.accounts_id_seq OWNED BY public.accounts.id;
--
-- Name: admin_verdicts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.admin_verdicts (
id bigint NOT NULL,
outcome character varying,
description text,
form_answer_id bigint,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: admin_verdicts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.admin_verdicts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: admin_verdicts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.admin_verdicts_id_seq OWNED BY public.admin_verdicts.id;
--
-- Name: admins; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.admins (
id integer NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
created_at timestamp without time zone,
updated_at timestamp without time zone,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
first_name character varying,
last_name character varying,
authy_id character varying,
last_sign_in_with_authy timestamp without time zone,
authy_enabled boolean DEFAULT false,
failed_attempts integer DEFAULT 0 NOT NULL,
unlock_token character varying,
locked_at timestamp without time zone,
superadmin boolean DEFAULT false,
deleted boolean DEFAULT false,
autosave_token character varying,
unique_session_id character varying
);
--
-- Name: admins_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.admins_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: admins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.admins_id_seq OWNED BY public.admins.id;
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: assessor_assignments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.assessor_assignments (
id integer NOT NULL,
form_answer_id integer NOT NULL,
assessor_id integer,
created_at timestamp without time zone,
updated_at timestamp without time zone,
document public.hstore,
submitted_at timestamp without time zone,
editable_type character varying,
editable_id integer,
assessed_at timestamp without time zone,
locked_at timestamp without time zone,
award_year_id integer
);
--
-- Name: assessor_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.assessor_assignments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: assessor_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.assessor_assignments_id_seq OWNED BY public.assessor_assignments.id;
--
-- Name: assessors; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.assessors (
id integer NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
created_at timestamp without time zone,
updated_at timestamp without time zone,
first_name character varying,
last_name character varying,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
telephone_number character varying,
failed_attempts integer DEFAULT 0 NOT NULL,
unlock_token character varying,
locked_at timestamp without time zone,
company character varying,
deleted boolean DEFAULT false,
autosave_token character varying,
unique_session_id character varying,
qavs_role character varying,
sub_group character varying
);
--
-- Name: assessors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.assessors_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: assessors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.assessors_id_seq OWNED BY public.assessors.id;
--
-- Name: audit_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.audit_logs (
id integer NOT NULL,
subject_id integer,
subject_type character varying,
action_type character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
auditable_id integer,
auditable_type character varying
);
--
-- Name: audit_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.audit_logs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: audit_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.audit_logs_id_seq OWNED BY public.audit_logs.id;
--
-- Name: award_years; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.award_years (
id integer NOT NULL,
year integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
form_data_hard_copies_state character varying,
case_summary_hard_copies_state character varying,
feedback_hard_copies_state character varying,
aggregated_case_summary_hard_copy_state character varying,
aggregated_feedback_hard_copy_state character varying
);
--
-- Name: award_years_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.award_years_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: award_years_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.award_years_id_seq OWNED BY public.award_years.id;
--
-- Name: ceremonial_counties; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ceremonial_counties (
id bigint NOT NULL,
name character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
country character varying
);
--
-- Name: ceremonial_counties_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.ceremonial_counties_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: ceremonial_counties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.ceremonial_counties_id_seq OWNED BY public.ceremonial_counties.id;
--
-- Name: citations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.citations (
id bigint NOT NULL,
group_name character varying,
body text,
completed_at timestamp without time zone,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
form_answer_id bigint
);
--
-- Name: citations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.citations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: citations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.citations_id_seq OWNED BY public.citations.id;
--
-- Name: comments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.comments (
id integer NOT NULL,
commentable_id integer NOT NULL,
commentable_type character varying NOT NULL,
body text NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
authorable_type character varying NOT NULL,
authorable_id integer NOT NULL,
section integer NOT NULL,
flagged boolean DEFAULT false
);
--
-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;
--
-- Name: deadlines; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.deadlines (
id integer NOT NULL,
kind character varying,
trigger_at timestamp without time zone,
settings_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
states_triggered_at timestamp without time zone
);
--
-- Name: deadlines_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.deadlines_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: deadlines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.deadlines_id_seq OWNED BY public.deadlines.id;
--
-- Name: draft_notes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.draft_notes (
id integer NOT NULL,
content text,
notable_type character varying NOT NULL,
notable_id integer NOT NULL,
authorable_type character varying NOT NULL,
authorable_id integer NOT NULL,
content_updated_at timestamp without time zone NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: draft_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.draft_notes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: draft_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.draft_notes_id_seq OWNED BY public.draft_notes.id;
--
-- Name: eligibilities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.eligibilities (
id integer NOT NULL,
account_id integer,
answers public.hstore,
passed boolean,
created_at timestamp without time zone,
updated_at timestamp without time zone,
type character varying,
form_answer_id integer
);
--
-- Name: eligibilities_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.eligibilities_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: eligibilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.eligibilities_id_seq OWNED BY public.eligibilities.id;
--
-- Name: email_notifications; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.email_notifications (
id integer NOT NULL,
kind character varying,
sent boolean,
trigger_at timestamp without time zone,
settings_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: email_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.email_notifications_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: email_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.email_notifications_id_seq OWNED BY public.email_notifications.id;
--
-- Name: feedbacks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.feedbacks (
id integer NOT NULL,
form_answer_id integer,
submitted boolean DEFAULT false,
document public.hstore,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
authorable_type character varying,
authorable_id integer,
locked_at timestamp without time zone,
award_year_id integer
);
--
-- Name: feedbacks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.feedbacks_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: feedbacks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.feedbacks_id_seq OWNED BY public.feedbacks.id;
--
-- Name: form_answer_attachments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.form_answer_attachments (
id integer NOT NULL,
form_answer_id integer,
file text,
original_filename text,
created_at timestamp without time zone,
updated_at timestamp without time zone,
attachable_id integer,
attachable_type character varying,
title character varying,
restricted_to_admin boolean DEFAULT false,
question_key character varying,
file_scan_results character varying
);
--
-- Name: form_answer_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.form_answer_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: form_answer_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.form_answer_attachments_id_seq OWNED BY public.form_answer_attachments.id;
--
-- Name: form_answer_progresses; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.form_answer_progresses (
id integer NOT NULL,
sections public.hstore,
form_answer_id integer NOT NULL
);
--
-- Name: form_answer_progresses_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.form_answer_progresses_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: form_answer_progresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.form_answer_progresses_id_seq OWNED BY public.form_answer_progresses.id;
--
-- Name: form_answer_transitions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.form_answer_transitions (
id integer NOT NULL,
to_state character varying NOT NULL,
metadata text DEFAULT '{}'::text,
sort_key integer NOT NULL,
form_answer_id integer NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
most_recent boolean NOT NULL
);
--
-- Name: form_answer_transitions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.form_answer_transitions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: form_answer_transitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.form_answer_transitions_id_seq OWNED BY public.form_answer_transitions.id;
--
-- Name: form_answers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.form_answers (
id integer NOT NULL,
user_id integer,
created_at timestamp without time zone,
updated_at timestamp without time zone,
account_id integer,
urn character varying,
submitted boolean DEFAULT false,
fill_progress double precision,
state character varying DEFAULT 'eligibility_in_progress'::character varying NOT NULL,
company_or_nominee_name character varying,
nominee_full_name character varying,
user_full_name character varying,
nickname character varying,
financial_data public.hstore,
accepted boolean DEFAULT false,
company_details_updated_at timestamp without time zone,
award_year_id integer NOT NULL,
company_details_editable_id integer,
company_details_editable_type character varying,
primary_assessor_id integer,
secondary_assessor_id integer,
document json,
nominee_title character varying,
nominator_full_name character varying,
nominator_email character varying,
user_email character varying,
corp_responsibility_reviewed boolean DEFAULT false,
pdf_version character varying,
mobility_eligibility_id integer,
submitted_at timestamp without time zone,
form_data_hard_copy_generated boolean DEFAULT false,
case_summary_hard_copy_generated boolean DEFAULT false,
feedback_hard_copy_generated boolean DEFAULT false,
discrepancies_between_primary_and_secondary_appraisals json,
nominee_activity character varying,
ceremonial_county_id integer,
ineligible_reason_nominator character varying,
ineligible_reason_group character varying,
sub_group character varying,
secondary_activity character varying,
oid character varying
);
--
-- Name: form_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.form_answers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: form_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.form_answers_id_seq OWNED BY public.form_answers.id;
--
-- Name: group_leaders; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_leaders (
id bigint NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
failed_attempts integer DEFAULT 0 NOT NULL,
unlock_token character varying,
locked_at timestamp without time zone,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
first_name character varying,
last_name character varying,
deleted boolean DEFAULT false NOT NULL,
form_answer_id integer
);
--
-- Name: group_leaders_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_leaders_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_leaders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_leaders_id_seq OWNED BY public.group_leaders.id;
--
-- Name: lieutenants; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.lieutenants (
id bigint NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
unconfirmed_email character varying,
failed_attempts integer DEFAULT 0 NOT NULL,
unlock_token character varying,
locked_at timestamp without time zone,
first_name character varying,
last_name character varying,
role character varying,
lieutenants character varying,
unique_session_id character varying,
deleted boolean DEFAULT false,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
ceremonial_county_id integer,
oid character varying
);
--
-- Name: lieutenants_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.lieutenants_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: lieutenants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.lieutenants_id_seq OWNED BY public.lieutenants.id;
--
-- Name: nomination_searches; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.nomination_searches (
id bigint NOT NULL,
serialized_query text
);
--
-- Name: nomination_searches_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.nomination_searches_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: nomination_searches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.nomination_searches_id_seq OWNED BY public.nomination_searches.id;
--
-- Name: palace_attendees; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.palace_attendees (
id integer NOT NULL,
title character varying,
first_name character varying,
last_name character varying,
job_name character varying,
post_nominals character varying,
address_1 character varying,
address_2 character varying,
address_3 character varying,
address_4 character varying,
postcode character varying,
phone_number character varying,
additional_info text,
palace_invite_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
relationship character varying,
disabled_access boolean,
preferred_date character varying,
alternative_date character varying
);
--
-- Name: palace_attendees_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.palace_attendees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: palace_attendees_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.palace_attendees_id_seq OWNED BY public.palace_attendees.id;
--
-- Name: palace_invites; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.palace_invites (
id integer NOT NULL,
email character varying,
form_answer_id integer,
token character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
submitted boolean DEFAULT false
);
--
-- Name: palace_invites_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.palace_invites_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: palace_invites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.palace_invites_id_seq OWNED BY public.palace_invites.id;
--
-- Name: previous_wins; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.previous_wins (
id integer NOT NULL,
form_answer_id integer NOT NULL,
category character varying,
year integer,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: previous_wins_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.previous_wins_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: previous_wins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.previous_wins_id_seq OWNED BY public.previous_wins.id;
--
-- Name: scans; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.scans (
id integer NOT NULL,
uuid character varying NOT NULL,
filename character varying,
status character varying,
created_at timestamp without time zone,
updated_at timestamp without time zone,
form_answer_attachment_id integer,
support_letter_attachment_id integer,
audit_certificate_id integer,
vs_id character varying
);
--
-- Name: scans_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.scans_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: scans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.scans_id_seq OWNED BY public.scans.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
--
-- Name: settings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.settings (
id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
award_year_id integer NOT NULL
);
--
-- Name: settings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.settings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.settings_id_seq OWNED BY public.settings.id;
--
-- Name: site_feedbacks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.site_feedbacks (
id integer NOT NULL,
rating integer,
comment text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: site_feedbacks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.site_feedbacks_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: site_feedbacks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.site_feedbacks_id_seq OWNED BY public.site_feedbacks.id;
--
-- Name: support_letter_attachments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.support_letter_attachments (
id integer NOT NULL,
user_id integer NOT NULL,
form_answer_id integer NOT NULL,
attachment character varying,
original_filename character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
support_letter_id integer,
attachment_scan_results character varying
);
--
-- Name: support_letter_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.support_letter_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: support_letter_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.support_letter_attachments_id_seq OWNED BY public.support_letter_attachments.id;
--
-- Name: support_letters; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.support_letters (
id integer NOT NULL,
supporter_id integer,
body text,
created_at timestamp without time zone,
updated_at timestamp without time zone,
user_id integer,
form_answer_id integer,
first_name character varying,
last_name character varying,
organization_name character varying,
phone character varying,
relationship_to_nominee character varying,
address_first character varying,
address_second character varying,
city character varying,
country character varying,
postcode character varying,
manual boolean DEFAULT false
);
--
-- Name: support_letters_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.support_letters_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: support_letters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.support_letters_id_seq OWNED BY public.support_letters.id;
--
-- Name: urn_seq_2015; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2015
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2016; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2016
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2017; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2017
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2018; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2018
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2019; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2019
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2020; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2020
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2021; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2021
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2022; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2022
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2023; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2023
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2024; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2024
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2025; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2025
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2026; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2026
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2027; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2027
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2028; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2028
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2029; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2029
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2030; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2030
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2031; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2031
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2032; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2032
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2033; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2033
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2034; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2034
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2035; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2035
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2036; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2036
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2037; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2037
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2038; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2038
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2039; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2039
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2040; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2040
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2041; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2041
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2042; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2042
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2043; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2043
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2044; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2044
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2045; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2045
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2046; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2046
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2047; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2047
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2048; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2048
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2049; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2049
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2050; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2050
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2051; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2051
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2052; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2052
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2053; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2053
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2054; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2054
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2055; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2055
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2056; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2056
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2057; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2057
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2058; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2058
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2059; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2059
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2060; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2060
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2061; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2061
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2062; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2062
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2063; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2063
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2064; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2064
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_2065; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_2065
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2015; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2015
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2016; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2016
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2017; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2017
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2018; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2018
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2019; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2019
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2020; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2020
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2021; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2021
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2022; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2022
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2023; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2023
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2024; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2024
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2025; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2025
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2026; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2026
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2027; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2027
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2028; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2028
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2029; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2029
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2030; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2030
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2031; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2031
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2032; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2032
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2033; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2033
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2034; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2034
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2035; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2035
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2036; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2036
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2037; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2037
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2038; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2038
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2039; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2039
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2040; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2040
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2041; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2041
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2042; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2042
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2043; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2043
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2044; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2044
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2045; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2045
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2046; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2046
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2047; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2047
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2048; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2048
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2049; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2049
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2050; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2050
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2051; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2051
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2052; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2052
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2053; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2053
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2054; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2054
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2055; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2055
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2056; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2056
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2057; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2057
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2058; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2058
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2059; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2059
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2060; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2060
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2061; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2061
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2062; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2062
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2063; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2063
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2064; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2064
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: urn_seq_promotion_2065; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.urn_seq_promotion_2065
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.users (
id integer NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
created_at timestamp without time zone,
updated_at timestamp without time zone,
title character varying,
first_name character varying,
last_name character varying,
job_title character varying,
phone_number character varying,
company_name character varying,
company_address_first character varying,
company_address_second character varying,
company_city character varying,
company_country character varying,
company_postcode character varying,
company_phone_number character varying,
prefered_method_of_contact character varying,
subscribed_to_emails boolean DEFAULT false,
qae_info_source character varying,
qae_info_source_other character varying,
account_id integer,
completed_registration boolean DEFAULT false,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
agree_being_contacted_by_department_of_business boolean DEFAULT false,
imported boolean DEFAULT false,
address_line1 character varying,
address_line2 character varying,
address_line3 character varying,
postcode character varying,
phone_number2 character varying,
mobile_number character varying,
failed_attempts integer DEFAULT 0 NOT NULL,
unlock_token character varying,
locked_at timestamp without time zone,
unique_session_id character varying,
notification_when_submission_deadline_is_coming boolean DEFAULT false,
agree_sharing_of_details_with_lieutenancies boolean
);
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.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 public.users_id_seq OWNED BY public.users.id;
--
-- Name: version_associations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.version_associations (
id integer NOT NULL,
version_id integer,
foreign_key_name character varying NOT NULL,
foreign_key_id integer
);
--
-- Name: version_associations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.version_associations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: version_associations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.version_associations_id_seq OWNED BY public.version_associations.id;
--
-- Name: versions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.versions (
id integer NOT NULL,
item_type character varying NOT NULL,
item_id integer NOT NULL,
event character varying NOT NULL,
whodunnit character varying,
object json,
object_changes json,
created_at timestamp without time zone,
transaction_id integer
);
--
-- Name: versions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.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 public.versions_id_seq OWNED BY public.versions.id;
--
-- Name: accounts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.accounts ALTER COLUMN id SET DEFAULT nextval('public.accounts_id_seq'::regclass);
--
-- Name: admin_verdicts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.admin_verdicts ALTER COLUMN id SET DEFAULT nextval('public.admin_verdicts_id_seq'::regclass);
--
-- Name: admins id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.admins ALTER COLUMN id SET DEFAULT nextval('public.admins_id_seq'::regclass);
--
-- Name: assessor_assignments id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.assessor_assignments ALTER COLUMN id SET DEFAULT nextval('public.assessor_assignments_id_seq'::regclass);
--
-- Name: assessors id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.assessors ALTER COLUMN id SET DEFAULT nextval('public.assessors_id_seq'::regclass);
--
-- Name: audit_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.audit_logs ALTER COLUMN id SET DEFAULT nextval('public.audit_logs_id_seq'::regclass);
--
-- Name: award_years id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.award_years ALTER COLUMN id SET DEFAULT nextval('public.award_years_id_seq'::regclass);
--
-- Name: ceremonial_counties id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.ceremonial_counties ALTER COLUMN id SET DEFAULT nextval('public.ceremonial_counties_id_seq'::regclass);
--
-- Name: citations id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.citations ALTER COLUMN id SET DEFAULT nextval('public.citations_id_seq'::regclass);
--
-- Name: comments id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);
--
-- Name: deadlines id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.deadlines ALTER COLUMN id SET DEFAULT nextval('public.deadlines_id_seq'::regclass);
--
-- Name: draft_notes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.draft_notes ALTER COLUMN id SET DEFAULT nextval('public.draft_notes_id_seq'::regclass);
--
-- Name: eligibilities id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.eligibilities ALTER COLUMN id SET DEFAULT nextval('public.eligibilities_id_seq'::regclass);
--
-- Name: email_notifications id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.email_notifications ALTER COLUMN id SET DEFAULT nextval('public.email_notifications_id_seq'::regclass);
--
-- Name: feedbacks id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.feedbacks ALTER COLUMN id SET DEFAULT nextval('public.feedbacks_id_seq'::regclass);
--
-- Name: form_answer_attachments id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answer_attachments ALTER COLUMN id SET DEFAULT nextval('public.form_answer_attachments_id_seq'::regclass);
--
-- Name: form_answer_progresses id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answer_progresses ALTER COLUMN id SET DEFAULT nextval('public.form_answer_progresses_id_seq'::regclass);
--
-- Name: form_answer_transitions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answer_transitions ALTER COLUMN id SET DEFAULT nextval('public.form_answer_transitions_id_seq'::regclass);
--
-- Name: form_answers id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answers ALTER COLUMN id SET DEFAULT nextval('public.form_answers_id_seq'::regclass);
--
-- Name: group_leaders id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_leaders ALTER COLUMN id SET DEFAULT nextval('public.group_leaders_id_seq'::regclass);
--
-- Name: lieutenants id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.lieutenants ALTER COLUMN id SET DEFAULT nextval('public.lieutenants_id_seq'::regclass);
--
-- Name: nomination_searches id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.nomination_searches ALTER COLUMN id SET DEFAULT nextval('public.nomination_searches_id_seq'::regclass);
--
-- Name: palace_attendees id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.palace_attendees ALTER COLUMN id SET DEFAULT nextval('public.palace_attendees_id_seq'::regclass);
--
-- Name: palace_invites id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.palace_invites ALTER COLUMN id SET DEFAULT nextval('public.palace_invites_id_seq'::regclass);
--
-- Name: previous_wins id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.previous_wins ALTER COLUMN id SET DEFAULT nextval('public.previous_wins_id_seq'::regclass);
--
-- Name: scans id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.scans ALTER COLUMN id SET DEFAULT nextval('public.scans_id_seq'::regclass);
--
-- Name: settings id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.settings ALTER COLUMN id SET DEFAULT nextval('public.settings_id_seq'::regclass);
--
-- Name: site_feedbacks id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.site_feedbacks ALTER COLUMN id SET DEFAULT nextval('public.site_feedbacks_id_seq'::regclass);
--
-- Name: support_letter_attachments id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letter_attachments ALTER COLUMN id SET DEFAULT nextval('public.support_letter_attachments_id_seq'::regclass);
--
-- Name: support_letters id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letters ALTER COLUMN id SET DEFAULT nextval('public.support_letters_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Name: version_associations id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.version_associations ALTER COLUMN id SET DEFAULT nextval('public.version_associations_id_seq'::regclass);
--
-- Name: versions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.versions ALTER COLUMN id SET DEFAULT nextval('public.versions_id_seq'::regclass);
--
-- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.accounts
ADD CONSTRAINT accounts_pkey PRIMARY KEY (id);
--
-- Name: admin_verdicts admin_verdicts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.admin_verdicts
ADD CONSTRAINT admin_verdicts_pkey PRIMARY KEY (id);
--
-- Name: admins admins_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.admins
ADD CONSTRAINT admins_pkey PRIMARY KEY (id);
--
-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.ar_internal_metadata
ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
--
-- Name: assessor_assignments assessor_assignments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.assessor_assignments
ADD CONSTRAINT assessor_assignments_pkey PRIMARY KEY (id);
--
-- Name: assessors assessors_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.assessors
ADD CONSTRAINT assessors_pkey PRIMARY KEY (id);
--
-- Name: audit_logs audit_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.audit_logs
ADD CONSTRAINT audit_logs_pkey PRIMARY KEY (id);
--
-- Name: award_years award_years_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.award_years
ADD CONSTRAINT award_years_pkey PRIMARY KEY (id);
--
-- Name: ceremonial_counties ceremonial_counties_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.ceremonial_counties
ADD CONSTRAINT ceremonial_counties_pkey PRIMARY KEY (id);
--
-- Name: citations citations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.citations
ADD CONSTRAINT citations_pkey PRIMARY KEY (id);
--
-- Name: comments comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.comments
ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
--
-- Name: deadlines deadlines_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.deadlines
ADD CONSTRAINT deadlines_pkey PRIMARY KEY (id);
--
-- Name: draft_notes draft_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.draft_notes
ADD CONSTRAINT draft_notes_pkey PRIMARY KEY (id);
--
-- Name: eligibilities eligibilities_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.eligibilities
ADD CONSTRAINT eligibilities_pkey PRIMARY KEY (id);
--
-- Name: email_notifications email_notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.email_notifications
ADD CONSTRAINT email_notifications_pkey PRIMARY KEY (id);
--
-- Name: feedbacks feedbacks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.feedbacks
ADD CONSTRAINT feedbacks_pkey PRIMARY KEY (id);
--
-- Name: form_answer_attachments form_answer_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answer_attachments
ADD CONSTRAINT form_answer_attachments_pkey PRIMARY KEY (id);
--
-- Name: form_answer_progresses form_answer_progresses_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answer_progresses
ADD CONSTRAINT form_answer_progresses_pkey PRIMARY KEY (id);
--
-- Name: form_answer_transitions form_answer_transitions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answer_transitions
ADD CONSTRAINT form_answer_transitions_pkey PRIMARY KEY (id);
--
-- Name: form_answers form_answers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.form_answers
ADD CONSTRAINT form_answers_pkey PRIMARY KEY (id);
--
-- Name: group_leaders group_leaders_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_leaders
ADD CONSTRAINT group_leaders_pkey PRIMARY KEY (id);
--
-- Name: lieutenants lieutenants_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.lieutenants
ADD CONSTRAINT lieutenants_pkey PRIMARY KEY (id);
--
-- Name: nomination_searches nomination_searches_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.nomination_searches
ADD CONSTRAINT nomination_searches_pkey PRIMARY KEY (id);
--
-- Name: palace_attendees palace_attendees_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.palace_attendees
ADD CONSTRAINT palace_attendees_pkey PRIMARY KEY (id);
--
-- Name: palace_invites palace_invites_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.palace_invites
ADD CONSTRAINT palace_invites_pkey PRIMARY KEY (id);
--
-- Name: previous_wins previous_wins_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.previous_wins
ADD CONSTRAINT previous_wins_pkey PRIMARY KEY (id);
--
-- Name: scans scans_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.scans
ADD CONSTRAINT scans_pkey PRIMARY KEY (id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: settings settings_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.settings
ADD CONSTRAINT settings_pkey PRIMARY KEY (id);
--
-- Name: site_feedbacks site_feedbacks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.site_feedbacks
ADD CONSTRAINT site_feedbacks_pkey PRIMARY KEY (id);
--
-- Name: support_letter_attachments support_letter_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letter_attachments
ADD CONSTRAINT support_letter_attachments_pkey PRIMARY KEY (id);
--
-- Name: support_letters support_letters_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letters
ADD CONSTRAINT support_letters_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: version_associations version_associations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.version_associations
ADD CONSTRAINT version_associations_pkey PRIMARY KEY (id);
--
-- Name: versions versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.versions
ADD CONSTRAINT versions_pkey PRIMARY KEY (id);
--
-- Name: index_accounts_on_owner_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_accounts_on_owner_id ON public.accounts USING btree (owner_id);
--
-- Name: index_admin_verdicts_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_admin_verdicts_on_form_answer_id ON public.admin_verdicts USING btree (form_answer_id);
--
-- Name: index_admins_on_authy_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_admins_on_authy_id ON public.admins USING btree (authy_id);
--
-- Name: index_admins_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_admins_on_email ON public.admins USING btree (email);
--
-- Name: index_admins_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_admins_on_reset_password_token ON public.admins USING btree (reset_password_token);
--
-- Name: index_admins_on_unlock_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_admins_on_unlock_token ON public.admins USING btree (unlock_token);
--
-- Name: index_assessor_assignments_on_assessor_id_and_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_assessor_assignments_on_assessor_id_and_form_answer_id ON public.assessor_assignments USING btree (assessor_id, form_answer_id);
--
-- Name: index_assessor_assignments_on_award_year_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_assessor_assignments_on_award_year_id ON public.assessor_assignments USING btree (award_year_id);
--
-- Name: index_assessors_on_confirmation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_assessors_on_confirmation_token ON public.assessors USING btree (confirmation_token);
--
-- Name: index_assessors_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_assessors_on_email ON public.assessors USING btree (email);
--
-- Name: index_assessors_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_assessors_on_reset_password_token ON public.assessors USING btree (reset_password_token);
--
-- Name: index_assessors_on_unlock_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_assessors_on_unlock_token ON public.assessors USING btree (unlock_token);
--
-- Name: index_award_years_on_year; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_award_years_on_year ON public.award_years USING btree (year);
--
-- Name: index_ceremonial_counties_on_name; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_ceremonial_counties_on_name ON public.ceremonial_counties USING btree (name);
--
-- Name: index_citations_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_citations_on_form_answer_id ON public.citations USING btree (form_answer_id);
--
-- Name: index_comments_on_commentable_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_comments_on_commentable_id ON public.comments USING btree (commentable_id);
--
-- Name: index_comments_on_commentable_type; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_comments_on_commentable_type ON public.comments USING btree (commentable_type);
--
-- Name: index_deadlines_on_settings_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_deadlines_on_settings_id ON public.deadlines USING btree (settings_id);
--
-- Name: index_eligibilities_on_account_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_eligibilities_on_account_id ON public.eligibilities USING btree (account_id);
--
-- Name: index_eligibilities_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_eligibilities_on_form_answer_id ON public.eligibilities USING btree (form_answer_id);
--
-- Name: index_email_notifications_on_settings_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_email_notifications_on_settings_id ON public.email_notifications USING btree (settings_id);
--
-- Name: index_feedbacks_on_award_year_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_feedbacks_on_award_year_id ON public.feedbacks USING btree (award_year_id);
--
-- Name: index_feedbacks_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_feedbacks_on_form_answer_id ON public.feedbacks USING btree (form_answer_id);
--
-- Name: index_form_answer_attachments_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_form_answer_attachments_on_form_answer_id ON public.form_answer_attachments USING btree (form_answer_id);
--
-- Name: index_form_answer_progresses_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_form_answer_progresses_on_form_answer_id ON public.form_answer_progresses USING btree (form_answer_id);
--
-- Name: index_form_answer_transitions_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_form_answer_transitions_on_form_answer_id ON public.form_answer_transitions USING btree (form_answer_id);
--
-- Name: index_form_answer_transitions_on_sort_key_and_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_form_answer_transitions_on_sort_key_and_form_answer_id ON public.form_answer_transitions USING btree (sort_key, form_answer_id);
--
-- Name: index_form_answer_transitions_parent_most_recent; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_form_answer_transitions_parent_most_recent ON public.form_answer_transitions USING btree (form_answer_id, most_recent) WHERE most_recent;
--
-- Name: index_form_answers_on_account_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_form_answers_on_account_id ON public.form_answers USING btree (account_id);
--
-- Name: index_form_answers_on_award_year_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_form_answers_on_award_year_id ON public.form_answers USING btree (award_year_id);
--
-- Name: index_form_answers_on_award_year_id_and_ceremonial_county_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_form_answers_on_award_year_id_and_ceremonial_county_id ON public.form_answers USING btree (award_year_id, ceremonial_county_id);
--
-- Name: index_form_answers_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_form_answers_on_user_id ON public.form_answers USING btree (user_id);
--
-- Name: index_group_leaders_on_confirmation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_group_leaders_on_confirmation_token ON public.group_leaders USING btree (confirmation_token);
--
-- Name: index_group_leaders_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_group_leaders_on_email ON public.group_leaders USING btree (email);
--
-- Name: index_group_leaders_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_group_leaders_on_form_answer_id ON public.group_leaders USING btree (form_answer_id);
--
-- Name: index_group_leaders_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_group_leaders_on_reset_password_token ON public.group_leaders USING btree (reset_password_token);
--
-- Name: index_group_leaders_on_unlock_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_group_leaders_on_unlock_token ON public.group_leaders USING btree (unlock_token);
--
-- Name: index_lieutenants_on_ceremonial_county_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_lieutenants_on_ceremonial_county_id ON public.lieutenants USING btree (ceremonial_county_id);
--
-- Name: index_lieutenants_on_confirmation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_lieutenants_on_confirmation_token ON public.lieutenants USING btree (confirmation_token);
--
-- Name: index_lieutenants_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_lieutenants_on_email ON public.lieutenants USING btree (email);
--
-- Name: index_lieutenants_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_lieutenants_on_reset_password_token ON public.lieutenants USING btree (reset_password_token);
--
-- Name: index_lieutenants_on_unlock_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_lieutenants_on_unlock_token ON public.lieutenants USING btree (unlock_token);
--
-- Name: index_palace_attendees_on_palace_invite_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_palace_attendees_on_palace_invite_id ON public.palace_attendees USING btree (palace_invite_id);
--
-- Name: index_palace_invites_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_palace_invites_on_form_answer_id ON public.palace_invites USING btree (form_answer_id);
--
-- Name: index_scans_on_uuid; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_scans_on_uuid ON public.scans USING btree (uuid);
--
-- Name: index_settings_on_award_year_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_settings_on_award_year_id ON public.settings USING btree (award_year_id);
--
-- Name: index_support_letter_attachments_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_support_letter_attachments_on_form_answer_id ON public.support_letter_attachments USING btree (form_answer_id);
--
-- Name: index_support_letter_attachments_on_support_letter_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_support_letter_attachments_on_support_letter_id ON public.support_letter_attachments USING btree (support_letter_id);
--
-- Name: index_support_letter_attachments_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_support_letter_attachments_on_user_id ON public.support_letter_attachments USING btree (user_id);
--
-- Name: index_support_letters_on_form_answer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_support_letters_on_form_answer_id ON public.support_letters USING btree (form_answer_id);
--
-- Name: index_support_letters_on_supporter_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_support_letters_on_supporter_id ON public.support_letters USING btree (supporter_id);
--
-- Name: index_support_letters_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_support_letters_on_user_id ON public.support_letters USING btree (user_id);
--
-- Name: index_users_on_account_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_users_on_account_id ON public.users USING btree (account_id);
--
-- Name: index_users_on_confirmation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_confirmation_token ON public.users USING btree (confirmation_token);
--
-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email);
--
-- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING btree (reset_password_token);
--
-- Name: index_users_on_unlock_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_unlock_token ON public.users USING btree (unlock_token);
--
-- Name: index_version_associations_on_foreign_key; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_version_associations_on_foreign_key ON public.version_associations USING btree (foreign_key_name, foreign_key_id);
--
-- Name: index_version_associations_on_version_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_version_associations_on_version_id ON public.version_associations USING btree (version_id);
--
-- Name: index_versions_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_versions_on_item_type_and_item_id ON public.versions USING btree (item_type, item_id);
--
-- Name: index_versions_on_transaction_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_versions_on_transaction_id ON public.versions USING btree (transaction_id);
--
-- Name: support_letter_attachments fk_rails_0f5a0025a7; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letter_attachments
ADD CONSTRAINT fk_rails_0f5a0025a7 FOREIGN KEY (user_id) REFERENCES public.users(id);
--
-- Name: admin_verdicts fk_rails_23f1653342; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.admin_verdicts
ADD CONSTRAINT fk_rails_23f1653342 FOREIGN KEY (form_answer_id) REFERENCES public.form_answers(id);
--
-- Name: palace_invites fk_rails_40aaf5af73; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.palace_invites
ADD CONSTRAINT fk_rails_40aaf5af73 FOREIGN KEY (form_answer_id) REFERENCES public.form_answers(id);
--
-- Name: support_letter_attachments fk_rails_5e975fee43; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letter_attachments
ADD CONSTRAINT fk_rails_5e975fee43 FOREIGN KEY (support_letter_id) REFERENCES public.support_letters(id);
--
-- Name: palace_attendees fk_rails_6019307b8c; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.palace_attendees
ADD CONSTRAINT fk_rails_6019307b8c FOREIGN KEY (palace_invite_id) REFERENCES public.palace_invites(id);
--
-- Name: feedbacks fk_rails_6ae522c6ce; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.feedbacks
ADD CONSTRAINT fk_rails_6ae522c6ce FOREIGN KEY (award_year_id) REFERENCES public.award_years(id);
--
-- Name: feedbacks fk_rails_85a1d7f049; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.feedbacks
ADD CONSTRAINT fk_rails_85a1d7f049 FOREIGN KEY (form_answer_id) REFERENCES public.form_answers(id);
--
-- Name: support_letter_attachments fk_rails_abd43a0510; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letter_attachments
ADD CONSTRAINT fk_rails_abd43a0510 FOREIGN KEY (form_answer_id) REFERENCES public.form_answers(id);
--
-- Name: assessor_assignments fk_rails_bed48e0ed5; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.assessor_assignments
ADD CONSTRAINT fk_rails_bed48e0ed5 FOREIGN KEY (award_year_id) REFERENCES public.award_years(id);
--
-- Name: support_letters fk_rails_fae9e85e5f; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letters
ADD CONSTRAINT fk_rails_fae9e85e5f FOREIGN KEY (form_answer_id) REFERENCES public.form_answers(id);
--
-- Name: support_letters fk_rails_fe9ef772b4; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.support_letters
ADD CONSTRAINT fk_rails_fe9ef772b4 FOREIGN KEY (user_id) REFERENCES public.users(id);
--
-- PostgreSQL database dump complete
--
SET search_path TO "$user", public;
INSERT INTO "schema_migrations" (version) VALUES
('20141124095215'),
('20141124112326'),
('20141124161532'),
('20141127094914'),
('20141127094940'),
('20141127095334'),
('20141128115405'),
('20141130191608'),
('20141201084521'),
('20141203090803'),
('20141203135504'),
('20141203140154'),
('20141203172220'),
('20141203182047'),
('20141204113405'),
('20141204113729'),
('20141204134014'),
('20141204161223'),
('20141208085751'),
('20141208105812'),
('20141209150903'),
('20141211103406'),
('20141211103425'),
('20141217112332'),
('20141219102035'),
('20150109142716'),
('20150112121539'),
('20150113154435'),
('20150113155731'),
('20150216232552'),
('20150217114106'),
('20150218132412'),
('20150218141547'),
('20150218150006'),
('20150219102528'),
('20150219125327'),
('20150223100419'),
('20150223115842'),
('20150223123005'),
('20150224115303'),
('20150224115503'),
('20150225090728'),
('20150225122104'),
('20150226141107'),
('20150227124243'),
('20150227125140'),
('20150227125226'),
('20150227125421'),
('20150227135432'),
('20150227141437'),
('20150228145247'),
('20150302092030'),
('20150302095528'),
('20150303120704'),
('20150303123415'),
('20150303152052'),
('20150303163541'),
('20150304075824'),
('20150304080108'),
('20150304084018'),
('20150304144532'),
('20150304145423'),
('20150304155948'),
('20150305084628'),
('20150305104844'),
('20150306122216'),
('20150309112759'),
('20150309114102'),
('20150309114427'),
('20150309143448'),
('20150310114756'),
('20150310124624'),
('20150310130907'),
('20150312105021'),
('20150312114528'),
('20150313090152'),
('20150317130146'),
('20150318123932'),
('20150318142055'),
('20150323132637'),
('20150323155826'),
('20150324104816'),
('20150324104913'),
('20150324163344'),
('20150325092930'),
('20150325133040'),
('20150325160755'),
('20150325201007'),
('20150326105117'),
('20150326170750'),
('20150326170823'),
('20150326221536'),
('20150327122904'),
('20150327190410'),
('20150331061542'),
('20150331180118'),
('20150406130916'),
('20150407122134'),
('20150407132835'),
('20150407134028'),
('20150407172016'),
('20150409082247'),
('20150409090140'),
('20150410091747'),
('20150410131705'),
('20150411113516'),
('20150411113532'),
('20150411113543'),
('20150411113558'),
('20150414102640'),
('20150414133524'),
('20150414141823'),
('20150414170238'),
('20150417153811'),
('20150427100604'),
('20150429171132'),
('20150429171704'),
('20150429171705'),
('20150504112318'),
('20150506150526'),
('20150507114157'),
('20150507143136'),
('20150515145647'),
('20150519123524'),
('20150617142142'),
('20150622173914'),
('20150907131321'),
('20150907145343'),
('20150907145955'),
('20150907161006'),
('20150907165227'),
('20150908105756'),
('20150908151417'),
('20150908163040'),
('20150908172247'),
('20150914114817'),
('20150917134236'),
('20150917135114'),
('20150922132151'),
('20151001144155'),
('20151005112348'),
('20151126154434'),
('20151126171347'),
('20151130145800'),
('20160106115349'),
('20160121080201'),
('20160204203037'),
('20160222153821'),
('20160222175452'),
('20160224174712'),
('20160302191539'),
('20160302191611'),
('20160302191628'),
('20160310140650'),
('20160311130931'),
('20160314141838'),
('20160323103504'),
('20160328090616'),
('20160328124213'),
('20160604141333'),
('20160607085426'),
('20160607172315'),
('20160621114955'),
('20160708131227'),
('20160727154722'),
('20160728174708'),
('20160728174732'),
('20160729082206'),
('20160729082616'),
('20160729090515'),
('20160729131756'),
('20160729132247'),
('20160729132552'),
('20160731102944'),
('20160731121716'),
('20160802111557'),
('20160804172537'),
('20160804175341'),
('20160804175513'),
('20160804175527'),
('20160906174550'),
('20161021111201'),
('20161021140457'),
('20161116104612'),
('20180820050136'),
('20181102125508'),
('20181102125923'),
('20190415133209'),
('20190422174739'),
('20190501154629'),
('20190501162430'),
('20190501163901'),
('20190513114859'),
('20190514192116'),
('20190515121928'),
('20200710150405'),
('20200714125921'),
('20200814122259'),
('20200918110854'),
('20200918151320'),
('20201023115307'),
('20210517075551'),
('20210615093659'),
('20210616135647'),
('20210629130552'),
('20210707081708'),
('20210707115136'),
('20210707122554'),
('20210803084421'),
('20210803120605'),
('20210806102135'),
('20210808194051'),
('20210809072025'),
('20210809072320'),
('20210809073242'),
('20210810173827'),
('20210810175339'),
('20210816072005'),
('20210817084427'),
('20210819140008'),
('20210826124140'),
('20210831085355'),
('20210928120530'),
('20211011083451'),
('20211013073349'),
('20211104074415'),
('20211214111643');
|
SET TIMEZONE = 'Europe/Brussels';
-------------------------------------------------------------------------------------------------------------------
CREATE DOMAIN EmployeeTitle VARCHAR(255) CHECK (VALUE IN ('PhD', 'Professor'));
CREATE DOMAIN GuidanceType VARCHAR(255) NOT NULL CHECK (VALUE IN ('Promotor', 'Co-Promotor', 'Mentor'));
CREATE DOMAIN RegistrationStatus VARCHAR(255) NOT NULL CHECK (VALUE IN ('Pending', 'Acknowledged', 'Denied', 'Accepted'));
-------------------------------------------------------------------------------------------------------------------
CREATE TABLE document
(
document_id SERIAL PRIMARY KEY,
html_content_eng VARCHAR,
html_content_nl VARCHAR
);
CREATE TABLE attachment
(
name VARCHAR(255),
file_location VARCHAR UNIQUE NOT NULL,
document_id INT NOT NULL REFERENCES Document (document_id) ON UPDATE CASCADE ON DELETE CASCADE,
PRIMARY KEY (document_id, name)
);
-------------------------------------------------------------------------------------------------------------------
CREATE TABLE research_group
(
name VARCHAR(255) PRIMARY KEY,
abbreviation VARCHAR(255),
logo_location VARCHAR(255), --ONLY THE FILENAME, NOT FOLDER
description_id INT REFERENCES Document (document_id) ON UPDATE CASCADE ON DELETE SET NULL,
address VARCHAR(255),
telephone_number VARCHAR(20),
is_active BOOLEAN NOT NULL
);
CREATE TABLE employee
(
id VARCHAR(255) PRIMARY KEY,
name VARCHAR(255) NOT NULL,
email VARCHAR(255),
office VARCHAR(255),
extra_info VARCHAR(255),
picture_location VARCHAR(255), --ONLY THE FILENAME, NOT FOLDER
research_group VARCHAR(255) REFERENCES Research_Group (name) ON UPDATE CASCADE ON DELETE SET NULL,
title EmployeeTitle,
is_external BOOLEAN NOT NULL,
is_admin BOOLEAN DEFAULT FALSE,
is_active BOOLEAN NOT NULL
);
--Separate table for contact person to avoid a circular reference in Employee and research_group
CREATE TABLE contact_person
(
contact_person VARCHAR(255) REFERENCES Employee (id) ON UPDATE CASCADE ON DELETE SET NULL,
research_group VARCHAR(255) REFERENCES Research_Group (name) ON UPDATE CASCADE ON DELETE SET NULL UNIQUE
);
-------------------------------------------------------------------------------------------------------------------
CREATE TABLE project
(
project_id SERIAL PRIMARY KEY,
title VARCHAR(255),
max_students INT NOT NULL,
description_id INT NOT NULL REFERENCES Document (document_id) ON UPDATE CASCADE ON DELETE SET NULL,
research_group VARCHAR(255) REFERENCES Research_Group (name) ON UPDATE CASCADE ON DELETE CASCADE,
is_active BOOLEAN NOT NULL,
last_updated TIMESTAMP DEFAULT NOW(),
view_count INT DEFAULT 0,
extension_needed BOOLEAN DEFAULT FALSE,
creation_date date NOT NULL DEFAULT CURRENT_DATE
);
CREATE TABLE guide
(
employee VARCHAR(255) REFERENCES Employee (id) ON UPDATE CASCADE ON DELETE CASCADE,
project INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
guidance_type GuidanceType,
PRIMARY KEY (employee, project, guidance_type)
);
-------------------------------------------------------------------------------------------------------------------
CREATE TABLE student
(
name VARCHAR(255) NOT NULL,
student_id VARCHAR(8) PRIMARY KEY
);
CREATE TABLE "like"
(
student VARCHAR(8) REFERENCES Student (student_id) ON UPDATE CASCADE ON DELETE CASCADE,
project INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
PRIMARY KEY (student, project)
);
-------------------------------------------------------------------------------------------------------------------
CREATE TABLE session
(
session_id SERIAL PRIMARY KEY,
student VARCHAR(8) REFERENCES Student (student_id) ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
start_of_session TIMESTAMP NOT NULL
);
CREATE TABLE project_click
(
session INT REFERENCES Session (session_id) ON UPDATE CASCADE ON DELETE CASCADE,
project INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
time_of_click TIME NOT NULL,
PRIMARY KEY (session, project)
);
CREATE TABLE query
(
session INT REFERENCES Session (session_id) ON UPDATE CASCADE ON DELETE CASCADE,
time_of_query TIME,
search_terms VARCHAR(255) NOT NULL,
PRIMARY KEY (session, time_of_query)
);
-------------------------------------------------------------------------------------------------------------------
CREATE TABLE type
(
type_name VARCHAR(255) PRIMARY KEY,
is_active BOOLEAN NOT NULL
);
CREATE TABLE project_has_type
(
project INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
type VARCHAR(255) REFERENCES Type (type_name) ON UPDATE CASCADE ON DELETE CASCADE,
PRIMARY KEY (project, type)
);
CREATE TABLE project_registration
(
student VARCHAR(8) REFERENCES Student (student_id) ON UPDATE CASCADE ON DELETE CASCADE,
project INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
type VARCHAR(255) REFERENCES Type (type_name) ON UPDATE CASCADE ON DELETE CASCADE,
status RegistrationStatus DEFAULT 'Pending',
date date NOT NULL DEFAULT CURRENT_DATE,
PRIMARY KEY (student, project)
);
CREATE TABLE link
(
project_1 INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
project_2 INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
match_percent FLOAT NOT NULL CHECK ( match_percent <= 1 ),
PRIMARY KEY (project_1, project_2)
);
CREATE TABLE tag
(
tag VARCHAR(255) PRIMARY KEY
);
CREATE TABLE project_has_tag
(
project INT REFERENCES Project (project_id) ON UPDATE CASCADE ON DELETE CASCADE,
tag VARCHAR(255) REFERENCES Tag (tag) ON UPDATE CASCADE ON DELETE CASCADE,
PRIMARY KEY (project, tag)
);
-------------------------------------------------------------------------------------------------------------------
CREATE MATERIALIZED VIEW search_index
AS
SELECT project.project_id,
project.is_active,
setweight(to_tsvector(project.title), 'A') ||
setweight(to_tsvector(coalesce(document.html_content_eng, '')), 'B') ||
setweight(to_tsvector(coalesce(document.html_content_nl, '')), 'B') ||
setweight(to_tsvector(coalesce(string_agg(distinct employee.name, ' '), '')), 'C') ||
setweight(to_tsvector(coalesce(string_agg(distinct project_has_tag.tag, ' '), '')), 'A') AS document
FROM project
LEFT JOIN project_has_tag ON project.project_id = project_has_tag.project
JOIN Document ON Project.description_id = Document.document_id
JOIN guide ON Project.project_id = Guide.project
JOIN Employee ON employee.id = Guide.employee
GROUP BY project.project_id, document_id;
CREATE INDEX idx_fts_search ON search_index USING gin (document);
REFRESH MATERIALIZED VIEW search_index;
|
prompt --application/pages/page_10010
begin
-- Manifest
-- PAGE: 10010
-- Manifest End
wwv_flow_api.component_begin (
p_version_yyyy_mm_dd=>'2020.03.31'
,p_release=>'20.1.0.00.13'
,p_default_workspace_id=>1300871798938927
,p_default_application_id=>101
,p_default_id_offset=>0
,p_default_owner=>'FLOWSDEV'
);
wwv_flow_api.create_page(
p_id=>10010
,p_user_interface_id=>wwv_flow_api.id(11041915601621420)
,p_name=>'Activity Dashboard'
,p_alias=>'ACTIVITY-DASHBOARD'
,p_page_mode=>'MODAL'
,p_step_title=>'Activity Dashboard'
,p_warn_on_unsaved_changes=>'N'
,p_autocomplete_on_off=>'OFF'
,p_group_id=>wwv_flow_api.id(11045344625621611)
,p_page_template_options=>'#DEFAULT#:ui-dialog--stretch'
,p_required_role=>wwv_flow_api.id(11044789258621602)
,p_required_patch=>wwv_flow_api.id(11043336336621593)
,p_last_updated_by=>'FLOWSDEV'
,p_last_upd_yyyymmddhh24miss=>'20210124165036'
);
wwv_flow_api.create_page_plug(
p_id=>wwv_flow_api.id(11053432820621927)
,p_plug_name=>'Hourly Page Events'
,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:i-h320:t-Region--scrollBody'
,p_escape_on_http_output=>'Y'
,p_plug_template=>wwv_flow_api.id(10957391055620952)
,p_plug_display_sequence=>10
,p_plug_display_point=>'BODY'
,p_plug_source_type=>'NATIVE_JET_CHART'
,p_plug_query_num_rows=>15
);
wwv_flow_api.create_jet_chart(
p_id=>wwv_flow_api.id(11053547652621927)
,p_region_id=>wwv_flow_api.id(11053432820621927)
,p_chart_type=>'bar'
,p_animation_on_display=>'auto'
,p_animation_on_data_change=>'auto'
,p_orientation=>'vertical'
,p_data_cursor=>'auto'
,p_data_cursor_behavior=>'auto'
,p_hover_behavior=>'dim'
,p_stack=>'off'
,p_stack_label=>'off'
,p_connect_nulls=>'Y'
,p_value_position=>'auto'
,p_sorting=>'label-asc'
,p_fill_multi_series_gaps=>true
,p_zoom_and_scroll=>'off'
,p_tooltip_rendered=>'Y'
,p_show_series_name=>false
,p_show_group_name=>true
,p_show_value=>true
,p_show_label=>true
,p_show_row=>true
,p_show_start=>true
,p_show_end=>true
,p_show_progress=>true
,p_show_baseline=>true
,p_legend_rendered=>'off'
,p_legend_position=>'auto'
,p_overview_rendered=>'off'
,p_time_axis_type=>'enabled'
,p_horizontal_grid=>'auto'
,p_vertical_grid=>'auto'
,p_gauge_orientation=>'circular'
,p_gauge_plot_area=>'on'
,p_show_gauge_value=>true
);
wwv_flow_api.create_jet_chart_series(
p_id=>wwv_flow_api.id(11055670320621932)
,p_chart_id=>wwv_flow_api.id(11053547652621927)
,p_seq=>10
,p_name=>'Series 1'
,p_data_source_type=>'SQL'
,p_data_source=>wwv_flow_string.join(wwv_flow_t_varchar2(
'with nw as (',
' -- APEX_ACTIVITY_LOG uses dates; convert system time to local time zone.',
' select from_tz( cast( sysdate as timestamp ), to_char( systimestamp, ''TZR'' ) ) at local as tm from dual',
'),',
'window as (',
' select',
' trunc(nw.tm - ((level-1)/24),''HH'') start_tm,',
' trunc(nw.tm - ((level-2)/24),''HH'') end_tm,',
' trunc(sysdate-((level-1)/24),''HH'') log_start_tm,',
' trunc(sysdate-((level-2)/24),''HH'') log_end_tm',
' from nw',
' connect by level <= round( 24 * ( 1/24/60/60 * nvl(:P10010_TIMEFRAME,1) ) )',
')',
'select w.start_tm log_time,',
' ( select count(*)',
' from apex_activity_log l',
' where l.flow_id = :app_id',
' and l.time_stamp between w.log_start_tm and w.log_end_tm ) as value',
'from window w',
'order by 1'))
,p_max_row_count=>350
,p_ajax_items_to_submit=>'P10010_TIMEFRAME'
,p_items_value_column_name=>'VALUE'
,p_items_label_column_name=>'LOG_TIME'
,p_assigned_to_y2=>'off'
,p_items_label_rendered=>false
,p_items_label_display_as=>'PERCENT'
,p_threshold_display=>'onIndicator'
);
wwv_flow_api.create_jet_chart_axis(
p_id=>wwv_flow_api.id(11056236854621934)
,p_chart_id=>wwv_flow_api.id(11053547652621927)
,p_axis=>'y'
,p_is_rendered=>'on'
,p_format_type=>'decimal'
,p_decimal_places=>0
,p_format_scaling=>'auto'
,p_scaling=>'linear'
,p_baseline_scaling=>'zero'
,p_position=>'auto'
,p_major_tick_rendered=>'auto'
,p_minor_tick_rendered=>'auto'
,p_tick_label_rendered=>'on'
,p_zoom_order_seconds=>false
,p_zoom_order_minutes=>false
,p_zoom_order_hours=>false
,p_zoom_order_days=>false
,p_zoom_order_weeks=>false
,p_zoom_order_months=>false
,p_zoom_order_quarters=>false
,p_zoom_order_years=>false
);
wwv_flow_api.create_jet_chart_axis(
p_id=>wwv_flow_api.id(11056826052621946)
,p_chart_id=>wwv_flow_api.id(11053547652621927)
,p_axis=>'x'
,p_is_rendered=>'on'
,p_format_type=>'datetime-short'
,p_format_scaling=>'auto'
,p_scaling=>'linear'
,p_baseline_scaling=>'zero'
,p_major_tick_rendered=>'on'
,p_minor_tick_rendered=>'on'
,p_tick_label_rendered=>'on'
,p_tick_label_rotation=>'auto'
,p_tick_label_position=>'outside'
,p_zoom_order_seconds=>false
,p_zoom_order_minutes=>false
,p_zoom_order_hours=>false
,p_zoom_order_days=>false
,p_zoom_order_weeks=>false
,p_zoom_order_months=>false
,p_zoom_order_quarters=>false
,p_zoom_order_years=>false
);
wwv_flow_api.create_page_plug(
p_id=>wwv_flow_api.id(11053648711621927)
,p_plug_name=>'Most Active Pages'
,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:i-h320:t-Region--scrollBody'
,p_escape_on_http_output=>'Y'
,p_plug_template=>wwv_flow_api.id(10957391055620952)
,p_plug_display_sequence=>30
,p_plug_new_grid_row=>false
,p_plug_display_point=>'BODY'
,p_plug_source_type=>'NATIVE_JET_CHART'
,p_plug_query_num_rows=>15
);
wwv_flow_api.create_jet_chart(
p_id=>wwv_flow_api.id(11053704069621927)
,p_region_id=>wwv_flow_api.id(11053648711621927)
,p_chart_type=>'bar'
,p_animation_on_display=>'auto'
,p_animation_on_data_change=>'auto'
,p_orientation=>'horizontal'
,p_data_cursor=>'auto'
,p_data_cursor_behavior=>'auto'
,p_hover_behavior=>'dim'
,p_stack=>'off'
,p_stack_label=>'off'
,p_connect_nulls=>'Y'
,p_value_position=>'auto'
,p_sorting=>'label-asc'
,p_fill_multi_series_gaps=>true
,p_zoom_and_scroll=>'off'
,p_tooltip_rendered=>'Y'
,p_show_series_name=>false
,p_show_group_name=>true
,p_show_value=>true
,p_show_label=>true
,p_show_row=>true
,p_show_start=>true
,p_show_end=>true
,p_show_progress=>true
,p_show_baseline=>true
,p_legend_rendered=>'off'
,p_legend_position=>'auto'
,p_overview_rendered=>'off'
,p_horizontal_grid=>'auto'
,p_vertical_grid=>'auto'
,p_gauge_orientation=>'circular'
,p_gauge_plot_area=>'on'
,p_show_gauge_value=>true
);
wwv_flow_api.create_jet_chart_series(
p_id=>wwv_flow_api.id(11060547686621958)
,p_chart_id=>wwv_flow_api.id(11053704069621927)
,p_seq=>10
,p_name=>'Series 1'
,p_data_source_type=>'SQL'
,p_data_source=>wwv_flow_string.join(wwv_flow_t_varchar2(
'select x.step_id||''. ''||(select page_name from apex_application_pages p where p.application_id = :app_id and page_id = x.step_id) label, ',
' value ',
'from',
'(',
'select step_id,',
' count(*) as value',
'from apex_activity_log',
'where flow_id = :app_id',
' and time_stamp >= sysdate - ( 1/24/60/60 * :P10010_TIMEFRAME )',
' and step_id is not null',
'group by step_id',
'order by 2 desc',
') x'))
,p_max_row_count=>10
,p_ajax_items_to_submit=>'P10010_TIMEFRAME'
,p_items_value_column_name=>'VALUE'
,p_items_label_column_name=>'LABEL'
,p_assigned_to_y2=>'off'
,p_items_label_rendered=>false
,p_items_label_display_as=>'PERCENT'
,p_threshold_display=>'onIndicator'
);
wwv_flow_api.create_jet_chart_axis(
p_id=>wwv_flow_api.id(11061157529621959)
,p_chart_id=>wwv_flow_api.id(11053704069621927)
,p_axis=>'x'
,p_is_rendered=>'on'
,p_format_scaling=>'auto'
,p_scaling=>'linear'
,p_baseline_scaling=>'zero'
,p_major_tick_rendered=>'auto'
,p_minor_tick_rendered=>'auto'
,p_tick_label_rendered=>'on'
,p_tick_label_rotation=>'auto'
,p_tick_label_position=>'outside'
,p_zoom_order_seconds=>false
,p_zoom_order_minutes=>false
,p_zoom_order_hours=>false
,p_zoom_order_days=>false
,p_zoom_order_weeks=>false
,p_zoom_order_months=>false
,p_zoom_order_quarters=>false
,p_zoom_order_years=>false
);
wwv_flow_api.create_jet_chart_axis(
p_id=>wwv_flow_api.id(11061716934621959)
,p_chart_id=>wwv_flow_api.id(11053704069621927)
,p_axis=>'y'
,p_is_rendered=>'on'
,p_format_type=>'decimal'
,p_decimal_places=>0
,p_format_scaling=>'auto'
,p_scaling=>'linear'
,p_baseline_scaling=>'zero'
,p_position=>'auto'
,p_major_tick_rendered=>'auto'
,p_minor_tick_rendered=>'auto'
,p_tick_label_rendered=>'on'
,p_zoom_order_seconds=>false
,p_zoom_order_minutes=>false
,p_zoom_order_hours=>false
,p_zoom_order_days=>false
,p_zoom_order_weeks=>false
,p_zoom_order_months=>false
,p_zoom_order_quarters=>false
,p_zoom_order_years=>false
);
wwv_flow_api.create_page_plug(
p_id=>wwv_flow_api.id(11053834086621927)
,p_plug_name=>'Top Users'
,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:i-h320:t-Region--scrollBody'
,p_escape_on_http_output=>'Y'
,p_plug_template=>wwv_flow_api.id(10957391055620952)
,p_plug_display_sequence=>20
,p_plug_display_point=>'BODY'
,p_plug_source_type=>'NATIVE_JET_CHART'
,p_plug_query_num_rows=>15
);
wwv_flow_api.create_jet_chart(
p_id=>wwv_flow_api.id(11053959667621927)
,p_region_id=>wwv_flow_api.id(11053834086621927)
,p_chart_type=>'bar'
,p_animation_on_display=>'auto'
,p_animation_on_data_change=>'auto'
,p_orientation=>'horizontal'
,p_data_cursor=>'auto'
,p_data_cursor_behavior=>'auto'
,p_hover_behavior=>'dim'
,p_stack=>'off'
,p_stack_label=>'off'
,p_connect_nulls=>'Y'
,p_value_position=>'auto'
,p_sorting=>'label-asc'
,p_fill_multi_series_gaps=>true
,p_zoom_and_scroll=>'off'
,p_tooltip_rendered=>'Y'
,p_show_series_name=>false
,p_show_group_name=>true
,p_show_value=>true
,p_show_label=>true
,p_show_row=>true
,p_show_start=>true
,p_show_end=>true
,p_show_progress=>true
,p_show_baseline=>true
,p_legend_rendered=>'off'
,p_legend_position=>'auto'
,p_overview_rendered=>'off'
,p_horizontal_grid=>'auto'
,p_vertical_grid=>'auto'
,p_gauge_orientation=>'circular'
,p_gauge_plot_area=>'on'
,p_show_gauge_value=>true
);
wwv_flow_api.create_jet_chart_series(
p_id=>wwv_flow_api.id(11058090213621956)
,p_chart_id=>wwv_flow_api.id(11053959667621927)
,p_seq=>10
,p_name=>'Series 1'
,p_data_source_type=>'SQL'
,p_data_source=>wwv_flow_string.join(wwv_flow_t_varchar2(
'select nvl( userid_lc, apex_lang.message(''APEX.FEATURE.TOP_USERS.USERNAME.NOT_IDENTIFIED'') ) as label,',
' count(*) as value',
'from apex_activity_log',
'where flow_id = :app_id',
'and time_stamp >= sysdate - ( 1/24/60/60 * :P10010_TIMEFRAME )',
'group by nvl( userid_lc, apex_lang.message(''APEX.FEATURE.TOP_USERS.USERNAME.NOT_IDENTIFIED'') )',
'order by 2 desc'))
,p_max_row_count=>10
,p_ajax_items_to_submit=>'P10010_TIMEFRAME'
,p_items_value_column_name=>'VALUE'
,p_items_label_column_name=>'LABEL'
,p_assigned_to_y2=>'off'
,p_items_label_rendered=>false
,p_items_label_display_as=>'PERCENT'
,p_threshold_display=>'onIndicator'
);
wwv_flow_api.create_jet_chart_axis(
p_id=>wwv_flow_api.id(11058640388621956)
,p_chart_id=>wwv_flow_api.id(11053959667621927)
,p_axis=>'x'
,p_is_rendered=>'on'
,p_baseline_scaling=>'zero'
,p_major_tick_rendered=>'auto'
,p_minor_tick_rendered=>'auto'
,p_tick_label_rendered=>'on'
,p_zoom_order_seconds=>false
,p_zoom_order_minutes=>false
,p_zoom_order_hours=>false
,p_zoom_order_days=>false
,p_zoom_order_weeks=>false
,p_zoom_order_months=>false
,p_zoom_order_quarters=>false
,p_zoom_order_years=>false
);
wwv_flow_api.create_jet_chart_axis(
p_id=>wwv_flow_api.id(11059276458621957)
,p_chart_id=>wwv_flow_api.id(11053959667621927)
,p_axis=>'y'
,p_is_rendered=>'on'
,p_format_type=>'decimal'
,p_decimal_places=>0
,p_format_scaling=>'auto'
,p_scaling=>'linear'
,p_baseline_scaling=>'zero'
,p_position=>'auto'
,p_major_tick_rendered=>'auto'
,p_minor_tick_rendered=>'auto'
,p_tick_label_rendered=>'on'
,p_zoom_order_seconds=>false
,p_zoom_order_minutes=>false
,p_zoom_order_hours=>false
,p_zoom_order_days=>false
,p_zoom_order_weeks=>false
,p_zoom_order_months=>false
,p_zoom_order_quarters=>false
,p_zoom_order_years=>false
);
wwv_flow_api.create_report_region(
p_id=>wwv_flow_api.id(11054041748621927)
,p_name=>'Recent Errors'
,p_template=>wwv_flow_api.id(10957391055620952)
,p_display_sequence=>40
,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:i-h240:t-Region--scrollBody'
,p_component_template_options=>'#DEFAULT#:t-Report--stretch:t-Report--altRowsDefault:t-Report--rowHighlight:t-Report--inline'
,p_display_point=>'BODY'
,p_source_type=>'NATIVE_SQL_REPORT'
,p_query_type=>'SQL'
,p_source=>wwv_flow_string.join(wwv_flow_t_varchar2(
'select',
' sqlerrm label,',
' time_stamp value',
'from apex_activity_log',
'where flow_id = :app_id',
'and time_stamp >= sysdate - ( 1/24/60/60 * :P10010_TIMEFRAME )',
'and sqlerrm is not null',
'order by 2 desc, 1'))
,p_ajax_enabled=>'Y'
,p_ajax_items_to_submit=>'P10010_TIMEFRAME'
,p_query_row_template=>wwv_flow_api.id(10983636092621020)
,p_query_num_rows=>20
,p_query_options=>'DERIVED_REPORT_COLUMNS'
,p_query_no_data_found=>'no data found'
,p_query_row_count_max=>500
);
wwv_flow_api.create_report_columns(
p_id=>wwv_flow_api.id(11062816385622001)
,p_query_column_id=>1
,p_column_alias=>'LABEL'
,p_column_display_sequence=>1
,p_column_heading=>'Label'
,p_heading_alignment=>'LEFT'
);
wwv_flow_api.create_report_columns(
p_id=>wwv_flow_api.id(11063224733622002)
,p_query_column_id=>2
,p_column_alias=>'VALUE'
,p_column_display_sequence=>2
,p_column_heading=>'Value'
,p_column_format=>'SINCE'
,p_heading_alignment=>'LEFT'
);
wwv_flow_api.create_report_region(
p_id=>wwv_flow_api.id(11054196593621927)
,p_name=>'Latest Activity'
,p_template=>wwv_flow_api.id(10957391055620952)
,p_display_sequence=>50
,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:i-h240:t-Region--scrollBody'
,p_component_template_options=>'#DEFAULT#:t-Report--stretch:t-Report--altRowsDefault:t-Report--rowHighlight:t-Report--inline'
,p_new_grid_row=>false
,p_display_point=>'BODY'
,p_source_type=>'NATIVE_SQL_REPORT'
,p_query_type=>'SQL'
,p_source=>wwv_flow_string.join(wwv_flow_t_varchar2(
'select userid_lc as username,',
' max(time_stamp) as last_activity',
'from apex_activity_log',
'where flow_id = :app_id',
' and time_stamp >= sysdate - ( 1/24/60/60 * :P10010_TIMEFRAME )',
' and userid_lc is not null',
'group by userid_lc',
'order by 2 desc'))
,p_ajax_enabled=>'Y'
,p_ajax_items_to_submit=>'P10010_TIMEFRAME'
,p_query_row_template=>wwv_flow_api.id(10983636092621020)
,p_query_num_rows=>20
,p_query_options=>'DERIVED_REPORT_COLUMNS'
,p_query_no_data_found=>'No activities found'
,p_query_row_count_max=>500
);
wwv_flow_api.create_report_columns(
p_id=>wwv_flow_api.id(11066041391622037)
,p_query_column_id=>1
,p_column_alias=>'USERNAME'
,p_column_display_sequence=>1
,p_column_heading=>'Username'
,p_heading_alignment=>'LEFT'
);
wwv_flow_api.create_report_columns(
p_id=>wwv_flow_api.id(11066424614622037)
,p_query_column_id=>2
,p_column_alias=>'LAST_ACTIVITY'
,p_column_display_sequence=>2
,p_column_heading=>'Last Activity'
,p_column_format=>'SINCE'
,p_heading_alignment=>'LEFT'
);
wwv_flow_api.create_page_plug(
p_id=>wwv_flow_api.id(11054244007621927)
,p_plug_name=>'Filters'
,p_region_template_options=>'#DEFAULT#:t-ButtonRegion--slimPadding:t-ButtonRegion--noUI:t-Form--large'
,p_component_template_options=>'#DEFAULT#'
,p_escape_on_http_output=>'Y'
,p_plug_template=>wwv_flow_api.id(10940495679620918)
,p_plug_display_sequence=>10
,p_plug_display_point=>'REGION_POSITION_01'
,p_plug_query_num_rows=>15
,p_attribute_01=>'N'
,p_attribute_02=>'HTML'
,p_attribute_03=>'Y'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(11068758156622054)
,p_button_sequence=>10
,p_button_plug_id=>wwv_flow_api.id(11053432820621927)
,p_button_name=>'VIEW_ACTIVITY_BY_USER'
,p_button_action=>'REDIRECT_PAGE'
,p_button_template_options=>'#DEFAULT#:t-Button--noUI'
,p_button_template_id=>wwv_flow_api.id(11018733352621144)
,p_button_image_alt=>'View Details'
,p_button_position=>'REGION_TEMPLATE_EDIT'
,p_button_redirect_url=>'f?p=&APP_ID.:10011:&SESSION.::&DEBUG.:RP,10011::'
,p_icon_css_classes=>'fa-angle-right'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(11069118244622054)
,p_button_sequence=>10
,p_button_plug_id=>wwv_flow_api.id(11053648711621927)
,p_button_name=>'VIEW_ACTIVITY_DETAILS'
,p_button_action=>'REDIRECT_PAGE'
,p_button_template_options=>'#DEFAULT#:t-Button--noUI'
,p_button_template_id=>wwv_flow_api.id(11018733352621144)
,p_button_image_alt=>'View Details'
,p_button_position=>'REGION_TEMPLATE_EDIT'
,p_button_redirect_url=>'f?p=&APP_ID.:10014:&SESSION.::&DEBUG.:RP,10014::'
,p_icon_css_classes=>'fa-angle-right'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(11069592540622055)
,p_button_sequence=>10
,p_button_plug_id=>wwv_flow_api.id(11053834086621927)
,p_button_name=>'VIEW_ACTIVITY_BY_USER'
,p_button_action=>'REDIRECT_PAGE'
,p_button_template_options=>'#DEFAULT#:t-Button--noUI'
,p_button_template_id=>wwv_flow_api.id(11018733352621144)
,p_button_image_alt=>'View Details'
,p_button_position=>'REGION_TEMPLATE_EDIT'
,p_button_redirect_url=>'f?p=&APP_ID.:10011:&SESSION.::&DEBUG.:RP,10011::'
,p_icon_css_classes=>'fa-angle-right'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(11069943408622055)
,p_button_sequence=>10
,p_button_plug_id=>wwv_flow_api.id(11054041748621927)
,p_button_name=>'VIEW_RECENT_ERRORS'
,p_button_action=>'REDIRECT_PAGE'
,p_button_template_options=>'#DEFAULT#:t-Button--noUI'
,p_button_template_id=>wwv_flow_api.id(11018733352621144)
,p_button_image_alt=>'View Details'
,p_button_position=>'REGION_TEMPLATE_EDIT'
,p_button_redirect_url=>'f?p=&APP_ID.:10012:&SESSION.::&DEBUG.:RP,10012::'
,p_icon_css_classes=>'fa-angle-right'
);
wwv_flow_api.create_page_item(
p_id=>wwv_flow_api.id(11054326086621927)
,p_name=>'P10010_TIMEFRAME'
,p_item_sequence=>10
,p_item_plug_id=>wwv_flow_api.id(11054244007621927)
,p_item_default=>'900'
,p_prompt=>'Timeframe'
,p_source=>'900'
,p_source_type=>'STATIC'
,p_display_as=>'NATIVE_SELECT_LIST'
,p_named_lov=>'TIMEFRAME (4 WEEKS)'
,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2(
'select disp,',
' val as seconds',
' from table( apex_util.get_timeframe_lov_data )',
'order by insert_order'))
,p_cHeight=>1
,p_field_template=>wwv_flow_api.id(11018335745621143)
,p_item_template_options=>'#DEFAULT#'
,p_lov_display_extra=>'NO'
,p_attribute_01=>'NONE'
,p_attribute_02=>'N'
,p_attribute_03=>'Y'
);
wwv_flow_api.create_page_da_event(
p_id=>wwv_flow_api.id(11054403139621927)
,p_name=>'Change Filters'
,p_event_sequence=>10
,p_triggering_element_type=>'ITEM'
,p_triggering_element=>'P10010_TIMEFRAME'
,p_bind_type=>'bind'
,p_bind_event_type=>'change'
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(11071533532622073)
,p_event_id=>wwv_flow_api.id(11054403139621927)
,p_event_result=>'TRUE'
,p_action_sequence=>10
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_REFRESH'
,p_affected_elements_type=>'REGION'
,p_affected_region_id=>wwv_flow_api.id(11053432820621927)
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(11072055694622075)
,p_event_id=>wwv_flow_api.id(11054403139621927)
,p_event_result=>'TRUE'
,p_action_sequence=>20
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_REFRESH'
,p_affected_elements_type=>'REGION'
,p_affected_region_id=>wwv_flow_api.id(11053834086621927)
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(11072566584622077)
,p_event_id=>wwv_flow_api.id(11054403139621927)
,p_event_result=>'TRUE'
,p_action_sequence=>30
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_REFRESH'
,p_affected_elements_type=>'REGION'
,p_affected_region_id=>wwv_flow_api.id(11053648711621927)
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(11073034275622077)
,p_event_id=>wwv_flow_api.id(11054403139621927)
,p_event_result=>'TRUE'
,p_action_sequence=>40
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_REFRESH'
,p_affected_elements_type=>'REGION'
,p_affected_region_id=>wwv_flow_api.id(11054041748621927)
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(11073539183622077)
,p_event_id=>wwv_flow_api.id(11054403139621927)
,p_event_result=>'TRUE'
,p_action_sequence=>50
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_REFRESH'
,p_affected_elements_type=>'REGION'
,p_affected_region_id=>wwv_flow_api.id(11054196593621927)
);
wwv_flow_api.component_end;
end;
/
|
-- table_ddl.sql
@clears
col v_owner new_value v_owner noprint
col v_table_name new_value v_table_name noprint
prompt
prompt Table Owner:
prompt
set feed off term off
select upper('&1') v_owner from dual;
set feed on term on
prompt
prompt Table Name:
prompt
set feed off term off
select upper('&2') v_table_name from dual;
set feed on term on
-- use binds to avoid stressing shared pool and hard parsing
var v_owner varchar2(30)
var v_table_name varchar2(30)
begin
:v_owner := '&&v_owner';
:v_table_name := '&&v_table_name';
end;
/
@clear_for_spool
set pagesize 50000
set linesize 200 trimspool on
col ddl format a200
set long 2000000
col mydb noprint new_value mydb
set term off
select lower(name) mydb from v$database;
set term on
define sqlfile=_gen_tab_&&mydb
-- dbms_metadata setup
begin
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'PRETTY',TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'SQLTERMINATOR',TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'SEGMENT_ATTRIBUTES',TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'STORAGE', TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'TABLESPACE',TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'SPECIFICATION',TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'BODY',TRUE);
dbms_metadata.set_transform_param(dbms_metadata.session_transform,'CONSTRAINTS',TRUE);
end;
/
col ddl format a200
spool &&sqlfile..sql
prompt set echo on
prompt spool &&sqlfile..log
-- dbms_metadata here
prompt --########################################
prompt --## TABLE DDL
prompt --########################################
select replace(dbms_metadata.get_ddl('TABLE',:v_table_name,:v_owner),'"','') ddl from dual
/
prompt --########################################
prompt --## INDEX DDL
prompt --########################################
select replace(dbms_metadata.get_ddl('INDEX',i.index_name, i.owner),'"','') ddl
from dba_indexes i
where i.owner = :v_owner
and i.table_name = :v_table_name
/
prompt --########################################
prompt --## PRIMARY KEY
prompt --########################################
select replace(dbms_metadata.get_ddl('CONSTRAINT',c.constraint_name, c.owner),'"','') ddl
from dba_constraints c
where c.owner = :v_owner
and c.table_name = :v_table_name
and c.constraint_type = 'P'
/
prompt --########################################
prompt --## FOREIGN KEYS
prompt --########################################
select replace(dbms_metadata.get_ddl('REF_CONSTRAINT',c.constraint_name, c.owner),'"','') ddl
from dba_constraints c
where c.owner = :v_owner
and c.table_name = :v_table_name
and c.constraint_type = 'R'
/
prompt --########################################
prompt --## CHECK CONSTRAINTS
prompt --########################################
select replace(dbms_metadata.get_ddl('CONSTRAINT',c.constraint_name, c.owner),'"','') ddl
from dba_constraints c
where c.owner = :v_owner
and c.table_name = :v_table_name
and c.constraint_type = 'C'
and c.generated not like 'GENERATED%'
/
prompt spool off
prompt set echo off
spool off
@clears
undef 1 2
prompt
prompt ===========================================================================
prompt == &&sqlfile..sql contains DDL for tables
prompt ===========================================================================
prompt
|
{{
config(
alias='volume_day'
)
}}
SELECT
'ethereum' as blockchain,
date_trunc('day', block_time) AS day,
SUM(amount) AS volume,
token_symbol,
SUM(amount_usd) AS volume_usd
FROM
{{ ref('opensea_ethereum_trades') }}
GROUP BY 2,4
ORDER BY 2 |
<gh_stars>1-10
# --- Rename the table columns to work with Ebean
# --- !Ups
alter table users rename column firstName to first_name;
alter table users rename column lastName to last_name;
alter table users rename column passwordHash to password_hash;
alter table short_urls rename column shortCode to short_code;
alter table short_urls rename column hitCount to hit_count;
alter table short_urls rename column createdBy to created_by;
# --- !Downs
alter table users rename column first_name to firstName;
alter table users rename column last_name to lastName;
alter table users rename column password_hash to passwordHash;
alter table short_urls rename column short_code to shortCode;
alter table short_urls rename column hit_count to hitCount;
alter table short_urls rename column created_by to createdBy;
|
-- randexpr1.test
--
-- db eval {SELECT (abs(case when t1.d not in (t1.f,t1.d,(select abs(min(((select +count(*)*case max(t1.e-coalesce((select max(case t1.b when 13 then a else e end) from t1 where t1.b>b),19)+d)- -+count(*) when +cast(avg(d) AS integer) then max(c) else (cast(avg(c) AS integer)) end | count(*) from t1)+t1.f)))-max(t1.c) from t1)) then t1.b*t1.f else f end)/abs(b+19)) FROM t1 WHERE a not in ((11),(t1.d),a) or case when f<t1.e | 11+t1.b+17-coalesce((select t1.f+case when ((not (t1.d)>(abs(d)/abs(t1.d)))) then a when f not between t1.f | t1.b and t1.d then a else 13 end from t1 where 19<=c),f) then t1.a else f end between 13 and 11}
SELECT (abs(case when t1.d not in (t1.f,t1.d,(select abs(min(((select +count(*)*case max(t1.e-coalesce((select max(case t1.b when 13 then a else e end) from t1 where t1.b>b),19)+d)- -+count(*) when +cast(avg(d) AS integer) then max(c) else (cast(avg(c) AS integer)) end | count(*) from t1)+t1.f)))-max(t1.c) from t1)) then t1.b*t1.f else f end)/abs(b+19)) FROM t1 WHERE a not in ((11),(t1.d),a) or case when f<t1.e | 11+t1.b+17-coalesce((select t1.f+case when ((not (t1.d)>(abs(d)/abs(t1.d)))) then a when f not between t1.f | t1.b and t1.d then a else 13 end from t1 where 19<=c),f) then t1.a else f end between 13 and 11 |
-- file:aggregates.sql ln:772 expect:true
create aggregate my_avg_init2(int4)
(
stype = avg_state,
sfunc = avg_transfn,
finalfunc = avg_finalfn,
initcond = '(4,0)'
)
|
<reponame>Shuttl-Tech/antlr_psql
-- file:foreign_key.sql ln:502 expect:true
CREATE TABLE PKTABLE (ptest1 int, ptest2 inet, ptest3 int, ptest4 inet, PRIMARY KEY(ptest1, ptest2), FOREIGN KEY(ptest3,
ptest4) REFERENCES pktable(ptest1, ptest2))
|
SET search_path = disclosure, pg_catalog;
--
-- Name: dsc_sched_a_aggregate_employer; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_a_aggregate_employer (
cmte_id character varying(9),
cycle numeric,
employer character varying(38),
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_a_aggregate_employer_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_a_aggregate_employer OWNER TO fec;
--
-- Name: dsc_sched_a_aggregate_occupation; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_a_aggregate_occupation (
cmte_id character varying(9),
cycle numeric,
occupation character varying(38),
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_a_aggregate_occupation_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_a_aggregate_occupation OWNER TO fec;
--
-- Name: dsc_sched_a_aggregate_size; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_a_aggregate_size (
cmte_id character varying(9),
cycle numeric,
size integer,
total numeric,
count bigint
);
ALTER TABLE dsc_sched_a_aggregate_size OWNER TO fec;
--
-- Name: dsc_sched_a_aggregate_state; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_a_aggregate_state (
cmte_id character varying(9),
cycle numeric,
state character varying(2),
state_full text,
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_a_aggregate_state_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_a_aggregate_state OWNER TO fec;
--
-- Name: dsc_sched_a_aggregate_zip; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_a_aggregate_zip (
cmte_id character varying(9),
cycle numeric,
zip character varying(9),
state text,
state_full text,
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_a_aggregate_zip_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_a_aggregate_zip OWNER TO fec;
--
-- Name: dsc_sched_b_aggregate_purpose; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_b_aggregate_purpose (
cmte_id character varying(9),
cycle numeric,
purpose character varying,
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_b_aggregate_purpose_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_b_aggregate_purpose OWNER TO fec;
--
-- Name: dsc_sched_b_aggregate_recipient; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_b_aggregate_recipient (
cmte_id character varying(9),
cycle numeric,
recipient_nm character varying(200),
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_b_aggregate_recipient_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_b_aggregate_recipient OWNER TO fec;
--
-- Name: dsc_sched_b_aggregate_recipient_id; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE dsc_sched_b_aggregate_recipient_id (
cmte_id character varying(9),
cycle numeric,
recipient_cmte_id character varying,
recipient_nm text,
total numeric,
count bigint,
idx integer DEFAULT nextval('public.ofec_sched_b_aggregate_recipient_id_idx_seq1'::regclass) NOT NULL
);
ALTER TABLE dsc_sched_b_aggregate_recipient_id OWNER TO fec;
--
-- Name: f_item_daily; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE f_item_daily (
sub_id numeric(19,0) NOT NULL,
v_sum_link_id numeric(19,0) NOT NULL,
file_num numeric(7,0),
rpt_yr numeric(4,0),
rpt_tp character varying(3),
rpt_receipt_dt date,
cmte_id character varying(9),
image_num character varying(18),
line_num character varying(12),
form_tp_cd character varying(8),
sched_tp_cd character varying(8),
name character varying(200),
first_name character varying(38),
last_name character varying(38),
street_1 character varying(34),
street_2 character varying(34),
city character varying(30),
state character varying(2),
zip_code character varying(9),
employer character varying(38),
occupation character varying(38),
transaction_dt numeric(8,0),
transaction_amt numeric(14,2),
transaction_pgi character varying(5),
aggregate_amt numeric(14,2),
transaction_tp character varying(3),
purpose character varying(100),
category character varying(3),
category_desc character varying(40),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
other_id character varying(9),
subordinate_cmte character varying(9),
cand_id character varying(9),
support_oppose_ind character varying(3),
conduit_cmte_id character varying(9),
national_cmte_nonfed_acct character varying(9),
increased_limit character varying(1),
unlimited_spending character varying(1),
refund_or_excess character varying(1),
communication_dt numeric(8,0),
loan_dt numeric(8,0),
loan_amt numeric(14,2),
loan_interest_rate character varying(15),
loan_due_dt character varying(15),
loan_pymt_to_dt numeric(14,2),
loan_outstanding_balance numeric(14,2),
sched_a_line_num character varying(3),
original_loan_date numeric(8,0),
credit_amt_this_draw numeric(14,2),
depository_acct_est_dt numeric(8,0),
depository_acct_auth_dt numeric(8,0),
debt_outstanding_balance_bop numeric(14,2),
debt_outstanding_balance_cop numeric(14,2),
debt_amt_incurred_per numeric(14,2),
debt_pymt_per numeric(14,2),
communication_cost numeric(14,2),
communication_tp character varying(2),
communication_class character varying(1),
loan_flag character varying(1),
account_nm character varying(90),
event_nm character varying(90),
event_tp character varying(2),
event_tp_desc character varying(50),
federal_share numeric(14,2),
nonfederal_levin_share numeric(14,2),
admin_voter_drive_ind character varying(1),
ratio_cd character varying(1),
fundraising_ind character varying(1),
exempt_ind character varying(1),
direct_candidate_support_ind character varying(1),
admin_ind character varying(1),
voter_drive_ind character varying(1),
pub_comm_ref_pty_chk character varying(1),
voter_reg_amt numeric(14,2),
voter_id_amt numeric(14,2),
gotv_amt numeric(14,2),
gen_campaign_amt numeric(14,2),
np_fixed_fed_pct numeric(7,4),
hsp_min_fed_pct numeric(7,4),
hsp_est_fed_dir_cand_supp_pct numeric(7,4),
hsp_est_nonfed_cand_supp_pct numeric(7,4),
hsp_actl_fed_dir_cand_supp_amt numeric(14,2),
hsp_actl_nonfed_cand_supp_amt numeric(14,2),
hsp_actl_fed_dir_cand_supp_pct numeric(7,4),
ssf_fed_est_dir_cand_supp_pct numeric(7,4),
ssf_nfed_est_dir_cand_supp_pct numeric(7,4),
ssf_actl_fed_dir_cand_supp_amt numeric(14,2),
ssf_actl_nonfed_cand_supp_amt numeric(14,2),
ssf_actl_fed_dir_cand_supp_pct numeric(7,4),
president_ind numeric(1,0),
us_senate_ind numeric(1,0),
us_congress_ind numeric(1,0),
subttl_fed numeric(1,0),
governor_ind numeric(1,0),
other_st_offices_ind numeric(1,0),
st_senate_ind numeric(1,0),
st_rep_ind numeric(1,0),
local_cand_ind numeric(1,0),
extra_non_fed_point_ind numeric(1,0),
subttl_non_fed numeric(2,0),
ttl_fed_and_nonfed numeric(2,0),
fed_alloctn numeric(5,0),
st_loc_pres_only character varying(1),
st_loc_pres_sen character varying(1),
st_loc_sen_only character varying(1),
st_loc_nonpres_nonsen character varying(1),
flat_min_fed_pct character varying(1),
fed_pct numeric(5,0),
non_fed_pct numeric(5,0),
admin_ratio_chk character varying(1),
gen_voter_drive_chk character varying(1),
last_update_dt timestamp without time zone,
entity_tp character varying(3),
tran_id character varying(32),
back_ref_tran_id character varying(32),
dissem_dt numeric(8,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE f_item_daily OWNER TO fec;
--
-- Name: f_item_delete_daily; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE f_item_delete_daily (
table_name character varying(50) NOT NULL,
sub_id numeric(19,0) NOT NULL,
pg_date timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE f_item_delete_daily OWNER TO fec;
--
-- Name: f_item_receipt_or_exp; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE f_item_receipt_or_exp (
sub_id numeric(19,0) NOT NULL,
v_sum_link_id numeric(19,0) NOT NULL,
file_num numeric(7,0),
rpt_yr numeric(4,0),
rpt_tp character varying(3),
rpt_receipt_dt date,
cmte_id character varying(9),
image_num character varying(18),
line_num character varying(12),
form_tp_cd character varying(8),
sched_tp_cd character varying(8),
name character varying(200),
first_name character varying(38),
last_name character varying(38),
street_1 character varying(34),
street_2 character varying(34),
city character varying(30),
state character varying(2),
zip_code character varying(9),
employer character varying(38),
occupation character varying(38),
transaction_dt numeric(8,0),
transaction_amt numeric(14,2),
transaction_pgi character varying(5),
aggregate_amt numeric(14,2),
transaction_tp character varying(3),
purpose character varying(100),
category character varying(3),
category_desc character varying(40),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
other_id character varying(9),
subordinate_cmte character varying(9),
cand_id character varying(9),
support_oppose_ind character varying(3),
conduit_cmte_id character varying(9),
national_cmte_nonfed_acct character varying(9),
increased_limit character varying(1),
unlimited_spending character varying(1),
refund_or_excess character varying(1),
communication_dt numeric(8,0),
loan_dt numeric(8,0),
loan_amt numeric(14,2),
loan_interest_rate character varying(15),
loan_due_dt character varying(15),
loan_pymt_to_dt numeric(14,2),
loan_outstanding_balance numeric(14,2),
sched_a_line_num character varying(3),
original_loan_date numeric(8,0),
credit_amt_this_draw numeric(14,2),
depository_acct_est_dt numeric(8,0),
depository_acct_auth_dt numeric(8,0),
debt_outstanding_balance_bop numeric(14,2),
debt_outstanding_balance_cop numeric(14,2),
debt_amt_incurred_per numeric(14,2),
debt_pymt_per numeric(14,2),
communication_cost numeric(14,2),
communication_tp character varying(2),
communication_class character varying(1),
loan_flag character varying(1),
account_nm character varying(90),
event_nm character varying(90),
event_tp character varying(2),
event_tp_desc character varying(50),
federal_share numeric(14,2),
nonfederal_levin_share numeric(14,2),
admin_voter_drive_ind character varying(1),
ratio_cd character varying(1),
fundraising_ind character varying(1),
exempt_ind character varying(1),
direct_candidate_support_ind character varying(1),
admin_ind character varying(1),
voter_drive_ind character varying(1),
pub_comm_ref_pty_chk character varying(1),
voter_reg_amt numeric(14,2),
voter_id_amt numeric(14,2),
gotv_amt numeric(14,2),
gen_campaign_amt numeric(14,2),
np_fixed_fed_pct numeric(7,4),
hsp_min_fed_pct numeric(7,4),
hsp_est_fed_dir_cand_supp_pct numeric(7,4),
hsp_est_nonfed_cand_supp_pct numeric(7,4),
hsp_actl_fed_dir_cand_supp_amt numeric(14,2),
hsp_actl_nonfed_cand_supp_amt numeric(14,2),
hsp_actl_fed_dir_cand_supp_pct numeric(7,4),
ssf_fed_est_dir_cand_supp_pct numeric(7,4),
ssf_nfed_est_dir_cand_supp_pct numeric(7,4),
ssf_actl_fed_dir_cand_supp_amt numeric(14,2),
ssf_actl_nonfed_cand_supp_amt numeric(14,2),
ssf_actl_fed_dir_cand_supp_pct numeric(7,4),
president_ind numeric(1,0),
us_senate_ind numeric(1,0),
us_congress_ind numeric(1,0),
subttl_fed numeric(1,0),
governor_ind numeric(1,0),
other_st_offices_ind numeric(1,0),
st_senate_ind numeric(1,0),
st_rep_ind numeric(1,0),
local_cand_ind numeric(1,0),
extra_non_fed_point_ind numeric(1,0),
subttl_non_fed numeric(2,0),
ttl_fed_and_nonfed numeric(2,0),
fed_alloctn numeric(5,0),
st_loc_pres_only character varying(1),
st_loc_pres_sen character varying(1),
st_loc_sen_only character varying(1),
st_loc_nonpres_nonsen character varying(1),
flat_min_fed_pct character varying(1),
fed_pct numeric(5,0),
non_fed_pct numeric(5,0),
admin_ratio_chk character varying(1),
gen_voter_drive_chk character varying(1),
last_update_dt timestamp without time zone,
entity_tp character varying(3),
tran_id character varying(32),
back_ref_tran_id character varying(32),
dissem_dt numeric(8,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE f_item_receipt_or_exp OWNER TO fec;
--
-- Name: f_rpt_or_form_sub; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE f_rpt_or_form_sub (
sub_id numeric(19,0) NOT NULL,
cvg_start_dt numeric(8,0),
cvg_end_dt numeric(8,0),
receipt_dt numeric(8,0),
election_yr numeric(4,0),
cand_cmte_id character varying(9),
form_tp character varying(8),
rpt_yr numeric(4,0),
rpt_tp character varying(3),
amndt_ind character varying(1),
request_tp character varying(3),
to_from_ind character varying(1),
begin_image_num character varying(18),
end_image_num character varying(18),
pages numeric(8,0),
ttl_receipts numeric(14,2),
ttl_indt_contb numeric(14,2),
net_dons numeric(14,2),
ttl_disb numeric(14,2),
ttl_indt_exp numeric(14,2),
ttl_communication_cost numeric(14,2),
coh_bop numeric(14,2),
coh_cop numeric(14,2),
debts_owed_by_cmte numeric(14,2),
debts_owed_to_cmte numeric(14,2),
hse_pers_funds_amt numeric(14,2),
sen_pers_funds_amt numeric(14,2),
oppos_pers_fund_amt numeric(14,2),
cand_pk numeric(19,0),
cmte_pk numeric(19,0),
tres_nm character varying(38),
file_num numeric(7,0),
prev_file_num numeric(7,0),
lst_updt_dt timestamp without time zone,
rpt_pgi character varying(5),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE f_rpt_or_form_sub OWNER TO fec;
--
-- Name: fec_fitem_f105; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_f105 (
filer_cmte_id character varying(9),
exp_dt timestamp without time zone,
election_tp character varying(5),
election_tp_desc character varying(20),
fec_election_tp_desc character varying(20),
exp_amt numeric(14,2),
loan_chk_flg character varying(1),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_f105 OWNER TO fec;
--
-- Name: fec_fitem_f56; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_f56 (
filer_cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(90),
contbr_nm character varying(200),
contbr_l_nm character varying(30),
contbr_f_nm character varying(20),
contbr_m_nm character varying(20),
contbr_prefix character varying(10),
contbr_suffix character varying(10),
contbr_st1 character varying(34),
contbr_st2 character varying(34),
conbtr_city character varying(30),
contbr_st character varying(2),
contbr_zip character varying(9),
contbr_employer character varying(38),
contbr_occupation character varying(38),
contb_dt timestamp without time zone,
contb_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_nm character varying(200),
conduit_st1 character varying(34),
conduit_st2 character varying(34),
conduit_city character varying(30),
conduit_st character varying(2),
conduit_zip character varying(9),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_f56 OWNER TO fec;
--
-- Name: fec_fitem_f57; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_f57 (
filer_cmte_id character varying(9),
pye_nm character varying(200),
pye_l_nm character varying(30),
pye_f_nm character varying(20),
pye_m_nm character varying(20),
pye_prefix character varying(10),
pye_suffix character varying(10),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
exp_purpose character varying(100),
entity_tp character varying(3),
entity_tp_desc character varying(90),
catg_cd character varying(3),
catg_cd_desc character varying(40),
s_o_cand_id character varying(9),
s_o_cand_l_nm character varying(30),
s_o_cand_f_nm character varying(20),
s_o_cand_m_nm character varying(20),
s_o_cand_prefix character varying(10),
s_o_cand_suffix character varying(10),
s_o_cand_nm character varying(90),
s_o_cand_office character varying(1),
s_o_cand_office_desc character varying(20),
s_o_cand_office_st character varying(2),
s_o_cand_office_state_desc character varying(20),
s_o_cand_office_district character varying(2),
s_o_ind character varying(3),
s_o_ind_desc character varying(20),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_yr character varying(4),
election_tp_desc character varying(20),
cal_ytd_ofc_sought numeric(14,2),
exp_dt timestamp without time zone,
exp_amt numeric(14,2),
exp_tp character varying(3),
exp_tp_desc character varying(90),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
link_id numeric(19,0),
image_num character varying(18),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_f57 OWNER TO fec;
--
-- Name: fec_fitem_f76; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_f76 (
org_id character varying(9),
communication_tp character varying(2),
communication_tp_desc character varying(40),
communication_class character varying(1),
communication_class_desc character varying(90),
communication_dt timestamp without time zone,
s_o_ind character varying(3),
s_o_ind_desc character varying(90),
s_o_cand_id character varying(9),
s_o_cand_nm character varying(90),
s_o_cand_l_nm character varying(30),
s_o_cand_f_nm character varying(20),
s_o_cand_m_nm character varying(20),
s_o_cand_prefix character varying(10),
s_o_cand_suffix character varying(10),
s_o_cand_office character varying(1),
s_o_cand_office_desc character varying(20),
s_o_cand_office_st character varying(2),
s_o_cand_office_st_desc character varying(20),
s_o_cand_office_district character varying(2),
s_o_rpt_pgi character varying(5),
s_o_rpt_pgi_desc character varying(10),
communication_cost numeric(14,2),
election_other_desc character varying(20),
transaction_tp character varying(3),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_f76 OWNER TO fec;
--
-- Name: fec_fitem_f91; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_f91 (
filer_cmte_id character varying(9),
shr_ex_ctl_ind_nm character varying(90),
shr_ex_ctl_l_nm character varying(30),
shr_ex_ctl_f_nm character varying(20),
shr_ex_ctl_m_nm character varying(20),
shr_ex_ctl_prefix character varying(10),
shr_ex_ctl_suffix character varying(10),
shr_ex_ctl_street1 character varying(34),
shr_ex_ctl_street2 character varying(34),
shr_ex_ctl_city character varying(30),
shr_ex_ctl_st character varying(2),
shr_ex_ctl_st_desc character varying(20),
shr_ex_ctl_zip character varying(9),
shr_ex_ctl_employ character varying(38),
shr_ex_ctl_occup character varying(38),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
begin_image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_f91 OWNER TO fec;
--
-- Name: fec_fitem_f94; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_f94 (
filer_cmte_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_l_nm character varying(30),
cand_f_nm character varying(20),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
election_tp character varying(5),
election_tp_desc character varying(20),
fec_election_tp_desc character varying(20),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
schedule_type character varying(8),
schedule_type_desc character varying(90),
begin_image_num character varying(18),
sb_link_id numeric(19,0),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_f94 OWNER TO fec;
--
-- Name: fec_fitem_sched_a; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a (
cmte_id character varying(9),
cmte_nm character varying(200),
contbr_id character varying(9),
contbr_nm character varying(200),
contbr_nm_first character varying(38),
contbr_m_nm character varying(20),
contbr_nm_last character varying(38),
contbr_prefix character varying(10),
contbr_suffix character varying(10),
contbr_st1 character varying(34),
contbr_st2 character varying(34),
contbr_city character varying(30),
contbr_st character varying(2),
contbr_zip character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
contbr_employer character varying(38),
contbr_occupation character varying(38),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_yr character varying(4),
election_tp_desc character varying(20),
contb_aggregate_ytd numeric(14,2),
contb_receipt_dt timestamp without time zone,
contb_receipt_amt numeric(14,2),
receipt_tp character varying(3),
receipt_tp_desc character varying(90),
receipt_desc character varying(100),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_m_nm character varying(20),
cand_nm_last character varying(38),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
donor_cmte_nm character varying(200),
national_cmte_nonfed_acct character varying(9),
increased_limit character varying(1),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pdf_url text,
contributor_name_text tsvector,
contributor_employer_text tsvector,
contributor_occupation_text tsvector,
is_individual boolean,
clean_contbr_id character varying(9),
pg_date timestamp without time zone DEFAULT now(),
line_number_label text
);
ALTER TABLE fec_fitem_sched_a OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1975_1976; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1975_1976 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1975, 1976])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1975_1976 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1977_1978; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1977_1978 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1977, 1978])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1977_1978 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1979_1980; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1979_1980 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1979, 1980])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1979_1980 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1981_1982; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1981_1982 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1981, 1982])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1981_1982 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1983_1984; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1983_1984 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1983, 1984])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1983_1984 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1985_1986; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1985_1986 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1985, 1986])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1985_1986 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1987_1988; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1987_1988 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1987, 1988])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1987_1988 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1989_1990; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1989_1990 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1989, 1990])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1989_1990 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1991_1992; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1991_1992 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1991, 1992])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1991_1992 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1993_1994; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1993_1994 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1993, 1994])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1993_1994 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1995_1996; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1995_1996 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1995, 1996])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1995_1996 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1997_1998; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1997_1998 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1997, 1998])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1997_1998 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_1999_2000; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_1999_2000 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1999, 2000])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_1999_2000 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2001_2002; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2001_2002 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2001, 2002])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2001_2002 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2003_2004; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2003_2004 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2003, 2004])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2003_2004 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2005_2006; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2005_2006 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2005, 2006])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2005_2006 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2007_2008; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2007_2008 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2007, 2008])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2007_2008 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2009_2010; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2009_2010 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2009, 2010])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2009_2010 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2011_2012; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2011_2012 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2011, 2012])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2011_2012 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2013_2014; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2013_2014 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2013, 2014])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2013_2014 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2015_2016; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2015_2016 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2015, 2016])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2015_2016 OWNER TO fec;
--
-- Name: fec_fitem_sched_a_2017_2018; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_a_2017_2018 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2017, 2018])::numeric[])))
)
INHERITS (fec_fitem_sched_a);
ALTER TABLE fec_fitem_sched_a_2017_2018 OWNER TO fec;
--
-- Name: fec_fitem_sched_b; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b (
cmte_id character varying(9),
recipient_cmte_id character varying(9),
recipient_nm character varying(200),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
payee_employer character varying(38),
payee_occupation character varying(38),
recipient_st1 character varying(34),
recipient_st2 character varying(34),
recipient_city character varying(30),
recipient_st character varying(2),
recipient_zip character varying(9),
disb_desc character varying(100),
catg_cd character varying(3),
catg_cd_desc character varying(40),
entity_tp character varying(3),
entity_tp_desc character varying(50),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_tp_year character varying(4),
election_tp_desc character varying(20),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
disb_dt timestamp without time zone,
disb_amt numeric(14,2),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
disb_tp character varying(3),
disb_tp_desc character varying(90),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
national_cmte_nonfed_acct character varying(9),
ref_disp_excess_flg character varying(1),
comm_dt timestamp without time zone,
benef_cmte_nm character varying(200),
semi_an_bundled_refund numeric(14,2),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pdf_url text,
recipient_name_text tsvector,
disbursement_description_text tsvector,
disbursement_purpose_category character varying,
clean_recipient_cmte_id character varying(9),
pg_date timestamp without time zone DEFAULT now(),
line_number_label text
);
ALTER TABLE fec_fitem_sched_b OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1975_1976; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1975_1976 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1975, 1976])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1975_1976 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1977_1978; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1977_1978 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1977, 1978])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1977_1978 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1979_1980; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1979_1980 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1979, 1980])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1979_1980 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1981_1982; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1981_1982 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1981, 1982])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1981_1982 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1983_1984; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1983_1984 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1983, 1984])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1983_1984 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1985_1986; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1985_1986 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1985, 1986])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1985_1986 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1987_1988; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1987_1988 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1987, 1988])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1987_1988 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1989_1990; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1989_1990 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1989, 1990])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1989_1990 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1991_1992; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1991_1992 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1991, 1992])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1991_1992 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1993_1994; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1993_1994 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1993, 1994])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1993_1994 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1995_1996; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1995_1996 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1995, 1996])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1995_1996 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1997_1998; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1997_1998 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1997, 1998])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1997_1998 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_1999_2000; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_1999_2000 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[1999, 2000])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_1999_2000 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2001_2002; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2001_2002 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2001, 2002])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2001_2002 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2003_2004; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2003_2004 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2003, 2004])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2003_2004 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2005_2006; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2005_2006 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2005, 2006])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2005_2006 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2007_2008; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2007_2008 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2007, 2008])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2007_2008 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2009_2010; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2009_2010 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2009, 2010])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2009_2010 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2011_2012; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2011_2012 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2011, 2012])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2011_2012 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2013_2014; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2013_2014 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2013, 2014])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2013_2014 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2015_2016; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2015_2016 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2015, 2016])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2015_2016 OWNER TO fec;
--
-- Name: fec_fitem_sched_b_2017_2018; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_b_2017_2018 (
CONSTRAINT check_election_cycle CHECK ((election_cycle = ANY ((ARRAY[2017, 2018])::numeric[])))
)
INHERITS (fec_fitem_sched_b);
ALTER TABLE fec_fitem_sched_b_2017_2018 OWNER TO fec;
--
-- Name: fec_fitem_sched_c; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_c (
cmte_id character varying(9),
cmte_nm character varying(200),
loan_src_l_nm character varying(30),
loan_src_f_nm character varying(20),
loan_src_m_nm character varying(20),
loan_src_prefix character varying(10),
loan_src_suffix character varying(10),
loan_src_nm character varying(200),
loan_src_st1 character varying(34),
loan_src_st2 character varying(34),
loan_src_city character varying(30),
loan_src_st character varying(2),
loan_src_zip character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_tp_year character varying(4),
election_tp_desc character varying(20),
orig_loan_amt numeric(14,2),
pymt_to_dt numeric(14,2),
loan_bal numeric(14,2),
incurred_dt timestamp without time zone,
due_dt_terms character varying(15),
interest_rate_terms character varying(15),
secured_ind character varying(1),
sched_a_line_num character varying(3),
pers_fund_yes_no character varying(1),
memo_cd character varying(1),
memo_text character varying(100),
fec_cmte_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_state_desc character varying(20),
cand_office_district character varying(2),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_c OWNER TO fec;
--
-- Name: fec_fitem_sched_c1; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_c1 (
cmte_id character varying(9),
cmte_nm character varying(200),
entity_tp_desc character varying(50),
loan_src_nm character varying(200),
loan_src_st1 character varying(34),
loan_src_st2 character varying(34),
loan_src_city character varying(30),
loan_src_st character varying(2),
loan_src_zip character varying(9),
entity_tp character varying(3),
loan_amt numeric(14,2),
interest_rate_pct character varying(15),
incurred_dt timestamp without time zone,
due_dt character varying(15),
loan_restructured_flg character varying(1),
orig_loan_dt timestamp without time zone,
credit_amt_this_draw numeric(14,2),
ttl_bal numeric(14,2),
other_liable_pty_flg character varying(1),
collateral_flg character varying(1),
collateral_desc character varying(100),
collateral_value numeric(14,2),
perfected_interest_flg character varying(1),
future_income_flg character varying(1),
future_income_desc character varying(100),
future_income_est_value numeric(14,2),
depository_acct_est_dt timestamp without time zone,
acct_loc_nm character varying(90),
acct_loc_st1 character varying(34),
acct_loc_st2 character varying(34),
acct_loc_city character varying(30),
acct_loc_st character varying(2),
acct_loc_zip character varying(9),
depository_acct_auth_dt timestamp without time zone,
loan_basis_desc character varying(100),
tres_sign_nm character varying(90),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
tres_sign_dt timestamp without time zone,
auth_sign_nm character varying(90),
auth_sign_l_nm character varying(30),
auth_sign_f_nm character varying(20),
auth_sign_m_nm character varying(20),
auth_sign_prefix character varying(10),
auth_sign_suffix character varying(10),
auth_rep_title character varying(20),
auth_sign_dt timestamp without time zone,
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_c1 OWNER TO fec;
--
-- Name: fec_fitem_sched_c2; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_c2 (
cmte_id character varying(9),
back_ref_tran_id character varying(32),
guar_endr_nm character varying(90),
guar_endr_l_nm character varying(30),
guar_endr_f_nm character varying(20),
guar_endr_m_nm character varying(20),
guar_endr_prefix character varying(10),
guar_endr_suffix character varying(10),
guar_endr_st1 character varying(34),
guar_endr_st2 character varying(34),
guar_endr_city character varying(30),
guar_endr_st character varying(2),
guar_endr_zip character varying(9),
guar_endr_employer character varying(38),
guar_endr_occupation character varying(38),
amt_guaranteed_outstg numeric(14,2),
receipt_dt timestamp without time zone,
action_cd character varying(1),
action_cd_desc character varying(15),
file_num numeric(7,0),
tran_id character varying(32),
schedule_type character(3),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
orig_sub_id numeric(19,0),
filing_form character varying(8),
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_c2 OWNER TO fec;
--
-- Name: fec_fitem_sched_d; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_d (
cmte_id character varying(9),
cmte_nm character varying(200),
cred_dbtr_id character varying(9),
cred_dbtr_nm character varying(200),
cred_dbtr_l_nm character varying(30),
cred_dbtr_f_nm character varying(20),
cred_dbtr_m_nm character varying(20),
cred_dbtr_prefix character varying(10),
cred_dbtr_suffix character varying(10),
cred_dbtr_st1 character varying(34),
cred_dbtr_st2 character varying(34),
cred_dbtr_city character varying(30),
cred_dbtr_st character varying(2),
cred_dbtr_zip character varying(9),
entity_tp character varying(3),
nature_debt_purpose character varying(100),
outstg_bal_bop numeric(14,2),
amt_incurred_per numeric(14,2),
pymt_per numeric(14,2),
outstg_bal_cop numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_d OWNER TO fec;
--
-- Name: fec_fitem_sched_e; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_e (
cmte_id character varying(9),
cmte_nm character varying(200),
pye_nm character varying(200),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
exp_desc character varying(100),
catg_cd character varying(3),
catg_cd_desc character varying(40),
s_o_cand_id character varying(9),
s_o_cand_nm character varying(90),
s_o_cand_nm_first character varying(38),
s_o_cand_nm_last character varying(38),
s_o_cand_m_nm character varying(20),
s_o_cand_prefix character varying(10),
s_o_cand_suffix character varying(10),
s_o_cand_office character varying(1),
s_o_cand_office_desc character varying(20),
s_o_cand_office_st character varying(2),
s_o_cand_office_st_desc character varying(20),
s_o_cand_office_district character varying(2),
s_o_ind character varying(3),
s_o_ind_desc character varying(50),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
cal_ytd_ofc_sought numeric(14,2),
dissem_dt timestamp without time zone,
exp_amt numeric(14,2),
exp_dt timestamp without time zone,
exp_tp character varying(3),
exp_tp_desc character varying(90),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
indt_sign_nm character varying(90),
indt_sign_dt timestamp without time zone,
notary_sign_nm character varying(90),
notary_sign_dt timestamp without time zone,
notary_commission_exprtn_dt timestamp without time zone,
filer_l_nm character varying(30),
filer_f_nm character varying(20),
filer_m_nm character varying(20),
filer_prefix character varying(10),
filer_suffix character varying(10),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pdf_url text,
payee_name_text tsvector,
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_e OWNER TO fec;
--
-- Name: fec_fitem_sched_f; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_f (
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_desg_coord_exp_ind character varying(1),
desg_cmte_id character varying(9),
desg_cmte_nm character varying(200),
subord_cmte_id character varying(9),
subord_cmte_nm character varying(200),
subord_cmte_st1 character varying(34),
subord_cmte_st2 character varying(34),
subord_cmte_city character varying(30),
subord_cmte_st character varying(2),
subord_cmte_zip character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
pye_nm character varying(200),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
aggregate_gen_election_exp numeric(14,2),
exp_tp character varying(3),
exp_tp_desc character varying(90),
exp_purpose_desc character varying(100),
exp_dt timestamp without time zone,
exp_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
unlimited_spending_flg character varying(1),
unlimited_spending_flg_desc character varying(40),
catg_cd character varying(3),
catg_cd_desc character varying(40),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_f OWNER TO fec;
--
-- Name: fec_fitem_sched_h1; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_h1 (
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
np_fixed_fed_pct numeric(7,4),
hsp_min_fed_pct numeric(7,4),
hsp_est_fed_dir_cand_supp_pct numeric(7,4),
hsp_est_nonfed_cand_supp_pct numeric(7,4),
hsp_actl_fed_dir_cand_supp_amt numeric(14,2),
hsp_actl_nonfed_cand_supp_amt numeric(14,2),
hsp_actl_fed_dir_cand_supp_pct numeric(7,4),
ssf_fed_est_dir_cand_supp_pct numeric(7,4),
ssf_nfed_est_dir_cand_supp_pct numeric(7,4),
ssf_actl_fed_dir_cand_supp_amt numeric(14,2),
ssf_actl_nonfed_cand_supp_amt numeric(14,2),
ssf_actl_fed_dir_cand_supp_pct numeric(7,4),
president_ind numeric(1,0),
us_senate_ind numeric(1,0),
us_congress_ind numeric(1,0),
subttl_fed numeric(1,0),
governor_ind numeric(1,0),
other_st_offices_ind numeric(1,0),
st_senate_ind numeric(1,0),
st_rep_ind numeric(1,0),
local_cand_ind numeric(1,0),
extra_non_fed_point_ind numeric(1,0),
subttl_non_fed numeric(2,0),
ttl_fed_and_nonfed numeric(2,0),
fed_alloctn numeric(5,0),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
st_loc_pres_only character varying(1),
st_loc_pres_sen character varying(1),
st_loc_sen_only character varying(1),
st_loc_nonpres_nonsen character varying(1),
flat_min_fed_pct character varying(1),
fed_pct numeric(5,0),
non_fed_pct numeric(5,0),
admin_ratio_chk character varying(1),
gen_voter_drive_chk character varying(1),
pub_comm_ref_pty_chk character varying(1),
schedule_type character varying(8),
schedule_type_desc character varying(90),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_h1 OWNER TO fec;
--
-- Name: fec_fitem_sched_h2; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_h2 (
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
evt_activity_nm character varying(90),
fndsg_acty_flg character varying(1),
exempt_acty_flg character varying(1),
direct_cand_support_acty_flg character varying(1),
ratio_cd character varying(1),
ratio_cd_desc character varying(30),
fed_pct_amt numeric(7,4),
nonfed_pct_amt numeric(7,4),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_h2 OWNER TO fec;
--
-- Name: fec_fitem_sched_h3; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_h3 (
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
acct_nm character varying(90),
evt_nm character varying(90),
evt_tp character varying(2),
event_tp_desc character varying(50),
tranf_dt timestamp without time zone,
tranf_amt numeric(14,2),
ttl_tranf_amt numeric(14,2),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_h3 OWNER TO fec;
--
-- Name: fec_fitem_sched_h4; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_h4 (
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
entity_tp character varying(3),
entity_tp_desc character varying(30),
pye_nm character varying(200),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
evt_purpose_nm character varying(100),
evt_purpose_desc character varying(38),
evt_purpose_dt timestamp without time zone,
ttl_amt_disb numeric(14,2),
evt_purpose_category_tp character varying(3),
evt_purpose_category_tp_desc character varying(30),
fed_share numeric(14,2),
nonfed_share numeric(14,2),
admin_voter_drive_acty_ind character varying(1),
fndrsg_acty_ind character varying(1),
exempt_acty_ind character varying(1),
direct_cand_supp_acty_ind character varying(1),
evt_amt_ytd numeric(14,2),
add_desc character varying(100),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
admin_acty_ind character varying(1),
gen_voter_drive_acty_ind character varying(1),
catg_cd character varying(3),
catg_cd_desc character varying(40),
disb_tp character varying(3),
disb_tp_desc character varying(90),
pub_comm_ref_pty_chk character varying(1),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_h4 OWNER TO fec;
--
-- Name: fec_fitem_sched_h5; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_h5 (
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
acct_nm character varying(90),
tranf_dt timestamp without time zone,
ttl_tranf_amt_voter_reg numeric(14,2),
ttl_tranf_voter_id numeric(14,2),
ttl_tranf_gotv numeric(14,2),
ttl_tranf_gen_campgn_actvy numeric(14,2),
ttl_tranf_amt numeric(14,2),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
schedule_type character varying(8),
schedule_type_desc character varying(90),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_h5 OWNER TO fec;
--
-- Name: fec_fitem_sched_h6; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE fec_fitem_sched_h6 (
filer_cmte_id character varying(9),
filer_cmte_nm character varying(90),
entity_tp character varying(3),
pye_nm character varying(200),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_st_desc character varying(20),
pye_zip character varying(9),
catg_cd character varying(3),
catg_cd_desc character varying(40),
disb_purpose character varying(3),
disb_purpose_cat character varying(100),
disb_dt timestamp without time zone,
ttl_amt_disb numeric(14,2),
fed_share numeric(14,2),
levin_share numeric(14,2),
voter_reg_yn_flg character varying(1),
voter_reg_yn_flg_desc character varying(40),
voter_id_yn_flg character varying(1),
voter_id_yn_flg_desc character varying(40),
gotv_yn_flg character varying(1),
gotv_yn_flg_desc character varying(40),
gen_campgn_yn_flg character varying(1),
gen_campgn_yn_flg_desc character varying(40),
evt_amt_ytd numeric(14,2),
add_desc character varying(100),
fec_committee_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_st_desc character varying(20),
cand_office_st character varying(2),
cand_office_district numeric(2,0),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_st_desc character varying(20),
conduit_cmte_zip character varying(9),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
action_cd character varying(1),
action_cd_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
schedule_type character varying(8),
line_num character varying(12),
image_num character varying(18),
file_num numeric(7,0),
link_id numeric(19,0),
orig_sub_id numeric(19,0),
sub_id numeric(19,0) NOT NULL,
filing_form character varying(8) NOT NULL,
rpt_tp character varying(3),
rpt_yr numeric(4,0),
election_cycle numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE fec_fitem_sched_h6 OWNER TO fec;
--
-- Name: map_states; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE map_states (
st_desc character varying(40),
st character varying(2),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE map_states OWNER TO fec;
--
-- Name: nml_form_1; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_1 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
submit_dt timestamp without time zone,
cmte_nm_chg_flg character varying(1),
cmte_addr_chg_flg character varying(1),
filed_cmte_tp character varying(1),
filed_cmte_tp_desc character varying(58),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
cand_pty_affiliation character varying(3),
cand_pty_affiliation_desc character varying(50),
cand_pty_tp character varying(3),
cand_pty_tp_desc character varying(90),
affiliated_cmte_id character varying(9),
affiliated_cmte_nm character varying(200),
affiliated_cmte_st1 character varying(34),
affiliated_cmte_st2 character varying(34),
affiliated_cmte_city character varying(30),
affiliated_cmte_st character varying(2),
affiliated_cmte_zip character varying(9),
cmte_rltshp character varying(38),
org_tp character varying(1),
org_tp_desc character varying(90),
cust_rec_nm character varying(90),
cust_rec_st1 character varying(34),
cust_rec_st2 character varying(34),
cust_rec_city character varying(30),
cust_rec_st character varying(2),
cust_rec_zip character varying(9),
cust_rec_title character varying(20),
cust_rec_ph_num character varying(10),
tres_nm character varying(90),
tres_st1 character varying(34),
tres_st2 character varying(34),
tres_city character varying(30),
tres_st character varying(2),
tres_zip character varying(9),
tres_title character varying(20),
tres_ph_num character varying(10),
designated_agent_nm character varying(90),
designated_agent_st1 character varying(34),
designated_agent_st2 character varying(34),
designated_agent_city character varying(30),
designated_agent_st character varying(2),
designated_agent_zip character varying(9),
designated_agent_title character varying(20),
designated_agent_ph_num character varying(10),
bank_depository_nm character varying(200),
bank_depository_st1 character varying(34),
bank_depository_st2 character varying(34),
bank_depository_city character varying(30),
bank_depository_st character varying(2),
bank_depository_zip character varying(9),
sec_bank_depository_nm character varying(200),
sec_bank_depository_st1 character varying(34),
sec_bank_depository_st2 character varying(34),
sec_bank_depository_city character varying(30),
sec_bank_depository_st character varying(2),
sec_bank_depository_zip character varying(10),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
cmte_email character varying(90),
cmte_web_url character varying(90),
receipt_dt timestamp without time zone,
filed_cmte_dsgn character varying(1),
filed_cmte_dsgn_desc character varying(90),
cmte_dsgn_desc character varying(20),
cmte_class_desc character varying(20),
cmte_tp_desc character varying(23),
cmte_subtp_desc character varying(35),
jntfndrsg_cmte_flg character varying(1),
filing_freq character varying(1),
filing_freq_desc character varying(27),
qual_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
cmte_fax character varying(12),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
leadership_pac character varying(1),
affiliated_relationship_cd character varying(3),
efiling_cmte_tp character varying(1),
cmte_email_chg_flg character varying(1),
cmte_url_chg_flg character varying(1),
lobbyist_registrant_pac character varying(1),
affiliated_cand_id character varying(9),
affiliated_cand_l_nm character varying(30),
affiliated_cand_f_nm character varying(20),
affiliated_cand_m_nm character varying(20),
affiliated_cand_prefix character varying(10),
affiliated_cand_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cust_rec_l_nm character varying(30),
cust_rec_f_nm character varying(20),
cust_rec_m_nm character varying(20),
cust_rec_prefix character varying(10),
cust_rec_suffix character varying(10),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
designated_agent_l_nm character varying(30),
designated_agent_f_nm character varying(20),
designated_agent_m_nm character varying(20),
designated_agent_prefix character varying(10),
designated_agent_suffix character varying(10),
f3l_filing_freq character varying(1),
tres_nm_rlp_flg character varying(1),
cand_pty_affiliation_rlp_flg character varying(1),
filed_cmte_dsgn_rlp_flg character varying(1),
filing_freq_rlp_flg character varying(1),
org_tp_rlp_flg character varying(1),
cmte_city_rlp_flg character varying(1),
cmte_zip_rlp_flg character varying(1),
cmte_st_rlp_flg character varying(1),
cmte_st1_st2_rlp_flg character varying(1),
cmte_nm_rlp_flg character varying(1),
filed_cmte_tp_rlp_flg character varying(1),
cmte_email_rlp_flg character varying(1),
cmte_web_url_rlp_flg character varying(1),
sign_l_nm character varying(30),
sign_f_nm character varying(20),
sign_m_nm character varying(20),
sign_prefix character varying(10),
sign_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_1 OWNER TO fec;
--
-- Name: nml_form_10; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_10 (
form_tp character varying(8),
filer_cmte_id character varying(9),
cand_nm character varying(38),
cand_id character varying(9),
cand_office character varying(1),
cand_office_st character varying(2),
cand_office_district character varying(2),
cmte_nm character varying(90),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(18),
cmte_st character varying(2),
cmte_zip character varying(9),
prev_exp_agg numeric(14,2),
exp_ttl_this_rpt numeric(14,2),
exp_ttl_cycl_to_dt numeric(14,2),
cand_sign_nm character varying(38),
can_sign_dt timestamp without time zone,
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp_desc character varying(90),
cand_office_desc character varying(20),
cand_office_st_desc character varying(20),
cmte_st_desc character varying(20),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
receipt_dt timestamp without time zone,
amndt_ind_desc character varying(20),
amndt_ind character varying(1),
form_6_chk character varying(1),
contbr_employer character varying(38),
contbr_occupation character varying(38),
rpt_yr numeric(4,0),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_10 OWNER TO fec;
--
-- Name: nml_form_105; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_105 (
form_tp character varying(8),
filer_cmte_id character varying(9),
exp_dt timestamp without time zone,
election_tp character varying(5),
fec_election_tp_desc character varying(20),
exp_amt numeric(14,2),
loan_chk_flg character varying(1),
amndt_ind character varying(1),
tran_id character varying(32),
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
receipt_dt timestamp without time zone,
form_tp_desc character varying(90),
election_tp_desc character varying(20),
amndt_ind_desc character varying(15),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_105 OWNER TO fec;
--
-- Name: nml_form_11; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_11 (
form_tp character varying(8),
filer_cmte_id character varying(9),
cand_nm character varying(38),
cand_id character varying(9),
cand_office character varying(1),
cand_office_st character varying(2),
cand_office_district character varying(2),
cmte_nm character varying(90),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(18),
cmte_st character varying(2),
cmte_zip character varying(9),
oppos_cand_nm character varying(38),
oppos_cmte_nm character varying(90),
oppos_cmte_id character varying(9),
oppos_cmte_st1 character varying(34),
oppos_cmte_st2 character varying(34),
oppos_cmte_city character varying(18),
oppos_cmte_st character varying(2),
oppos_cmte_zip character varying(9),
form_10_recpt_dt timestamp without time zone,
oppos_pers_fund_amt numeric(14,2),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
reg_special_elect_tp character varying(1),
cand_tres_sign_nm character varying(38),
cand_tres_sign_dt timestamp without time zone,
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
receipt_dt timestamp without time zone,
form_tp_desc character varying(90),
cand_office_desc character varying(20),
cand_office_st_desc character varying(20),
cmte_st_desc character varying(20),
oppos_cmte_st_desc character varying(20),
election_tp_desc character varying(20),
reg_special_elect_tp_desc character varying(20),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
cand_last_name character varying(30),
cand_first_name character varying(20),
cand_middle_name character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
oppos_cand_last_name character varying(30),
oppos_cand_first_name character varying(20),
oppos_cand_middle_name character varying(20),
oppos_cand_prefix character varying(10),
oppos_cand_suffix character varying(10),
cand_tres_last_name character varying(30),
cand_tres_first_name character varying(20),
cand_tres_middle_name character varying(20),
cand_tres_prefix character varying(10),
cand_tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_11 OWNER TO fec;
--
-- Name: nml_form_12; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_12 (
form_tp character varying(8),
filer_cmte_id character varying(9),
cand_nm character varying(38),
cand_id character varying(9),
cand_office character varying(1),
cand_office_st character varying(2),
cand_office_district character varying(2),
cmte_nm character varying(90),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(18),
cmte_st character varying(2),
cmte_zip character varying(9),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
reg_special_elect_tp character varying(1),
reg_special_elect_tp_desc character varying(20),
hse_date_reached_100 timestamp without time zone,
hse_pers_funds_amt numeric(14,2),
hse_form_11_prev_dt timestamp without time zone,
sen_date_reached_110 timestamp without time zone,
sen_pers_funds_amt numeric(14,2),
sen_form_11_prev_dt timestamp without time zone,
cand_tres_sign_nm character varying(38),
cand_tres_sign_dt timestamp without time zone,
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp_desc character varying(90),
cand_office_desc character varying(20),
cand_office_st_desc character varying(20),
cmte_st_desc character varying(20),
image_tp character varying(10),
receipt_dt timestamp without time zone,
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
cand_last_name character varying(30),
cand_first_name character varying(20),
cand_middle_name character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_tres_last_name character varying(30),
cand_tres_first_name character varying(20),
cand_tres_middle_name character varying(20),
cand_tres_prefix character varying(10),
cand_tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_12 OWNER TO fec;
--
-- Name: nml_form_13; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_13 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
amndt_ind character varying(1),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
cmte_addr_chg_flg character varying(1),
cmte_tp character varying(1),
cmte_tp_desc character varying(40),
rpt_tp character varying(3),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
ttl_dons_accepted numeric(14,2),
ttl_dons_refunded numeric(14,2),
net_dons numeric(14,2),
desig_officer_last_nm character varying(30),
desig_officer_first_nm character varying(20),
desig_officer_middle_nm character varying(20),
desig_officer_prefix character varying(10),
desig_officer_suffix character varying(10),
designated_officer_nm character varying(90),
receipt_dt timestamp without time zone,
signature_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_13 OWNER TO fec;
--
-- Name: nml_form_1z; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_1z (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
submit_dt timestamp without time zone,
cmte_nm_chg_flg character varying(1),
cmte_addr_chg_flg character varying(1),
filed_cmte_tp character varying(1),
filed_cmte_tp_desc character varying(58),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
cand_pty_affiliation character varying(3),
cand_pty_affiliation_desc character varying(50),
cand_pty_tp character varying(3),
cand_pty_tp_desc character varying(90),
affiliated_cmte_id character varying(9),
affiliated_cmte_nm character varying(200),
affiliated_cmte_st1 character varying(34),
affiliated_cmte_st2 character varying(34),
affiliated_cmte_city character varying(30),
affiliated_cmte_st character varying(2),
affiliated_cmte_zip character varying(9),
cmte_rltshp character varying(38),
org_tp character varying(1),
org_tp_desc character varying(90),
cust_rec_nm character varying(90),
cust_rec_st1 character varying(34),
cust_rec_st2 character varying(34),
cust_rec_city character varying(30),
cust_rec_st character varying(2),
cust_rec_zip character varying(9),
cust_rec_title character varying(20),
cust_rec_ph_num character varying(10),
tres_nm character varying(90),
tres_st1 character varying(34),
tres_st2 character varying(34),
tres_city character varying(30),
tres_st character varying(2),
tres_zip character varying(9),
tres_title character varying(20),
tres_ph_num character varying(10),
designated_agent_nm character varying(90),
designated_agent_st1 character varying(34),
designated_agent_st2 character varying(34),
designated_agent_city character varying(30),
designated_agent_st character varying(2),
designated_agent_zip character varying(9),
designated_agent_title character varying(20),
designated_agent_ph_num character varying(10),
bank_depository_nm character varying(200),
bank_depository_st1 character varying(34),
bank_depository_st2 character varying(34),
bank_depository_city character varying(30),
bank_depository_st character varying(2),
bank_depository_zip character varying(9),
sec_bank_depository_nm character varying(200),
sec_bank_depository_st1 character varying(34),
sec_bank_depository_st2 character varying(34),
sec_bank_depository_city character varying(30),
sec_bank_depository_st character varying(2),
sec_bank_depository_zip character varying(10),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
cmte_email character varying(90),
cmte_web_url character varying(90),
receipt_dt timestamp without time zone,
filed_cmte_dsgn character varying(1),
filed_cmte_dsgn_desc character varying(90),
cmte_dsgn_desc character varying(20),
cmte_class_desc character varying(20),
cmte_tp_desc character varying(23),
cmte_subtp_desc character varying(35),
jntfndrsg_cmte_flg character varying(1),
filing_freq character varying(1),
filing_freq_desc character varying(27),
qual_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
cmte_fax character varying(12),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
leadership_pac character varying(1),
affiliated_relationship_cd character varying(3),
efiling_cmte_tp character varying(1),
cmte_email_chg_flg character varying(1),
cmte_url_chg_flg character varying(1),
lobbyist_registrant_pac character varying(1),
affiliated_cand_id character varying(9),
affiliated_cand_l_nm character varying(30),
affiliated_cand_f_nm character varying(20),
affiliated_cand_m_nm character varying(20),
affiliated_cand_prefix character varying(10),
affiliated_cand_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cust_rec_l_nm character varying(30),
cust_rec_f_nm character varying(20),
cust_rec_m_nm character varying(20),
cust_rec_prefix character varying(10),
cust_rec_suffix character varying(10),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
designated_agent_l_nm character varying(30),
designated_agent_f_nm character varying(20),
designated_agent_m_nm character varying(20),
designated_agent_prefix character varying(10),
designated_agent_suffix character varying(10),
f3l_filing_freq character varying(1),
tres_nm_rlp_flg character varying(1),
cand_pty_affiliation_rlp_flg character varying(1),
filed_cmte_dsgn_rlp_flg character varying(1),
filing_freq_rlp_flg character varying(1),
org_tp_rlp_flg character varying(1),
cmte_city_rlp_flg character varying(1),
cmte_zip_rlp_flg character varying(1),
cmte_st_rlp_flg character varying(1),
cmte_st1_st2_rlp_flg character varying(1),
cmte_nm_rlp_flg character varying(1),
filed_cmte_tp_rlp_flg character varying(1),
cmte_email_rlp_flg character varying(1),
cmte_web_url_rlp_flg character varying(1),
sign_l_nm character varying(30),
sign_f_nm character varying(20),
sign_m_nm character varying(20),
sign_prefix character varying(10),
sign_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_1z OWNER TO fec;
--
-- Name: nml_form_1_1z_view; Type: VIEW; Schema: disclosure; Owner: fec
--
CREATE VIEW nml_form_1_1z_view AS
SELECT a.sub_id,
a.begin_image_num,
a.end_image_num,
a.form_tp,
a.form_tp_desc,
a.amndt_ind,
a.amndt_ind_desc,
a.cmte_id,
a.cmte_nm,
a.cmte_st1,
a.cmte_st2,
a.cmte_city,
a.cmte_st,
a.cmte_zip,
a.submit_dt,
a.cmte_nm_chg_flg,
a.cmte_addr_chg_flg,
a.filed_cmte_tp,
a.filed_cmte_tp_desc,
a.cand_id,
a.cand_nm,
a.cand_nm_first,
a.cand_nm_last,
a.cand_office,
a.cand_office_desc,
a.cand_office_st,
a.cand_office_st_desc,
a.cand_office_district,
a.cand_pty_affiliation,
a.cand_pty_affiliation_desc,
a.cand_pty_tp,
a.cand_pty_tp_desc,
a.affiliated_cmte_id,
a.affiliated_cmte_nm,
a.affiliated_cmte_st1,
a.affiliated_cmte_st2,
a.affiliated_cmte_city,
a.affiliated_cmte_st,
a.affiliated_cmte_zip,
a.cmte_rltshp,
a.org_tp,
a.org_tp_desc,
a.cust_rec_nm,
a.cust_rec_st1,
a.cust_rec_st2,
a.cust_rec_city,
a.cust_rec_st,
a.cust_rec_zip,
a.cust_rec_title,
a.cust_rec_ph_num,
a.tres_nm,
a.tres_st1,
a.tres_st2,
a.tres_city,
a.tres_st,
a.tres_zip,
a.tres_title,
a.tres_ph_num,
a.designated_agent_nm,
a.designated_agent_st1,
a.designated_agent_st2,
a.designated_agent_city,
a.designated_agent_st,
a.designated_agent_zip,
a.designated_agent_title,
a.designated_agent_ph_num,
a.bank_depository_nm,
a.bank_depository_st1,
a.bank_depository_st2,
a.bank_depository_city,
a.bank_depository_st,
a.bank_depository_zip,
a.sec_bank_depository_nm,
a.sec_bank_depository_st1,
a.sec_bank_depository_st2,
a.sec_bank_depository_city,
a.sec_bank_depository_st,
a.sec_bank_depository_zip,
a.tres_sign_nm,
a.tres_sign_dt,
a.cmte_email,
a.cmte_web_url,
a.receipt_dt,
a.filed_cmte_dsgn,
a.filed_cmte_dsgn_desc,
a.cmte_dsgn_desc,
a.cmte_class_desc,
a.cmte_tp_desc,
a.cmte_subtp_desc,
a.jntfndrsg_cmte_flg,
a.filing_freq,
a.filing_freq_desc,
a.qual_dt,
a.image_tp,
a.load_status,
a.last_update_dt,
a.delete_ind,
a.leadership_pac,
a.lobbyist_registrant_pac,
a.f3l_filing_freq
FROM nml_form_1 a
UNION
SELECT z.sub_id,
z.begin_image_num,
z.end_image_num,
z.form_tp,
z.form_tp_desc,
z.amndt_ind,
z.amndt_ind_desc,
z.cmte_id,
z.cmte_nm,
z.cmte_st1,
z.cmte_st2,
z.cmte_city,
z.cmte_st,
z.cmte_zip,
z.submit_dt,
z.cmte_nm_chg_flg,
z.cmte_addr_chg_flg,
z.filed_cmte_tp,
z.filed_cmte_tp_desc,
z.cand_id,
z.cand_nm,
z.cand_nm_first,
z.cand_nm_last,
z.cand_office,
z.cand_office_desc,
z.cand_office_st,
z.cand_office_st_desc,
z.cand_office_district,
z.cand_pty_affiliation,
z.cand_pty_affiliation_desc,
z.cand_pty_tp,
z.cand_pty_tp_desc,
z.affiliated_cmte_id,
z.affiliated_cmte_nm,
z.affiliated_cmte_st1,
z.affiliated_cmte_st2,
z.affiliated_cmte_city,
z.affiliated_cmte_st,
z.affiliated_cmte_zip,
z.cmte_rltshp,
z.org_tp,
z.org_tp_desc,
z.cust_rec_nm,
z.cust_rec_st1,
z.cust_rec_st2,
z.cust_rec_city,
z.cust_rec_st,
z.cust_rec_zip,
z.cust_rec_title,
z.cust_rec_ph_num,
z.tres_nm,
z.tres_st1,
z.tres_st2,
z.tres_city,
z.tres_st,
z.tres_zip,
z.tres_title,
z.tres_ph_num,
z.designated_agent_nm,
z.designated_agent_st1,
z.designated_agent_st2,
z.designated_agent_city,
z.designated_agent_st,
z.designated_agent_zip,
z.designated_agent_title,
z.designated_agent_ph_num,
z.bank_depository_nm,
z.bank_depository_st1,
z.bank_depository_st2,
z.bank_depository_city,
z.bank_depository_st,
z.bank_depository_zip,
z.sec_bank_depository_nm,
z.sec_bank_depository_st1,
z.sec_bank_depository_st2,
z.sec_bank_depository_city,
z.sec_bank_depository_st,
z.sec_bank_depository_zip,
z.tres_sign_nm,
z.tres_sign_dt,
z.cmte_email,
z.cmte_web_url,
z.receipt_dt,
z.filed_cmte_dsgn,
z.filed_cmte_dsgn_desc,
z.cmte_dsgn_desc,
z.cmte_class_desc,
z.cmte_tp_desc,
z.cmte_subtp_desc,
z.jntfndrsg_cmte_flg,
z.filing_freq,
z.filing_freq_desc,
z.qual_dt,
z.image_tp,
z.load_status,
z.last_update_dt,
z.delete_ind,
z.leadership_pac,
z.lobbyist_registrant_pac,
z.f3l_filing_freq
FROM nml_form_1z z;
ALTER TABLE nml_form_1_1z_view OWNER TO fec;
--
-- Name: nml_form_1m; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_1m (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
cmte_tp character varying(1),
cmte_tp_desc character varying(58),
affiliation_dt timestamp without time zone,
affiliated_cmte_id character varying(9),
affiliated_cmte_nm character varying(200),
fst_cand_id character varying(9),
fst_cand_nm character varying(90),
fst_cand_office character varying(1),
fst_cand_office_desc character varying(20),
fst_cand_office_st character varying(2),
fst_cand_office_st_desc character varying(20),
fst_cand_office_district character varying(2),
fst_cand_contb_dt timestamp without time zone,
sec_cand_id character varying(9),
sec_cand_nm character varying(90),
sec_cand_office character varying(1),
sec_cand_office_desc character varying(20),
sec_cand_office_st character varying(2),
sec_cand_office_st_desc character varying(20),
sec_cand_office_district character varying(2),
sec_cand_contb_dt timestamp without time zone,
trd_cand_id character varying(9),
trd_cand_nm character varying(90),
trd_cand_office character varying(1),
trd_cand_office_desc character varying(20),
trd_cand_office_st character varying(2),
trd_cand_office_st_desc character varying(20),
trd_cand_office_district character varying(2),
trd_cand_contb_dt timestamp without time zone,
frth_cand_id character varying(9),
frth_cand_nm character varying(90),
frth_cand_office character varying(1),
frth_cand_office_desc character varying(20),
frth_cand_office_st character varying(2),
frth_cand_office_st_desc character varying(20),
frth_cand_office_district character varying(2),
frth_cand_contb_dt timestamp without time zone,
fith_cand_id character varying(9),
fith_cand_nm character varying(90),
fith_cand_office character varying(1),
fith_cand_office_desc character varying(20),
fith_cand_office_st character varying(2),
fith_cand_office_st_desc character varying(20),
fith_cand_office_district character varying(2),
fith_cand_contb_dt timestamp without time zone,
fiftyfirst_cand_contbr_dt timestamp without time zone,
orig_registration_dt timestamp without time zone,
qual_dt timestamp without time zone,
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
fst_cand_l_nm character varying(30),
fst_cand_f_nm character varying(20),
fst_cand_m_nm character varying(20),
fst_cand_prefix character varying(10),
fst_cand_suffix character varying(10),
sec_cand_l_nm character varying(30),
sec_cand_f_nm character varying(20),
sec_cand_m_nm character varying(20),
sec_cand_prefix character varying(10),
sec_cand_suffix character varying(10),
trd_cand_l_nm character varying(30),
trd_cand_f_nm character varying(20),
trd_cand_m_nm character varying(20),
trd_cand_prefix character varying(10),
trd_cand_suffix character varying(10),
frth_cand_l_nm character varying(30),
frth_cand_f_nm character varying(20),
frth_cand_m_nm character varying(20),
frth_cand_prefix character varying(10),
frth_cand_suffix character varying(10),
fith_cand_l_nm character varying(30),
fith_cand_f_nm character varying(20),
fith_cand_m_nm character varying(20),
fith_cand_prefix character varying(10),
fith_cand_suffix character varying(10),
tres_sign_l_nm character varying(30),
tres_sign_f_nm character varying(20),
tres_sign_m_nm character varying(20),
tres_sign_prefix character varying(10),
tres_sign_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_1m OWNER TO fec;
--
-- Name: nml_form_1s; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_1s (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
affiliated_cmte_id character varying(9),
affiliated_cmte_nm character varying(200),
affiliated_cmte_st1 character varying(34),
affiliated_cmte_st2 character varying(34),
affiliated_cmte_city character varying(30),
affiliated_cmte_st character varying(2),
affiliated_cmte_zip character varying(9),
cmte_rltshp character varying(38),
org_tp character varying(1),
org_tp_desc character varying(90),
designated_agent_nm character varying(90),
designated_agent_st1 character varying(34),
designated_agent_st2 character varying(34),
designated_agent_city character varying(30),
designated_agent_st character varying(2),
designated_agent_zip character varying(9),
designated_agent_title character varying(20),
designated_agent_ph_num character varying(10),
bank_depository_nm character varying(200),
bank_depository_st1 character varying(34),
bank_depository_st2 character varying(34),
bank_depository_city character varying(30),
bank_depository_st character varying(2),
bank_depository_zip character varying(9),
receipt_dt timestamp without time zone,
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
image_tp character varying(10),
joint_cmte_nm character varying(200),
joint_cmte_id character varying(9),
affiliated_relationship_cd character varying(3),
affiliated_cand_id character varying(9),
affiliated_cand_l_nm character varying(30),
affiliated_cand_f_nm character varying(20),
affiliated_cand_m_nm character varying(20),
affiliated_cand_prefix character varying(10),
affiliated_cand_suffix character varying(10),
designated_agent_l_nm character varying(30),
designated_agent_f_nm character varying(20),
designated_agent_m_nm character varying(20),
designated_agent_prefix character varying(10),
designated_agent_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_1s OWNER TO fec;
--
-- Name: nml_form_2; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_2 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_st1 character varying(34),
cand_st2 character varying(34),
cand_city character varying(30),
cand_st character varying(2),
cand_zip character varying(9),
addr_chg_flg character varying(1),
cand_pty_affiliation character varying(3),
cand_pty_affiliation_desc character varying(50),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
election_yr numeric(4,0),
pcc_cmte_id character varying(9),
pcc_cmte_nm character varying(200),
pcc_cmte_st1 character varying(34),
pcc_cmte_st2 character varying(34),
pcc_cmte_city character varying(30),
pcc_cmte_st character varying(2),
pcc_cmte_zip character varying(9),
addl_auth_cmte_id character varying(9),
addl_auth_cmte_nm character varying(200),
addl_auth_cmte_st1 character varying(34),
addl_auth_cmte_st2 character varying(34),
addl_auth_cmte_city character varying(30),
addl_auth_cmte_st character varying(2),
addl_auth_cmte_zip character varying(9),
cand_sign_nm character varying(90),
cand_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
party_cd character varying(1),
party_cd_desc character varying(33),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cand_ici character varying(1),
cand_ici_desc character varying(15),
cand_status character varying(1),
cand_status_desc character varying(40),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
prim_pers_funds_decl numeric(14,2),
gen_pers_funds_decl numeric(14,2),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_sign_l_nm character varying(30),
cand_sign_f_nm character varying(20),
cand_sign_m_nm character varying(20),
cand_sign_prefix character varying(10),
cand_sign_suffix character varying(10),
vice_pres_nm character varying(90),
vice_pres_l_nm character varying(30),
vice_pres_f_nm character varying(20),
vice_pres_m_nm character varying(20),
vice_pres_prefix character varying(10),
vice_pres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_2 OWNER TO fec;
--
-- Name: nml_form_24; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_24 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
amndt_ind character varying(1),
orig_amndt_dt timestamp without time zone,
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_24 OWNER TO fec;
--
-- Name: nml_form_2z; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_2z (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_st1 character varying(34),
cand_st2 character varying(34),
cand_city character varying(30),
cand_st character varying(2),
cand_zip character varying(9),
addr_chg_flg character varying(1),
cand_pty_affiliation character varying(3),
cand_pty_affiliation_desc character varying(50),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
election_yr numeric(4,0),
pcc_cmte_id character varying(9),
pcc_cmte_nm character varying(200),
pcc_cmte_st1 character varying(34),
pcc_cmte_st2 character varying(34),
pcc_cmte_city character varying(30),
pcc_cmte_st character varying(2),
pcc_cmte_zip character varying(9),
addl_auth_cmte_id character varying(9),
addl_auth_cmte_nm character varying(200),
addl_auth_cmte_st1 character varying(34),
addl_auth_cmte_st2 character varying(34),
addl_auth_cmte_city character varying(30),
addl_auth_cmte_st character varying(2),
addl_auth_cmte_zip character varying(9),
cand_sign_nm character varying(90),
cand_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
party_cd character varying(1),
party_cd_desc character varying(33),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cand_ici character varying(1),
cand_ici_desc character varying(15),
cand_status character varying(1),
cand_status_desc character varying(40),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_sign_l_nm character varying(30),
cand_sign_f_nm character varying(20),
cand_sign_m_nm character varying(20),
cand_sign_prefix character varying(10),
cand_sign_suffix character varying(10),
vice_pres_nm character varying(90),
vice_pres_l_nm character varying(30),
vice_pres_f_nm character varying(20),
vice_pres_m_nm character varying(20),
vice_pres_prefix character varying(10),
vice_pres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_2z OWNER TO fec;
--
-- Name: nml_form_2_2z_view; Type: VIEW; Schema: disclosure; Owner: fec
--
CREATE VIEW nml_form_2_2z_view AS
SELECT a.sub_id,
a.begin_image_num,
a.end_image_num,
a.form_tp,
a.form_tp_desc,
a.cand_id,
a.cand_nm,
a.cand_nm_first,
a.cand_nm_last,
a.cand_st1,
a.cand_st2,
a.cand_city,
a.cand_st,
a.cand_zip,
a.addr_chg_flg,
a.cand_pty_affiliation,
a.cand_pty_affiliation_desc,
a.cand_office,
a.cand_office_desc,
a.cand_office_st,
a.cand_office_st_desc,
a.cand_office_district,
a.election_yr,
a.pcc_cmte_id,
a.pcc_cmte_nm,
a.pcc_cmte_st1,
a.pcc_cmte_st2,
a.pcc_cmte_city,
a.pcc_cmte_st,
a.pcc_cmte_zip,
a.addl_auth_cmte_id,
a.addl_auth_cmte_nm,
a.addl_auth_cmte_st1,
a.addl_auth_cmte_st2,
a.addl_auth_cmte_city,
a.addl_auth_cmte_st,
a.addl_auth_cmte_zip,
a.cand_sign_nm,
a.cand_sign_dt,
a.receipt_dt,
a.party_cd,
a.party_cd_desc,
COALESCE(a.amndt_ind, 'A'::character varying) AS amndt_ind,
a.amndt_ind_desc,
a.cand_ici,
a.cand_ici_desc,
a.cand_status,
a.cand_status_desc,
a.image_tp,
a.load_status,
a.last_update_dt,
a.delete_ind
FROM nml_form_2 a
WHERE (a.delete_ind IS NULL)
UNION
SELECT a.sub_id,
a.begin_image_num,
a.end_image_num,
a.form_tp,
a.form_tp_desc,
a.cand_id,
a.cand_nm,
a.cand_nm_first,
a.cand_nm_last,
a.cand_st1,
a.cand_st2,
a.cand_city,
a.cand_st,
a.cand_zip,
a.addr_chg_flg,
a.cand_pty_affiliation,
a.cand_pty_affiliation_desc,
a.cand_office,
a.cand_office_desc,
a.cand_office_st,
a.cand_office_st_desc,
a.cand_office_district,
a.election_yr,
a.pcc_cmte_id,
a.pcc_cmte_nm,
a.pcc_cmte_st1,
a.pcc_cmte_st2,
a.pcc_cmte_city,
a.pcc_cmte_st,
a.pcc_cmte_zip,
a.addl_auth_cmte_id,
a.addl_auth_cmte_nm,
a.addl_auth_cmte_st1,
a.addl_auth_cmte_st2,
a.addl_auth_cmte_city,
a.addl_auth_cmte_st,
a.addl_auth_cmte_zip,
a.cand_sign_nm,
a.cand_sign_dt,
a.receipt_dt,
a.party_cd,
a.party_cd_desc,
COALESCE(a.amndt_ind, 'A'::character varying) AS amndt_ind,
a.amndt_ind_desc,
a.cand_ici,
a.cand_ici_desc,
a.cand_status,
a.cand_status_desc,
a.image_tp,
a.load_status,
a.last_update_dt,
a.delete_ind
FROM nml_form_2z a
WHERE (a.delete_ind IS NULL)
ORDER BY 6, 51;
ALTER TABLE nml_form_2_2z_view OWNER TO fec;
--
-- Name: nml_form_2_bk; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_2_bk (
sub_id numeric(19,0),
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_st1 character varying(34),
cand_st2 character varying(34),
cand_city character varying(30),
cand_st character varying(2),
cand_zip character varying(9),
addr_chg_flg character varying(1),
cand_pty_affiliation character varying(3),
cand_pty_affiliation_desc character varying(50),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
election_yr numeric(4,0),
pcc_cmte_id character varying(9),
pcc_cmte_nm character varying(200),
pcc_cmte_st1 character varying(34),
pcc_cmte_st2 character varying(34),
pcc_cmte_city character varying(30),
pcc_cmte_st character varying(2),
pcc_cmte_zip character varying(9),
addl_auth_cmte_id character varying(9),
addl_auth_cmte_nm character varying(200),
addl_auth_cmte_st1 character varying(34),
addl_auth_cmte_st2 character varying(34),
addl_auth_cmte_city character varying(30),
addl_auth_cmte_st character varying(2),
addl_auth_cmte_zip character varying(9),
cand_sign_nm character varying(90),
cand_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
party_cd character varying(1),
party_cd_desc character varying(33),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cand_ici character varying(1),
cand_ici_desc character varying(15),
cand_status character varying(1),
cand_status_desc character varying(40),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
prim_pers_funds_decl numeric(14,2),
gen_pers_funds_decl numeric(14,2),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_sign_l_nm character varying(30),
cand_sign_f_nm character varying(20),
cand_sign_m_nm character varying(20),
cand_sign_prefix character varying(10),
cand_sign_suffix character varying(10),
pg_date timestamp without time zone
);
ALTER TABLE nml_form_2_bk OWNER TO fec;
--
-- Name: nml_form_2s; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_2s (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
begin_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cand_id character varying(9),
auth_cmte_id character varying(9),
auth_cmte_nm character varying(200),
auth_cmte_st1 character varying(34),
auth_cmte_st2 character varying(34),
auth_cmte_city character varying(30),
auth_cmte_st character varying(2),
auth_cmte_zip character varying(9),
receipt_dt timestamp without time zone,
file_num numeric(7,0),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
delete_ind numeric(1,0),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
image_tp character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_2s OWNER TO fec;
--
-- Name: nml_form_2z_bk; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_2z_bk (
sub_id numeric(19,0),
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_st1 character varying(34),
cand_st2 character varying(34),
cand_city character varying(30),
cand_st character varying(2),
cand_zip character varying(9),
addr_chg_flg character varying(1),
cand_pty_affiliation character varying(3),
cand_pty_affiliation_desc character varying(50),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
election_yr numeric(4,0),
pcc_cmte_id character varying(9),
pcc_cmte_nm character varying(200),
pcc_cmte_st1 character varying(34),
pcc_cmte_st2 character varying(34),
pcc_cmte_city character varying(30),
pcc_cmte_st character varying(2),
pcc_cmte_zip character varying(9),
addl_auth_cmte_id character varying(9),
addl_auth_cmte_nm character varying(200),
addl_auth_cmte_st1 character varying(34),
addl_auth_cmte_st2 character varying(34),
addl_auth_cmte_city character varying(30),
addl_auth_cmte_st character varying(2),
addl_auth_cmte_zip character varying(9),
cand_sign_nm character varying(90),
cand_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
party_cd character varying(1),
party_cd_desc character varying(33),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cand_ici character varying(1),
cand_ici_desc character varying(15),
cand_status character varying(1),
cand_status_desc character varying(40),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
cand_sign_l_nm character varying(30),
cand_sign_f_nm character varying(20),
cand_sign_m_nm character varying(20),
cand_sign_prefix character varying(10),
cand_sign_suffix character varying(10),
pg_date timestamp without time zone
);
ALTER TABLE nml_form_2z_bk OWNER TO fec;
--
-- Name: nml_form_3; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
cmte_addr_chg_flg character varying(1),
cmte_election_st character varying(2),
cmte_election_st_desc character varying(20),
cmte_election_district character varying(2),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(5),
rpt_pgi_desc character varying(10),
election_dt timestamp without time zone,
election_st character varying(2),
election_st_desc character varying(20),
primary_election character varying(1),
general_election character varying(1),
special_election character varying(1),
runoff_election character varying(1),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
ttl_contb_per numeric(14,2),
ttl_contb_ref_per numeric(14,2),
net_contb_per numeric(14,2),
ttl_op_exp_per numeric(14,2),
ttl_offsets_to_op_exp_per numeric(14,2),
net_op_exp_per numeric(14,2),
coh_cop_i numeric(14,2),
debts_owed_to_cmte numeric(14,2),
debts_owed_by_cmte numeric(14,2),
indv_item_contb_per numeric(14,2),
indv_unitem_contb_per numeric(14,2),
ttl_indv_contb_per numeric(14,2),
pol_pty_cmte_contb_per numeric(14,2),
other_pol_cmte_contb_per numeric(14,2),
cand_contb_per numeric(14,2),
ttl_contb_column_ttl_per numeric(14,2),
tranf_from_other_auth_cmte_per numeric(14,2),
loans_made_by_cand_per numeric(14,2),
all_other_loans_per numeric(14,2),
ttl_loans_per numeric(14,2),
offsets_to_op_exp_per numeric(14,2),
other_receipts_per numeric(14,2),
ttl_receipts_per_i numeric(14,2),
op_exp_per numeric(14,2),
tranf_to_other_auth_cmte_per numeric(14,2),
loan_repymts_cand_loans_per numeric(14,2),
loan_repymts_other_loans_per numeric(14,2),
ttl_loan_repymts_per numeric(14,2),
ref_indv_contb_per numeric(14,2),
ref_pol_pty_cmte_contb_per numeric(14,2),
ref_other_pol_cmte_contb_per numeric(14,2),
ttl_contb_ref_col_ttl_per numeric(14,2),
other_disb_per numeric(14,2),
ttl_disb_per_i numeric(14,2),
coh_bop numeric(14,2),
ttl_receipts_ii numeric(14,2),
subttl_per numeric(14,2),
ttl_disb_per_ii numeric(14,2),
coh_cop_ii numeric(14,2),
ttl_contb_ytd numeric(14,2),
ttl_contb_ref_ytd numeric(14,2),
net_contb_ytd numeric(14,2),
ttl_op_exp_ytd numeric(14,2),
ttl_offsets_to_op_exp_ytd numeric(14,2),
net_op_exp_ytd numeric(14,2),
ttl_indv_item_contb_ytd numeric(14,2),
ttl_indv_unitem_contb_ytd numeric(14,2),
ttl_indv_contb_ytd numeric(14,2),
pol_pty_cmte_contb_ytd numeric(14,2),
other_pol_cmte_contb_ytd numeric(14,2),
cand_contb_ytd numeric(14,2),
ttl_contb_col_ttl_ytd numeric(14,2),
tranf_from_other_auth_cmte_ytd numeric(14,2),
loans_made_by_cand_ytd numeric(14,2),
all_other_loans_ytd numeric(14,2),
ttl_loans_ytd numeric(14,2),
offsets_to_op_exp_ytd numeric(14,2),
other_receipts_ytd numeric(14,2),
ttl_receipts_ytd numeric(14,2),
op_exp_ytd numeric(14,2),
tranf_to_other_auth_cmte_ytd numeric(14,2),
loan_repymts_cand_loans_ytd numeric(14,2),
loan_repymts_other_loans_ytd numeric(14,2),
ttl_loan_repymts_ytd numeric(14,2),
ref_indv_contb_ytd numeric(14,2),
ref_pol_pty_cmte_contb_ytd numeric(14,2),
ref_other_pol_cmte_contb_ytd numeric(14,2),
ref_ttl_contb_col_ttl_ytd numeric(14,2),
other_disb_ytd numeric(14,2),
ttl_disb_ytd numeric(14,2),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
rpt_yr numeric(4,0),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
grs_rcpt_auth_cmte_prim numeric(14,2),
agr_amt_contrib_pers_fund_prim numeric(14,2),
grs_rcpt_min_pers_contrib_prim numeric(14,2),
grs_rcpt_auth_cmte_gen numeric(14,2),
agr_amt_pers_contrib_gen numeric(14,2),
grs_rcpt_min_pers_contrib_gen numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
f3z1_rpt_tp character varying(3),
f3z1_rpt_tp_desc character varying(30),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3 OWNER TO fec;
--
-- Name: nml_form_3l; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3l (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
cmte_addr_chg_flg character varying(1),
cmte_election_st character varying(2),
cmte_election_st_desc character varying(20),
cmte_election_district character varying(2),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(5),
rpt_pgi_desc character varying(10),
election_dt timestamp without time zone,
election_st character varying(2),
election_st_desc character varying(20),
semi_an_per_5c_5d character varying(1),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
semi_an_jan_jun_6b character varying(1),
semi_an_jul_dec_6b character varying(1),
qtr_mon_bundled_contb numeric(14,2),
semi_an_bundled_contb numeric(14,2),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
tres_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
rpt_yr numeric(4,0),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3l OWNER TO fec;
--
-- Name: nml_form_3p; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3p (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
addr_chg_flg character varying(1),
activity_primary character varying(1),
activity_general character varying(1),
term_rpt_flag character varying(1),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(5),
rpt_pgi_desc character varying(10),
election_dt timestamp without time zone,
election_st character varying(2),
election_st_desc character varying(20),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
coh_bop numeric(14,2),
ttl_receipts_sum_page_per numeric(14,2),
subttl_sum_page_per numeric(14,2),
ttl_disb_sum_page_per numeric(14,2),
coh_cop numeric(14,2),
debts_owed_to_cmte numeric(14,2),
debts_owed_by_cmte numeric(14,2),
exp_subject_limits numeric(14,2),
net_contb_sum_page_per numeric(14,2),
net_op_exp_sum_page_per numeric(14,2),
fed_funds_per numeric(14,2),
indv_contb_per numeric(14,2),
pol_pty_cmte_contb_per numeric(14,2),
other_pol_cmte_contb_per numeric(14,2),
cand_contb_per numeric(14,2),
ttl_contb_per numeric(14,2),
tranf_from_affilated_cmte_per numeric(14,2),
loans_received_from_cand_per numeric(14,2),
other_loans_received_per numeric(14,2),
ttl_loans_received_per numeric(14,2),
offsets_to_op_exp_per numeric(14,2),
offsets_to_fndrsg_exp_per numeric(14,2),
offsets_to_legal_acctg_per numeric(14,2),
ttl_offsets_to_op_exp_per numeric(14,2),
other_receipts_per numeric(14,2),
ttl_receipts_per numeric(14,2),
op_exp_per numeric(14,2),
tranf_to_other_auth_cmte_per numeric(14,2),
fndrsg_disb_per numeric(14,2),
exempt_legal_acctg_disb_per numeric(14,2),
repymts_loans_made_by_cand_per numeric(14,2),
repymts_other_loans_per numeric(14,2),
ttl_loan_repymts_made_per numeric(14,2),
ref_indv_contb_per numeric(14,2),
ref_pol_pty_cmte_contb_per numeric(14,2),
ref_other_pol_cmte_contb_per numeric(14,2),
ttl_contb_ref_per numeric(14,2),
other_disb_per numeric(14,2),
ttl_disb_per numeric(14,2),
items_on_hand_liquidated numeric(14,2),
alabama_per numeric(14,2),
alaska_per numeric(14,2),
arizona_per numeric(14,2),
arkansas_per numeric(14,2),
california_per numeric(14,2),
colorado_per numeric(14,2),
connecticut_per numeric(14,2),
delaware_per numeric(14,2),
district_columbia_per numeric(14,2),
florida_per numeric(14,2),
georgia_per numeric(14,2),
hawaii_per numeric(14,2),
idaho_per numeric(14,2),
illinois_per numeric(14,2),
indiana_per numeric(14,2),
iowa_per numeric(14,2),
kansas_per numeric(14,2),
kentucky_per numeric(14,2),
louisiana_per numeric(14,2),
maine_per numeric(14,2),
maryland_per numeric(14,2),
massachusetts_per numeric(14,2),
michigan_per numeric(14,2),
minnesota_per numeric(14,2),
mississippi_per numeric(14,2),
missouri_per numeric(14,2),
montana_per numeric(14,2),
nebraska_per numeric(14,2),
nevada_per numeric(14,2),
new_hampshire_per numeric(14,2),
new_jersey_per numeric(14,2),
new_mexico_per numeric(14,2),
new_york_per numeric(14,2),
north_carolina_per numeric(14,2),
north_dakota_per numeric(14,2),
ohio_per numeric(14,2),
oklahoma_per numeric(14,2),
oregon_per numeric(14,2),
pennsylvania_per numeric(14,2),
rhode_island_per numeric(14,2),
south_carolina_per numeric(14,2),
south_dakota_per numeric(14,2),
tennessee_per numeric(14,2),
texas_per numeric(14,2),
utah_per numeric(14,2),
vermont_per numeric(14,2),
virginia_per numeric(14,2),
washington_per numeric(14,2),
west_virginia_per numeric(14,2),
wisconsin_per numeric(14,2),
wyoming_per numeric(14,2),
puerto_rico_per numeric(14,2),
guam_per numeric(14,2),
virgin_islands_per numeric(14,2),
ttl_per numeric(14,2),
fed_funds_ytd numeric(14,2),
indv_contb_ytd numeric(14,2),
pol_pty_cmte_contb_ytd numeric(14,2),
other_pol_cmte_contb_ytd numeric(14,2),
cand_contb_ytd numeric(14,2),
ttl_contb_ytd numeric(14,2),
tranf_from_affiliated_cmte_ytd numeric(14,2),
loans_received_from_cand_ytd numeric(14,2),
other_loans_received_ytd numeric(14,2),
ttl_loans_received_ytd numeric(14,2),
offsets_to_op_exp_ytd numeric(14,2),
offsets_to_fndrsg_exp_ytd numeric(14,2),
offsets_to_legal_acctg_ytd numeric(14,2),
ttl_offsets_to_op_exp_ytd numeric(14,2),
other_receipts_ytd numeric(14,2),
ttl_receipts_ytd numeric(14,2),
op_exp_ytd numeric(14,2),
tranf_to_other_auth_cmte_ytd numeric(14,2),
fndrsg_disb_ytd numeric(14,2),
exempt_legal_acctg_disb_ytd numeric(14,2),
repymts_loans_made_cand_ytd numeric(14,2),
repymts_other_loans_ytd numeric(14,2),
ttl_loan_repymts_made_ytd numeric(14,2),
ref_indv_contb_ytd numeric(14,2),
ref_pol_pty_cmte_contb_ytd numeric(14,2),
ref_other_pol_cmte_contb_ytd numeric(14,2),
ttl_contb_ref_ytd numeric(14,2),
other_disb_ytd numeric(14,2),
ttl_disb_ytd numeric(14,2),
alabama_ytd numeric(14,2),
alaska_ytd numeric(14,2),
arizona_ytd numeric(14,2),
arkansas_ytd numeric(14,2),
california_ytd numeric(14,2),
colorado_ytd numeric(14,2),
connecticut_ytd numeric(14,2),
delaware_ytd numeric(14,2),
district_columbia_ytd numeric(14,2),
florida_ytd numeric(14,2),
georgia_ytd numeric(14,2),
hawaii_ytd numeric(14,2),
idaho_ytd numeric(14,2),
illinois_ytd numeric(14,2),
indiana_ytd numeric(14,2),
iowa_ytd numeric(14,2),
kansas_ytd numeric(14,2),
kentucky_ytd numeric(14,2),
louisiana_ytd numeric(14,2),
maine_ytd numeric(14,2),
maryland_ytd numeric(14,2),
massachusetts_ytd numeric(14,2),
michigan_ytd numeric(14,2),
minnesota_ytd numeric(14,2),
mississippi_ytd numeric(14,2),
missouri_ytd numeric(14,2),
montana_ytd numeric(14,2),
nebraska_ytd numeric(14,2),
nevada_ytd numeric(14,2),
new_hampshire_ytd numeric(14,2),
new_jersey_ytd numeric(14,2),
new_mexico_ytd numeric(14,2),
new_york_ytd numeric(14,2),
north_carolina_ytd numeric(14,2),
north_dakota_ytd numeric(14,2),
ohio_ytd numeric(14,2),
oklahoma_ytd numeric(14,2),
oregon_ytd numeric(14,2),
pennsylvania_ytd numeric(14,2),
rhode_island_ytd numeric(14,2),
south_carolina_ytd numeric(14,2),
south_dakota_ytd numeric(14,2),
tennessee_ytd numeric(14,2),
texas_ytd numeric(14,2),
utah_ytd numeric(14,2),
vermont_ytd numeric(14,2),
virginia_ytd numeric(14,2),
washington_ytd numeric(14,2),
west_virginia_ytd numeric(14,2),
wisconsin_ytd numeric(14,2),
wyoming_ytd numeric(14,2),
puerto_rico_ytd numeric(14,2),
guam_ytd numeric(14,2),
virgin_islands_ytd numeric(14,2),
ttl_ytd numeric(14,2),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
rpt_yr numeric(4,0),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
indv_item_contb_per numeric(14,2),
indv_unitem_contb_per numeric(14,2),
indv_item_contb_ytd numeric(14,2),
indv_unitem_contb_ytd numeric(14,2),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3p OWNER TO fec;
--
-- Name: nml_form_3ps; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3ps (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
alabama numeric(14,2),
alaska numeric(14,2),
arizona numeric(14,2),
arkansas numeric(14,2),
california numeric(14,2),
colorado numeric(14,2),
connecticut numeric(14,2),
delaware numeric(14,2),
district_columbia numeric(14,2),
florida numeric(14,2),
georgia numeric(14,2),
hawaii numeric(14,2),
idaho numeric(14,2),
illinois numeric(14,2),
indiana numeric(14,2),
iowa numeric(14,2),
kansas numeric(14,2),
kentucky numeric(14,2),
louisiana numeric(14,2),
maine numeric(14,2),
maryland numeric(14,2),
massachusetts numeric(14,2),
michigan numeric(14,2),
minnesota numeric(14,2),
mississippi numeric(14,2),
missouri numeric(14,2),
montana numeric(14,2),
nebraska numeric(14,2),
nevada numeric(14,2),
new_hampshire numeric(14,2),
new_jersey numeric(14,2),
new_mexico numeric(14,2),
new_york numeric(14,2),
north_carolina numeric(14,2),
north_dakota numeric(14,2),
ohio numeric(14,2),
oklahoma numeric(14,2),
oregon numeric(14,2),
pennsylvania numeric(14,2),
rhode_island numeric(14,2),
south_carolina numeric(14,2),
south_dakota numeric(14,2),
tennessee numeric(14,2),
texas numeric(14,2),
utah numeric(14,2),
vermont numeric(14,2),
virginia numeric(14,2),
washington numeric(14,2),
west_virginia numeric(14,2),
wisconsin numeric(14,2),
wyoming numeric(14,2),
puerto_rico numeric(14,2),
guam numeric(14,2),
virgin_islands numeric(14,2),
ttl numeric(14,2),
election_dt timestamp without time zone,
day_after_election_dt timestamp without time zone,
net_contb numeric(14,2),
net_exp numeric(14,2),
fed_funds numeric(14,2),
indv_contb numeric(14,2),
pol_pty_cmte_contb numeric(14,2),
pac_contb numeric(14,2),
cand_contb numeric(14,2),
ttl_contb numeric(14,2),
tranf_from_affiliated_cmte numeric(14,2),
loans_received_from_cand numeric(14,2),
other_loans_received numeric(14,2),
ttl_loans numeric(14,2),
op_exp numeric(14,2),
fndrsg_exp numeric(14,2),
legal_and_acctg_exp numeric(14,2),
ttl_offsets_to_op_exp numeric(14,2),
other_receipts numeric(14,2),
ttl_receipts numeric(14,2),
op_exp2 numeric(14,2),
tranf_to_other_auth_cmte numeric(14,2),
fndrsg_disb numeric(14,2),
exempt_legal_and_acctg_disb numeric(14,2),
loan_repymts_made_by_cand numeric(14,2),
other_repymts numeric(14,2),
ttl_loan_repymts_made numeric(14,2),
ref_indv_contb numeric(14,2),
ref_pol_pty_contb numeric(14,2),
ref_other_pol_cmte_contb numeric(14,2),
ttl_contb_ref numeric(14,2),
other_disb numeric(14,2),
ttl_disb numeric(14,2),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
indv_item_contb numeric(14,2),
indv_unitem_contb numeric(14,2),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3ps OWNER TO fec;
--
-- Name: nml_form_3pz; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3pz (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
pcc_id character varying(9),
pcc_nm character varying(200),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
auth_cmte_id character varying(9),
auth_cmte_nm character varying(200),
coh_bop numeric(14,2),
coh_cop numeric(14,2),
debts_owed_to_cmte numeric(14,2),
debts_owed_by_cmte numeric(14,2),
exp_subject_limits numeric(14,2),
net_contb_sum_page_per numeric(14,2),
net_op_exp_sum_page_per numeric(14,2),
fed_funds_per numeric(14,2),
indv_contb_per numeric(14,2),
pol_pty_cmte_contb_per numeric(14,2),
other_pol_cmte_contb_per numeric(14,2),
cand_contb_per numeric(14,2),
ttl_contb_per numeric(14,2),
tranf_from_affilated_cmte_per numeric(14,2),
loans_received_from_cand_per numeric(14,2),
other_loans_received_per numeric(14,2),
ttl_loans_received_per numeric(14,2),
offsets_to_op_exp_per numeric(14,2),
offsets_to_fndrsg_exp_per numeric(14,2),
offsets_to_legal_acctg_per numeric(14,2),
ttl_offsets_to_op_exp_per numeric(14,2),
other_receipts_per numeric(14,2),
ttl_receipts_per numeric(14,2),
op_exp_per numeric(14,2),
tranf_to_other_auth_cmte_per numeric(14,2),
fndrsg_disb_per numeric(14,2),
exempt_legal_acctg_disb_per numeric(14,2),
repymts_loans_made_by_cand_per numeric(14,2),
repymts_other_loans_per numeric(14,2),
ttl_loan_repymts_made_per numeric(14,2),
ref_indv_contb_per numeric(14,2),
ref_pol_pty_cmte_contb_per numeric(14,2),
ref_other_pol_cmte_contb_per numeric(14,2),
ttl_contb_ref_per numeric(14,2),
other_disb_per numeric(14,2),
ttl_disb_per numeric(14,2),
items_on_hand_liquidated numeric(14,2),
load_status numeric(1,0),
delete_ind numeric(1,0),
image_tp character varying(10),
file_num numeric(7,0),
receipt_dt timestamp without time zone,
last_update_dt timestamp without time zone,
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3pz OWNER TO fec;
--
-- Name: nml_form_3s; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3s (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
ttl_contb numeric(14,2),
ttl_contb_ref numeric(14,2),
net_contb numeric(14,2),
ttl_op_exp numeric(14,2),
ttl_offsets_to_op_exp numeric(14,2),
net_op_exp numeric(14,2),
indv_item_contb numeric(14,2),
indv_unitem_contb numeric(14,2),
ttl_indv_contb numeric(14,2),
pol_pty_cmte_contb numeric(14,2),
other_pol_cmte_contb numeric(14,2),
cand_contb numeric(14,2),
ttl_contb_column_ttl numeric(14,2),
tranf_from_other_auth_cmte numeric(14,2),
loans_made_by_cand numeric(14,2),
all_other_loans numeric(14,2),
ttl_loans numeric(14,2),
offsets_to_op_exp numeric(14,2),
other_receipts numeric(14,2),
ttl_receipts numeric(14,2),
op_exp numeric(14,2),
tranf_to_other_auth_cmte numeric(14,2),
loan_repymts_cand_loans numeric(14,2),
loan_repymts_other_loans numeric(14,2),
ttl_loan_repymts numeric(14,2),
ref_indv_contb numeric(14,2),
ref_pol_pty_cmte_contb numeric(14,2),
ref_other_pol_cmte_contb numeric(14,2),
ttl_contb_ref_col_ttl numeric(14,2),
other_disb numeric(14,2),
ttl_disb numeric(14,2),
election_dt timestamp without time zone,
day_after_election_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3s OWNER TO fec;
--
-- Name: nml_form_3x; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3x (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
cmte_addr_chg_flg character varying(1),
qual_cmte_flg character varying(1),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(5),
rpt_pgi_desc character varying(10),
election_dt timestamp without time zone,
election_st character varying(2),
election_st_desc character varying(20),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
coh_bop numeric(14,2),
ttl_receipts_sum_page_per numeric(14,2),
subttl_sum_page_per numeric(14,2),
ttl_disb_sum_page_per numeric(14,2),
coh_cop numeric(14,2),
debts_owed_to_cmte numeric(14,2),
debts_owed_by_cmte numeric(14,2),
indv_item_contb_per numeric(14,2),
indv_unitem_contb_per numeric(14,2),
ttl_indv_contb numeric(14,2),
pol_pty_cmte_contb_per_i numeric(14,2),
other_pol_cmte_contb_per_i numeric(14,2),
ttl_contb_col_ttl_per numeric(14,2),
tranf_from_affiliated_pty_per numeric(14,2),
all_loans_received_per numeric(14,2),
loan_repymts_received_per numeric(14,2),
offsets_to_op_exp_per_i numeric(14,2),
fed_cand_contb_ref_per numeric(14,2),
other_fed_receipts_per numeric(14,2),
tranf_from_nonfed_acct_per numeric(14,2),
ttl_receipts_per numeric(14,2),
ttl_fed_receipts_per numeric(14,2),
shared_fed_op_exp_per numeric(14,2),
shared_nonfed_op_exp_per numeric(14,2),
other_fed_op_exp_per numeric(14,2),
ttl_op_exp_per numeric(14,2),
tranf_to_affliliated_cmte_per numeric(14,2),
fed_cand_cmte_contb_per numeric(14,2),
indt_exp_per numeric(14,2),
coord_exp_by_pty_cmte_per numeric(14,2),
loan_repymts_made_per numeric(14,2),
loans_made_per numeric(14,2),
indv_contb_ref_per numeric(14,2),
pol_pty_cmte_contb_per_ii numeric(14,2),
other_pol_cmte_contb_per_ii numeric(14,2),
ttl_contb_ref_per_i numeric(14,2),
other_disb_per numeric(14,2),
ttl_disb_per numeric(14,2),
ttl_fed_disb_per numeric(14,2),
ttl_contb_per numeric(14,2),
ttl_contb_ref_per_ii numeric(14,2),
net_contb_per numeric(14,2),
ttl_fed_op_exp_per numeric(14,2),
offsets_to_op_exp_per_ii numeric(14,2),
net_op_exp_per numeric(14,2),
coh_begin_calendar_yr numeric(14,2),
calendar_yr numeric(4,0),
ttl_receipts_sum_page_ytd numeric(14,2),
subttl_sum_ytd numeric(14,2),
ttl_disb_sum_page_ytd numeric(14,2),
coh_coy numeric(14,2),
indv_item_contb_ytd numeric(14,2),
indv_unitem_contb_ytd numeric(14,2),
ttl_indv_contb_ytd numeric(14,2),
pol_pty_cmte_contb_ytd_i numeric(14,2),
other_pol_cmte_contb_ytd_i numeric(14,2),
ttl_contb_col_ttl_ytd numeric(14,2),
tranf_from_affiliated_pty_ytd numeric(14,2),
all_loans_received_ytd numeric(14,2),
loan_repymts_received_ytd numeric(14,2),
offsets_to_op_exp_ytd_i numeric(14,2),
fed_cand_cmte_contb_ytd numeric(14,2),
other_fed_receipts_ytd numeric(14,2),
tranf_from_nonfed_acct_ytd numeric(14,2),
ttl_receipts_ytd numeric(14,2),
ttl_fed_receipts_ytd numeric(14,2),
shared_fed_op_exp_ytd numeric(14,2),
shared_nonfed_op_exp_ytd numeric(14,2),
other_fed_op_exp_ytd numeric(14,2),
ttl_op_exp_ytd numeric(14,2),
tranf_to_affilitated_cmte_ytd numeric(14,2),
fed_cand_cmte_contb_ref_ytd numeric(14,2),
indt_exp_ytd numeric(14,2),
coord_exp_by_pty_cmte_ytd numeric(14,2),
loan_repymts_made_ytd numeric(14,2),
loans_made_ytd numeric(14,2),
indv_contb_ref_ytd numeric(14,2),
pol_pty_cmte_contb_ytd_ii numeric(14,2),
other_pol_cmte_contb_ytd_ii numeric(14,2),
ttl_contb_ref_ytd_i numeric(14,2),
other_disb_ytd numeric(14,2),
ttl_disb_ytd numeric(14,2),
ttl_fed_disb_ytd numeric(14,2),
ttl_contb_ytd numeric(14,2),
ttl_contb_ref_ytd_ii numeric(14,2),
net_contb_ytd numeric(14,2),
ttl_fed_op_exp_ytd numeric(14,2),
offsets_to_op_exp_ytd_ii numeric(14,2),
net_op_exp_ytd numeric(14,2),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
multicand_flg character varying(1),
receipt_dt timestamp without time zone,
rpt_yr numeric(4,0),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
tranf_from_nonfed_levin_per numeric(14,2),
ttl_nonfed_tranf_per numeric(14,2),
shared_fed_actvy_fed_shr_per numeric(14,2),
shared_fed_actvy_nonfed_per numeric(14,2),
non_alloc_fed_elect_actvy_per numeric(14,2),
ttl_fed_elect_actvy_per numeric(14,2),
tranf_from_nonfed_levin_ytd numeric(14,2),
ttl_nonfed_tranf_ytd numeric(14,2),
shared_fed_actvy_fed_shr_ytd numeric(14,2),
shared_fed_actvy_nonfed_ytd numeric(14,2),
non_alloc_fed_elect_actvy_ytd numeric(14,2),
ttl_fed_elect_actvy_ytd numeric(14,2),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3x OWNER TO fec;
--
-- Name: nml_form_3z; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_3z (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
pcc_id character varying(9),
pcc_nm character varying(200),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
auth_cmte_id character varying(9),
auth_cmte_nm character varying(200),
indv_contb numeric(14,2),
pol_pty_contb numeric(14,2),
other_pol_cmte_contb numeric(14,2),
cand_contb numeric(14,2),
ttl_contb numeric(14,2),
tranf_from_other_auth_cmte numeric(14,2),
loans_made_by_cand numeric(14,2),
all_other_loans numeric(14,2),
ttl_loans numeric(14,2),
offsets_to_op_exp numeric(14,2),
other_receipts numeric(14,2),
ttl_receipts numeric(14,2),
op_exp numeric(14,2),
tranf_to_other_auth_cmte numeric(14,2),
repymts_loans_made_cand numeric(14,2),
repymts_all_other_loans numeric(14,2),
ttl_loan_repymts numeric(14,2),
ref_indv_contb numeric(14,2),
ref_pol_pty_cmte_contb numeric(14,2),
ref_other_pol_cmte_contb numeric(14,2),
ttl_contb_ref numeric(14,2),
other_disb numeric(14,2),
ttl_disb numeric(14,2),
coh_bop numeric(14,2),
coh_cop numeric(14,2),
debts_owed_to_cmte numeric(14,2),
debts_owed_by_cmte numeric(14,2),
net_contb numeric(14,2),
net_op_exp numeric(14,2),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_3z OWNER TO fec;
--
-- Name: nml_form_4; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_4 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
cmte_tp character varying(1),
cmte_tp_desc character varying(58),
cmte_desc character varying(40),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
coh_bop numeric(14,2),
ttl_receipts_sum_page_per numeric(14,2),
subttl_sum_page_per numeric(14,2),
ttl_disb_sum_page_per numeric(14,2),
coh_cop numeric(14,2),
debts_owed_to_cmte_per numeric(14,2),
debts_owed_by_cmte_per numeric(14,2),
convn_exp_per numeric(14,2),
ref_reb_ret_convn_exp_per numeric(14,2),
exp_subject_limits_per numeric(14,2),
exp_prior_yrs_subject_lim_per numeric(14,2),
ttl_exp_subject_limits numeric(14,2),
fed_funds_per numeric(14,2),
item_convn_exp_contb_per numeric(14,2),
unitem_convn_exp_contb_per numeric(14,2),
subttl_convn_exp_contb_per numeric(14,2),
tranf_from_affiliated_cmte_per numeric(14,2),
loans_received_per numeric(14,2),
loan_repymts_received_per numeric(14,2),
subttl_loan_repymts_per numeric(14,2),
item_ref_reb_ret_per numeric(14,2),
unitem_ref_reb_ret_per numeric(14,2),
subttl_ref_reb_ret_per numeric(14,2),
item_other_ref_reb_ret_per numeric(14,2),
unitem_other_ref_reb_ret_per numeric(14,2),
subttl_other_ref_reb_ret_per numeric(14,2),
item_other_income_per numeric(14,2),
unitem_other_income_per numeric(14,2),
subttl_other_income_per numeric(14,2),
ttl_receipts_per numeric(14,2),
item_convn_exp_disb_per numeric(14,2),
unitem_convn_exp_disb_per numeric(14,2),
subttl_convn_exp_disb_per numeric(14,2),
tranf_to_affiliated_cmte_per numeric(14,2),
loans_made_per numeric(14,2),
loan_repymts_made_per numeric(14,2),
subttl_loan_repymts_disb_per numeric(14,2),
item_other_disb_per numeric(14,2),
unitem_other_disb_per numeric(14,2),
subttl_other_disb_per numeric(14,2),
ttl_disb_per numeric(14,2),
coh_begin_calendar_yr numeric(14,2),
calendar_yr numeric(4,0),
ttl_receipts_sum_page_ytd numeric(14,2),
subttl_sum_page_ytd numeric(14,2),
ttl_disb_sum_page_ytd numeric(14,2),
coh_coy numeric(14,2),
convn_exp_ytd numeric(14,2),
ref_reb_ret_convn_exp_ytd numeric(14,2),
exp_subject_limits_ytd numeric(14,2),
exp_prior_yrs_subject_lim_ytd numeric(14,2),
ttl_exp_subject_limits_ytd numeric(14,2),
fed_funds_ytd numeric(14,2),
subttl_convn_exp_contb_ytd numeric(14,2),
tranf_from_affiliated_cmte_ytd numeric(14,2),
subttl_loan_repymts_ytd numeric(14,2),
subttl_ref_reb_ret_deposit_ytd numeric(14,0),
subttl_other_ref_reb_ret_ytd numeric(14,2),
subttl_other_income_ytd numeric(14,2),
ttl_receipts_ytd numeric(14,2),
subttl_convn_exp_disb_ytd numeric(14,2),
tranf_to_affiliated_cmte_ytd numeric(14,2),
subttl_loan_repymts_disb_ytd numeric(14,2),
subttl_other_disb_ytd numeric(14,2),
ttl_disb_ytd numeric(14,2),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
rpt_yr numeric(4,0),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_4 OWNER TO fec;
--
-- Name: nml_form_5; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_5 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
indv_org_id character varying(9),
indv_org_nm character varying(200),
indv_org_st1 character varying(34),
indv_org_st2 character varying(34),
indv_org_city character varying(30),
indv_org_st character varying(2),
indv_org_zip character varying(9),
addr_chg_flg character varying(1),
qual_nonprofit_corp_ind character varying(1),
indv_org_employer character varying(38),
indv_org_occupation character varying(38),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(5),
rpt_pgi_desc character varying(10),
election_tp character varying(2),
election_tp_desc character varying(50),
election_dt timestamp without time zone,
election_st character varying(2),
election_st_desc character varying(20),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
ttl_indt_contb numeric(14,2),
ttl_indt_exp numeric(14,2),
filer_nm character varying(90),
filer_sign_nm character varying(90),
filer_sign_dt timestamp without time zone,
notary_sign_dt timestamp without time zone,
notary_commission_exprtn_dt timestamp without time zone,
notary_nm character varying(38),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
entity_tp character varying(3),
indv_l_nm character varying(30),
indv_f_nm character varying(20),
indv_m_nm character varying(20),
indv_prefix character varying(10),
indv_suffix character varying(10),
filer_l_nm character varying(30),
filer_f_nm character varying(20),
filer_m_nm character varying(20),
filer_prefix character varying(10),
filer_suffix character varying(10),
orig_amndt_dt timestamp without time zone,
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_5 OWNER TO fec;
--
-- Name: nml_form_56; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_56 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(90),
contbr_nm character varying(200),
contbr_st1 character varying(34),
contbr_st2 character varying(34),
conbtr_city character varying(30),
contbr_st character varying(2),
contbr_zip character varying(9),
contbr_employer character varying(38),
contbr_occupation character varying(38),
contb_dt timestamp without time zone,
contb_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_nm character varying(200),
conduit_st1 character varying(34),
conduit_st2 character varying(34),
conduit_city character varying(30),
conduit_st character varying(2),
conduit_zip character varying(9),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
contbr_l_nm character varying(30),
contbr_f_nm character varying(20),
contbr_m_nm character varying(20),
contbr_prefix character varying(10),
contbr_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_56 OWNER TO fec;
--
-- Name: nml_form_57; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_57 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(90),
pye_nm character varying(200),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
exp_purpose character varying(100),
exp_dt timestamp without time zone,
exp_amt numeric(14,2),
s_o_ind character varying(3),
s_o_ind_desc character varying(20),
s_o_cand_id character varying(9),
s_o_cand_nm character varying(90),
s_o_cand_office character varying(1),
s_o_cand_office_desc character varying(20),
s_o_cand_office_st character varying(2),
s_o_cand_office_state_desc character varying(20),
s_o_cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
receipt_dt timestamp without time zone,
tran_id character varying(32),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
catg_cd character varying(3),
exp_tp character varying(3),
cal_ytd_ofc_sought numeric(14,2),
catg_cd_desc character varying(40),
exp_tp_desc character varying(90),
file_num numeric(7,0),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_yr character varying(4),
election_tp_desc character varying(20),
orig_sub_id numeric(19,0),
pye_l_nm character varying(30),
pye_f_nm character varying(20),
pye_m_nm character varying(20),
pye_prefix character varying(10),
pye_suffix character varying(10),
s_o_cand_l_nm character varying(30),
s_o_cand_f_nm character varying(20),
s_o_cand_m_nm character varying(20),
s_o_cand_prefix character varying(10),
s_o_cand_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_57 OWNER TO fec;
--
-- Name: nml_form_6; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_6 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
filer_cmte_st1 character varying(34),
filer_cmte_st2 character varying(34),
filer_cmte_city character varying(30),
filer_cmte_st character varying(2),
filer_cmte_zip character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
signer_last_name character varying(30),
signer_first_name character varying(20),
signer_middle_name character varying(20),
signer_prefix character varying(10),
signer_suffix character varying(10),
amndt_ind character varying(1),
orig_amndt_dt timestamp without time zone,
cand_l_nm character varying(30),
cand_f_nm character varying(20),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_6 OWNER TO fec;
--
-- Name: nml_form_65; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_65 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
contbr_lender_nm character varying(200),
contbr_lender_st1 character varying(34),
contbr_lender_st2 character varying(34),
contbr_lender_city character varying(30),
contbr_lender_st character varying(2),
contbr_lender_zip character varying(9),
contbr_lender_employer character varying(38),
contbr_lender_occupation character varying(38),
contb_dt timestamp without time zone,
contb_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
contbr_l_nm character varying(30),
contbr_f_nm character varying(20),
contbr_m_nm character varying(20),
contbr_prefix character varying(10),
contbr_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_65 OWNER TO fec;
--
-- Name: nml_form_7; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_7 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
org_id character varying(9),
org_nm character varying(200),
org_st1 character varying(34),
org_st2 character varying(34),
org_city character varying(30),
org_st character varying(2),
org_zip character varying(9),
org_tp character varying(1),
org_tp_desc character varying(90),
rpt_tp character varying(3),
rpt_tp_desc character varying(90),
election_dt timestamp without time zone,
election_st character varying(2),
election_st_desc character varying(20),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
ttl_communication_cost numeric(14,2),
filer_sign_nm character varying(90),
filer_sign_dt timestamp without time zone,
filer_title character varying(20),
receipt_dt timestamp without time zone,
rpt_pgi character varying(1),
rpt_pgi_desc character varying(10),
amdnt_ind character varying(1),
amndt_ind_desc character varying(15),
rpt_yr numeric(4,0),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
filer_l_nm character varying(30),
filer_f_nm character varying(20),
filer_m_nm character varying(20),
filer_prefix character varying(10),
filer_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_7 OWNER TO fec;
--
-- Name: nml_form_76; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_76 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
org_id character varying(9),
communication_tp character varying(2),
communication_tp_desc character varying(40),
communication_class character varying(1),
communication_class_desc character varying(90),
communication_dt timestamp without time zone,
s_o_ind character varying(3),
s_o_ind_desc character varying(90),
s_o_cand_id character varying(9),
s_o_cand_nm character varying(90),
s_o_cand_office character varying(1),
s_o_cand_office_desc character varying(20),
s_o_cand_office_st character varying(2),
s_o_cand_office_st_desc character varying(20),
s_o_cand_office_district character varying(2),
s_o_rpt_pgi character varying(5),
s_o_rpt_pgi_desc character varying(10),
communication_cost numeric(14,2),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
file_num numeric(7,0),
election_other_desc character varying(20),
orig_sub_id numeric(19,0),
transaction_tp character varying(3),
s_o_cand_l_nm character varying(30),
s_o_cand_f_nm character varying(20),
s_o_cand_m_nm character varying(20),
s_o_cand_prefix character varying(10),
s_o_cand_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_76 OWNER TO fec;
--
-- Name: nml_form_8; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_8 (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
coh numeric(14,2),
calender_yr timestamp without time zone,
ttl_liquidated_assets numeric(14,2),
ttl_assets numeric(14,2),
ytd_reciepts numeric(14,2),
ytd_disb numeric(14,2),
ttl_amt_debts_owed numeric(14,2),
ttl_num_cred_owed numeric(8,0),
ttl_num_cred_part2 numeric(8,0),
ttl_amt_debts_owed_part2 numeric(14,2),
ttl_amt_paid_cred numeric(14,2),
term_flg character varying(1),
term_dt_desc character varying(15),
addl_auth_cmte_flg character varying(1),
add_auth_cmte_desc character varying(300),
sufficient_amt_to_pay_ttl_flg character varying(1),
sufficient_amt_to_pay_desc character varying(100),
prev_debt_settlement_plan_flg character varying(1),
residual_funds_flg character varying(1),
residual_funds_desc character varying(100),
remaining_amt_flg character varying(1),
remaining_amt_desc character varying(100),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_8 OWNER TO fec;
--
-- Name: nml_form_82; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_82 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cred_tp character varying(3),
cred_tp_desc character varying(50),
cred_nm character varying(200),
cred_st1 character varying(34),
cred_st2 character varying(34),
cred_city character varying(30),
cred_st character varying(2),
cred_zip character varying(9),
incurred_dt timestamp without time zone,
amt_owed_cred numeric(14,2),
amt_offered_settle numeric(14,2),
terms_initial_extention_desc character varying(100),
debt_repymt_efforts_desc character varying(100),
steps_obtain_funds_desc character varying(100),
similar_effort_flg character varying(1),
similar_effort_desc character varying(100),
terms_settlement_flg character varying(1),
terms_of_settlement_desc character varying(100),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
add_cmte_id character varying(9),
creditor_sign_nm character varying(90),
creditor_sign_dt timestamp without time zone,
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
entity_tp character varying(3),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_82 OWNER TO fec;
--
-- Name: nml_form_83; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_83 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cred_tp character varying(3),
cred_tp_desc character varying(50),
cred_nm character varying(200),
cred_st1 character varying(34),
cred_st2 character varying(34),
cred_city character varying(30),
cred_st character varying(2),
cred_zip character varying(9),
disputed_debt_flg character varying(1),
incurred_dt timestamp without time zone,
amt_owed_cred numeric(14,2),
amt_offered_settle numeric(14,2),
add_cmte_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
entity_tp character varying(3),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_83 OWNER TO fec;
--
-- Name: nml_form_9; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_9 (
form_tp character varying(8),
cmte_id character varying(9),
ind_org_corp_nm character varying(200),
ind_org_corp_st1 character varying(34),
ind_org_corp_st2 character varying(34),
ind_org_corp_city character varying(30),
ind_org_corp_st character varying(2),
ind_org_corp_zip character varying(9),
addr_chg_flg character varying(1),
ind_org_corp_emp character varying(38),
ind_org_corp_occup character varying(38),
beg_cvg_dt timestamp without time zone,
end_cvg_dt timestamp without time zone,
pub_distrib_dt timestamp without time zone,
qual_nonprofit_flg character varying(18),
segr_bank_acct_flg character varying(1),
ind_custod_nm character varying(90),
ind_custod_st1 character varying(34),
ind_custod_st2 character varying(34),
ind_custod_city character varying(30),
ind_custod_st character varying(2),
ind_custod_zip character varying(9),
ind_custod_emp character varying(38),
ind_custod_occup character varying(38),
ttl_dons_this_stmt numeric(14,2),
ttl_disb_this_stmt numeric(14,2),
filer_sign_nm character varying(90),
filer_sign_dt timestamp without time zone,
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp_desc character varying(90),
ind_org_corp_st_desc character varying(20),
addr_chg_flg_desc character varying(20),
qual_nonprofit_flg_desc character varying(40),
segr_bank_acct_flg_desc character varying(30),
ind_custod_st_desc character varying(20),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
amndt_ind character varying(1),
comm_title character varying(40),
receipt_dt timestamp without time zone,
file_num numeric(7,0),
rpt_yr numeric(4,0),
prev_file_num numeric(7,0),
mst_rct_file_num numeric(7,0),
rpt_tp character varying(3),
entity_tp character varying(3),
filer_cd character varying(3),
filer_cd_desc character varying(20),
indv_l_nm character varying(30),
indv_f_nm character varying(20),
indv_m_nm character varying(20),
indv_prefix character varying(10),
indv_suffix character varying(10),
cust_l_nm character varying(30),
cust_f_nm character varying(20),
cust_m_nm character varying(20),
cust_prefix character varying(10),
cust_suffix character varying(10),
filer_l_nm character varying(30),
filer_f_nm character varying(20),
filer_m_nm character varying(20),
filer_prefix character varying(10),
filer_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_9 OWNER TO fec;
--
-- Name: nml_form_91; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_91 (
form_tp character varying(8),
filer_cmte_id character varying(9),
shr_ex_ctl_ind_nm character varying(90),
shr_ex_ctl_street1 character varying(34),
shr_ex_ctl_street2 character varying(34),
shr_ex_ctl_city character varying(30),
shr_ex_ctl_st character varying(2),
shr_ex_ctl_zip character varying(9),
shr_ex_ctl_employ character varying(38),
shr_ex_ctl_occup character varying(38),
amndt_ind character varying(1),
tran_id character varying(32),
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp_desc character varying(90),
shr_ex_ctl_st_desc character varying(20),
amndt_ind_desc character varying(15),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
receipt_dt timestamp without time zone,
link_id numeric(19,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
shr_ex_ctl_l_nm character varying(30),
shr_ex_ctl_f_nm character varying(20),
shr_ex_ctl_m_nm character varying(20),
shr_ex_ctl_prefix character varying(10),
shr_ex_ctl_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_91 OWNER TO fec;
--
-- Name: nml_form_94; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_94 (
form_tp character varying(8),
filer_cmte_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_st character varying(2),
cand_office_district character varying(2),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
amndt_ind character varying(1),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp_desc character varying(90),
cand_office_desc character varying(20),
cand_office_st_desc character varying(20),
election_tp_desc character varying(20),
amndt_ind_desc character varying(15),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
receipt_dt timestamp without time zone,
link_id numeric(19,0),
file_num numeric(7,0),
sb_link_id numeric(19,0),
orig_sub_id numeric(19,0),
cand_l_nm character varying(30),
cand_f_nm character varying(20),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_94 OWNER TO fec;
--
-- Name: nml_form_99_misc; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_99_misc (
sub_id numeric(19,0) NOT NULL,
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_st1 character varying(34),
cmte_st2 character varying(34),
cmte_city character varying(30),
cmte_st character varying(2),
cmte_zip character varying(9),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
text_field character varying(4000),
to_from_ind character varying(1),
to_from_ind_desc character varying(90),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
text_cd character varying(3),
text_cd_desc character varying(40),
file_num numeric(7,0),
rpt_yr numeric(4,0),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_99_misc OWNER TO fec;
--
-- Name: nml_form_rfai; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_form_rfai (
sub_id numeric(19,0) NOT NULL,
id character varying(9),
request_tp character varying(3),
request_tp_desc character varying(65),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rfai_dt timestamp without time zone,
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
analyst_id character varying(3),
begin_image_num character varying(18),
end_image_num character varying(18),
chg_del_id numeric(19,0),
file_num numeric(7,0),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
rpt_yr numeric(4,0),
response_due_dt timestamp without time zone,
response_dt timestamp without time zone,
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_form_rfai OWNER TO fec;
--
-- Name: nml_sched_a; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_a (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
entity_tp character varying(3),
entity_tp_desc character varying(50),
contbr_id character varying(9),
contbr_nm character varying(200),
contbr_nm_first character varying(38),
contbr_nm_last character varying(38),
contbr_st1 character varying(34),
contbr_st2 character varying(34),
contbr_city character varying(30),
contbr_st character varying(2),
contbr_zip character varying(9),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_yr character varying(4),
election_tp_desc character varying(20),
contbr_employer character varying(38),
contbr_occupation character varying(38),
contb_aggregate_ytd numeric(14,2),
contb_receipt_dt timestamp without time zone,
contb_receipt_amt numeric(14,2),
receipt_tp character varying(3),
receipt_tp_desc character varying(90),
receipt_desc character varying(100),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
national_cmte_nonfed_acct character varying(9),
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(3),
rpt_pgi_desc character varying(10),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
increased_limit character varying(1),
file_num numeric(7,0),
donor_cmte_nm character varying(200),
orig_sub_id numeric(19,0),
contbr_m_nm character varying(20),
contbr_prefix character varying(10),
contbr_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_a OWNER TO fec;
--
-- Name: nml_sched_a_daily; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_a_daily (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
entity_tp character varying(3),
entity_tp_desc character varying(50),
contbr_id character varying(9),
contbr_nm character varying(200),
contbr_nm_first character varying(38),
contbr_nm_last character varying(38),
contbr_st1 character varying(34),
contbr_st2 character varying(34),
contbr_city character varying(30),
contbr_st character varying(2),
contbr_zip character varying(9),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_yr character varying(4),
election_tp_desc character varying(20),
contbr_employer character varying(38),
contbr_occupation character varying(38),
contb_aggregate_ytd numeric(14,2),
contb_receipt_dt timestamp without time zone,
contb_receipt_amt numeric(14,2),
receipt_tp character varying(3),
receipt_tp_desc character varying(90),
receipt_desc character varying(100),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
national_cmte_nonfed_acct character varying(9),
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(3),
rpt_pgi_desc character varying(10),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
increased_limit character varying(1),
file_num numeric(7,0),
donor_cmte_nm character varying(200),
orig_sub_id numeric(19,0),
contbr_m_nm character varying(20),
contbr_prefix character varying(10),
contbr_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_a_daily OWNER TO fec;
--
-- Name: nml_sched_b; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_b (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
recipient_cmte_id character varying(9),
recipient_nm character varying(200),
recipient_st1 character varying(34),
recipient_st2 character varying(34),
recipient_city character varying(30),
recipient_st character varying(2),
recipient_zip character varying(9),
disb_tp character varying(3),
disb_tp_desc character varying(90),
disb_desc character varying(100),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_tp_year character varying(4),
election_tp_desc character varying(20),
disb_dt timestamp without time zone,
disb_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
memo_cd character varying(1),
memo_text character varying(100),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
national_cmte_nonfed_acct character varying(9),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
record_num character varying(10),
rpt_pgi character varying(3),
rpt_pgi_desc character varying(10),
receipt_dt timestamp without time zone,
memo_cd_desc character varying(50),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
ref_disp_excess_flg character varying(1),
catg_cd character varying(3),
catg_cd_desc character varying(40),
comm_dt timestamp without time zone,
file_num numeric(7,0),
payee_employer character varying(38),
payee_occupation character varying(38),
benef_cmte_nm character varying(200),
orig_sub_id numeric(19,0),
semi_an_bundled_refund numeric(14,2),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_b OWNER TO fec;
--
-- Name: nml_sched_b_daily; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_b_daily (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
recipient_cmte_id character varying(9),
recipient_nm character varying(200),
recipient_st1 character varying(34),
recipient_st2 character varying(34),
recipient_city character varying(30),
recipient_st character varying(2),
recipient_zip character varying(9),
disb_tp character varying(3),
disb_tp_desc character varying(90),
disb_desc character varying(100),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_tp_year character varying(4),
election_tp_desc character varying(20),
disb_dt timestamp without time zone,
disb_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
memo_cd character varying(1),
memo_text character varying(100),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
national_cmte_nonfed_acct character varying(9),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
record_num character varying(10),
rpt_pgi character varying(3),
rpt_pgi_desc character varying(10),
receipt_dt timestamp without time zone,
memo_cd_desc character varying(50),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
ref_disp_excess_flg character varying(1),
catg_cd character varying(3),
catg_cd_desc character varying(40),
comm_dt timestamp without time zone,
file_num numeric(7,0),
payee_employer character varying(38),
payee_occupation character varying(38),
benef_cmte_nm character varying(200),
orig_sub_id numeric(19,0),
semi_an_bundled_refund numeric(14,2),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_b_daily OWNER TO fec;
--
-- Name: nml_sched_c; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_c (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
cmte_nm character varying(200),
loan_src_nm character varying(200),
loan_src_st1 character varying(34),
loan_src_st2 character varying(34),
loan_src_city character varying(30),
loan_src_st character varying(2),
loan_src_zip character varying(9),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
fec_election_tp_year character varying(4),
election_tp_desc character varying(20),
orig_loan_amt numeric(14,2),
pymt_to_dt numeric(14,2),
loan_bal numeric(14,2),
incurred_dt timestamp without time zone,
due_dt_terms character varying(15),
interest_rate_terms character varying(15),
secured_ind character varying(1),
fec_cmte_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_state_desc character varying(20),
cand_office_district character varying(2),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
sched_a_line_num character varying(3),
file_num numeric(7,0),
pers_fund_yes_no character varying(1),
memo_cd character varying(1),
memo_text character varying(100),
orig_sub_id numeric(19,0),
loan_src_l_nm character varying(30),
loan_src_f_nm character varying(20),
loan_src_m_nm character varying(20),
loan_src_prefix character varying(10),
loan_src_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_c OWNER TO fec;
--
-- Name: nml_sched_c1; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_c1 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
back_ref_tran_id character varying(32),
entity_tp character varying(3),
entity_tp_desc character varying(50),
loan_src_nm character varying(200),
loan_src_st1 character varying(34),
loan_src_st2 character varying(34),
loan_src_city character varying(30),
loan_src_st character varying(2),
loan_src_zip character varying(9),
loan_amt numeric(14,2),
interest_rate_pct character varying(15),
incurred_dt timestamp without time zone,
due_dt character varying(15),
loan_restructured_flg character varying(1),
orig_loan_dt timestamp without time zone,
credit_amt_this_draw numeric(14,2),
ttl_bal numeric(14,2),
other_liable_pty_flg character varying(1),
collateral_flg character varying(1),
collateral_desc character varying(100),
collateral_value numeric(14,2),
perfected_interest_flg character varying(1),
future_income_flg character varying(1),
future_income_desc character varying(100),
future_income_est_value numeric(14,2),
depository_acct_est_dt timestamp without time zone,
acct_loc_nm character varying(90),
acct_loc_st1 character varying(34),
acct_loc_st2 character varying(34),
acct_loc_city character varying(30),
acct_loc_st character varying(2),
acct_loc_zip character varying(9),
depository_acct_auth_dt timestamp without time zone,
loan_basis_desc character varying(100),
tres_sign_nm character varying(90),
tres_sign_dt timestamp without time zone,
auth_sign_nm character varying(90),
auth_rep_title character varying(20),
auth_sign_dt timestamp without time zone,
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
file_num numeric(7,0),
tran_id character varying(32),
orig_sub_id numeric(19,0),
tres_l_nm character varying(30),
tres_f_nm character varying(20),
tres_m_nm character varying(20),
tres_prefix character varying(10),
tres_suffix character varying(10),
auth_sign_l_nm character varying(30),
auth_sign_f_nm character varying(20),
auth_sign_m_nm character varying(20),
auth_sign_prefix character varying(10),
auth_sign_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_c1 OWNER TO fec;
--
-- Name: nml_sched_c2; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_c2 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
back_ref_tran_id character varying(32),
guar_endr_nm character varying(90),
guar_endr_st1 character varying(34),
guar_endr_st2 character varying(34),
guar_endr_city character varying(30),
guar_endr_st character varying(2),
guar_endr_zip character varying(9),
guar_endr_employer character varying(38),
guar_endr_occupation character varying(38),
amt_guaranteed_outstg numeric(14,2),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
file_num numeric(7,0),
tran_id character varying(32),
orig_sub_id numeric(19,0),
guar_endr_l_nm character varying(30),
guar_endr_f_nm character varying(20),
guar_endr_m_nm character varying(20),
guar_endr_prefix character varying(10),
guar_endr_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_c2 OWNER TO fec;
--
-- Name: nml_sched_d; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_d (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
entity_tp character varying(3),
entity_tp_desc character varying(50),
cred_dbtr_id character varying(9),
cred_dbtr_nm character varying(200),
cred_dbtr_st1 character varying(34),
cred_dbtr_st2 character varying(34),
cred_dbtr_city character varying(30),
cred_dbtr_st character varying(2),
cred_dbtr_zip character varying(9),
nature_debt_purpose character varying(100),
outstg_bal_bop numeric(14,2),
amt_incurred_per numeric(14,2),
pymt_per numeric(14,2),
outstg_bal_cop numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
receipt_dt timestamp without time zone,
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
cred_dbtr_l_nm character varying(30),
cred_dbtr_f_nm character varying(20),
cred_dbtr_m_nm character varying(20),
cred_dbtr_prefix character varying(10),
cred_dbtr_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now(),
creditor_debtor_name_text tsvector
);
ALTER TABLE nml_sched_d OWNER TO fec;
--
-- Name: nml_sched_e; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_e (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
entity_tp character varying(3),
entity_tp_desc character varying(50),
pye_nm character varying(200),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
exp_tp character varying(3),
exp_tp_desc character varying(90),
exp_desc character varying(100),
exp_dt timestamp without time zone,
exp_amt numeric(14,2),
s_o_ind character varying(3),
s_o_ind_desc character varying(50),
s_o_cand_id character varying(9),
s_o_cand_nm character varying(90),
s_o_cand_nm_first character varying(38),
s_o_cand_nm_last character varying(38),
s_o_cand_office character varying(1),
s_o_cand_office_desc character varying(20),
s_o_cand_office_st character varying(2),
s_o_cand_office_st_desc character varying(20),
s_o_cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
indt_sign_nm character varying(90),
indt_sign_dt timestamp without time zone,
notary_sign_nm character varying(90),
notary_sign_dt timestamp without time zone,
notary_commission_exprtn_dt timestamp without time zone,
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
receipt_dt timestamp without time zone,
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(1),
rpt_pgi_desc character varying(10),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
election_tp character varying(5),
fec_election_tp_desc character varying(20),
catg_cd character varying(3),
cal_ytd_ofc_sought numeric(14,2),
catg_cd_desc character varying(40),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
s_0_cand_m_nm character varying(20),
s_0_cand_prefix character varying(10),
s_0_cand_suffix character varying(10),
filer_l_nm character varying(30),
filer_f_nm character varying(20),
filer_m_nm character varying(20),
filer_prefix character varying(10),
filer_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
dissem_dt timestamp without time zone,
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_e OWNER TO fec;
--
-- Name: nml_sched_f; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_f (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
cmte_id character varying(9),
cmte_nm character varying(200),
cmte_desg_coord_exp_ind character varying(1),
desg_cmte_id character varying(9),
desg_cmte_nm character varying(200),
subord_cmte_id character varying(9),
subord_cmte_nm character varying(200),
subord_cmte_st1 character varying(34),
subord_cmte_st2 character varying(34),
subord_cmte_city character varying(30),
subord_cmte_st character varying(2),
subord_cmte_zip character varying(9),
entity_tp character varying(3),
entity_tp_desc character varying(50),
pye_nm character varying(200),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
aggregate_gen_election_exp numeric(14,2),
exp_tp character varying(3),
exp_tp_desc character varying(90),
exp_purpose_desc character varying(100),
exp_dt timestamp without time zone,
exp_amt numeric(14,2),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
back_ref_tran_id character varying(32),
back_ref_sched_nm character varying(8),
receipt_dt timestamp without time zone,
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
rpt_pgi character varying(1),
rpt_pgi_desc character varying(10),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
mst_rct_rec_flg character varying(1),
unlimited_spending_flg character varying(1),
catg_cd character varying(3),
unlimited_spending_flg_desc character varying(40),
catg_cd_desc character varying(40),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
cand_m_nm character varying(20),
cand_prefix character varying(10),
cand_suffix character varying(10),
form_tp_cd character varying(8),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_f OWNER TO fec;
--
-- Name: nml_sched_h1; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_h1 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
np_fixed_fed_pct numeric(7,4),
hsp_min_fed_pct numeric(7,4),
hsp_est_fed_dir_cand_supp_pct numeric(7,4),
hsp_est_nonfed_cand_supp_pct numeric(7,4),
hsp_actl_fed_dir_cand_supp_amt numeric(14,2),
hsp_actl_nonfed_cand_supp_amt numeric(14,2),
hsp_actl_fed_dir_cand_supp_pct numeric(7,4),
ssf_fed_est_dir_cand_supp_pct numeric(7,4),
ssf_nfed_est_dir_cand_supp_pct numeric(7,4),
ssf_actl_fed_dir_cand_supp_amt numeric(14,2),
ssf_actl_nonfed_cand_supp_amt numeric(14,2),
ssf_actl_fed_dir_cand_supp_pct numeric(7,4),
president_ind numeric(1,0),
us_senate_ind numeric(1,0),
us_congress_ind numeric(1,0),
subttl_fed numeric(1,0),
governor_ind numeric(1,0),
other_st_offices_ind numeric(1,0),
st_senate_ind numeric(1,0),
st_rep_ind numeric(1,0),
local_cand_ind numeric(1,0),
extra_non_fed_point_ind numeric(1,0),
subttl_non_fed numeric(2,0),
ttl_fed_and_nonfed numeric(2,0),
fed_alloctn numeric(5,0),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
record_num character varying(10),
receipt_dt timestamp without time zone,
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
st_loc_pres_only character varying(1),
st_loc_pres_sen character varying(1),
st_loc_sen_only character varying(1),
st_loc_nonpres_nonsen character varying(1),
flat_min_fed_pct character varying(1),
fed_pct numeric(5,0),
non_fed_pct numeric(5,0),
admin_ratio_chk character varying(1),
gen_voter_drive_chk character varying(1),
pub_comm_ref_pty_chk character varying(1),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_h1 OWNER TO fec;
--
-- Name: nml_sched_h2; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_h2 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
evt_activity_nm character varying(90),
fndsg_acty_flg character varying(1),
exempt_acty_flg character varying(1),
direct_cand_support_acty_flg character varying(1),
ratio_cd character varying(1),
ratio_cd_desc character varying(30),
fed_pct_amt numeric(7,4),
nonfed_pct_amt numeric(7,4),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
record_num character varying(10),
receipt_dt timestamp without time zone,
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_h2 OWNER TO fec;
--
-- Name: nml_sched_h3; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_h3 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
back_ref_tran_id character varying(32),
acct_nm character varying(90),
evt_nm character varying(90),
evt_tp character varying(2),
event_tp_desc character varying(50),
tranf_dt timestamp without time zone,
tranf_amt numeric(14,2),
ttl_tranf_amt numeric(14,2),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_h3 OWNER TO fec;
--
-- Name: nml_sched_h4; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_h4 (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
filer_cmte_nm character varying(200),
entity_tp character varying(3),
entity_tp_desc character varying(30),
pye_nm character varying(200),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
evt_purpose_nm character varying(100),
evt_purpose_desc character varying(38),
evt_purpose_dt timestamp without time zone,
ttl_amt_disb numeric(14,2),
evt_purpose_category_tp character varying(3),
evt_purpose_category_tp_desc character varying(30),
fed_share numeric(14,2),
nonfed_share numeric(14,2),
admin_voter_drive_acty_ind character varying(1),
fndrsg_acty_ind character varying(1),
exempt_acty_ind character varying(1),
direct_cand_supp_acty_ind character varying(1),
evt_amt_ytd numeric(14,2),
add_desc character varying(100),
cand_id character varying(9),
cand_nm character varying(90),
cand_nm_first character varying(38),
cand_nm_last character varying(38),
cand_office character varying(1),
cand_office_desc character varying(20),
cand_office_st character varying(2),
cand_office_st_desc character varying(20),
cand_office_district character varying(2),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
amndt_ind character varying(1),
amndt_ind_desc character varying(15),
tran_id character varying(32),
memo_cd character varying(1),
memo_cd_desc character varying(50),
memo_text character varying(100),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
record_num character varying(10),
receipt_dt timestamp without time zone,
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
admin_acty_ind character varying(1),
gen_voter_drive_acty_ind character varying(1),
catg_cd character varying(3),
disb_tp character varying(3),
catg_cd_desc character varying(40),
disb_tp_desc character varying(90),
pub_comm_ref_pty_chk character varying(1),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_h4 OWNER TO fec;
--
-- Name: nml_sched_h5; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_h5 (
form_tp character varying(8),
filer_cmte_id character varying(9),
acct_nm character varying(90),
tranf_dt timestamp without time zone,
ttl_tranf_amt_voter_reg numeric(14,2),
ttl_tranf_voter_id numeric(14,2),
ttl_tranf_gotv numeric(14,2),
ttl_tranf_gen_campgn_actvy numeric(14,2),
ttl_tranf_amt numeric(14,2),
amndt_ind character varying(1),
tran_id character varying(32),
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
form_tp_desc character varying(90),
filer_cmte_nm character varying(200),
amndt_ind_desc character varying(15),
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_h5 OWNER TO fec;
--
-- Name: nml_sched_h6; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_h6 (
form_tp character varying(8),
filer_cmte_id character varying(9),
entity_tp character varying(3),
pye_nm character varying(200),
pye_st1 character varying(34),
pye_st2 character varying(34),
pye_city character varying(30),
pye_st character varying(2),
pye_zip character varying(9),
catg_cd character varying(3),
disb_purpose character varying(3),
disb_purpose_cat character varying(100),
disb_dt timestamp without time zone,
ttl_amt_disb numeric(14,2),
fed_share numeric(14,2),
levin_share numeric(14,2),
voter_reg_yn_flg character varying(1),
voter_id_yn_flg character varying(1),
gotv_yn_flg character varying(1),
gen_campgn_yn_flg character varying(1),
evt_amt_ytd numeric(14,2),
add_desc character varying(100),
fec_committee_id character varying(9),
cand_id character varying(9),
cand_nm character varying(90),
cand_office character varying(1),
cand_office_st character varying(2),
cand_office_district numeric(2,0),
conduit_cmte_id character varying(9),
conduit_cmte_nm character varying(200),
conduit_cmte_st1 character varying(34),
conduit_cmte_st2 character varying(34),
conduit_cmte_city character varying(30),
conduit_cmte_st character varying(2),
conduit_cmte_zip character varying(9),
amndt_ind character varying(1),
tran_id character varying(32),
memo_cd character varying(1),
memo_text character varying(100),
back_ref_tran_id character varying(32),
back_ref_sched_id character varying(8),
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
image_num character varying(18),
filer_cmte_nm character varying(90),
amndt_ind_desc character varying(15),
record_num character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
pye_st_desc character varying(20),
catg_cd_desc character varying(40),
voter_reg_yn_flg_desc character varying(40),
voter_id_yn_flg_desc character varying(40),
gotv_yn_flg_desc character varying(40),
gen_campgn_yn_flg_desc character varying(40),
cand_office_st_desc character varying(20),
conduit_cmte_st_desc character varying(20),
memo_cd_desc character varying(50),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
payee_l_nm character varying(30),
payee_f_nm character varying(20),
payee_m_nm character varying(20),
payee_prefix character varying(10),
payee_suffix character varying(10),
rpt_yr numeric(4,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_h6 OWNER TO fec;
--
-- Name: nml_sched_i; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_i (
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
begin_image_num character varying(18),
end_image_num character varying(18),
form_tp character varying(8),
form_tp_desc character varying(90),
filer_cmte_id character varying(9),
filer_cmte_nm character varying(90),
acct_num character varying(16),
acct_nm character varying(90),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
ttl_receipts_per numeric(14,2),
tranf_to_fed_alloctn_per numeric(14,2),
tranf_to_st_local_pty_per numeric(14,2),
direct_st_local_cand_supp_per numeric(14,2),
other_disb_per numeric(14,2),
ttl_disb_per numeric(14,2),
coh_bop numeric(14,2),
receipts_per numeric(14,2),
subttl_per numeric(14,2),
disb_per numeric(14,2),
coh_cop numeric(14,2),
ttl_reciepts_ytd numeric(14,2),
tranf_to_fed_alloctn_ytd numeric(14,2),
tranf_to_st_local_pty_ytd numeric(14,2),
direct_st_local_cand_supp_ytd numeric(14,2),
other_disb_ytd numeric(14,2),
ttl_disb_ytd numeric(14,2),
coh_boy numeric(14,2),
receipts_ytd numeric(14,2),
subttl_ytd numeric(14,2),
disb_ytd numeric(14,2),
coh_coy numeric(14,2),
amndt_ind character varying(32),
amndt_ind_desc character varying(15),
other_acct_num character varying(9),
tran_id character varying(32),
receipt_dt timestamp without time zone,
rpt_yr numeric(4,0),
rpt_pgi character varying(1),
rpt_pgi_desc character varying(10),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
file_num numeric(7,0),
orig_sub_id numeric(19,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_i OWNER TO fec;
--
-- Name: nml_sched_l; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE nml_sched_l (
form_tp character varying(8),
filer_cmte_id character varying(9),
acct_nm character varying(90),
cvg_start_dt timestamp without time zone,
cvg_end_dt timestamp without time zone,
item_receipts_per_pers numeric(14,2),
unitem_receipts_per_pers numeric(14,2),
ttl_receipts_per_pers numeric(14,2),
other_receipts_per numeric(14,2),
ttl_receipts_per numeric(14,2),
voter_reg_amt_per numeric(14,2),
voter_id_amt_per numeric(14,2),
gotv_amt_per numeric(14,2),
generic_campaign_amt_per numeric(14,2),
ttl_disb_sub_per numeric(14,2),
other_disb_per numeric(14,2),
ttl_disb_per numeric(14,2),
coh_bop numeric(14,2),
receipts_per numeric(14,2),
subttl_per numeric(14,2),
disb_per numeric(14,2),
item_receipts_ytd_pers numeric(14,2),
unitem_receipts_ytd_pers numeric(14,2),
ttl_reciepts_ytd_pers numeric(14,2),
other_receipts_ytd numeric(14,2),
ttl_receipts_ytd numeric(14,2),
voter_reg_amt_ytd numeric(14,2),
voter_id_amt_ytd numeric(14,2),
gotv_amt_ytd numeric(14,2),
generic_campaign_amt_ytd numeric(14,2),
ttl_disb_ytd_sub numeric(14,2),
other_disb_ytd numeric(14,2),
ttl_disb_ytd numeric(14,2),
coh_boy numeric(14,2),
receipts_ytd numeric(14,2),
subttl_ytd numeric(14,2),
disb_ytd numeric(14,2),
coh_coy numeric(14,2),
tran_id character varying(32),
sub_id numeric(19,0) NOT NULL,
link_id numeric(19,0),
line_num character varying(12),
begin_image_num character varying(18),
end_image_num character varying(18),
filer_cmte_nm character varying(90),
amndt_ind_desc character varying(15),
rpt_tp character varying(3),
rpt_tp_desc character varying(30),
receipt_dt timestamp without time zone,
image_tp character varying(10),
load_status numeric(1,0),
last_update_dt timestamp without time zone,
delete_ind numeric(1,0),
form_tp_desc character varying(90),
amndt_ind character varying(1),
other_acct_num character varying(9),
rpt_yr numeric(4,0),
file_num numeric(7,0),
coh_cop numeric(14,2),
orig_sub_id numeric(19,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE nml_sched_l OWNER TO fec;
|
<reponame>HighgoSoftware/orc_fdw<filename>sql/joins.sql<gh_stars>1-10
/*-------------------------------------------------------------------------
*
* select.sql
* Test select statements
*
* REQUIRES:
* ORC_FDW_DIR variable to be set in the shell which is initiating
* the regression.
*
* 2020, <NAME>.
*
* Copyright (c) 2020, Highgo Software Inc.
*
* IDENTIFICATION
* sql/select.sql
*
*-------------------------------------------------------------------------
*/
\set orc_sample_dir `echo ${ORC_FDW_DIR}/sample/data`
/* Create extension */
CREATE EXTENSION orc_fdw;
/* Create server */
CREATE SERVER orc_srv FOREIGN DATA WRAPPER orc_fdw;
/* Import all files with .orc extension */
IMPORT
FOREIGN SCHEMA :"orc_sample_dir"
FROM SERVER orc_srv
INTO public;
/* myfile - Let's try joins in different ways */
SELECT *
FROM myfile mf1 INNER JOIN myfile mf2
ON mf1.x = mf2.x
LIMIT 5;
SELECT mf1.x
, mf2.y
FROM myfile mf1 INNER JOIN myfile mf2
ON mf1.x = mf2.y
LIMIT 5;
/* Cross join */
SELECT *
FROM myfile mf1, myfile mf2
LIMIT 50;
/* Outer joins */
SELECT *
FROM myfile mf1 LEFT OUTER JOIN myfile mf2
ON mf1.x = mf2.x
LIMIT 10;
/* Sub-query */
SELECT mf1.x
, mf1.y
FROM myfile mf1
WHERE mf1.x IN
(
SELECT mf2.x
FROM myfile mf2
WHERE mf2.x < 10
)
LIMIT 30;
SELECT mf1.x
, mf1.y
FROM myfile mf1
WHERE mf1.x IN
(
SELECT mf2.x
FROM myfile mf2
WHERE mf2.x = mf1.x
)
LIMIT 30;
/* Cleanup */
DROP EXTENSION orc_fdw CASCADE;
|
<reponame>vulcanize/new_oasis_watcher
CREATE TABLE oasis.log_take (
db_id SERIAL,
vulcanize_log_id INTEGER NOT NULL UNIQUE,
id INTEGER NOT NULL,
pair CHARACTER VARYING(66),
guy CHARACTER VARYING(66),
gem CHARACTER VARYING(66),
lot DECIMAL,
gal CHARACTER VARYING(66),
pie CHARACTER VARYING(66),
bid DECIMAL,
block INTEGER NOT NULL,
time TIMESTAMP WITH TIME ZONE NOT NULL,
tx CHARACTER VARYING(66) NOT NULL,
CONSTRAINT log_index_fk FOREIGN KEY (vulcanize_log_id)
REFERENCES logs (id)
ON DELETE CASCADE
);
CREATE INDEX log_take_id_index
ON oasis.log_take (id);
CREATE INDEX log_take_pair_index
ON oasis.log_take (pair);
CREATE INDEX log_take_gem_index
ON oasis.log_take (gem);
CREATE INDEX log_take_pie_index
ON oasis.log_take (pie);
CREATE INDEX log_take_guy_index
ON oasis.log_take (guy);
CREATE INDEX log_take_gal_index
ON oasis.log_take (gal);
|
-- phpMyAdmin SQL Dump
-- version 4.3.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 21, 2015 at 12:49 AM
-- Server version: 5.5.41-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.7
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: `hms`
--
-- --------------------------------------------------------
--
-- Table structure for table `attendence`
--
CREATE TABLE IF NOT EXISTS `attendence` (
`serial` int(11) NOT NULL,
`userId` varchar(10) NOT NULL,
`date` date NOT NULL,
`isAbsence` varchar(3) NOT NULL,
`isLeave` varchar(3) NOT NULL,
`remark` varchar(100) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `attendence`
--
INSERT INTO `attendence` (`serial`, `userId`, `date`, `isAbsence`, `isLeave`, `remark`) VALUES
(13, 'U008', '2015-02-27', 'No', 'No', 'Self'),
(14, 'U009', '2015-02-27', 'Yes', 'No', 'tte'),
(15, 'U009', '2015-04-17', 'No', 'No', 'Self'),
(16, 'U009', '2015-04-18', 'No', 'No', 'Self');
-- --------------------------------------------------------
--
-- Table structure for table `auto_id`
--
CREATE TABLE IF NOT EXISTS `auto_id` (
`serial` int(11) NOT NULL,
`prefix` varchar(10) NOT NULL,
`number` int(11) NOT NULL,
`description` varchar(20) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `auto_id`
--
INSERT INTO `auto_id` (`serial`, `prefix`, `number`, `description`) VALUES
(1, 'UG', 1, 'User Group Id'),
(2, 'U', 12, 'User Id'),
(3, 'EMP', 5, 'Employee Id'),
(4, 'BL', 6, 'Block Id'),
(5, 'RM', 7, 'Room Number'),
(6, 'BIL', 10, 'Billing Id');
-- --------------------------------------------------------
--
-- Table structure for table `billing`
--
CREATE TABLE IF NOT EXISTS `billing` (
`billId` varchar(10) NOT NULL,
`type` varchar(50) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`billTo` varchar(80) NOT NULL,
`billingDate` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `billing`
--
INSERT INTO `billing` (`billId`, `type`, `amount`, `billTo`, `billingDate`) VALUES
('BIL007', 'Wifi', 300.00, 'U008', '2015-02-27'),
('BIL007', 'Tv', 60.00, 'U008', '2015-02-27'),
('BIL008', 'Wifi', 300.00, 'U009', '2015-02-27'),
('BIL009', 'Meal Cost Aprill', 2000.00, 'U009', '2015-04-17'),
('BIL009', 'Rent', 3000.00, 'U009', '2015-04-17'),
('BIL009', 'Wifi Net ', 500.00, 'U009', '2015-04-17'),
('BIL009', 'tv disc bill', 200.00, 'U009', '2015-04-17'),
('BIL009', 'Paper', 50.00, 'U009', '2015-04-17'),
('BIL009', 'Boishak Clelabration', 250.00, 'U009', '2015-04-17');
-- --------------------------------------------------------
--
-- Table structure for table `blocks`
--
CREATE TABLE IF NOT EXISTS `blocks` (
`blockId` varchar(10) NOT NULL,
`blockNo` varchar(10) NOT NULL,
`blockName` varchar(30) NOT NULL,
`description` varchar(80) NOT NULL,
`isActive` varchar(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `blocks`
--
INSERT INTO `blocks` (`blockId`, `blockNo`, `blockName`, `description`, `isActive`) VALUES
('BL004', 'BL-01', 'First Block', 'North Part Of the colony', 'Y');
-- --------------------------------------------------------
--
-- Table structure for table `cost`
--
CREATE TABLE IF NOT EXISTS `cost` (
`serial` int(11) NOT NULL,
`type` varchar(50) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`date` date NOT NULL,
`description` varchar(100) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `cost`
--
INSERT INTO `cost` (`serial`, `type`, `amount`, `date`, `description`) VALUES
(4, 'Bazar', 2000.00, '2015-02-27', '2days Meal bazar'),
(5, 'Net bill', 5000.00, '2015-04-18', 'BTCL Internet Connection Bill');
-- --------------------------------------------------------
--
-- Table structure for table `deposit`
--
CREATE TABLE IF NOT EXISTS `deposit` (
`serial` int(11) NOT NULL,
`userId` varchar(10) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`depositDate` date NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `deposit`
--
INSERT INTO `deposit` (`serial`, `userId`, `amount`, `depositDate`) VALUES
(6, 'U008', 6000.00, '2015-02-27'),
(7, 'U009', 5500.00, '2015-02-27'),
(8, 'U009', 2000.00, '2015-04-17');
-- --------------------------------------------------------
--
-- Table structure for table `employee`
--
CREATE TABLE IF NOT EXISTS `employee` (
`serial` int(11) NOT NULL,
`empId` varchar(10) NOT NULL,
`userGroupId` varchar(10) NOT NULL,
`name` varchar(50) NOT NULL,
`empType` varchar(50) NOT NULL,
`gender` varchar(10) NOT NULL,
`dob` date NOT NULL,
`cellNo` varchar(15) NOT NULL,
`address` varchar(150) NOT NULL,
`doj` date NOT NULL,
`designation` varchar(50) NOT NULL,
`salary` decimal(18,2) NOT NULL,
`blockNo` varchar(10) NOT NULL,
`isActive` varchar(1) NOT NULL,
`perPhoto` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `employee`
--
INSERT INTO `employee` (`serial`, `empId`, `userGroupId`, `name`, `empType`, `gender`, `dob`, `cellNo`, `address`, `doj`, `designation`, `salary`, `blockNo`, `isActive`, `perPhoto`) VALUES
(1, 'EMP003', 'UG003', 'Mr. <NAME>', 'Care Taker', 'Male', '1995-06-20', '01710123456', ' Dhanmoni,Dahaka-1207', '2015-02-11', 'Asistant Care', 5000.00, 'BL-01', 'Y', 'EMP003.jpg'),
(2, 'EMP004', 'UG003', 'Mst jabeda ', 'Cook', 'Female', '1994-06-14', '01720123456', ' Shukrabad-1207', '2015-01-27', 'Cook', 5000.00, 'BL-01', 'Y', 'EMP004.jpeg');
-- --------------------------------------------------------
--
-- Table structure for table `feesinfo`
--
CREATE TABLE IF NOT EXISTS `feesinfo` (
`serial` int(11) NOT NULL,
`type` varchar(80) NOT NULL,
`description` varchar(100) DEFAULT NULL,
`amount` decimal(18,2) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `feesinfo`
--
INSERT INTO `feesinfo` (`serial`, `type`, `description`, `amount`) VALUES
(9, 'Wifi', 'internet charge', 300.00),
(10, 'TV', 'Television', 60.00),
(11, 'paper', 'Paper Monthly', 30.00);
-- --------------------------------------------------------
--
-- Table structure for table `meal`
--
CREATE TABLE IF NOT EXISTS `meal` (
`serial` int(11) NOT NULL,
`userId` varchar(10) NOT NULL,
`noOfMeal` int(11) NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `meal`
--
INSERT INTO `meal` (`serial`, `userId`, `noOfMeal`, `date`) VALUES
(9, 'U009', 3, '2015-02-27'),
(10, 'U008', 2, '2015-02-27'),
(11, 'U009', 2, '2015-04-17');
-- --------------------------------------------------------
--
-- Table structure for table `mealrate`
--
CREATE TABLE IF NOT EXISTS `mealrate` (
`rate` decimal(18,2) NOT NULL,
`note` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `mealrate`
--
INSERT INTO `mealrate` (`rate`, `note`) VALUES
(80.00, 'Feb,2015');
-- --------------------------------------------------------
--
-- Table structure for table `notice`
--
CREATE TABLE IF NOT EXISTS `notice` (
`serial` int(11) NOT NULL,
`title` varchar(100) NOT NULL,
`description` varchar(500) NOT NULL,
`createdDate` datetime NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `notice`
--
INSERT INTO `notice` (`serial`, `title`, `description`, `createdDate`) VALUES
(6, '21st February Celebration', '21st February Celebration,rali,etc', '2015-02-27 15:34:40'),
(7, 'Happy New Year 2015', 'Happy New Year', '2015-02-27 15:35:25');
-- --------------------------------------------------------
--
-- Table structure for table `payment`
--
CREATE TABLE IF NOT EXISTS `payment` (
`serial` int(11) NOT NULL,
`description` varchar(100) NOT NULL,
`paymentTo` varchar(100) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`paymentBy` varchar(50) NOT NULL,
`paymentDate` date NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `payment`
--
INSERT INTO `payment` (`serial`, `description`, `paymentTo`, `amount`, `paymentBy`, `paymentDate`) VALUES
(2, 'Hostel Equipment(TV)', '<NAME>', 4000.00, 'Cash', '2015-02-27'),
(3, 'Paper Bill', '<NAME>', 500.00, 'Cash', '2015-02-27');
-- --------------------------------------------------------
--
-- Table structure for table `rooms`
--
CREATE TABLE IF NOT EXISTS `rooms` (
`roomId` varchar(10) NOT NULL,
`roomNo` varchar(20) NOT NULL,
`blockId` varchar(10) NOT NULL,
`noOfSeat` int(11) NOT NULL,
`description` varchar(50) DEFAULT NULL,
`isActive` varchar(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `rooms`
--
INSERT INTO `rooms` (`roomId`, `roomNo`, `blockId`, `noOfSeat`, `description`, `isActive`) VALUES
('RM004', 'R-01', 'BL-01', 4, 'Block-01(North)', 'Y'),
('RM006', 'R-02', 'BL-01', 2, 'Block-01(North)', 'Y');
-- --------------------------------------------------------
--
-- Table structure for table `salary`
--
CREATE TABLE IF NOT EXISTS `salary` (
`serial` int(11) NOT NULL,
`empId` varchar(10) NOT NULL,
`monthYear` varchar(30) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`addedDate` date NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `salary`
--
INSERT INTO `salary` (`serial`, `empId`, `monthYear`, `amount`, `addedDate`) VALUES
(4, 'EMP003', 'January-2015', 5000.00, '2015-02-27'),
(5, 'EMP004', 'February-2015', 5000.00, '2015-02-27');
-- --------------------------------------------------------
--
-- Table structure for table `seataloc`
--
CREATE TABLE IF NOT EXISTS `seataloc` (
`userId` varchar(10) NOT NULL,
`roomNo` varchar(10) NOT NULL,
`blockNo` varchar(30) NOT NULL,
`monthlyRent` decimal(18,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `seataloc`
--
INSERT INTO `seataloc` (`userId`, `roomNo`, `blockNo`, `monthlyRent`) VALUES
('U009', 'R-02', 'BL-01', 7500.00);
-- --------------------------------------------------------
--
-- Table structure for table `stdpayment`
--
CREATE TABLE IF NOT EXISTS `stdpayment` (
`serial` int(11) NOT NULL,
`userId` varchar(10) NOT NULL,
`paymentBy` varchar(50) NOT NULL,
`transNo` varchar(50) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`transDate` date NOT NULL,
`remark` varchar(50) NOT NULL,
`isApprove` varchar(3) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `stdpayment`
--
INSERT INTO `stdpayment` (`serial`, `userId`, `paymentBy`, `transNo`, `amount`, `transDate`, `remark`, `isApprove`) VALUES
(3, 'U008', 'DBBL', '+8801755305154', 6000.00, '2015-02-26', 'Feb,2015 Bill', 'Yes'),
(4, 'U009', 'Bank', 'DD-4556', 5500.00, '2015-02-27', 'test', 'Yes'),
(5, 'U009', 'Bkash', '0185236974', 6000.00, '2015-04-17', 'all cost rent meal,net,tv', 'Yes');
-- --------------------------------------------------------
--
-- Table structure for table `studentinfo`
--
CREATE TABLE IF NOT EXISTS `studentinfo` (
`serial` int(11) NOT NULL,
`userId` varchar(10) NOT NULL,
`userGroupId` varchar(10) NOT NULL,
`name` varchar(50) NOT NULL,
`studentId` varchar(15) NOT NULL,
`cellNo` varchar(15) NOT NULL,
`email` varchar(80) NOT NULL,
`nameOfInst` varchar(100) NOT NULL,
`program` varchar(80) NOT NULL,
`batchNo` varchar(10) NOT NULL,
`gender` varchar(8) NOT NULL,
`dob` date NOT NULL,
`bloodGroup` varchar(5) NOT NULL,
`nationality` varchar(30) NOT NULL,
`nationalId` varchar(20) DEFAULT NULL,
`passportNo` varchar(20) DEFAULT NULL,
`fatherName` varchar(50) NOT NULL,
`motherName` varchar(50) NOT NULL,
`fatherCellNo` varchar(15) NOT NULL,
`motherCellNo` varchar(15) NOT NULL,
`localGuardian` varchar(50) NOT NULL,
`localGuardianCell` varchar(15) NOT NULL,
`presentAddress` varchar(150) NOT NULL,
`parmanentAddress` varchar(150) NOT NULL,
`perPhoto` varchar(20) NOT NULL,
`admitDate` date NOT NULL,
`isActive` varchar(1) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `studentinfo`
--
INSERT INTO `studentinfo` (`serial`, `userId`, `userGroupId`, `name`, `studentId`, `cellNo`, `email`, `nameOfInst`, `program`, `batchNo`, `gender`, `dob`, `bloodGroup`, `nationality`, `nationalId`, `passportNo`, `fatherName`, `motherName`, `fatherCellNo`, `motherCellNo`, `localGuardian`, `localGuardianCell`, `presentAddress`, `parmanentAddress`, `perPhoto`, `admitDate`, `isActive`) VALUES
(8, 'U008', 'UG004', '<NAME>', '151-15-1155', '+8801755000002', '<EMAIL>', 'DIU', 'CSE', '34', 'Male', '1994-06-14', 'AB(+)', 'Bangladeshi', 'N/A', 'N/A', 'Mr. Father', '+8801722000000', 'Mst. Mother', '+8801722000005', 'Mr. Local Boy', '+8801722000001', ' Dhanmondi,Dhaka-1207 ', 'Dhanmondi,Dhaka-1207', 'U008.jpg', '2015-02-27', 'Y'),
(9, 'U009', 'UG004', '<NAME>', '151-15-1122', '+881722545660', '<EMAIL>', 'DIU', 'CSE', '34', 'Male', '2005-07-13', 'O(+)', 'Bangladeshi', 'N/A', 'N/A', 'Mr. Father', 'Mst Mother', '+8801710565958', '+8801710565958', 'Mr Local boy', '+8801710565960', ' Dhanmondi,Dhaka-1207', ' Dhanmondi,Dhaka-1207', 'U009.jpg', '2015-02-27', 'Y');
-- --------------------------------------------------------
--
-- Table structure for table `timeset`
--
CREATE TABLE IF NOT EXISTS `timeset` (
`inTime` varchar(15) NOT NULL,
`outTime` varchar(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `timeset`
--
INSERT INTO `timeset` (`inTime`, `outTime`) VALUES
('07:00 PM', '06:00 AM');
-- --------------------------------------------------------
--
-- Table structure for table `usergroup`
--
CREATE TABLE IF NOT EXISTS `usergroup` (
`serial` int(11) NOT NULL,
`id` varchar(10) NOT NULL,
`name` varchar(50) NOT NULL,
`description` varchar(100) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `usergroup`
--
INSERT INTO `usergroup` (`serial`, `id`, `name`, `description`) VALUES
(1, 'UG001', 'Admin', 'Admin group'),
(2, 'UG004', 'Student', 'Students Group'),
(4, 'UG002', 'Supervisor', 'Hostel supervisor'),
(5, 'UG003', 'Employee', 'Employe Group');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`serial` int(11) NOT NULL,
`userId` varchar(10) NOT NULL,
`userGroupId` varchar(10) NOT NULL,
`name` varchar(100) NOT NULL,
`loginId` varchar(150) NOT NULL,
`password` varchar(50) NOT NULL,
`verifyCode` varchar(10) NOT NULL,
`expireDate` date NOT NULL,
`isVerifed` varchar(1) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`serial`, `userId`, `userGroupId`, `name`, `loginId`, `password`, `verifyCode`, `expireDate`, `isVerifed`) VALUES
(1, 'U001', 'UG001', 'System Admin', 'admin', '<PASSWORD>', 'av<PASSWORD>', '2015-08-01', 'Y'),
(10, 'U008', 'UG004', '<NAME>', 'student', '<PASSWORD>', 'vhms2115', '2115-01-04', 'Y'),
(14, 'EMP003', 'UG003', 'Mr. <NAME>', 'employee', '<PASSWORD>', 'vhms2115', '2115-01-04', 'Y');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `attendence`
--
ALTER TABLE `attendence`
ADD PRIMARY KEY (`serial`), ADD UNIQUE KEY `serial` (`serial`);
--
-- Indexes for table `auto_id`
--
ALTER TABLE `auto_id`
ADD UNIQUE KEY `serial` (`serial`);
--
-- Indexes for table `blocks`
--
ALTER TABLE `blocks`
ADD PRIMARY KEY (`blockId`), ADD UNIQUE KEY `blockId` (`blockId`);
--
-- Indexes for table `cost`
--
ALTER TABLE `cost`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `deposit`
--
ALTER TABLE `deposit`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `employee`
--
ALTER TABLE `employee`
ADD PRIMARY KEY (`empId`), ADD UNIQUE KEY `serial` (`serial`), ADD UNIQUE KEY `cellNo` (`cellNo`);
--
-- Indexes for table `feesinfo`
--
ALTER TABLE `feesinfo`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `meal`
--
ALTER TABLE `meal`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `notice`
--
ALTER TABLE `notice`
ADD PRIMARY KEY (`serial`), ADD UNIQUE KEY `serial` (`serial`);
--
-- Indexes for table `payment`
--
ALTER TABLE `payment`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `rooms`
--
ALTER TABLE `rooms`
ADD PRIMARY KEY (`roomId`);
--
-- Indexes for table `salary`
--
ALTER TABLE `salary`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `seataloc`
--
ALTER TABLE `seataloc`
ADD PRIMARY KEY (`userId`);
--
-- Indexes for table `stdpayment`
--
ALTER TABLE `stdpayment`
ADD PRIMARY KEY (`serial`);
--
-- Indexes for table `studentinfo`
--
ALTER TABLE `studentinfo`
ADD PRIMARY KEY (`userId`,`serial`), ADD UNIQUE KEY `serial` (`serial`), ADD UNIQUE KEY `userId` (`userId`), ADD UNIQUE KEY `email` (`email`), ADD UNIQUE KEY `cellNo` (`cellNo`);
--
-- Indexes for table `usergroup`
--
ALTER TABLE `usergroup`
ADD UNIQUE KEY `serial` (`serial`), ADD UNIQUE KEY `id` (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`serial`), ADD UNIQUE KEY `serial` (`serial`), ADD UNIQUE KEY `serial_2` (`serial`), ADD UNIQUE KEY `serial_3` (`serial`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `attendence`
--
ALTER TABLE `attendence`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `auto_id`
--
ALTER TABLE `auto_id`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `cost`
--
ALTER TABLE `cost`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `deposit`
--
ALTER TABLE `deposit`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `employee`
--
ALTER TABLE `employee`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `feesinfo`
--
ALTER TABLE `feesinfo`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `meal`
--
ALTER TABLE `meal`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `notice`
--
ALTER TABLE `notice`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `payment`
--
ALTER TABLE `payment`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `salary`
--
ALTER TABLE `salary`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `stdpayment`
--
ALTER TABLE `stdpayment`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `studentinfo`
--
ALTER TABLE `studentinfo`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `usergroup`
--
ALTER TABLE `usergroup`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `serial` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=16;
/*!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 */;
|
# --- Created by Ebean DDL
# To stop Ebean DDL generation, remove this comment and start using Evolutions
# --- !Ups
create table category (
id bigint not null,
name varchar(255),
constraint pk_category primary key (id))
;
create table earn (
id bigint not null,
datetime timestamp,
bank_description varchar(255),
description varchar(255),
value double,
category_id bigint,
period_id bigint,
constraint pk_earn primary key (id))
;
create table expense (
id bigint not null,
datetime timestamp,
bank_description varchar(255),
description varchar(255),
value double,
category_id bigint,
period_id bigint,
constraint pk_expense primary key (id))
;
create table period (
id bigint not null,
value varchar(255),
constraint pk_period primary key (id))
;
create sequence category_seq;
create sequence earn_seq;
create sequence expense_seq;
create sequence period_seq;
alter table earn add constraint fk_earn_category_1 foreign key (category_id) references category (id) on delete restrict on update restrict;
create index ix_earn_category_1 on earn (category_id);
alter table earn add constraint fk_earn_period_2 foreign key (period_id) references period (id) on delete restrict on update restrict;
create index ix_earn_period_2 on earn (period_id);
alter table expense add constraint fk_expense_category_3 foreign key (category_id) references category (id) on delete restrict on update restrict;
create index ix_expense_category_3 on expense (category_id);
alter table expense add constraint fk_expense_period_4 foreign key (period_id) references period (id) on delete restrict on update restrict;
create index ix_expense_period_4 on expense (period_id);
# --- !Downs
SET REFERENTIAL_INTEGRITY FALSE;
drop table if exists category;
drop table if exists earn;
drop table if exists expense;
drop table if exists period;
SET REFERENTIAL_INTEGRITY TRUE;
drop sequence if exists category_seq;
drop sequence if exists earn_seq;
drop sequence if exists expense_seq;
drop sequence if exists period_seq;
|
-- Stored Procedures (Sprocs)
-- Validating Parameter Values
USE [A01-School]
GO
/* ********* SPROC Template ************
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = N'PROCEDURE' AND ROUTINE_NAME = 'SprocName')
DROP PROCEDURE SprocName
GO
CREATE PROCEDURE SprocName
-- Parameters here
AS
-- Body of procedure here
RETURN
GO
************************************** */
-- 1. Create a stored procedure called AddClub that will add a new club to the database. (No validation is required).
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = N'PROCEDURE' AND ROUTINE_NAME = 'AddClub')
DROP PROCEDURE AddClub
GO
-- sp_help Club -- Running the sp_help stored procedure will give you information about a table, sproc, etc.
CREATE PROCEDURE AddClub
-- Parameters here
@ClubId varchar(10),
@ClubName varchar(50)
AS
-- Body of procedure here
-- Should put some validation here.....
INSERT INTO Club(ClubId, ClubName)
VALUES (@ClubId, @ClubName)
RETURN
GO
-- 1.b. Modify the AddClub procedure to ensure that the club name and id are actually supplied. Use the RAISERROR() function to report that this data is required.
ALTER PROCEDURE AddClub
-- Parameters here
@ClubId varchar(10),
@ClubName varchar(50)
AS
-- Body of procedure here
IF @ClubId IS NULL OR @ClubName IS NULL
BEGIN
RAISERROR('Club ID and Name are required', 16, 1)
END
ELSE
BEGIN
INSERT INTO Club(ClubId, ClubName)
VALUES (@ClubId, @ClubName)
END
RETURN
GO
-- 2. Make a stored procedure that will find a club based on the first two or more characters of the club's ID. Call the procedure "FindStudentClubs"
-- The following stored procedure does the query, but without validation
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = N'PROCEDURE' AND ROUTINE_NAME = 'FindStudentClubs')
DROP PROCEDURE FindStudentClubs
GO
CREATE PROCEDURE FindStudentClubs
@PartialID varchar(10)
AS
-- Body of procedure here
SELECT ClubID, ClubName
FROM Club
WHERE ClubId LIKE @PartialID + '%'
RETURN
GO
EXEC FindStudentClubs NULL -- What do you predict the result will be?
EXEC FindStudentClubs '' -- What do you predict the result will be?
GO
ALTER PROCEDURE FindStudentClubs
@PartialID varchar(10)
AS
-- Body of procedure here
IF @PartialID IS NULL OR LEN(@PartialID) < 2
BEGIN -- {
RAISERROR('The partial ID must be two or more characters', 16, 1)
-- The 16 is the error number and the 1 is the severity
END -- }
SELECT ClubID, ClubName
FROM Club
WHERE ClubId LIKE @PartialID + '%'
RETURN
GO
EXEC FindStudentClubs '' -- What do you predict the result will be?
GO
-- The above change did not stop the select.
-- To fix it, we need the ELSE side of the IF validation
ALTER PROCEDURE FindStudentClubs -- Third time's the charm ;)
@PartialID varchar(10)
AS
-- Body of procedure here
IF @PartialID IS NULL OR LEN(@PartialID) < 2
BEGIN -- {
RAISERROR('The partial ID must be two or more characters', 16, 1)
-- The 16 is the error number and the 1 is the severity
END -- }
ELSE
BEGIN
SELECT ClubID, ClubName
FROM Club
WHERE ClubId LIKE @PartialID + '%'
END
RETURN
GO
EXEC FindStudentClubs '' -- What do you predict the result will be?
EXEC FindStudentClubs 'NA' -- Should give good results with no errors.
-- 3. Create a stored procedure that will change the mailing address for a student. Call it ChangeMailingAddress.
-- Make sure all the parameter values are supplied before running the UPDATE (ie: no NULLs).
-- sp_help Student
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = N'PROCEDURE' AND ROUTINE_NAME = 'ChangeMailingAddress')
DROP PROCEDURE ChangeMailingAddress
GO
CREATE PROCEDURE ChangeMailingAddress
-- Parameters here
@StudentId int,
@Street varchar(35), -- Model the type/size of parameters to match what's needed in the database tables
@City varchar(30),
@Province char(2),
@PostalCode char(6)
AS
-- Body of procedure here
-- Validate
IF (@StudentId IS NULL OR @Street IS NULL OR @City IS NULL OR @Province IS NULL or @PostalCode IS NULL)
BEGIN -- { A...
RAISERROR('All parameters require a value (NULL is not accepted)', 16, 1)
END -- ...A }
ELSE
BEGIN -- { B...
UPDATE Student
SET StreetAddress = @Street
,City = @City
,Province = @Province
,PostalCode = @PostalCode
WHERE StudentId = @StudentId
END -- ...B }
RETURN
-- 4. Create a stored procedure that allows us to make corrections to a student's name. It should take in the student ID and the corrected name (first/last) of the student. Call the stored procedure CorrectStudentName. Validate that the student exists before attempting to change the name.
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = N'PROCEDURE' AND ROUTINE_NAME = 'CorrectStudentName')
DROP PROCEDURE CorrectStudentName
GO
CREATE PROCEDURE CorrectStudentName
@StudentId int,
@FirstName varchar(25),
@LastName varchar(35)
AS
IF @StudentId IS NULL OR @FirstName IS NULL OR @LastName IS NULL
RAISERROR('All parameters are required.', 16, 1)
ELSE IF NOT EXISTS (SELECT StudentID FROM Student WHERE StudentID = @StudentId)
RAISERROR('That student id does not exist', 16, 1)
ELSE
UPDATE Student
SET FirstName = @FirstName,
LastName = @LastName
WHERE StudentID = @StudentId
RETURN
GO
-- 5. Create a stored procedure that will remove a student from a club. Call it RemoveFromClub.
-- TODO: Student Answer Here
-- Query-based Stored Procedures
-- 6. Create a stored procedure that will display all the staff and their position in the school.
-- Show the full name of the staff member and the description of their position.
-- TODO: Student Answer Here
-- 7. Display all the final course marks for a given student. Include the name and number of the course
-- along with the student's mark.
-- TODO: Student Answer Here
-- 8. Display the students that are enrolled in a given course on a given semester.
-- Display the course name and the student's full name and mark.
-- TODO: Student Answer Here
-- 9. The school is running out of money! Find out who still owes money for the courses they are enrolled in.
-- TODO: Student Answer Here
|
INSERT INTO person VALUES (1, 'eric', 18);
INSERT INTO person VALUES (2, 'woody', 18);
INSERT INTO person VALUES (3, 'william', 18);
INSERT INTO person VALUES (4, 'zeven', 18); |
<filename>design/data/corrosion_site.sql
INSERT INTO corrosion.site (id, title, vicetitle, description, vicedesc) VALUES (1, '国家科技基础条件平台', '国家材料环境腐蚀科学数据中心', 'National Material Environmental Corrosion Science Data Center', 'National Science & Technology Infrastructure'); |
<filename>src/main/resources/db/migration/mysql/V1__init_schema.sql
create database IF NOT EXISTS fileserver_boot;
/*==============================================================*/
/* Table: pub_user */
/*==============================================================*/
create table if not exists pub_user
(
id bigint not null auto_increment,
gmt_create datetime not null,
gmt_modified datetime,
version bigint not null default 0,
is_deleted tinyint not null,
ucode varchar(64),
username varchar(100) not null,
password varchar(100) not null,
salt varchar(100),
nickname varchar(100),
is_enabled tinyint,
last_login_time datetime,
primary key (id)
);
/*==============================================================*/
/* Table: file_category */
/*==============================================================*/
create table if not exists file_category
(
id bigint not null auto_increment,
gmt_create datetime not null,
gmt_modified datetime,
version bigint not null default 0,
is_deleted tinyint unsigned not null,
code varchar(32) not null,
pcode varchar(32),
pcodes varchar(256),
name varchar(100) not null,
storage_type varchar(32),
remarks varchar(500),
primary key (id),
unique key uk_file_category_code (code)
);
alter table file_category comment '文件类别表主要用在文件分类管理';
/*==============================================================*/
/* Table: file_storage */
/*==============================================================*/
create table if not exists file_storage
(
id bigint not null auto_increment,
gmt_create datetime not null,
gmt_modified datetime,
version bigint not null default 0,
is_deleted tinyint unsigned not null,
file_code varchar(64) not null,
category_code varchar(64) not null,
file_key varchar(500) not null,
description varchar(500),
original_name varchar(256) not null,
ext varchar(32) not null,
file_size bigint unsigned not null comment '单位 byte',
storage_name varchar(256) not null,
temp_expires_at datetime not null comment '单位秒',
storage_type varchar(32) not null comment 'sys db',
create_by varchar(64),
is_enabled tinyint unsigned not null default false,
primary key (id),
unique key uk_file_category_code (file_key)
);
alter table file_storage comment '文件储存表';
|
set client_encoding = 'utf-8';
set client_min_messages = warning;
create extension if not exists pgtap;
reset client_min_messages;
begin;
select plan(13);
-- Test table exists in swrs_transform schema
select has_table(
'swrs_transform', 'implied_emission_factor',
'swrs.implied_emission_factor should exist as a table'
);
-- Test table has a primary key
select col_is_pk('swrs_transform', 'implied_emission_factor', 'id', 'Column id is Primary Key');
select columns_are('swrs_transform'::name, 'implied_emission_factor'::name, array[
'id'::name,
'start_date'::name,
'end_date'::name,
'implied_emission_factor'::name,
'fuel_mapping_id'::name
]);
-- Test column attributes
select col_type_is( 'swrs_transform', 'implied_emission_factor', 'id', 'integer', 'implied_emission_factor.id column should be type integer');
select col_hasnt_default('swrs_transform', 'implied_emission_factor', 'id', 'implied_emission_factor.id column should not have a default value');
select col_type_is( 'swrs_transform', 'implied_emission_factor', 'start_date', 'date', 'implied_emission_factor.start_date column should be type date');
select col_hasnt_default('swrs_transform', 'implied_emission_factor', 'start_date', 'implied_emission_factor.start_date column should not have a default value');
select col_type_is( 'swrs_transform', 'implied_emission_factor', 'end_date', 'date', 'implied_emission_factor.end_date column should be type date');
select col_hasnt_default('swrs_transform', 'implied_emission_factor', 'end_date', 'implied_emission_factor.end_date column should not have a default value');
select col_type_is( 'swrs_transform', 'implied_emission_factor', 'implied_emission_factor', 'numeric', 'implied_emission_factor.implied_emission_factor column should be type numeric');
select col_hasnt_default('swrs_transform', 'implied_emission_factor', 'implied_emission_factor', 'implied_emission_factor.implied_emission_factor column should not have a default value');
select col_type_is( 'swrs_transform', 'implied_emission_factor', 'fuel_mapping_id', 'integer', 'implied_emission_factor.fuel_mapping_id column should be type integer');
select col_hasnt_default('swrs_transform', 'implied_emission_factor', 'fuel_mapping_id', 'implied_emission_factor.fuel_mapping_id column should not have a default value');
select * from finish();
rollback;
|
-- ALTER SCHEMA IF EXISTS globalsns RENAME TO globalsns_bk;
CREATE SCHEMA "globalsns-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" AUTHORIZATION "globalsns-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
set search_path to "globalsns-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
CREATE TABLE tenant_system_conf (
conf_key varchar(513) NOT NULL,
value text,
PRIMARY KEY (conf_key)
) ;
CREATE SEQUENCE chatroom_member_store_id_seq;
CREATE TABLE chatroom_member_store (
id bigint NOT NULL DEFAULT NEXTVAL('chatroom_member_store_id_seq'),
room_id varchar(139) NOT NULL,
jid varchar(513) NOT NULL,
state integer NOT NULL DEFAULT '0',
join_date timestamp DEFAULT NULL,
leave_date timestamp DEFAULT NULL,
join_jid varchar(513) DEFAULT NULL,
leave_jid varchar(513) DEFAULT NULL,
PRIMARY KEY (id)
) ;
CREATE SEQUENCE chatroom_store_id_seq;
CREATE TABLE chatroom_store (
id bigint NOT NULL DEFAULT NEXTVAL('chatroom_store_id_seq'),
notify_type integer DEFAULT 0 NOT NULL,
room_id varchar(139) NOT NULL,
room_name varchar(512) NOT NULL,
created_at timestamp NOT NULL,
created_by varchar(512) NOT NULL,
updated_at timestamp DEFAULT NULL,
updated_by varchar(513) NOT NULL DEFAULT '',
delete_flag integer NOT NULL DEFAULT '0',
deleted_at timestamp DEFAULT NULL,
deleted_by varchar(513) NOT NULL DEFAULT '',
parent_room_id varchar(272) NOT NULL DEFAULT '',
privacy_type integer not null default 2,
extras jsonb DEFAULT NULL,
extra1 varchar(256) NOT NULL DEFAULT '',
extra2 varchar(256) NOT NULL DEFAULT '',
extra3 varchar(256) NOT NULL DEFAULT '',
extra4 varchar(256) NOT NULL DEFAULT '',
PRIMARY KEY (id),
UNIQUE (room_id)
) ;
CREATE INDEX chatroom_store_parent_room_id_key ON chatroom_store (parent_room_id);
CREATE SEQUENCE community_member_store_id_seq;
CREATE TABLE community_member_store (
id bigint NOT NULL DEFAULT NEXTVAL('community_member_store_id_seq'),
room_id varchar(272) NOT NULL,
jid varchar(513) NOT NULL,
state integer NOT NULL DEFAULT '0',
role integer NOT NULL DEFAULT '0',
join_date timestamp DEFAULT NULL,
leave_date timestamp DEFAULT NULL,
PRIMARY KEY (id)
) ;
CREATE INDEX community_member_store_room_id_key on community_member_store(room_id,jid);
CREATE SEQUENCE community_store_id_seq;
CREATE TABLE community_store (
id bigint NOT NULL DEFAULT NEXTVAL('community_store_id_seq'),
room_id varchar(272) NOT NULL,
room_name text NOT NULL,
description text,
privacy_type integer NOT NULL DEFAULT '2',
member_entry_type integer NOT NULL DEFAULT '0',
notify_type integer DEFAULT 0 NOT NULL,
logoUrl text,
created_at timestamp NOT NULL,
created_by varchar(513) NOT NULL,
updated_at timestamp DEFAULT NULL,
updated_by varchar(513) NOT NULL DEFAULT '',
delete_flag integer NOT NULL DEFAULT '0',
deleted_at timestamp DEFAULT NULL,
deleted_by varchar(513) NOT NULL DEFAULT '',
PRIMARY KEY (id),
UNIQUE (room_id)
) ;
CREATE SEQUENCE follow_store_id_seq;
CREATE TABLE follow_store (
id bigint NOT NULL DEFAULT NEXTVAL('follow_store_id_seq'),
jid varchar(513) NOT NULL DEFAULT '',
follow_jid varchar(513) NOT NULL DEFAULT '',
status integer NOT NULL DEFAULT '0',
date timestamp DEFAULT NULL,
PRIMARY KEY (id)
) ;
CREATE SEQUENCE goodjob_store_id_seq;
CREATE TABLE goodjob_store (
id bigint NOT NULL DEFAULT NEXTVAL('goodjob_store_id_seq'),
item_id varchar(139) NOT NULL,
item_keeper_jid varchar(513) NOT NULL,
gj_jid varchar(513) NOT NULL,
date timestamp NOT NULL,
PRIMARY KEY (id)
) ;
CREATE SEQUENCE mail_body_store_id_seq;
CREATE TABLE mail_body_store (
id bigint NOT NULL DEFAULT NEXTVAL('mail_body_store_id_seq'),
item_id varchar(139) NOT NULL DEFAULT '',
jid varchar(513) NOT NULL DEFAULT '',
mail_body text,
PRIMARY KEY (id)
) ;
CREATE INDEX mail_body_store_item_id_key on mail_body_store(item_id,id);
CREATE SEQUENCE mail_cooperation_store_id_seq;
CREATE TABLE mail_cooperation_store (
id bigint NOT NULL DEFAULT NEXTVAL('mail_cooperation_store_id_seq'),
server_id bigint NOT NULL,
jid varchar(513) NOT NULL DEFAULT '',
branch_number bigint NOT NULL,
mail_address varchar(2290) NOT NULL DEFAULT '',
setting_info text,
delete_flag integer NOT NULL DEFAULT '0',
mail_cooperation_type integer NOT NULL DEFAULT '0',
PRIMARY KEY (id)
) ;
CREATE SEQUENCE mail_server_list_id_seq;
CREATE TABLE mail_server_list (
id bigint NOT NULL DEFAULT NEXTVAL('mail_server_list_id_seq'),
display_name text,
server_type integer NOT NULL DEFAULT '0',
created_at timestamp NOT NULL,
created_by varchar(513) NOT NULL DEFAULT '',
updated_at timestamp DEFAULT NULL,
updated_by varchar(513) NOT NULL DEFAULT '',
delete_flag integer NOT NULL DEFAULT '0',
deleted_at timestamp DEFAULT NULL,
deleted_by varchar(513) NOT NULL DEFAULT '',
pop_host varchar(512) NOT NULL DEFAULT '',
pop_port integer NOT NULL DEFAULT '0',
pop_auth_mode integer NOT NULL DEFAULT '0',
pop_response_timeout integer NOT NULL DEFAULT '60',
PRIMARY KEY (id)
) ;
CREATE SEQUENCE message_sendto_list_store_id_seq;
CREATE TABLE message_sendto_list_store (
id bigint NOT NULL DEFAULT NEXTVAL('message_sendto_list_store_id_seq'),
item_id varchar(139) NOT NULL,
send_to varchar(256) NOT NULL,
PRIMARY KEY (id)
) ;
CREATE SEQUENCE notification_store_id_seq;
CREATE TABLE notification_store (
id bigint NOT NULL DEFAULT NEXTVAL('notification_store_id_seq'),
notification_type integer NOT NULL,
data_type integer NOT NULL,
notification_data text NOT NULL,
jid varchar(513) NOT NULL DEFAULT '',
notified_date timestamp DEFAULT NULL,
PRIMARY KEY (id)
) ;
CREATE INDEX notification_store_jid_key on notification_store(jid,notification_type,id);
CREATE SEQUENCE publicmessage_store_id_seq;
CREATE TABLE publicmessage_store (
id bigint NOT NULL DEFAULT NEXTVAL('publicmessage_store_id_seq'),
item_id varchar(139) NOT NULL,
msgtype integer NOT NULL,
msgfrom varchar(512) NOT NULL,
msgto varchar(256) NOT NULL,
entry text,
thread_root_id varchar(139) NOT NULL DEFAULT '',
publish_nodename varchar(263) NOT NULL,
created_at timestamp NOT NULL,
reply_id varchar(139) DEFAULT NULL,
reply_to varchar(513) DEFAULT NULL,
start_date timestamp DEFAULT NULL,
due_date timestamp DEFAULT NULL,
owner varchar(513) DEFAULT NULL,
group_name text,
status integer DEFAULT NULL,
complete_date timestamp DEFAULT NULL,
priority integer DEFAULT '1',
updated_at timestamp DEFAULT NULL,
updated_by varchar(513) NOT NULL DEFAULT '',
client varchar(513) NOT NULL DEFAULT '',
show_type integer NOT NULL DEFAULT '1',
parent_item_id varchar(139) NOT NULL DEFAULT '',
delete_flag integer NOT NULL DEFAULT '0',
deleted_at timestamp DEFAULT NULL,
deleted_by varchar(1024) NOT NULL DEFAULT '',
mail_message_id varchar(128) NOT NULL DEFAULT '',
mail_in_reply_to varchar(128) NOT NULL DEFAULT '',
demand_status integer NOT NULL DEFAULT '0',
demand_date timestamp DEFAULT NULL,
quotation_message_id bigint DEFAULT NULL,
body_type integer NOT NULL DEFAULT '0',
PRIMARY KEY (id)
) ;
CREATE INDEX publicmessage_store_pitem_id_key on publicmessage_store(parent_item_id,owner,client);
CREATE INDEX publicmessage_store_item_id_key on publicmessage_store(item_id);
CREATE INDEX publicmessage_store_reply_id_key on publicmessage_store (reply_id);
CREATE TABLE publicmessage_logs (
id bigserial PRIMARY KEY,
item_id varchar(139) NOT NULL,
entry TEXT NOT NULL default '',
created_at timestamp without time zone,
created_by varchar(513) NOT NULL default '',
moved_at timestamp without time zone,
moved_by varchar(513) NOT NULL default ''
);
CREATE TABLE thread_store
(
id bigserial PRIMARY KEY,
thread_title varchar(1024) NOT NULL,
thread_root_id varchar(139) default NULL::character varying unique,
room_id varchar(513) default NULL::character varying,
created_at timestamp without time zone,
created_by varchar(513) NOT NULL default ''
);
CREATE INDEX thread_store_seq_room_id_key ON thread_store (room_id);
CREATE TABLE thread_store_log
(
id bigserial PRIMARY KEY,
thread_title varchar(1024) NOT NULL,
thread_root_id varchar(139) default NULL::character varying,
room_id varchar(513) default NULL::character varying,
created_at timestamp without time zone,
created_by varchar(513) NOT NULL default '',
moved_at timestamp without time zone
);
CREATE TABLE quotation_message_store
(
id bigserial PRIMARY KEY,
private_flag integer not null default 1,
quotation_item_id varchar(139) NOT NULL,
entry text,
created_at timestamp without time zone,
updated_at timestamp without time zone,
msgtype integer not null,
msgfrom varchar(512) not null,
msgto varchar(512) not null,
nickname text,
photo_type character varying(30) default NULL::character varying,
photo_data text,
user_name text,
affiliation text
);
CREATE TABLE read_message_date_store (
id bigint NOT NULL,
item_id varchar(139) NOT NULL,
read_user_datetimes text,
first_read_date timestamp DEFAULT NULL,
PRIMARY KEY (id),
UNIQUE (item_id)
) ;
CREATE TABLE read_message_info_store (
id bigint NOT NULL,
item_id varchar(139) NOT NULL,
read_user_ids text,
last_read_date timestamp DEFAULT NULL,
last_read_user_id bigint DEFAULT NULL,
count bigint NOT NULL DEFAULT '0',
PRIMARY KEY (id),
UNIQUE (item_id)
) ;
CREATE SEQUENCE tasknote_store_id_seq;
CREATE TABLE tasknote_store (
id bigint NOT NULL DEFAULT NEXTVAL('tasknote_store_id_seq'),
item_id varchar(139) NOT NULL,
sender_jid varchar(513) NOT NULL,
message text,
date timestamp NOT NULL,
PRIMARY KEY (id)
) ;
CREATE SEQUENCE user_profile_id_seq;
CREATE TABLE user_profile (
id integer NOT NULL DEFAULT NEXTVAL('user_profile_id_seq'),
jid varchar(513) NOT NULL DEFAULT '',
mailaddress varchar(2290) NOT NULL DEFAULT '',
password varchar(512) NOT NULL DEFAULT '',
name text,
nickname text,
presence integer DEFAULT '5',
my_memo text,
photo_type varchar(30) DEFAULT NULL,
photo_data text ,
update_time timestamp DEFAULT NULL,
delete_flg integer DEFAULT '0',
affiliation text,
notification_client_last_updated_at timestamp DEFAULT NULL,
extras jsonb DEFAULT NULL,
extra1 varchar(256) NOT NULL DEFAULT '',
extra2 varchar(256) NOT NULL DEFAULT '',
extra3 varchar(256) NOT NULL DEFAULT '',
extra4 varchar(256) NOT NULL DEFAULT '',
PRIMARY KEY (id)
) ;
CREATE INDEX user_profile_jid_key on user_profile(jid,id);
CREATE TABLE emotion_store
(
id bigserial PRIMARY KEY,
item_id varchar(139) NOT NULL,
jid varchar(513) NOT NULL,
emotion_point int NOT NULL DEFAULT 0,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
CREATE INDEX emotion_store_item_id_key ON emotion_store (item_id);
ALTER TABLE chatroom_store ADD COLUMN IF NOT EXISTS emotion_point_icon jsonb DEFAULT '{}';
ALTER TABLE community_store ADD COLUMN IF NOT EXISTS emotion_point_icon jsonb DEFAULT '{}';
CREATE TABLE note_store
(
id bigserial PRIMARY KEY,
note_title varchar(512) NOT NULL,
note_url text NOT NULL UNIQUE,
thread_root_id varchar(139) DEFAULT '',
ownjid varchar(512) NOT NULL,
codimd_uid varchar(255) NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
CREATE INDEX note_store_ownjid_index ON note_store (ownjid);
-- for questionnaire
CREATE SEQUENCE pickup_room_store_id_seq;
CREATE TABLE pickup_room_store (
id bigint DEFAULT nextval('pickup_room_store_id_seq') NOT NULL,
jid varchar(513) NOT NULL,
pickup_room_id varchar(272) NOT NULL,
room_type integer NOT NULL,
contact varchar(513) NOT NULL,
update_date timestamp NOT NULL,
PRIMARY KEY (id)
);
CREATE SEQUENCE publicmessage_questionnaire_store_id_seq;
CREATE TABLE publicmessage_questionnaire_store (
id bigint DEFAULT nextval('publicmessage_questionnaire_store_id_seq') NOT NULL,
room_type integer NOT NULL,
item_id varchar(139) NOT NULL,
input_type integer NOT NULL,
result_visible integer NOT NULL,
graph_type integer NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX publicmessage_questionnaire_store_item_id_key ON publicmessage_questionnaire_store(item_id);
CREATE SEQUENCE questionnaire_option_store_id_seq;
CREATE TABLE questionnaire_option_store (
id bigint DEFAULT nextval('questionnaire_option_store_id_seq') NOT NULL,
item_id varchar(139) NOT NULL,
option text NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX questionnaire_option_store_item_id_key ON questionnaire_option_store(item_id);
CREATE SEQUENCE questionnaire_vote_store_id_seq;
CREATE TABLE questionnaire_vote_store (
id bigint DEFAULT nextval('questionnaire_vote_store_id_seq') NOT NULL,
item_id varchar(139) NOT NULL,
option_id bigint NOT NULL,
vote_user_ids text,
count bigint DEFAULT 0 NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX questionnaire_vote_store_item_id_key ON questionnaire_vote_store(item_id);
CREATE TABLE note_account_store (
jid varchar(513) NOT NULL PRIMARY KEY,
status integer not null default 0,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
CREATE TABLE hashtag_store (
item_id varchar(139) NOT NULL,
jid varchar(513) NOT NULL,
tagname varchar(513) NOT NULL,
created_at timestamp without time zone
);
CREATE TABLE user_follow_store
(
id bigserial PRIMARY KEY,
followee varchar(513) NOT NULL,
follower varchar(513) NOT NULL,
created_at timestamp without time zone NOT NULL
);
ALTER TABLE user_follow_store ADD CONSTRAINT user_follow_uniq UNIQUE(followee,follower);
CREATE TABLE murmur_store
(
id bigserial PRIMARY KEY,
own_jid character varying(513) NOT NULL UNIQUE,
column_name text NOT NULL DEFAULT '',
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone
);
|
ALTER TABLE mythgard.card_deck ENABLE ROW LEVEL SECURITY;
-- Admin users can make any changes and read all rows
CREATE POLICY card_deck_admin_all ON mythgard.card_deck TO admin USING (true) WITH CHECK (true);
-- Non-admins can read all rows
CREATE POLICY card_deck_all_view ON mythgard.card_deck FOR SELECT USING (true);
-- Only create a card_deck for yourself
CREATE POLICY card_deck_insert_if_author
ON mythgard.card_deck
FOR INSERT
-- make sure deck.author equals mythgard.current_user_id
WITH CHECK (exists(select deck.author_id, deck.id from mythgard.deck
where deck.author_id = mythgard.current_user_id()
AND "deck_id" = deck.id));
-- Rows can only be updated by their author
CREATE POLICY card_deck_update_if_author
ON mythgard.card_deck
FOR UPDATE
WITH CHECK (exists(select deck.author_id, deck.id from mythgard.deck
where deck.author_id = mythgard.current_user_id()
AND "deck_id" = deck.id));
-- Rows can only be deleted by their author
CREATE POLICY card_deck_delete_if_author
ON mythgard.card_deck
FOR DELETE
USING (exists(select deck.author_id, deck.id from mythgard.deck
where deck.author_id = mythgard.current_user_id()
AND "deck_id" = deck.id));
CREATE OR REPLACE FUNCTION mythgard.update_deck_and_remove_cards
(
_id integer,
_name varchar(255),
_path_id integer,
_power_id integer
)
RETURNS mythgard.deck as $$
DELETE FROM mythgard.card_deck
WHERE deck_id = _id;
UPDATE mythgard.deck
SET name = _name,
path_id = _path_id,
power_id = _power_id
WHERE id = _id
RETURNING *
$$ LANGUAGE sql VOLATILE;
|
CREATE STREAM R(A int, B int)
FROM FILE 'examples/data/simple/r.dat' LINE DELIMITED
CSV ();
SELECT r1.A, SUM(1)
FROM R r1
WHERE EXISTS
( SELECT 1
FROM (SELECT SUM(r2.B) as B FROM R r2 WHERE r2.A = r1.B) n1
WHERE r1.A *3 < n1.B )
GROUP BY r1.A
|
-- phpMyAdmin SQL Dump
-- version 4.4.12
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Nov 15, 2015 at 07:44 PM
-- Server version: 5.6.25
-- PHP Version: 5.6.11
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 */;
--
-- Database: `cms`
--
-- --------------------------------------------------------
--
-- Table structure for table `semester_courses`
--
CREATE TABLE IF NOT EXISTS `semester_courses` (
`sem_id` varchar(10) NOT NULL,
`course_id` varchar(10) NOT NULL,
`type` enum('core','elective') NOT NULL DEFAULT 'core'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `semester_courses`
--
INSERT INTO `semester_courses` (`sem_id`, `course_id`, `type`) VALUES
('1', 'EL101', 'core'),
('1', 'HM101', 'core'),
('1', 'IT101', 'core'),
('1', 'IT102', 'core'),
('1', 'MA101', 'core'),
('1', 'PH101', 'core'),
('2', 'CS201', 'core'),
('2', 'CS202', 'core'),
('2', 'CS203', 'core'),
('2', 'CS205', 'core'),
('2', 'EL102', 'core'),
('2', 'IT203', 'core'),
('2', 'MA102', 'core'),
('3', 'CS206', 'core'),
('3', 'CS207', 'core'),
('3', 'CS208', 'core'),
('3', 'CS209', 'core'),
('3', 'HM201', 'core'),
('3', 'IT201', 'core'),
('3', 'IT202', 'core'),
('3', 'MA201', 'core'),
('4', 'CS210', 'core'),
('4', 'CS211', 'core'),
('4', 'CS212', 'core'),
('4', 'CS213', 'core'),
('4', 'CS214', 'core'),
('4', 'HM202', 'core'),
('4', 'IT204', 'core'),
('4', 'IT205', 'core'),
('4', 'IT206', 'core');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `semester_courses`
--
ALTER TABLE `semester_courses`
ADD PRIMARY KEY (`sem_id`,`course_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 */;
|
<filename>reference/Labellab-sql-script.sql
-- MySQL Script generated by MySQL Workbench
-- Mon Jun 8 20:03:57 2020
-- 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='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';
-- -----------------------------------------------------
-- Schema mydb
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema labellab
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema labellab
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `labellab` DEFAULT CHARACTER SET latin1 ;
USE `labellab` ;
-- -----------------------------------------------------
-- Table `labellab`.`alembic_version`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`alembic_version` (
`version_num` VARCHAR(32) NOT NULL,
PRIMARY KEY (`version_num`))
ENGINE = InnoDB
DEFAULT CHARACTER SET = latin1;
-- -----------------------------------------------------
-- Table `labellab`.`user`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`user` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(80) NOT NULL,
`username` VARCHAR(80) NOT NULL,
`password` VARCHAR(128) NULL DEFAULT NULL,
`email` VARCHAR(100) NOT NULL,
`date` DATETIME NULL DEFAULT NULL,
`thumbnail` VARCHAR(1500) NULL DEFAULT NULL,
`projects` VARCHAR(45) NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `email` (`email` ASC) VISIBLE,
UNIQUE INDEX `username` (`username` ASC) VISIBLE)
ENGINE = InnoDB
DEFAULT CHARACTER SET = latin1;
-- -----------------------------------------------------
-- Table `labellab`.`project`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`project` (
`id` INT NOT NULL,
`project_name` VARCHAR(45) NULL,
`project_description` VARCHAR(150) NULL,
`admin_id` INT(11) NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_project_user_idx` (`admin_id` ASC) VISIBLE,
CONSTRAINT `fk_project_user`
FOREIGN KEY (`admin_id`)
REFERENCES `labellab`.`user` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`image`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`image` (
`id` INT NOT NULL,
`image_name` VARCHAR(45) NOT NULL,
`imageurl` VARCHAR(45) NOT NULL,
`height` VARCHAR(45) NULL,
`width` VARCHAR(45) NULL,
`labelled` TINYINT NOT NULL DEFAULT 0,
`date` DATETIME NULL,
`latitude` DOUBLE NULL,
`longitude` DOUBLE NULL,
`project_id` INT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_images_project1_idx` (`project_id` ASC) VISIBLE,
CONSTRAINT `fk_images_project1`
FOREIGN KEY (`project_id`)
REFERENCES `labellab`.`project` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`label`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`label` (
`id` VARCHAR(45) NOT NULL,
`label_name` VARCHAR(45) NOT NULL,
`type` VARCHAR(45) NOT NULL,
`count` INT NOT NULL DEFAULT 0,
`project_id` INT NOT NULL,
INDEX `fk_labels_project1_idx` (`project_id` ASC) VISIBLE,
PRIMARY KEY (`id`),
CONSTRAINT `fk_labels_project1`
FOREIGN KEY (`project_id`)
REFERENCES `labellab`.`project` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`team`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`team` (
`id` INT NOT NULL,
`roles` VARCHAR(45) NULL,
`team_name` VARCHAR(45) NOT NULL,
`project_id` INT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_teams_project1_idx` (`project_id` ASC) VISIBLE,
CONSTRAINT `fk_teams_project1`
FOREIGN KEY (`project_id`)
REFERENCES `labellab`.`project` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`project_member`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`project_member` (
`user_id` INT NOT NULL,
`team_id` INT NULL,
PRIMARY KEY (`user_id`),
INDEX `fk_project members_teams1_idx` (`team_id` ASC) VISIBLE,
CONSTRAINT `fk_project members_user1`
FOREIGN KEY (`user_id`)
REFERENCES `labellab`.`user` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE,
CONSTRAINT `fk_project members_teams1`
FOREIGN KEY (`team_id`)
REFERENCES `labellab`.`team` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`label_data`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`label_data` (
`id` INT NOT NULL,
`months_passed` INT NULL,
`image_id` INT NOT NULL,
`label_id` INT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_label_data_image1_idx` (`image_id` ASC) VISIBLE,
INDEX `fk_label_data_label1_idx` (`label_id` ASC) VISIBLE,
CONSTRAINT `fk_label_data_image1`
FOREIGN KEY (`image_id`)
REFERENCES `labellab`.`image` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE,
CONSTRAINT `fk_label_data_label1`
FOREIGN KEY (`label_id`)
REFERENCES `labellab`.`label` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`group`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`group` (
`id` INT NOT NULL,
`group_name` VARCHAR(45) NULL,
`project_id` INT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_group_project1_idx` (`project_id` ASC) VISIBLE,
CONSTRAINT `fk_group_project1`
FOREIGN KEY (`project_id`)
REFERENCES `labellab`.`project` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`group_has_image`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`group_has_image` (
`group_id` INT NOT NULL,
`image_id` INT NOT NULL,
INDEX `fk_group_has_image_group1_idx` (`group_id` ASC) VISIBLE,
INDEX `fk_group_has_image_image1_idx` (`image_id` ASC) VISIBLE,
CONSTRAINT `fk_group_has_image_group1`
FOREIGN KEY (`group_id`)
REFERENCES `labellab`.`group` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE,
CONSTRAINT `fk_group_has_image_image1`
FOREIGN KEY (`image_id`)
REFERENCES `labellab`.`image` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`model`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`model` (
`id` INT NOT NULL,
`name` VARCHAR(45) NOT NULL,
`type` VARCHAR(45) NOT NULL,
`source` VARCHAR(45) NOT NULL,
`preprocessing_steps_json_url` VARCHAR(45) NULL,
`layers_json_url` VARCHAR(45) NULL,
`train` DECIMAL(4,2) NULL,
`test` DECIMAL(4,2) NULL,
`validation` DECIMAL(4,2) NULL,
`epochs` INT NULL,
`batch_size` INT NULL,
`learning_rate` DECIMAL(6,4) NULL,
`loss` VARCHAR(45) NULL,
`optimizer` VARCHAR(45) NULL,
`metric` VARCHAR(45) NULL,
`loss_graph_url` VARCHAR(45) NULL,
`accuracy_graph_url` VARCHAR(45) NULL,
`saved_model_url` VARCHAR(45) NULL,
`transfer_source` VARCHAR(45) NULL,
`project_id` INT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_model_project1_idx` (`project_id` ASC) VISIBLE,
CONSTRAINT `fk_model_project1`
FOREIGN KEY (`project_id`)
REFERENCES `labellab`.`project` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`model_has_label`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`model_has_label` (
`model_id` INT NOT NULL,
`label_id` VARCHAR(45) NOT NULL,
PRIMARY KEY (`model_id`, `label_id`),
INDEX `fk_model_has_label_label1_idx` (`label_id` ASC) VISIBLE,
INDEX `fk_model_has_label_model1_idx` (`model_id` ASC) VISIBLE,
CONSTRAINT `fk_model_has_label_model1`
FOREIGN KEY (`model_id`)
REFERENCES `labellab`.`model` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE,
CONSTRAINT `fk_model_has_label_label1`
FOREIGN KEY (`label_id`)
REFERENCES `labellab`.`label` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `labellab`.`point`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `labellab`.`point` (
`id` INT NOT NULL,
`label_data_id` INT NOT NULL,
`x_coordinate` FLOAT NOT NULL,
`y_coordinate` FLOAT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_table1_label_data1_idx` (`label_data_id` ASC) VISIBLE,
CONSTRAINT `fk_table1_label_data1`
FOREIGN KEY (`label_data_id`)
REFERENCES `labellab`.`label_data` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
ALTER TABLE `accounts` CHANGE `address_billing` `address_billing` VARCHAR( 1000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
ALTER TABLE `accounts` CHANGE `address_shipping` `address_shipping` VARCHAR( 1000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
ALTER TABLE `contacts` CHANGE `address_1` `address_1` VARCHAR( 1000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
ALTER TABLE `contacts` CHANGE `address_2` `address_2` VARCHAR( 1000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
ALTER TABLE `leads` CHANGE `address_1` `address_1` VARCHAR( 1000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
set @exist := (SELECT COUNT(*) FROM information_schema.statistics WHERE table_schema = DATABASE() AND table_name = 'sales_teams' AND index_name = 'team_name');
set @sqlstmt := if( @exist > 0, 'DROP INDEX team_name ON sales_teams','OPTIMIZE TABLE sales_teams');
PREPARE stmt FROM @sqlstmt;
EXECUTE stmt;
ALTER TABLE `sales_teams` ADD UNIQUE `team_name` ( `team_name` );
ALTER TABLE `users` ADD `notify_owner` ENUM( 'Y', 'N' ) NOT NULL DEFAULT 'N' AFTER `notifications_location` ,
ADD `notify_me` ENUM( 'Y', 'N' ) NOT NULL DEFAULT 'N' AFTER `notify_owner`;
DELETE FROM `db_blocks` WHERE `app_name` = 'preferences_lookandfeel';
INSERT INTO `db_blocks` (`app_name`, `form_name`, `block_id`, `block_name`, `is_title`, `columns`, `block_sequence`) VALUES
('preferences_lookandfeel', 'edit', '10ragq2617itc', 'Theme', 'Y', 1, 5),
('preferences_lookandfeel', 'edit', '12238nyd9hxc0', 'Main', 'N', 2, 2),
('preferences_lookandfeel', 'edit', '1h90e2frullvk', 'Locale', 'Y', 2, 4),
('preferences_lookandfeel', 'view', '1fa93ag8kvwg8o8ss44w000cg', 'Theme', 'Y', 1, 5),
('preferences_lookandfeel', 'view', 'dwcouzp78tck4gkos40o4sos', 'Locale', 'Y', 2, 4),
('preferences_lookandfeel', 'view', 'dzw7l3yrs9w0gsw4goocs4g8', 'Main', 'N', 2, 2);
DELETE FROM `db_fields` WHERE `app_name` = 'preferences_lookandfeel';
INSERT INTO `db_fields` (`app_name`, `table_name`, `field_name`, `is_custom`, `is_computed`, `field_type`, `field_label`, `field_height`, `field_default`, `related_table`, `related_id`, `related_name`, `related_filter`, `is_search`, `is_readonly`, `is_mandatory`, `is_unique`, `is_visible`, `search_sequence`, `result_sequence`, `result_class`, `bulk_sequence`, `bulk_side`, `bulk_block_id`, `view_sequence`, `view_side`, `view_block_id`, `edit_sequence`, `edit_side`, `edit_block_id`, `popup_search_sequence`, `popup_result_sequence`, `popup_view_sequence`, `popup_view_side`, `popup_view_block_id`, `popup_edit_sequence`, `popup_edit_side`, `popup_edit_block_id`, `linked_sequence`) VALUES
('preferences_lookandfeel', 'users', 'app_name', 'N', 'N', 'DD', 'Default application', 1, 'api', 'db_applications', 'app_name', 'app_label', 'where is_visible = "Y" and status_id = "A" order by app_label', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 1, 'L', 'dzw7l3yrs9w0gsw4goocs4g8', 1, 'L', '12238nyd9hxc0', 0, 0, 0, 'L', '13z2ehlofjuow', 0, 'L', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'charset_id', 'N', 'N', 'DD', 'Character set', 1, 'UTF-8', 'global_charsets', 'charset_id', 'charset_name', 'order by charset_name', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 1, 'R', 'dwcouzp78tck4gkos40o4sos', 1, 'R', '1h90e2frullvk', 0, 0, 0, 'L', '', 0, 'L', '', 0),
('preferences_lookandfeel', 'users', 'confirm_delete', 'N', 'N', 'CH', 'Confirm delete', 1, 'Y', '', '', '', '', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_center', 0, 'L', '13qfxwi7vfi8w', 2, 'L', 'dzw7l3yrs9w0gsw4goocs4g8', 2, 'L', '12238nyd9hxc0', 0, 0, 0, 'R', '13z2ehlofjuow', 0, 'R', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'currency_id', 'N', 'N', 'DD', 'Currency', 1, 'USD', 'global_currencies', 'currency_id', 'currency_name', ' order by currency_name', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 2, 'L', 'dwcouzp78tck4gkos40o4sos', 2, 'L', '1h90e2frullvk', 0, 0, 0, 'R', '13z2ehlofjuow', 0, 'R', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'language_id', 'N', 'N', 'DD', 'Language', 1, 'en', 'global_languages', 'language_id', 'language_name', ' order by language_id', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 1, 'L', 'dwcouzp78tck4gkos40o4sos', 1, 'L', '1h90e2frullvk', 0, 0, 0, 'R', '13z2ehlofjuow', 0, 'R', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'locale_date_id', 'N', 'N', 'DD', 'Format date', 1, 'en_US', 'global_locales_date', 'date_id', 'date_label', ' order by date_label', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 2, 'R', 'dwcouzp78tck4gkos40o4sos', 2, 'R', '1h90e2frullvk', 0, 0, 0, 'L', '13z2ehlofjuow', 0, 'L', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'locale_time_id', 'N', 'N', 'DD', 'Format time', 1, 'en_US', 'global_locales_time', 'time_id', 'time_label', ' order by time_label', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 3, 'R', 'dwcouzp78tck4gkos40o4sos', 3, 'R', '1h90e2frullvk', 0, 0, 0, 'L', '13z2ehlofjuow', 0, 'L', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'nbrecords', 'N', 'N', 'DD', 'Lines displayed', 1, '10', 'global_lines', 'line_id', 'line_name', 'order by line_name', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 1, 'R', 'dzw7l3yrs9w0gsw4goocs4g8', 1, 'R', '12238nyd9hxc0', 0, 0, 0, 'L', '', 0, 'L', '', 0),
('preferences_lookandfeel', 'users', 'notifications_location', 'N', 'Y', 'DD', 'Notifications location', 1, 'TC', '', '', '', '', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_center', 0, 'L', '', 3, 'L', 'dzw7l3yrs9w0gsw4goocs4g8', 3, 'L', '12238nyd9hxc0', 0, 0, 0, 'L', '', 0, 'L', '', 0),
('preferences_lookandfeel', 'users', 'theme_id', 'N', 'N', 'DD', 'Theme', 1, 'default', 'global_themes', 'theme_id', 'theme_name', ' order by theme_name', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 1, 'L', '1fa93ag8kvwg8o8ss44w000cg', 1, 'L', '10ragq2617itc', 0, 0, 0, 'R', '13z2ehlofjuow', 0, 'R', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'timezone_id', 'N', 'Y', 'DD', 'Timezone', 1, '225', '', '', '', '', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 3, 'L', 'dwcouzp78tck4gkos40o4sos', 3, 'L', '1h90e2frullvk', 0, 0, 0, 'L', '13z2ehlofjuow', 0, 'L', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'user_id', 'N', 'N', 'RK', 'User identifier', 1, '', '', '', '', '', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_left', 0, 'L', '', 0, 'L', '', 0, 'L', '', 0, 0, 0, 'L', '', 0, 'L', '', 0),
('preferences_lookandfeel', 'users', 'notify_owner', 'N', 'N', 'CH', 'Notify (new) owner by email when a record is created, updated or assigned', 1, 'Y', '', '', '', '', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_center', 0, 'L', '13qfxwi7vfi8w', 2, 'R', 'dzw7l3yrs9w0gsw4goocs4g8', 2, 'R', '12238nyd9hxc0', 0, 0, 0, 'R', '13z2ehlofjuow', 0, 'R', 'da9w2y9gqxkc', 0),
('preferences_lookandfeel', 'users', 'notify_me', 'N', 'N', 'CH', 'Notify me if owner is notified', 1, 'Y', '', '', '', '', 'N', 'N', 'N', 'N', 'Y', 0, 0, 'grid_center', 0, 'L', '13qfxwi7vfi8w', 3, 'R', 'dzw7l3yrs9w0gsw4goocs4g8', 3, 'R', '12238nyd9hxc0', 0, 0, 0, 'R', '13z2ehlofjuow', 0, 'R', 'da9w2y9gqxkc', 0);
|
Subsets and Splits