· 8 years ago · Feb 08, 2018, 06:02 PM
1-- MySQL dump 10.11
2--
3-- Host: localhost Database: ektos
4-- ------------------------------------------------------
5-- Server version 5.0.45-community-nt
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12/*!40103 SET TIME_ZONE='+00:00' */;
13/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18--
19-- Table structure for table `alarms_meta`
20--
21
22DROP TABLE IF EXISTS `alarms_meta`;
23CREATE TABLE `alarms_meta` (
24 `id` int(11) NOT NULL auto_increment,
25 `name` varchar(100) NOT NULL,
26 `description` text NOT NULL,
27 `notify_flag` int(11) default '1',
28 PRIMARY KEY (`id`)
29) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
30
31--
32-- Dumping data for table `alarms_meta`
33--
34
35LOCK TABLES `alarms_meta` WRITE;
36/*!40000 ALTER TABLE `alarms_meta` DISABLE KEYS */;
37INSERT INTO `alarms_meta` VALUES (1,'Breaker Forced On','Ektos expects this breaker to be off, but it\'s on. Most likely the override tab located on the breaker has been manually activated (the little white tab is sticking out).',1),(2,'Breaker Forced Off','Ektos expects this breaker to be on, but it\'s off. Most likely the breaker has been manually turned off at the breaker panel.',1),(3,'Low Sensor','This sensor is reading at the bottom if its\' range, which may mean it has become disconnected or is failing.',1),(4,'Cool Fail','This HVAC is failing to cool properly.',1),(5,'Heat Fail','This HVAC is failing to heat.',1),(6,'Too Cold','The temperature in this freezer/cooler has dropped below the minimum.',1),(7,'Too Warm','The temperature in this freezer/cooler is too far above the setpoint.',1);
38/*!40000 ALTER TABLE `alarms_meta` ENABLE KEYS */;
39UNLOCK TABLES;
40
41--
42-- Table structure for table `hw_breakers`
43--
44
45DROP TABLE IF EXISTS `hw_breakers`;
46CREATE TABLE `hw_breakers` (
47 `id` int(11) NOT NULL auto_increment,
48 `port_id` int(11) NOT NULL default '-1',
49 `shadowed_ids` varchar(50) default 'none',
50 `zone_id` int(11) NOT NULL default '-1',
51 `name` varchar(255) default NULL,
52 `on_schedule_id` int(11) NOT NULL default '-1',
53 `off_schedule_id` int(11) NOT NULL default '-1',
54 `schedule_mode` enum('normal','always on','always off') NOT NULL default 'normal',
55 `lightmeter` tinyint(1) NOT NULL default '0',
56 `lightlevel` int(11) NOT NULL default '0',
57 PRIMARY KEY (`id`)
58) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
59
60--
61-- Dumping data for table `hw_breakers`
62--
63
64LOCK TABLES `hw_breakers` WRITE;
65/*!40000 ALTER TABLE `hw_breakers` DISABLE KEYS */;
66INSERT INTO `hw_breakers` VALUES (1,1,'none',1,'Kitchen Lights',1,2,'normal',0,0),(2,2,'none',2,'Road Sign',3,4,'normal',1,110),(3,4,'none',2,'Welcome Sign',3,4,'normal',1,110),(4,5,'none',1,'Rear Kitchen Lights',1,2,'normal',0,0),(5,6,'none',2,'N McArch Sign',3,4,'normal',1,110),(6,7,'none',-1,'Night Lights',-1,-1,'always on',0,0),(7,8,'none',2,'West Mcd Sign',3,4,'normal',1,110),(8,9,'none',3,'Dining Lights',5,6,'normal',0,0),(9,11,'none',3,'Dining Lights',5,6,'normal',0,0),(10,13,'none',1,'Restroom Lights',1,2,'normal',0,0),(11,14,'none',2,'South Playland Sign',3,4,'normal',1,110),(12,16,'none',3,'Soffit Lights',3,4,'normal',1,110),(13,18,'none',2,'East McArch Sign',3,4,'normal',1,110),(14,20,'none',2,'Playland North Sign',3,4,'normal',1,110),(15,21,'none',5,'Playland Lights',3,4,'normal',0,110),(16,22,'none',2,'West McArch Sign',3,4,'normal',1,110),(17,23,'none',5,'Playland Fans',7,8,'normal',0,0),(18,25,'none',-1,'Alarm Outlet',-1,-1,'always on',0,0),(19,26,'none',8,'Parking Lot Lights',3,4,'normal',1,110),(20,27,'none',5,'Playplace Lights',3,4,'always on',0,110),(21,28,'none',8,'Parking Lot Lights',3,4,'normal',1,110),(22,30,'none',8,'Parking Lot Lights',3,4,'normal',1,110),(23,31,'none',-1,'Security Lights',-1,-1,'always on',0,0),(24,32,'none',8,'Parking Lot Lights',3,4,'normal',1,110),(25,33,'none',-1,'Fry Vat',-1,-1,'always on',0,0),(26,34,'none',8,'Parking Lot Lights',3,4,'normal',1,110),(27,35,'none',-1,'Fry Vat',-1,-1,'always on',0,0),(28,37,'none',-1,'Clam',-1,-1,'always on',0,0),(30,42,'none',-1,'Emergency Exit Lights',-1,-1,'always on',0,0);
67/*!40000 ALTER TABLE `hw_breakers` ENABLE KEYS */;
68UNLOCK TABLES;
69
70--
71-- Table structure for table `hw_config`
72--
73
74DROP TABLE IF EXISTS `hw_config`;
75CREATE TABLE `hw_config` (
76 `id` int(11) NOT NULL auto_increment,
77 `system_enabled` tinyint(1) NOT NULL default '0',
78 `system_configured` tinyint(1) NOT NULL default '0',
79 `mode` int(11) NOT NULL default '1',
80 `powerlink_com` varchar(20) NOT NULL default '-1',
81 `usb_com` varchar(20) NOT NULL default '-1',
82 `zigbee_com` varchar(20) NOT NULL default '-1',
83 `addon_count_1` int(11) NOT NULL default '-1',
84 `addon_count_2` int(11) NOT NULL default '-1',
85 `unit_addresses` varchar(1000) NOT NULL default '-1',
86 `breaker_type` int(11) default '1',
87 `breaker_offset` int(11) NOT NULL default '6',
88 `breaker_bus_size` int(11) NOT NULL default '21',
89 `ansul_breakers` varchar(50) default NULL,
90 `heartbeat` datetime default NULL,
91 PRIMARY KEY (`id`)
92) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
93
94--
95-- Dumping data for table `hw_config`
96--
97
98LOCK TABLES `hw_config` WRITE;
99/*!40000 ALTER TABLE `hw_config` DISABLE KEYS */;
100INSERT INTO `hw_config` VALUES (1,1,1,2,'com1','com0','com3',5,-1,'4032F4A2,4053E1AA,4053E1BA,404B79F5,4053AFF1',1,0,21,NULL,NULL);
101/*!40000 ALTER TABLE `hw_config` ENABLE KEYS */;
102UNLOCK TABLES;
103
104--
105-- Table structure for table `hw_relays`
106--
107
108DROP TABLE IF EXISTS `hw_relays`;
109CREATE TABLE `hw_relays` (
110 `id` int(11) NOT NULL auto_increment,
111 `port_id` int(11) NOT NULL default '-1',
112 `zone_id` int(11) NOT NULL default '-1',
113 `system_id` int(11) NOT NULL default '-1',
114 `name` varchar(255) NOT NULL,
115 `code` varchar(20) NOT NULL default 'none',
116 `on_schedule_id` int(11) NOT NULL default '-1',
117 `off_schedule_id` int(11) NOT NULL default '-1',
118 `schedule_mode` enum('normal','always on','always off') NOT NULL default 'normal',
119 `lighting` tinyint(1) NOT NULL default '0',
120 `lightmeter` tinyint(1) NOT NULL default '0',
121 `lightlevel` int(11) NOT NULL default '0',
122 `reversed` tinyint(1) NOT NULL default '0',
123 PRIMARY KEY (`id`)
124) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=latin1;
125
126--
127-- Dumping data for table `hw_relays`
128--
129
130LOCK TABLES `hw_relays` WRITE;
131/*!40000 ALTER TABLE `hw_relays` DISABLE KEYS */;
132INSERT INTO `hw_relays` VALUES (11,1,-1,1,'Y1','y1',-1,-1,'normal',0,0,0,1),(12,2,-1,2,'Y1','y1',-1,-1,'normal',0,0,0,1),(13,9,-1,3,'G','g',-1,-1,'normal',0,0,0,0),(14,10,-1,3,'Y1','y1',-1,-1,'normal',0,0,0,0),(15,11,-1,3,'Y2','y2',-1,-1,'normal',0,0,0,0),(16,12,-1,3,'W1','w1',-1,-1,'normal',0,0,0,0),(17,13,-1,3,'W2','w2',-1,-1,'normal',0,0,0,0),(18,17,-1,4,'G','g',-1,-1,'normal',0,0,0,0),(19,18,-1,4,'Y1','y1',-1,-1,'normal',0,0,0,0),(20,19,-1,4,'Y2','y2',-1,-1,'normal',0,0,0,0),(21,20,-1,4,'W1','w1',-1,-1,'normal',0,0,0,0),(22,21,-1,4,'W2','w2',-1,-1,'normal',0,0,0,0),(23,25,-1,5,'G','g',-1,-1,'normal',0,0,0,0),(24,26,-1,5,'Y1','y1',-1,-1,'normal',0,0,0,0),(25,27,-1,5,'Y2','y2',-1,-1,'normal',0,0,0,0),(26,28,-1,5,'W1','w1',-1,-1,'normal',0,0,0,0),(27,29,-1,5,'W2','w2',-1,-1,'normal',0,0,0,0),(28,33,-1,6,'G','g',-1,-1,'normal',0,0,0,0),(29,34,-1,6,'Y1','y1',-1,-1,'normal',0,0,0,0),(30,35,-1,6,'Y2','y2',-1,-1,'normal',0,0,0,0),(31,36,-1,6,'W1','w1',-1,-1,'normal',0,0,0,0),(32,37,-1,6,'W2','w2',-1,-1,'normal',0,0,0,0),(33,3,-1,-1,'Heater Drive @ Both Booths','not used',1,2,'normal',1,0,0,1),(34,4,-1,-1,'Restroom Exhaust Fans','not used',1,2,'normal',1,0,0,1),(35,5,-1,-1,'Front Menu Board','not used',1,2,'always on',1,0,0,1),(36,15,-1,-1,'E Stat','not used',-1,-1,'always on',1,0,0,0),(37,23,-1,-1,'E Stat','not used',-1,-1,'always on',1,0,0,0),(38,31,-1,-1,'E Stat','not used',-1,-1,'always on',1,0,0,0),(39,39,-1,-1,'E Stat','not used',-1,-1,'always on',1,0,0,0);
133/*!40000 ALTER TABLE `hw_relays` ENABLE KEYS */;
134UNLOCK TABLES;
135
136--
137-- Table structure for table `hw_sensors`
138--
139
140DROP TABLE IF EXISTS `hw_sensors`;
141CREATE TABLE `hw_sensors` (
142 `id` int(11) NOT NULL auto_increment,
143 `port_id` int(11) NOT NULL default '-1',
144 `system_id` int(11) NOT NULL default '-1',
145 `name` varchar(255) NOT NULL,
146 `code` varchar(20) NOT NULL default 'none',
147 `conversion` varchar(255) NOT NULL,
148 `adjustment` double NOT NULL default '0',
149 `is_averaged` int(11) default '0',
150 `averaged_ids` varchar(20) default 'none',
151 PRIMARY KEY (`id`)
152) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=latin1;
153
154--
155-- Dumping data for table `hw_sensors`
156--
157
158LOCK TABLES `hw_sensors` WRITE;
159/*!40000 ALTER TABLE `hw_sensors` DISABLE KEYS */;
160INSERT INTO `hw_sensors` VALUES (109,2,-1,'outsidetemp','outsidetemp','T30130',1,0,'none'),(110,1,-1,'lightmeter','lightmeter','Light',0,0,'none'),(117,-1,-1,'ansul','ansul','None',0,0,'none'),(122,3,1,'Space','space','T30130',0,0,'none'),(123,4,2,'Space','space','T30130',0,0,'none'),(124,-1,-1,'30 override','zone_1','None',0,0,'none'),(125,-1,-1,'Signs override','zone_2','None',0,0,'none'),(126,-1,-1,'3 override','zone_3','None',0,0,'none'),(127,-1,-1,'Lobby Lights override','zone_4','None',0,0,'none'),(128,-1,-1,'Playland Lights override','zone_5','None',0,0,'none'),(129,-1,-1,'Soffits override','zone_6','None',0,0,'none'),(130,-1,-1,'Roof Beams override','zone_7','None',0,0,'none'),(131,-1,-1,'Lot Lights override','zone_8','None',0,0,'none'),(132,10,3,'Supply','supply','Supply2',0,0,'none'),(133,9,3,'Space','space','Temp',0,0,'none'),(134,18,4,'Supply','supply','Supply2',0,0,'none'),(135,17,4,'Space','space','Temp',-5,0,'none'),(136,26,5,'Supply','supply','Supply2',0,0,'none'),(137,25,5,'Space','space','Temp',-2,0,'none'),(138,34,6,'Supply','supply','Supply2',0,0,'none'),(139,33,6,'Space','space','Temp',-5,0,'none');
161/*!40000 ALTER TABLE `hw_sensors` ENABLE KEYS */;
162UNLOCK TABLES;
163
164--
165-- Table structure for table `hw_systems`
166--
167
168DROP TABLE IF EXISTS `hw_systems`;
169CREATE TABLE `hw_systems` (
170 `id` int(11) NOT NULL auto_increment,
171 `name` varchar(255) NOT NULL,
172 `type` enum('HVAC') NOT NULL default 'HVAC',
173 `config` varchar(255) default NULL,
174 `on_schedule_id` int(11) NOT NULL default '-1',
175 `off_schedule_id` int(11) NOT NULL default '-1',
176 `schedule_mode` enum('normal','always on','always off') NOT NULL default 'normal',
177 PRIMARY KEY (`id`)
178) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
179
180--
181-- Dumping data for table `hw_systems`
182--
183
184LOCK TABLES `hw_systems` WRITE;
185/*!40000 ALTER TABLE `hw_systems` DISABLE KEYS */;
186INSERT INTO `hw_systems` VALUES (1,'B Freezer 1','HVAC','FreezerCooler',-1,-1,'always on'),(2,'B Cooler 1','HVAC','FreezerCooler',-1,-1,'always on'),(3,'Kitchen 1','HVAC','DoubleDouble',1,2,'normal'),(4,'Dining 1','HVAC','DoubleDouble',1,2,'normal'),(5,'Dining 2','HVAC','DoubleDouble',5,6,'normal'),(6,'Playland 1','HVAC','DoubleDouble',7,8,'always on');
187/*!40000 ALTER TABLE `hw_systems` ENABLE KEYS */;
188UNLOCK TABLES;
189
190--
191-- Table structure for table `hw_zones`
192--
193
194DROP TABLE IF EXISTS `hw_zones`;
195CREATE TABLE `hw_zones` (
196 `id` int(11) NOT NULL auto_increment,
197 `name` varchar(255) NOT NULL,
198 `color_id` int(11) NOT NULL default '-1',
199 PRIMARY KEY (`id`)
200) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
201
202--
203-- Dumping data for table `hw_zones`
204--
205
206LOCK TABLES `hw_zones` WRITE;
207/*!40000 ALTER TABLE `hw_zones` DISABLE KEYS */;
208INSERT INTO `hw_zones` VALUES (1,'30',1),(2,'Signs',4),(3,'3',5),(4,'Lobby Lights',3),(5,'Playland Lights',6),(6,'Soffits',2),(7,'Roof Beams',7),(8,'Lot Lights',8);
209/*!40000 ALTER TABLE `hw_zones` ENABLE KEYS */;
210UNLOCK TABLES;
211
212--
213-- Table structure for table `kw_setpoint`
214--
215
216DROP TABLE IF EXISTS `kw_setpoint`;
217CREATE TABLE `kw_setpoint` (
218 `id` int(11) NOT NULL auto_increment,
219 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
220 `user_id` int(11) NOT NULL,
221 `setpoint` int(11) NOT NULL,
222 PRIMARY KEY (`id`)
223) ENGINE=InnoDB AUTO_INCREMENT=3005 DEFAULT CHARSET=latin1;
224
225--
226-- Dumping data for table `kw_setpoint`
227--
228
229LOCK TABLES `kw_setpoint` WRITE;
230/*!40000 ALTER TABLE `kw_setpoint` DISABLE KEYS */;
231INSERT INTO `kw_setpoint` VALUES (51,'2008-05-06 18:14:45',1,150),(52,'2008-05-06 18:14:48',1,150),(53,'2009-10-16 21:41:57',0,77),(54,'2009-10-17 21:41:57',0,76),(55,'2009-10-18 21:41:57',0,75),(56,'2009-10-19 21:41:57',0,74),(57,'2009-10-20 21:41:57',0,70),(58,'2009-10-21 21:41:57',0,69),(59,'2009-10-22 21:41:57',0,68),(60,'2009-10-23 21:41:57',0,67),(61,'2009-10-24 21:41:57',0,66),(62,'2009-10-25 21:41:57',0,65),(63,'2009-10-26 21:41:57',0,64),(64,'2009-10-27 21:41:57',0,63),(65,'2009-10-28 21:41:57',0,62),(66,'2009-10-29 21:41:57',0,61),(67,'2009-10-30 21:41:57',0,60),(68,'2009-10-31 21:41:57',0,59),(69,'2009-11-01 21:41:57',0,58),(70,'2009-11-02 21:41:57',0,57),(71,'2009-11-03 16:52:24',0,87),(72,'2009-11-04 16:52:24',0,77),(73,'2009-11-05 16:52:24',0,70),(74,'2009-11-06 16:52:24',0,69),(75,'2009-11-07 16:52:24',0,68),(76,'2009-11-08 16:52:24',0,67),(77,'2009-11-09 16:52:24',0,66),(78,'2009-11-10 16:52:24',0,65),(79,'2009-11-11 16:52:24',0,64),(80,'2009-11-12 16:52:24',0,63),(81,'2009-11-13 16:52:24',0,62),(82,'2009-11-14 16:52:24',0,61),(83,'2009-11-15 16:52:24',0,60),(84,'2009-11-16 16:52:24',0,59),(85,'2009-11-17 16:52:24',0,58),(86,'2009-11-18 16:52:24',0,57),(87,'2009-11-19 16:52:24',0,56),(88,'2009-11-20 00:32:42',0,86),(89,'2009-11-21 00:32:42',0,81),(90,'2009-11-22 00:32:42',0,72),(91,'2009-11-23 00:32:42',0,71),(92,'2009-11-24 00:32:42',0,70),(93,'2009-11-25 00:32:42',0,68),(94,'2009-11-26 00:32:42',0,67),(95,'2009-11-27 00:32:42',0,66),(96,'2009-11-28 00:32:42',0,65),(97,'2009-11-29 00:32:42',0,64),(98,'2009-11-30 00:32:42',0,63),(99,'2009-12-01 00:32:42',0,62),(100,'2009-12-02 00:32:42',0,61),(101,'2009-12-03 00:32:42',0,60),(102,'2009-12-04 00:32:42',0,59),(103,'2009-12-05 00:32:42',0,58),(104,'2009-12-06 00:32:42',0,57),(105,'2009-12-07 00:32:42',0,56),(106,'2009-12-08 00:32:42',0,55),(107,'2009-12-09 00:32:42',0,54),(108,'2009-12-10 00:11:37',0,74),(109,'2009-12-11 00:11:37',0,70),(110,'2009-12-12 00:11:37',0,69),(111,'2009-12-13 00:11:37',0,68),(112,'2009-12-14 00:11:37',0,67),(113,'2009-12-15 00:11:37',0,66),(114,'2009-12-16 00:11:37',0,65),(115,'2009-12-17 00:11:37',0,64),(116,'2009-12-18 00:11:37',0,63),(117,'2009-12-19 00:11:37',0,62),(118,'2009-12-20 00:11:37',0,61),(119,'2009-12-21 00:11:37',0,60),(120,'2009-12-22 00:11:37',0,59),(121,'2009-12-23 00:11:37',0,58),(122,'2009-12-24 18:08:36',0,57),(123,'2009-12-25 18:08:36',0,56),(124,'2009-12-26 18:08:36',0,55),(125,'2009-12-27 00:29:18',0,80),(126,'2009-12-28 00:29:18',0,72),(127,'2009-12-29 00:29:18',0,71),(128,'2009-12-30 20:45:54',0,70),(129,'2009-12-31 20:45:54',0,69),(130,'2010-01-01 20:45:54',0,68),(131,'2010-01-03 16:37:58',0,67),(132,'2010-01-04 16:37:58',0,66),(133,'2010-01-05 16:37:58',0,65),(134,'2010-01-06 16:37:58',0,64),(135,'2010-01-07 16:37:58',0,63),(136,'2010-01-08 16:37:58',0,62),(137,'2010-01-09 16:37:58',0,61),(138,'2010-01-10 16:37:58',0,60),(139,'2010-01-11 16:37:58',0,59),(140,'2010-01-12 16:37:58',0,58),(141,'2010-01-13 05:53:58',0,94),(142,'2010-01-14 05:53:58',0,75),(143,'2010-01-15 05:53:58',0,72),(144,'2010-01-16 05:53:58',0,71),(145,'2010-01-17 05:53:58',0,70),(146,'2010-01-18 05:53:58',0,66),(147,'2010-01-19 05:53:58',0,65),(148,'2010-01-20 05:53:58',0,64),(149,'2010-01-21 05:53:58',0,63),(150,'2010-01-22 05:53:58',0,62),(151,'2010-01-23 05:53:58',0,61),(152,'2010-01-24 05:53:58',0,60),(153,'2010-01-25 05:53:58',0,59),(154,'2010-01-26 05:53:58',0,58),(155,'2010-01-27 05:53:58',0,57),(156,'2010-01-28 05:53:58',0,56),(157,'2010-01-29 05:32:04',0,81),(158,'2010-01-30 15:57:59',0,71),(159,'2010-01-31 15:57:59',0,70),(160,'2010-02-01 15:57:59',0,67),(161,'2010-02-02 15:57:59',0,66),(162,'2010-02-03 15:57:59',0,65),(163,'2010-02-04 15:57:59',0,64),(164,'2010-02-05 15:57:59',0,63),(165,'2010-02-06 15:57:59',0,62),(166,'2010-02-07 15:57:59',0,61),(167,'2010-02-08 15:57:59',0,60),(168,'2010-02-09 15:57:59',0,59),(169,'2010-02-10 15:57:59',0,58),(170,'2010-02-11 15:57:59',0,57),(171,'2010-02-12 15:57:59',0,56),(172,'2010-02-13 15:57:59',0,55),(173,'2010-02-14 15:57:59',0,54),(174,'2010-02-15 01:05:22',0,73),(175,'2010-02-16 01:05:22',0,71),(176,'2010-02-17 01:05:22',0,68),(177,'2010-02-18 01:05:22',0,67),(178,'2010-02-19 01:05:22',0,66),(179,'2010-02-20 01:05:22',0,65),(180,'2010-02-21 01:05:22',0,64),(181,'2010-02-22 01:05:22',0,63),(182,'2010-02-23 01:05:22',0,62),(183,'2010-02-24 01:05:22',0,61),(184,'2010-02-25 01:05:22',0,60),(185,'2010-02-26 01:05:22',0,59),(186,'2010-02-27 01:05:22',0,58),(187,'2010-02-28 01:05:22',0,57),(188,'2010-03-01 01:05:22',0,56),(189,'2010-03-02 01:05:22',0,55),(190,'2010-03-03 01:05:22',0,54),(191,'2010-03-04 01:05:22',0,53),(192,'2010-03-05 01:05:22',0,52),(193,'2010-03-06 01:05:22',0,51),(194,'2010-03-06 02:52:32',0,74),(195,'2010-03-07 02:52:32',0,69),(196,'2010-03-08 02:52:32',0,68),(197,'2010-03-09 02:52:32',0,67),(198,'2010-03-10 02:52:32',0,66),(199,'2010-03-11 02:52:32',0,65),(200,'2010-03-12 02:52:32',0,64),(201,'2010-03-13 02:52:32',0,63),(202,'2010-03-14 02:52:32',0,62),(203,'2010-03-15 02:52:32',0,61),(204,'2010-03-16 02:52:32',0,60),(205,'2010-03-17 02:52:32',0,59),(206,'2010-03-17 12:59:51',0,79),(207,'2010-03-18 12:59:51',0,69),(208,'2010-03-19 12:59:51',0,68),(209,'2010-03-20 12:59:51',0,67),(210,'2010-03-21 12:59:51',0,66),(211,'2010-03-22 12:59:51',0,65),(212,'2010-03-23 12:59:51',0,64),(213,'2010-03-24 12:59:51',0,63),(214,'2010-03-25 12:59:51',0,62),(215,'2010-03-26 12:59:51',0,61),(216,'2010-03-27 12:59:51',0,60),(217,'2010-03-28 12:59:51',0,59),(218,'2010-03-29 12:59:51',0,58),(219,'2010-03-30 12:59:51',0,57),(220,'2010-03-31 01:44:24',0,81),(221,'2010-04-01 01:44:24',0,75),(222,'2010-04-02 01:44:24',0,68),(223,'2010-04-03 01:44:24',0,67),(224,'2010-04-04 01:44:24',0,66),(225,'2010-04-05 01:44:24',0,64),(226,'2010-04-06 01:44:24',0,63),(227,'2010-04-07 01:44:24',0,62),(228,'2010-04-08 01:44:24',0,61),(229,'2010-04-09 01:44:24',0,60),(230,'2010-04-10 01:44:24',0,59),(231,'2010-04-11 01:44:24',0,58),(232,'2010-04-12 01:44:24',0,57),(233,'2010-04-13 01:44:24',0,56),(234,'2010-04-14 01:44:24',0,55),(235,'2010-04-14 02:52:06',0,77),(236,'2010-04-15 02:52:06',0,68),(237,'2010-04-16 02:52:06',0,67),(238,'2010-04-17 02:52:06',0,66),(239,'2010-04-18 02:52:06',0,65),(240,'2010-04-19 02:52:06',0,64),(241,'2010-04-20 02:52:06',0,63),(242,'2010-04-21 02:52:06',0,62),(243,'2010-04-22 02:20:31',0,88),(244,'2010-04-23 02:20:32',0,76),(245,'2010-04-24 02:20:32',0,68),(246,'2010-04-25 02:20:32',0,67),(247,'2010-04-26 02:20:32',0,66),(248,'2010-04-27 02:20:32',0,65),(249,'2010-04-28 02:20:32',0,64),(250,'2010-04-29 02:20:32',0,63),(251,'2010-04-30 02:20:32',0,62),(252,'2010-05-01 02:20:32',0,61),(253,'2010-05-02 02:20:32',0,60),(254,'2010-05-02 04:51:32',0,82),(255,'2010-05-03 04:51:32',0,70),(256,'2010-05-04 04:51:32',0,69),(257,'2010-05-05 04:51:32',0,68),(258,'2010-05-06 04:51:32',0,67),(259,'2010-05-07 04:51:32',0,66),(260,'2010-05-08 04:51:32',0,65),(261,'2010-05-09 04:51:32',0,64),(262,'2010-05-10 04:51:32',0,63),(263,'2010-05-11 04:51:32',0,62),(264,'2010-05-12 04:51:32',0,61),(265,'2010-05-13 04:51:32',0,60),(266,'2010-05-14 04:51:32',0,59),(267,'2010-05-14 11:22:24',0,78),(268,'2010-05-15 11:22:24',0,69),(269,'2010-05-16 11:22:24',0,68),(270,'2010-05-17 11:22:24',0,67),(271,'2010-05-18 11:22:24',0,66),(272,'2010-05-19 11:22:24',0,65),(273,'2010-05-20 11:22:24',0,64),(274,'2010-05-21 11:22:24',0,63),(275,'2010-05-22 11:22:24',0,62),(276,'2010-05-22 14:58:23',0,87),(277,'2010-05-23 14:58:23',0,86),(278,'2010-05-24 14:58:23',0,75),(279,'2010-05-25 14:58:23',0,72),(280,'2010-05-26 14:58:23',0,71),(281,'2010-05-27 14:58:23',0,70),(282,'2010-05-28 14:58:23',0,69),(283,'2010-05-29 14:58:23',0,68),(284,'2010-05-30 14:58:23',0,67),(285,'2010-05-31 14:58:23',0,66),(286,'2010-06-01 14:58:23',0,65),(287,'2010-06-02 14:58:23',0,64),(288,'2010-06-03 14:58:23',0,63),(289,'2010-06-04 14:58:23',0,62),(290,'2010-06-04 16:50:23',0,89),(291,'2010-06-05 16:50:23',0,88),(292,'2010-06-06 16:50:23',0,87),(293,'2010-06-07 16:50:23',0,86),(294,'2010-06-08 16:50:23',0,85),(295,'2010-06-09 16:50:23',0,84),(296,'2010-06-10 16:50:23',0,83),(297,'2010-06-11 16:50:23',0,82),(298,'2010-06-12 16:50:23',0,78),(299,'2010-06-13 16:50:23',0,68),(300,'2010-06-14 16:50:23',0,67),(301,'2010-06-14 20:48:50',0,87),(302,'2010-06-15 20:48:50',0,80),(303,'2010-06-17 17:17:18',0,79),(304,'2010-06-18 17:17:18',0,78),(305,'2010-06-19 17:17:18',0,77),(306,'2010-06-20 17:17:18',0,76),(307,'2010-06-21 17:17:18',0,75),(308,'2010-06-22 17:17:18',0,74),(309,'2010-06-23 17:17:18',0,73),(310,'2010-06-24 17:17:18',0,72),(311,'2010-06-25 17:17:18',0,71),(312,'2010-06-26 17:17:18',0,70),(313,'2010-06-27 17:17:18',0,69),(314,'2010-06-28 17:17:18',0,68),(315,'2010-06-29 17:17:18',0,67),(316,'2010-06-30 17:17:18',0,66),(317,'2010-07-01 15:57:54',0,103),(318,'2010-07-02 15:57:54',0,89),(319,'2010-07-03 15:57:54',0,86),(320,'2010-07-04 15:57:54',0,84),(321,'2010-07-05 15:57:54',0,81),(322,'2010-07-06 15:57:54',0,80),(323,'2010-07-07 15:57:54',0,79),(324,'2010-07-08 15:57:54',0,78),(325,'2010-07-09 15:57:54',0,77),(326,'2010-07-10 15:57:54',0,76),(327,'2010-07-11 15:57:54',0,75),(328,'2010-07-12 15:57:54',0,74),(329,'2010-07-12 22:14:08',0,95),(330,'2010-07-13 22:14:08',0,90),(331,'2010-07-14 22:14:08',0,86),(332,'2010-07-15 22:14:08',0,85),(333,'2010-07-16 22:14:08',0,84),(334,'2010-07-17 22:14:08',0,83),(335,'2010-07-18 22:14:08',0,82),(336,'2010-07-19 22:14:08',0,81),(337,'2010-07-20 22:14:08',0,80),(338,'2010-07-21 22:14:08',0,79),(339,'2010-07-22 22:14:08',0,78),(340,'2010-07-23 19:01:59',0,101),(341,'2010-07-24 19:01:59',0,92),(342,'2010-07-25 19:02:00',0,85),(343,'2010-07-26 19:02:00',0,84),(344,'2010-07-27 19:02:00',0,83),(345,'2010-07-28 19:02:00',0,82),(346,'2010-07-29 19:02:00',0,81),(347,'2010-07-30 19:02:00',0,80),(348,'2010-07-31 19:02:00',0,79),(349,'2010-08-01 19:02:00',0,78),(350,'2010-08-02 19:02:00',0,77),(351,'2010-08-03 19:02:00',0,76),(352,'2010-08-04 19:02:00',0,75),(353,'2010-08-05 19:02:00',0,74),(354,'2010-08-05 19:29:23',0,100),(355,'2010-08-06 19:29:23',0,93),(356,'2010-08-07 19:29:23',0,88),(357,'2010-08-08 19:29:23',0,87),(358,'2010-08-09 19:29:23',0,86),(359,'2010-08-10 19:29:23',0,85),(360,'2010-08-11 19:29:23',0,84),(361,'2010-08-12 19:29:23',0,83),(362,'2010-08-13 19:29:23',0,82),(363,'2010-08-14 19:29:23',0,81),(364,'2010-08-15 19:29:23',0,80),(365,'2010-08-16 19:29:23',0,79),(366,'2010-08-17 19:29:23',0,78),(367,'2010-08-18 19:29:23',0,77),(368,'2010-08-19 16:15:46',0,102),(369,'2010-08-20 16:15:46',0,89),(370,'2010-08-21 16:15:46',0,88),(371,'2010-08-22 16:15:46',0,86),(372,'2010-08-23 16:15:46',0,85),(373,'2010-08-24 16:15:46',0,84),(374,'2010-08-25 16:15:46',0,75),(375,'2010-08-26 16:15:46',0,74),(376,'2010-08-27 16:15:46',0,73),(377,'2010-08-28 16:15:46',0,72),(378,'2010-08-28 19:38:04',0,102),(379,'2010-08-29 19:38:04',0,88),(380,'2010-08-30 19:38:04',0,80),(381,'2010-08-31 19:38:04',0,79),(382,'2010-09-01 19:38:04',0,78),(383,'2010-09-02 19:38:04',0,77),(384,'2010-09-03 19:38:04',0,76),(385,'2010-09-04 19:38:04',0,75),(386,'2010-09-05 19:38:04',0,74),(387,'2010-09-06 19:38:04',0,73),(388,'2010-09-07 19:38:04',0,72),(389,'2010-09-08 19:38:04',0,71),(390,'2010-09-09 19:38:04',0,70),(391,'2010-09-10 19:38:04',0,69),(392,'2010-09-11 19:38:04',0,68),(393,'2010-09-12 15:58:37',0,97),(394,'2010-09-13 15:58:37',0,84),(395,'2010-09-14 15:58:37',0,83),(396,'2010-09-15 15:58:37',0,82),(397,'2010-09-16 15:58:37',0,81),(398,'2010-09-17 15:58:37',0,80),(399,'2010-09-18 15:58:37',0,79),(400,'2010-09-19 15:58:37',0,78),(401,'2010-09-20 15:58:37',0,77),(402,'2010-09-21 15:58:37',0,76),(403,'2010-09-22 15:58:37',0,75),(404,'2010-09-23 15:58:37',0,74),(405,'2010-09-24 15:58:37',0,73),(406,'2010-09-25 15:58:37',0,72),(407,'2010-09-26 15:58:37',0,71),(408,'2010-09-27 15:58:37',0,70),(409,'2010-09-28 15:58:37',0,69),(410,'2010-09-29 15:58:37',0,68),(411,'2010-09-30 15:58:37',0,67),(412,'2010-10-01 15:58:37',0,66),(413,'2010-10-02 15:58:37',0,65),(414,'2010-10-03 15:58:37',0,64),(415,'2010-10-04 15:58:37',0,63),(416,'2010-10-05 15:58:37',0,62),(417,'2010-10-05 21:59:01',0,93),(418,'2010-10-06 21:59:01',0,85),(419,'2010-10-07 21:59:01',0,76),(420,'2010-10-08 21:59:01',0,75),(421,'2010-10-09 21:59:01',0,74),(422,'2010-10-10 21:59:01',0,73),(423,'2010-10-11 21:59:01',0,72),(424,'2010-10-12 21:59:01',0,71),(425,'2010-10-13 21:59:01',0,70),(426,'2010-10-14 21:59:01',0,69),(427,'2010-10-15 21:59:01',0,68),(428,'2010-10-16 21:59:01',0,67),(429,'2010-10-17 21:59:01',0,66),(430,'2010-10-18 21:59:01',0,65),(431,'2010-10-19 21:59:01',0,64),(432,'2010-10-20 21:59:01',0,63),(433,'2010-10-21 21:59:01',0,62),(434,'2010-10-22 21:59:01',0,61),(435,'2010-10-23 21:59:01',0,60),(436,'2010-10-24 21:59:01',0,59),(437,'2010-10-25 00:19:49',0,82),(438,'2010-10-26 00:19:49',0,73),(439,'2010-10-27 00:19:49',0,68),(440,'2010-10-28 00:19:49',0,67),(441,'2010-10-29 00:19:49',0,66),(442,'2010-10-30 00:19:49',0,65),(443,'2010-10-31 00:19:49',0,64),(444,'2010-11-01 00:19:49',0,63),(445,'2010-11-02 00:19:49',0,62),(446,'2010-11-03 00:19:49',0,61),(447,'2010-11-04 00:19:49',0,60),(448,'2010-11-05 00:19:49',0,59),(449,'2010-11-06 00:19:49',0,58),(450,'2010-11-06 01:02:30',0,79),(451,'2010-11-07 01:02:30',0,78),(452,'2010-11-08 01:02:30',0,76),(453,'2010-11-09 01:02:30',0,75),(454,'2010-11-10 01:02:30',0,74),(455,'2010-11-11 01:02:30',0,73),(456,'2010-11-12 01:02:30',0,72),(457,'2010-11-13 01:02:30',0,71),(458,'2010-11-14 01:02:30',0,70),(459,'2010-11-15 01:02:30',0,69),(460,'2010-11-16 01:02:30',0,68),(461,'2010-11-17 01:02:30',0,67),(462,'2010-11-18 01:02:30',0,66),(463,'2010-11-19 01:02:30',0,65),(464,'2010-11-20 01:02:30',0,64),(465,'2010-11-21 01:02:30',0,63),(466,'2010-11-22 01:02:30',0,62),(467,'2010-11-23 01:02:30',0,61),(468,'2010-11-24 01:02:30',0,60),(469,'2010-11-24 02:20:30',0,84),(470,'2010-11-25 02:20:30',0,73),(471,'2010-11-26 02:20:30',0,71),(472,'2010-11-27 02:20:30',0,70),(473,'2010-11-28 02:20:30',0,69),(474,'2010-11-29 02:20:30',0,68),(475,'2010-11-30 02:20:30',0,67),(476,'2010-12-01 02:20:30',0,66),(477,'2010-12-02 02:20:30',0,65),(478,'2010-12-03 02:20:30',0,64),(479,'2010-12-04 02:20:30',0,63),(480,'2010-12-05 02:20:30',0,62),(481,'2010-12-06 02:20:30',0,61),(482,'2010-12-07 02:20:30',0,60),(483,'2010-12-08 02:20:30',0,59),(484,'2010-12-09 02:20:30',0,58),(485,'2010-12-10 02:20:30',0,57),(486,'2010-12-11 02:20:30',0,56),(487,'2010-12-11 23:51:50',0,84),(488,'2010-12-12 23:51:50',0,71),(489,'2010-12-13 23:51:50',0,70),(490,'2010-12-14 23:51:50',0,69),(491,'2010-12-15 23:51:50',0,68),(492,'2010-12-16 23:51:50',0,67),(493,'2010-12-17 23:51:50',0,66),(494,'2010-12-18 23:51:50',0,65),(495,'2010-12-19 23:51:50',0,64),(496,'2010-12-20 23:51:50',0,63),(497,'2010-12-21 23:51:50',0,62),(498,'2010-12-22 23:51:50',0,61),(499,'2010-12-23 23:51:50',0,60),(500,'2010-12-24 23:51:50',0,59),(501,'2010-12-25 23:51:50',0,58),(502,'2010-12-26 23:51:50',0,57),(503,'2010-12-27 23:51:50',0,56),(504,'2010-12-28 23:51:50',0,55),(505,'2010-12-29 13:10:05',0,75),(506,'2010-12-30 13:10:05',0,74),(507,'2010-12-31 13:10:06',0,72),(508,'2011-01-01 13:10:06',0,64),(509,'2011-01-02 13:10:06',0,63),(510,'2011-01-03 13:10:06',0,62),(511,'2011-01-04 13:10:06',0,61),(512,'2011-01-05 13:10:06',0,60),(513,'2011-01-06 13:10:06',0,59),(514,'2011-01-07 01:05:03',0,96),(515,'2011-01-08 01:05:03',0,78),(516,'2011-01-09 01:05:03',0,75),(517,'2011-01-10 01:05:03',0,74),(518,'2011-01-11 01:05:03',0,66),(519,'2011-01-12 01:05:03',0,65),(520,'2011-01-13 01:05:03',0,64),(521,'2011-01-14 01:05:03',0,63),(522,'2011-01-15 01:05:03',0,62),(523,'2011-01-16 01:05:03',0,61),(524,'2011-01-17 01:05:03',0,60),(525,'2011-01-18 01:05:03',0,59),(526,'2011-01-19 01:05:03',0,58),(527,'2011-01-20 01:05:03',0,57),(528,'2011-01-21 01:05:03',0,56),(529,'2011-01-22 01:05:03',0,55),(530,'2011-01-23 00:48:05',0,82),(531,'2011-01-24 00:48:05',0,71),(532,'2011-01-25 00:48:05',0,70),(533,'2011-01-26 00:48:05',0,69),(534,'2011-01-27 00:48:05',0,68),(535,'2011-01-28 00:48:05',0,67),(536,'2011-01-29 00:48:05',0,66),(537,'2011-01-30 00:48:05',0,65),(538,'2011-01-31 00:48:05',0,64),(539,'2011-02-01 00:48:05',0,63),(540,'2011-02-02 00:48:05',0,62),(541,'2011-02-03 00:48:05',0,61),(542,'2011-02-04 00:48:05',0,60),(543,'2011-02-05 00:48:05',0,59),(544,'2011-02-06 00:48:05',0,58),(545,'2011-02-07 00:48:05',0,57),(546,'2011-02-08 00:48:05',0,56),(547,'2011-02-09 00:48:05',0,55),(548,'2011-02-10 00:48:05',0,54),(549,'2011-02-10 01:11:02',0,77),(550,'2011-02-11 01:11:02',0,73),(551,'2011-02-12 01:11:02',0,69),(552,'2011-02-13 01:11:02',0,68),(553,'2011-02-14 01:11:02',0,67),(554,'2011-02-15 01:11:02',0,64),(555,'2011-02-16 01:11:02',0,63),(556,'2011-02-17 01:11:02',0,62),(557,'2011-02-18 01:11:02',0,61),(558,'2011-02-19 01:11:02',0,60),(559,'2011-02-20 01:11:02',0,59),(560,'2011-02-21 01:11:02',0,58),(561,'2011-02-22 01:11:02',0,57),(562,'2011-02-23 01:11:02',0,56),(563,'2011-02-24 01:11:02',0,55),(564,'2011-02-25 01:11:02',0,54),(565,'2011-02-26 01:11:02',0,53),(566,'2011-02-27 01:11:02',0,52),(567,'2011-02-28 01:11:02',0,51),(568,'2011-02-28 04:20:35',0,74),(569,'2011-03-01 04:20:35',0,65),(570,'2011-03-02 04:20:35',0,63),(571,'2011-03-03 04:20:35',0,62),(572,'2011-03-04 04:20:35',0,61),(573,'2011-03-05 04:20:35',0,60),(574,'2011-03-06 04:20:35',0,59),(575,'2011-03-07 04:20:35',0,58),(576,'2011-03-08 04:20:35',0,57),(577,'2011-03-09 04:20:35',0,56),(578,'2011-03-10 04:20:35',0,55),(579,'2011-03-11 04:20:35',0,54),(580,'2011-03-12 04:20:35',0,53),(581,'2011-03-13 04:20:35',0,52),(582,'2011-03-13 05:14:04',0,76),(583,'2011-03-14 05:14:04',0,65),(584,'2011-03-15 05:14:04',0,64),(585,'2011-03-16 05:14:04',0,62),(586,'2011-03-17 05:14:04',0,61),(587,'2011-03-18 05:14:04',0,60),(588,'2011-03-19 05:14:04',0,59),(589,'2011-03-20 05:14:04',0,58),(590,'2011-03-21 05:14:04',0,57),(591,'2011-03-22 05:14:04',0,56),(592,'2011-03-23 05:14:04',0,55),(593,'2011-03-24 05:14:04',0,54),(594,'2011-03-25 05:14:04',0,53),(595,'2011-03-26 05:14:04',0,52),(596,'2011-03-26 11:33:24',0,69),(597,'2011-03-27 11:33:24',0,66),(598,'2011-03-28 11:33:24',0,65),(599,'2011-03-29 11:33:24',0,64),(600,'2011-03-30 11:33:24',0,63),(601,'2011-03-31 11:33:24',0,62),(602,'2011-04-01 11:33:24',0,61),(603,'2011-04-02 11:33:24',0,60),(604,'2011-04-03 11:13:33',0,90),(605,'2011-04-04 11:13:33',0,80),(606,'2011-04-05 11:13:33',0,64),(607,'2011-04-06 11:13:33',0,63),(608,'2011-04-07 11:13:33',0,62),(609,'2011-04-08 11:13:33',0,61),(610,'2011-04-09 11:13:33',0,60),(611,'2011-04-10 11:13:33',0,59),(612,'2011-04-11 11:13:33',0,58),(613,'2011-04-12 11:13:33',0,57),(614,'2011-04-13 11:13:33',0,56),(615,'2011-04-14 11:13:33',0,55),(616,'2011-04-15 11:13:33',0,54),(617,'2011-04-15 11:26:00',0,67),(618,'2011-04-16 11:26:00',0,66),(619,'2011-04-17 11:26:00',0,65),(620,'2011-04-18 11:26:00',0,64),(621,'2011-04-19 11:26:00',0,63),(622,'2011-04-20 11:26:00',0,62),(623,'2011-04-21 11:26:00',0,61),(624,'2011-04-22 11:26:00',0,60),(625,'2011-04-23 11:26:00',0,59),(626,'2011-04-24 11:26:00',0,58),(627,'2011-04-25 11:26:00',0,57),(628,'2011-04-26 11:26:00',0,56),(629,'2011-04-27 11:26:00',0,55),(630,'2011-04-28 11:16:56',0,77),(631,'2011-04-29 11:16:56',0,70),(632,'2011-04-30 11:16:56',0,69),(633,'2011-05-01 11:16:56',0,68),(634,'2011-05-02 11:16:56',0,66),(635,'2011-05-03 11:16:56',0,65),(636,'2011-05-04 11:16:56',0,64),(637,'2011-05-05 11:16:56',0,63),(638,'2011-05-06 11:16:56',0,62),(639,'2011-05-06 18:22:02',0,86),(640,'2011-05-07 18:22:02',0,85),(641,'2011-05-08 18:22:02',0,84),(642,'2011-05-09 18:22:02',0,78),(643,'2011-05-10 18:22:02',0,77),(644,'2011-05-11 18:22:02',0,68),(645,'2011-05-12 18:22:02',0,66),(646,'2011-05-13 18:22:02',0,65),(647,'2011-05-14 18:22:02',0,64),(648,'2011-05-15 18:22:02',0,63),(649,'2011-05-16 18:22:02',0,62),(650,'2011-05-17 18:22:03',0,61),(651,'2011-05-18 18:22:03',0,60),(652,'2011-05-19 18:22:03',0,59),(653,'2011-05-20 18:22:03',0,58),(654,'2011-05-21 18:22:03',0,57),(655,'2011-05-21 19:48:42',0,84),(656,'2011-05-22 19:48:42',0,76),(657,'2011-05-23 19:48:42',0,75),(658,'2011-05-24 19:48:42',0,71),(659,'2011-05-25 19:48:42',0,68),(660,'2011-05-26 19:48:42',0,67),(661,'2011-05-27 19:48:42',0,66),(662,'2011-05-28 19:48:42',0,65),(663,'2011-05-29 19:48:42',0,64),(664,'2011-05-30 19:48:42',0,63),(665,'2011-05-31 19:48:42',0,62),(666,'2011-06-01 17:37:51',0,89),(667,'2011-06-02 17:37:51',0,85),(668,'2011-06-03 17:37:51',0,84),(669,'2011-06-04 17:37:51',0,82),(670,'2011-06-05 17:37:51',0,81),(671,'2011-06-06 17:37:51',0,80),(672,'2011-06-06 20:48:06',0,108),(673,'2011-06-07 20:48:06',0,94),(674,'2011-06-08 20:48:06',0,86),(675,'2011-06-09 20:48:06',0,85),(676,'2011-06-10 20:48:06',0,82),(677,'2011-06-11 20:48:06',0,79),(678,'2011-06-12 20:48:06',0,78),(679,'2011-06-13 20:48:06',0,77),(680,'2011-06-14 20:48:06',0,76),(681,'2011-06-15 20:48:06',0,75),(682,'2011-06-16 20:48:06',0,74),(683,'2011-06-17 20:48:06',0,73),(684,'2011-06-18 20:48:06',0,72),(685,'2011-06-19 20:48:06',0,71),(686,'2011-06-20 20:48:06',0,70),(687,'2011-06-21 20:48:06',0,69),(688,'2011-06-22 20:48:06',0,68),(689,'2011-06-22 23:41:15',0,97),(690,'2011-06-23 23:41:15',0,88),(691,'2011-06-24 23:41:15',0,87),(692,'2011-06-25 23:41:15',0,86),(693,'2011-06-26 23:41:15',0,85),(694,'2011-06-27 23:41:15',0,84),(695,'2011-06-28 23:41:15',0,83),(696,'2011-06-29 23:41:15',0,82),(697,'2011-06-30 23:41:15',0,81),(698,'2011-07-01 23:41:15',0,80),(699,'2011-07-02 23:41:15',0,79),(700,'2011-07-03 23:41:15',0,78),(701,'2011-07-04 15:50:20',0,97),(702,'2011-07-05 15:50:20',0,90),(703,'2011-07-06 15:50:20',0,89),(704,'2011-07-07 15:50:20',0,84),(705,'2011-07-08 15:50:20',0,83),(706,'2011-07-09 15:50:20',0,82),(707,'2011-07-10 15:50:20',0,81),(708,'2011-07-11 15:50:20',0,80),(709,'2011-07-12 15:50:20',0,79),(710,'2011-07-13 15:50:20',0,78),(711,'2011-07-14 15:50:20',0,77),(712,'2011-07-15 15:50:20',0,76),(713,'2011-07-16 15:50:20',0,75),(714,'2011-07-16 17:43:20',0,102),(715,'2011-07-17 17:43:20',0,97),(716,'2011-07-18 17:43:20',0,93),(717,'2011-07-19 17:43:20',0,92),(718,'2011-07-20 17:43:20',0,91),(719,'2011-07-21 17:43:20',0,90),(720,'2011-07-22 17:43:20',0,89),(721,'2011-07-23 17:43:20',0,88),(722,'2011-07-24 17:43:20',0,87),(723,'2011-07-25 17:43:20',0,86),(724,'2011-07-26 17:43:20',0,85),(725,'2011-07-27 17:43:20',0,84),(726,'2011-07-28 17:43:20',0,83),(727,'2011-07-29 17:43:20',0,82),(728,'2011-07-30 17:43:20',0,81),(729,'2011-07-31 17:43:20',0,80),(730,'2011-08-01 17:43:20',0,79),(731,'2011-08-02 17:43:20',0,78),(732,'2011-08-03 17:43:20',0,77),(733,'2011-08-04 17:43:20',0,76),(734,'2011-08-05 17:43:20',0,75),(735,'2011-08-05 18:44:03',0,101),(736,'2011-08-06 18:44:03',0,90),(737,'2011-08-07 18:44:03',0,89),(738,'2011-08-08 18:44:03',0,88),(739,'2011-08-09 18:44:03',0,86),(740,'2011-08-10 18:44:03',0,85),(741,'2011-08-11 18:44:03',0,84),(742,'2011-08-12 18:44:03',0,83),(743,'2011-08-14 09:05:03',0,82),(744,'2011-08-15 09:05:03',0,81),(745,'2011-08-16 09:05:03',0,80),(746,'2011-08-17 09:05:03',0,79),(747,'2011-08-18 09:05:03',0,78),(748,'2011-08-19 09:05:03',0,77),(749,'2011-08-20 09:05:03',0,76),(750,'2011-08-20 19:02:54',0,98),(751,'2011-08-21 19:02:54',0,88),(752,'2011-08-22 19:02:54',0,87),(753,'2011-08-23 19:02:54',0,86),(754,'2011-08-24 19:02:54',0,85),(755,'2011-08-25 19:02:54',0,84),(756,'2011-08-26 19:02:54',0,83),(757,'2011-08-27 19:02:54',0,82),(758,'2011-08-28 19:02:54',0,81),(759,'2011-08-29 19:02:54',0,80),(760,'2011-08-30 19:02:54',0,79),(761,'2011-08-31 19:02:54',0,78),(762,'2011-09-01 19:02:54',0,77),(763,'2011-09-01 20:32:50',0,98),(764,'2011-09-02 20:32:50',0,95),(765,'2011-09-03 20:32:50',0,86),(766,'2011-09-04 20:32:50',0,81),(767,'2011-09-05 20:32:50',0,80),(768,'2011-09-06 20:32:50',0,79),(769,'2011-09-07 20:32:50',0,77),(770,'2011-09-08 20:32:50',0,76),(771,'2011-09-09 20:32:50',0,75),(772,'2011-09-10 20:32:50',0,74),(773,'2011-09-11 20:32:50',0,73),(774,'2011-09-12 20:32:50',0,72),(775,'2011-09-13 01:13:39',0,95),(776,'2011-09-14 01:13:39',0,80),(777,'2011-09-15 01:13:39',0,79),(778,'2011-09-16 01:13:39',0,77),(779,'2011-09-17 01:13:39',0,76),(780,'2011-09-18 01:13:39',0,75),(781,'2011-09-19 01:13:39',0,74),(782,'2011-09-20 01:13:39',0,73),(783,'2011-09-21 01:13:39',0,72),(784,'2011-09-22 01:13:39',0,71),(785,'2011-09-23 01:13:39',0,70),(786,'2011-09-23 21:59:07',0,102),(787,'2011-09-24 21:59:07',0,91),(788,'2011-09-25 21:59:07',0,90),(789,'2011-09-26 21:59:07',0,83),(790,'2011-09-27 21:59:07',0,82),(791,'2011-09-28 21:59:07',0,81),(792,'2011-09-29 21:59:07',0,80),(793,'2011-09-30 21:59:07',0,79),(794,'2011-10-01 21:59:07',0,78),(795,'2011-10-02 21:59:07',0,77),(796,'2011-10-03 21:59:07',0,76),(797,'2011-10-04 21:59:07',0,75),(798,'2011-10-05 21:59:07',0,74),(799,'2011-10-06 21:59:07',0,73),(800,'2011-10-07 21:59:07',0,72),(801,'2011-10-08 21:59:07',0,71),(802,'2011-10-09 21:59:07',0,70),(803,'2011-10-10 21:59:07',0,69),(804,'2011-10-11 21:59:07',0,68),(805,'2011-10-12 21:59:07',0,67),(806,'2011-10-13 21:59:07',0,66),(807,'2011-10-14 21:59:07',0,65),(808,'2011-10-15 21:59:07',0,64),(809,'2011-10-16 21:59:07',0,63),(810,'2011-10-17 21:59:07',0,62),(811,'2011-10-18 11:19:38',0,88),(812,'2011-10-19 11:19:38',0,76),(813,'2011-10-20 11:19:38',0,75),(814,'2011-10-21 11:19:38',0,74),(815,'2011-10-22 11:19:38',0,73),(816,'2011-10-23 11:19:38',0,72),(817,'2011-10-24 11:19:38',0,71),(818,'2011-10-25 11:19:38',0,70),(819,'2011-10-26 11:19:38',0,69),(820,'2011-10-27 11:19:38',0,68),(821,'2011-10-28 11:19:38',0,67),(822,'2011-10-29 11:19:38',0,66),(823,'2011-10-29 11:34:18',0,81),(824,'2011-10-30 11:34:18',0,80),(825,'2011-10-31 11:34:18',0,79),(826,'2011-11-01 11:34:18',0,78),(827,'2011-11-02 11:34:18',0,75),(828,'2011-11-03 11:34:18',0,70),(829,'2011-11-04 11:34:18',0,69),(830,'2011-11-05 11:34:18',0,68),(831,'2011-11-06 11:34:18',0,67),(832,'2011-11-07 11:34:18',0,66),(833,'2011-11-08 11:34:18',0,65),(834,'2011-11-09 11:34:18',0,64),(835,'2011-11-10 11:34:18',0,63),(836,'2011-11-11 02:33:07',0,93),(837,'2011-11-12 02:33:07',0,81),(838,'2011-11-13 02:33:07',0,76),(839,'2011-11-14 02:33:07',0,75),(840,'2011-11-15 02:33:07',0,74),(841,'2011-11-16 02:33:07',0,73),(842,'2011-11-17 02:33:07',0,72),(843,'2011-11-18 02:33:07',0,71),(844,'2011-11-19 02:33:07',0,70),(845,'2011-11-20 02:33:07',0,69),(846,'2011-11-21 02:33:07',0,68),(847,'2011-11-22 02:33:07',0,67),(848,'2011-11-23 02:33:07',0,66),(849,'2011-11-24 02:33:07',0,65),(850,'2011-11-25 02:33:07',0,64),(851,'2011-11-26 02:33:07',0,63),(852,'2011-11-27 02:33:07',0,62),(853,'2011-11-28 02:33:07',0,61),(854,'2011-11-28 12:35:22',0,79),(855,'2011-11-29 12:35:22',0,72),(856,'2011-11-30 12:35:22',0,71),(857,'2011-12-01 12:35:22',0,70),(858,'2011-12-02 12:35:22',0,69),(859,'2011-12-03 12:35:22',0,68),(860,'2011-12-04 12:35:22',0,67),(861,'2011-12-05 12:35:22',0,66),(862,'2011-12-06 12:35:22',0,65),(863,'2011-12-07 12:35:22',0,64),(864,'2011-12-08 12:35:22',0,63),(865,'2011-12-09 12:35:22',0,62),(866,'2011-12-10 00:40:24',0,89),(867,'2011-12-11 00:40:24',0,83),(868,'2011-12-12 00:40:24',0,78),(869,'2011-12-13 00:40:24',0,76),(870,'2011-12-14 00:40:24',0,75),(871,'2011-12-15 00:40:24',0,74),(872,'2011-12-16 00:40:24',0,73),(873,'2011-12-17 00:40:24',0,72),(874,'2011-12-18 00:40:24',0,71),(875,'2011-12-19 00:40:24',0,70),(876,'2011-12-20 00:40:24',0,69),(877,'2011-12-21 00:40:24',0,68),(878,'2011-12-22 00:40:24',0,67),(879,'2011-12-23 00:40:24',0,66),(880,'2011-12-24 00:40:24',0,65),(881,'2011-12-25 00:40:24',0,64),(882,'2011-12-26 00:40:24',0,63),(883,'2011-12-27 00:40:24',0,62),(884,'2011-12-28 00:40:24',0,61),(885,'2011-12-29 00:40:24',0,60),(886,'2011-12-29 00:59:46',0,82),(887,'2011-12-30 00:59:46',0,75),(888,'2011-12-31 00:59:46',0,74),(889,'2012-01-01 00:59:46',0,73),(890,'2012-01-02 00:59:46',0,72),(891,'2012-01-03 00:59:46',0,71),(892,'2012-01-04 00:59:46',0,70),(893,'2012-01-05 00:59:46',0,69),(894,'2012-01-06 00:59:46',0,68),(895,'2012-01-07 00:59:46',0,67),(896,'2012-01-08 00:59:46',0,66),(897,'2012-01-09 00:59:46',0,65),(898,'2012-01-10 00:59:46',0,64),(899,'2012-01-11 00:59:46',0,63),(900,'2012-01-11 05:26:32',0,85),(901,'2012-01-12 05:26:32',0,82),(902,'2012-01-13 05:26:32',0,78),(903,'2012-01-14 05:26:32',0,77),(904,'2012-01-15 05:26:32',0,76),(905,'2012-01-16 05:26:32',0,75),(906,'2012-01-17 05:26:32',0,74),(907,'2012-01-18 05:26:32',0,73),(908,'2012-01-19 05:26:32',0,72),(909,'2012-01-20 05:26:32',0,71),(910,'2012-01-21 05:26:32',0,70),(911,'2012-01-22 05:26:32',0,69),(912,'2012-01-23 05:26:32',0,68),(913,'2012-01-24 05:26:32',0,67),(914,'2012-01-25 05:26:32',0,66),(915,'2012-01-26 05:26:32',0,65),(916,'2012-01-27 05:26:32',0,64),(917,'2012-01-28 05:26:32',0,63),(918,'2012-01-29 05:26:32',0,62),(919,'2012-01-30 00:23:37',0,85),(920,'2012-01-31 00:23:37',0,79),(921,'2012-02-01 00:23:37',0,76),(922,'2012-02-02 00:23:37',0,75),(923,'2012-02-03 00:23:37',0,74),(924,'2012-02-04 00:23:37',0,73),(925,'2012-02-05 00:23:37',0,71),(926,'2012-02-06 00:23:37',0,70),(927,'2012-02-07 00:23:37',0,69),(928,'2012-02-08 00:23:37',0,68),(929,'2012-02-09 00:23:37',0,67),(930,'2012-02-10 00:23:37',0,66),(931,'2012-02-11 00:23:37',0,65),(932,'2012-02-12 00:23:37',0,64),(933,'2012-02-13 00:23:37',0,63),(934,'2012-02-14 00:23:37',0,62),(935,'2012-02-15 00:23:37',0,61),(936,'2012-02-16 00:23:37',0,60),(937,'2012-02-17 00:23:37',0,59),(938,'2012-02-17 01:44:15',0,81),(939,'2012-02-18 01:44:15',0,77),(940,'2012-02-19 01:44:15',0,76),(941,'2012-02-20 01:44:15',0,75),(942,'2012-02-21 01:44:15',0,74),(943,'2012-02-22 01:44:15',0,73),(944,'2012-02-23 01:44:15',0,72),(945,'2012-02-24 01:44:15',0,71),(946,'2012-02-25 01:44:15',0,70),(947,'2012-02-26 01:44:15',0,69),(948,'2012-02-27 01:44:15',0,68),(949,'2012-02-28 01:44:15',0,67),(950,'2012-02-29 01:44:15',0,66),(951,'2012-03-01 01:44:15',0,65),(952,'2012-03-02 01:44:15',0,64),(953,'2012-03-03 19:18:46',0,63),(954,'2012-03-04 19:18:46',0,62),(955,'2012-03-05 19:18:46',0,61),(956,'2012-03-06 01:25:25',0,84),(957,'2012-03-07 01:25:25',0,78),(958,'2012-03-08 01:25:25',0,77),(959,'2012-03-09 01:25:25',0,73),(960,'2012-03-10 01:25:44',0,72),(961,'2012-03-11 01:25:49',0,71),(962,'2012-03-12 01:25:49',0,70),(963,'2012-03-13 01:25:49',0,69),(964,'2012-03-14 01:25:50',0,68),(965,'2012-03-14 18:50:48',0,88),(966,'2012-03-15 18:50:48',0,81),(967,'2012-03-16 18:50:53',0,80),(968,'2012-03-17 18:51:04',0,79),(969,'2012-03-18 18:51:04',0,78),(970,'2012-03-19 18:51:04',0,75),(971,'2012-03-20 18:51:04',0,74),(972,'2012-03-21 18:51:04',0,73),(973,'2012-03-22 18:51:04',0,72),(974,'2012-03-23 18:51:09',0,71),(975,'2012-03-24 03:04:51',0,101),(976,'2012-03-25 03:04:56',0,84),(977,'2012-03-26 03:04:56',0,78),(978,'2012-03-27 03:04:56',0,76),(979,'2012-03-28 03:04:56',0,72),(980,'2012-03-29 03:04:56',0,71),(981,'2012-03-30 03:04:56',0,70),(982,'2012-03-31 03:05:06',0,69),(983,'2012-04-01 03:05:12',0,68),(984,'2012-04-01 15:59:29',0,93),(985,'2012-04-02 15:59:29',0,82),(986,'2012-04-03 15:59:29',0,66),(987,'2012-04-04 15:59:29',0,65),(988,'2012-04-05 15:59:29',0,64),(989,'2012-04-06 15:59:29',0,63),(990,'2012-04-07 01:57:50',0,97),(991,'2012-04-08 01:57:57',0,96),(992,'2012-04-09 01:57:57',0,84),(993,'2012-04-10 01:57:57',0,83),(994,'2012-04-11 01:57:57',0,82),(995,'2012-04-12 01:57:57',0,81),(996,'2012-04-13 01:57:57',0,80),(997,'2012-04-14 01:58:04',0,75),(998,'2012-04-15 01:58:10',0,74),(999,'2012-04-16 01:58:10',0,72),(1000,'2012-04-17 01:58:10',0,71),(1001,'2012-04-18 01:58:10',0,70),(1002,'2012-04-19 01:58:10',0,69),(1003,'2012-04-20 01:58:10',0,68),(1004,'2012-04-21 01:58:17',0,67),(1005,'2012-04-22 01:58:24',0,66),(1006,'2012-04-23 01:58:24',0,65),(1007,'2012-04-24 01:58:24',0,64),(1008,'2012-04-24 15:34:43',0,103),(1009,'2012-04-25 15:34:43',0,88),(1010,'2012-04-26 15:34:43',0,83),(1011,'2012-04-27 15:34:43',0,82),(1012,'2012-04-28 15:34:57',0,77),(1013,'2012-04-29 15:34:57',0,76),(1014,'2012-04-30 15:34:57',0,75),(1015,'2012-05-01 15:34:57',0,74),(1016,'2012-05-02 20:29:40',0,73),(1017,'2012-05-03 20:29:40',0,72),(1018,'2012-05-04 15:43:16',0,96),(1019,'2012-05-05 15:43:17',0,95),(1020,'2012-05-06 15:43:17',0,94),(1021,'2012-05-07 15:43:17',0,78),(1022,'2012-05-08 15:43:17',0,76),(1023,'2012-05-09 15:43:17',0,75),(1024,'2012-05-10 15:43:17',0,74),(1025,'2012-05-11 15:43:17',0,73),(1026,'2012-05-12 15:43:32',0,71),(1027,'2012-05-13 15:43:32',0,70),(1028,'2012-05-14 15:43:32',0,69),(1029,'2012-05-15 15:43:32',0,68),(1030,'2012-05-16 00:09:24',0,91),(1031,'2012-05-17 00:09:24',0,90),(1032,'2012-05-18 00:09:24',0,86),(1033,'2012-05-19 00:09:41',0,85),(1034,'2012-05-20 00:09:41',0,84),(1035,'2012-05-21 00:09:41',0,79),(1036,'2012-05-22 00:09:41',0,78),(1037,'2012-05-23 00:09:41',0,77),(1038,'2012-05-24 00:09:41',0,76),(1039,'2012-05-25 00:09:41',0,75),(1040,'2012-05-26 00:10:05',0,74),(1041,'2012-05-27 00:10:14',0,73),(1042,'2012-05-28 00:10:14',0,72),(1043,'2012-05-29 00:10:14',0,71),(1044,'2012-05-30 00:10:14',0,70),(1045,'2012-05-31 00:10:14',0,69),(1046,'2012-05-31 03:25:32',0,91),(1047,'2012-06-01 03:25:32',0,86),(1048,'2012-06-02 03:25:49',0,85),(1049,'2012-06-03 03:25:55',0,84),(1050,'2012-06-04 03:25:55',0,83),(1051,'2012-06-05 03:25:55',0,82),(1052,'2012-06-06 03:25:55',0,81),(1053,'2012-06-07 03:25:55',0,80),(1054,'2012-06-08 03:25:55',0,79),(1055,'2012-06-09 03:26:15',0,78),(1056,'2012-06-10 03:26:18',0,77),(1057,'2012-06-11 03:26:18',0,76),(1058,'2012-06-12 03:26:18',0,75),(1059,'2012-06-13 03:26:18',0,74),(1060,'2012-06-14 03:26:18',0,73),(1061,'2012-06-15 03:26:18',0,72),(1062,'2012-06-16 03:26:40',0,71),(1063,'2012-06-17 03:26:48',0,70),(1064,'2012-06-18 03:26:48',0,69),(1065,'2012-06-18 15:56:05',0,94),(1066,'2012-06-20 14:44:50',0,93),(1067,'2012-06-21 14:44:50',0,92),(1068,'2012-06-22 20:36:18',0,91),(1069,'2012-06-22 21:45:12',0,114),(1070,'2012-06-23 21:45:12',0,113),(1071,'2012-06-24 21:45:12',0,108),(1072,'2012-06-25 21:45:12',0,105),(1073,'2012-06-26 21:45:32',0,104),(1074,'2012-06-27 21:45:32',0,103),(1075,'2012-06-28 21:45:32',0,102),(1076,'2012-06-29 21:45:32',0,101),(1077,'2012-06-30 21:45:32',0,100),(1078,'2012-07-01 21:45:32',0,99),(1079,'2012-07-02 21:45:32',0,98),(1080,'2012-07-03 21:45:57',0,95),(1081,'2012-07-04 21:46:03',0,92),(1082,'2012-07-05 21:46:03',0,91),(1083,'2012-07-06 21:46:03',0,90),(1084,'2012-07-07 21:46:03',0,87),(1085,'2012-07-08 21:46:03',0,86),(1086,'2012-07-09 21:46:03',0,85),(1087,'2012-07-10 21:46:17',0,84),(1088,'2012-07-11 21:46:25',0,83),(1089,'2012-07-12 15:47:54',0,108),(1090,'2012-07-13 15:47:54',0,96),(1091,'2012-07-14 15:47:54',0,95),(1092,'2012-07-15 15:47:54',0,92),(1093,'2012-07-16 15:47:54',0,91),(1094,'2012-07-17 15:47:58',0,90),(1095,'2012-07-18 15:39:30',0,109),(1096,'2012-07-19 15:39:30',0,103),(1097,'2012-07-20 15:39:30',0,97),(1098,'2012-07-21 20:40:07',0,96),(1099,'2012-07-22 20:40:07',0,95),(1100,'2012-07-24 16:58:07',0,90),(1101,'2012-07-25 16:58:07',0,89),(1102,'2012-07-26 16:58:07',0,88),(1103,'2012-08-04 18:45:22',0,87),(1104,'2012-08-05 18:45:22',0,86),(1105,'2012-08-06 18:45:22',0,85),(1106,'2012-08-07 18:45:22',0,84),(1107,'2012-08-09 17:54:29',0,83),(1108,'2012-08-09 21:45:12',0,103),(1109,'2012-08-10 21:45:12',0,94),(1110,'2012-08-11 21:45:12',0,92),(1111,'2012-08-12 21:45:12',0,85),(1112,'2012-08-14 18:51:15',0,84),(1113,'2012-08-16 20:03:07',0,83),(1114,'2012-08-17 20:03:07',0,82),(1115,'2012-08-18 20:03:07',0,81),(1116,'2012-08-19 20:03:07',0,80),(1117,'2012-08-20 20:03:07',0,79),(1118,'2012-08-21 20:03:07',0,78),(1119,'2012-08-22 20:03:29',0,77),(1120,'2012-08-23 20:03:44',0,76),(1121,'2012-08-24 19:28:20',0,100),(1122,'2012-08-25 19:28:20',0,88),(1123,'2012-08-26 19:28:20',0,87),(1124,'2012-08-27 19:28:20',0,86),(1125,'2012-08-28 19:28:21',0,85),(1126,'2012-08-29 19:28:25',0,84),(1127,'2012-08-30 19:28:44',0,83),(1128,'2012-08-31 19:28:44',0,82),(1129,'2012-09-01 19:28:44',0,81),(1130,'2012-09-02 19:28:44',0,80),(1131,'2012-09-03 19:28:44',0,79),(1132,'2012-09-04 19:28:44',0,78),(1133,'2012-09-05 19:28:45',0,77),(1134,'2012-09-06 19:29:06',0,76),(1135,'2012-09-07 19:29:06',0,75),(1136,'2012-09-08 19:29:06',0,74),(1137,'2012-09-09 19:29:06',0,73),(1138,'2012-09-10 16:41:24',0,98),(1139,'2012-09-11 16:41:25',0,87),(1140,'2012-09-12 16:41:25',0,86),(1141,'2012-09-13 16:41:45',0,74),(1142,'2012-09-14 16:41:45',0,72),(1143,'2012-09-15 16:41:45',0,71),(1144,'2012-09-16 16:41:45',0,70),(1145,'2012-09-17 16:41:45',0,69),(1146,'2012-09-18 16:41:45',0,68),(1147,'2012-09-19 16:41:45',0,67),(1148,'2012-09-20 16:42:05',0,66),(1149,'2012-09-20 21:27:30',0,87),(1150,'2012-09-21 21:27:30',0,82),(1151,'2012-09-22 21:27:30',0,81),(1152,'2012-09-23 21:27:30',0,79),(1153,'2012-09-24 21:27:30',0,78),(1154,'2012-09-25 21:27:30',0,76),(1155,'2012-09-26 21:27:33',0,74),(1156,'2012-09-27 21:27:50',0,73),(1157,'2012-09-28 21:27:50',0,72),(1158,'2012-09-29 21:27:50',0,71),(1159,'2012-09-30 21:27:50',0,70),(1160,'2012-10-01 21:27:50',0,69),(1161,'2012-10-02 21:27:50',0,68),(1162,'2012-10-03 21:27:53',0,67),(1163,'2012-10-03 21:49:54',0,96),(1164,'2012-10-04 21:50:10',0,81),(1165,'2012-10-05 21:50:10',0,66),(1166,'2012-10-06 21:50:10',0,65),(1167,'2012-10-07 21:50:10',0,64),(1168,'2012-10-08 21:50:10',0,63),(1169,'2012-10-09 21:50:10',0,62),(1170,'2012-10-10 21:50:10',0,61),(1171,'2012-10-11 21:50:10',0,60),(1172,'2012-10-12 21:50:10',0,59),(1173,'2012-10-13 21:50:10',0,58),(1174,'2012-10-14 21:50:10',0,57),(1175,'2012-10-15 21:50:10',0,56),(1176,'2012-10-16 00:53:03',0,78),(1177,'2012-10-17 00:53:03',0,74),(1178,'2012-10-18 00:53:11',0,73),(1179,'2012-10-19 00:53:23',0,71),(1180,'2012-10-20 00:53:23',0,70),(1181,'2012-10-21 00:53:23',0,69),(1182,'2012-10-22 00:53:23',0,68),(1183,'2012-10-23 00:53:23',0,67),(1184,'2012-10-24 00:53:23',0,66),(1185,'2012-10-25 00:53:23',0,65),(1186,'2012-10-26 00:53:23',0,64),(1187,'2012-10-27 00:53:23',0,63),(1188,'2012-10-30 15:08:36',0,62),(1189,'2012-10-31 15:08:36',0,61),(1190,'2012-11-01 15:08:36',0,60),(1191,'2012-11-02 15:08:36',0,59),(1192,'2012-11-03 15:08:36',0,58),(1193,'2012-11-04 15:08:36',0,57),(1194,'2012-11-05 15:08:36',0,56),(1195,'2012-11-06 15:08:36',0,55),(1196,'2012-11-07 15:08:36',0,54),(1197,'2012-11-08 15:08:36',0,53),(1198,'2012-11-09 15:08:36',0,52),(1199,'2012-11-10 00:41:32',0,79),(1200,'2012-11-11 00:41:32',0,71),(1201,'2012-11-12 00:41:32',0,69),(1202,'2012-11-13 00:41:32',0,68),(1203,'2012-11-14 00:41:32',0,67),(1204,'2012-11-15 00:41:32',0,66),(1205,'2012-11-16 00:41:32',0,65),(1206,'2012-11-17 00:41:32',0,64),(1207,'2012-11-18 00:41:32',0,63),(1208,'2012-11-19 00:41:32',0,62),(1209,'2012-11-20 00:41:32',0,61),(1210,'2012-11-21 00:41:32',0,60),(1211,'2012-11-22 00:41:32',0,59),(1212,'2012-11-23 00:41:32',0,58),(1213,'2012-11-24 00:41:32',0,57),(1214,'2012-11-25 00:41:32',0,56),(1215,'2012-11-26 00:41:32',0,55),(1216,'2012-11-27 00:41:32',0,54),(1217,'2012-11-27 00:57:07',0,77),(1218,'2012-11-28 00:57:07',0,70),(1219,'2012-11-29 00:57:07',0,66),(1220,'2012-11-30 00:57:07',0,65),(1221,'2012-12-01 00:57:07',0,64),(1222,'2012-12-02 00:57:07',0,63),(1223,'2012-12-03 00:57:07',0,62),(1224,'2012-12-04 00:57:07',0,61),(1225,'2012-12-05 00:57:07',0,60),(1226,'2012-12-06 00:57:07',0,59),(1227,'2012-12-07 00:57:07',0,58),(1228,'2012-12-08 00:57:07',0,57),(1229,'2012-12-09 00:57:07',0,56),(1230,'2012-12-10 00:57:07',0,55),(1231,'2012-12-11 00:57:07',0,54),(1232,'2012-12-12 00:57:07',0,53),(1233,'2012-12-13 00:57:07',0,52),(1234,'2012-12-13 02:53:52',0,74),(1235,'2012-12-14 02:53:52',0,69),(1236,'2012-12-15 02:53:52',0,68),(1237,'2012-12-16 02:53:52',0,67),(1238,'2012-12-17 02:56:40',0,66),(1239,'2012-12-18 02:56:40',0,65),(1240,'2012-12-19 02:56:41',0,64),(1241,'2012-12-20 02:56:41',0,63),(1242,'2012-12-21 02:56:41',0,62),(1243,'2012-12-22 02:56:41',0,61),(1244,'2012-12-23 02:56:41',0,60),(1245,'2012-12-24 02:56:41',0,59),(1246,'2012-12-25 02:56:41',0,58),(1247,'2012-12-27 14:58:35',0,57),(1248,'2012-12-28 16:49:25',0,56),(1249,'2012-12-29 16:49:25',0,55),(1250,'2012-12-30 16:49:25',0,54),(1251,'2012-12-31 00:47:34',0,81),(1252,'2013-01-01 00:47:34',0,73),(1253,'2013-01-02 00:47:34',0,72),(1254,'2013-01-03 00:47:34',0,67),(1255,'2013-01-04 00:48:00',0,66),(1256,'2013-01-05 00:48:05',0,65),(1257,'2013-01-06 00:48:05',0,64),(1258,'2013-01-07 00:48:05',0,63),(1259,'2013-01-08 00:48:05',0,62),(1260,'2013-01-09 00:48:05',0,61),(1261,'2013-01-10 00:48:05',0,60),(1262,'2013-01-11 00:48:11',0,59),(1263,'2013-01-12 00:48:11',0,58),(1264,'2013-01-13 00:48:11',0,57),(1265,'2013-01-14 00:48:11',0,56),(1266,'2013-01-15 00:48:11',0,55),(1267,'2013-01-16 00:48:11',0,54),(1268,'2013-01-17 00:48:11',0,53),(1269,'2013-01-18 00:48:30',0,52),(1270,'2013-01-18 01:54:37',0,78),(1271,'2013-01-19 01:54:37',0,76),(1272,'2013-01-20 01:54:37',0,69),(1273,'2013-01-21 01:54:37',0,68),(1274,'2013-01-22 01:54:37',0,67),(1275,'2013-01-23 01:54:37',0,66),(1276,'2013-01-24 01:54:37',0,65),(1277,'2013-01-25 01:54:58',0,64),(1278,'2013-01-26 01:54:58',0,63),(1279,'2013-01-27 01:54:58',0,62),(1280,'2013-01-28 01:54:58',0,61),(1281,'2013-01-29 01:54:58',0,60),(1282,'2013-01-30 01:54:58',0,59),(1283,'2013-01-31 01:54:58',0,58),(1284,'2013-02-01 01:55:18',0,57),(1285,'2013-02-02 01:55:19',0,56),(1286,'2013-02-03 01:55:19',0,55),(1287,'2013-02-04 01:55:19',0,54),(1288,'2013-02-05 01:55:19',0,53),(1289,'2013-02-06 01:55:19',0,52),(1290,'2013-02-07 01:55:19',0,51),(1291,'2013-02-07 02:26:19',0,71),(1292,'2013-02-09 15:35:10',0,70),(1293,'2013-02-10 18:55:24',0,68),(1294,'2013-02-11 18:55:24',0,67),(1295,'2013-02-12 18:55:24',0,66),(1296,'2013-02-13 18:55:24',0,65),(1297,'2013-02-14 18:55:46',0,64),(1298,'2013-02-15 18:55:46',0,63),(1299,'2013-02-16 18:55:46',0,62),(1300,'2013-02-17 18:55:46',0,61),(1301,'2013-02-18 18:55:46',0,60),(1302,'2013-02-19 18:55:46',0,59),(1303,'2013-02-20 18:55:46',0,58),(1304,'2013-02-21 18:56:07',0,57),(1305,'2013-02-22 18:56:07',0,56),(1306,'2013-02-23 18:56:07',0,55),(1307,'2013-02-24 18:56:08',0,54),(1308,'2013-02-25 18:56:08',0,53),(1309,'2013-02-26 18:56:08',0,52),(1310,'2013-02-27 13:11:40',0,72),(1311,'2013-02-28 13:11:40',0,68),(1312,'2013-03-01 13:12:02',0,67),(1313,'2013-03-02 13:12:02',0,66),(1314,'2013-03-03 13:12:02',0,65),(1315,'2013-03-04 13:12:02',0,64),(1316,'2013-03-05 13:12:02',0,63),(1317,'2013-03-06 13:12:02',0,62),(1318,'2013-03-07 13:12:02',0,61),(1319,'2013-03-08 13:12:25',0,60),(1320,'2013-03-09 13:12:25',0,59),(1321,'2013-03-10 13:12:25',0,58),(1322,'2013-03-11 13:12:25',0,57),(1323,'2013-03-12 13:12:25',0,56),(1324,'2013-03-13 02:35:03',0,77),(1325,'2013-03-14 02:35:03',0,68),(1326,'2013-03-15 02:35:27',0,67),(1327,'2013-03-16 02:35:27',0,66),(1328,'2013-03-17 02:35:27',0,65),(1329,'2013-03-18 02:35:27',0,64),(1330,'2013-03-19 02:35:27',0,62),(1331,'2013-03-20 02:35:27',0,61),(1332,'2013-03-21 02:35:27',0,60),(1333,'2013-03-22 02:35:51',0,59),(1334,'2013-03-23 02:35:51',0,58),(1335,'2013-03-24 02:35:51',0,57),(1336,'2013-03-25 02:35:51',0,56),(1337,'2013-03-26 02:35:51',0,55),(1338,'2013-03-27 02:35:51',0,54),(1339,'2013-03-28 02:35:51',0,53),(1340,'2013-03-29 02:36:15',0,52),(1341,'2013-03-30 02:36:15',0,51),(1342,'2013-03-30 03:43:02',0,70),(1343,'2013-03-31 03:43:02',0,66),(1344,'2013-04-01 03:43:02',0,65),(1345,'2013-04-02 03:43:02',0,64),(1346,'2013-04-03 03:43:02',0,63),(1347,'2013-04-04 03:43:02',0,62),(1348,'2013-04-05 03:43:28',0,61),(1349,'2013-04-06 02:57:19',0,84),(1350,'2013-04-07 02:57:19',0,78),(1351,'2013-04-08 02:57:19',0,75),(1352,'2013-04-09 02:57:19',0,68),(1353,'2013-04-10 02:57:19',0,62),(1354,'2013-04-11 02:57:19',0,61),(1355,'2013-04-12 02:57:19',0,60),(1356,'2013-04-13 02:57:33',0,59),(1357,'2013-04-14 02:57:33',0,58),(1358,'2013-04-15 02:57:33',0,57),(1359,'2013-04-16 02:57:33',0,56),(1360,'2013-04-17 02:57:33',0,55),(1361,'2013-04-18 02:57:33',0,54),(1362,'2013-04-19 02:57:33',0,53),(1363,'2013-04-20 02:44:29',0,74),(1364,'2013-04-21 02:44:29',0,70),(1365,'2013-04-22 15:14:55',0,65),(1366,'2013-04-23 15:14:55',0,64),(1367,'2013-04-24 15:14:55',0,63),(1368,'2013-04-25 15:14:55',0,62),(1369,'2013-04-26 15:14:55',0,61),(1370,'2013-04-28 21:07:42',0,60),(1371,'2013-04-29 21:07:42',0,59),(1372,'2013-04-30 21:07:42',0,58),(1373,'2013-05-01 21:07:42',0,57),(1374,'2013-05-02 21:07:42',0,56),(1375,'2013-05-03 21:07:42',0,55),(1376,'2013-05-04 21:07:57',0,54),(1377,'2013-05-05 21:07:57',0,53),(1378,'2013-05-06 21:07:57',0,52),(1379,'2013-05-07 02:43:24',0,80),(1380,'2013-05-08 02:43:24',0,75),(1381,'2013-05-09 02:43:24',0,68),(1382,'2013-05-10 02:43:24',0,64),(1383,'2013-05-11 02:43:38',0,63),(1384,'2013-05-12 02:43:38',0,62),(1385,'2013-05-13 02:43:38',0,61),(1386,'2013-05-14 02:43:38',0,60),(1387,'2013-05-14 17:32:39',0,82),(1388,'2013-05-15 18:02:25',0,80),(1389,'2013-05-16 18:02:25',0,78),(1390,'2013-05-17 18:02:25',0,77),(1391,'2013-05-18 18:02:25',0,76),(1392,'2013-05-19 18:02:25',0,75),(1393,'2013-05-20 18:02:25',0,69),(1394,'2013-05-21 18:02:25',0,68),(1395,'2013-05-22 18:02:50',0,67),(1396,'2013-05-23 18:02:50',0,66),(1397,'2013-05-24 18:02:50',0,65),(1398,'2013-05-24 18:52:27',0,93),(1399,'2013-05-25 18:52:27',0,91),(1400,'2013-05-26 18:52:27',0,86),(1401,'2013-05-27 18:52:27',0,85),(1402,'2013-05-28 18:52:51',0,80),(1403,'2013-05-31 16:08:32',0,76),(1404,'2013-06-01 16:08:33',0,75),(1405,'2013-06-02 16:08:33',0,74),(1406,'2013-06-03 16:08:33',0,73),(1407,'2013-06-04 17:39:13',0,72),(1408,'2013-06-05 17:39:13',0,71),(1409,'2013-06-06 17:39:13',0,70),(1410,'2013-06-08 19:06:40',0,69),(1411,'2013-06-09 19:06:40',0,68),(1412,'2013-06-09 21:15:06',0,94),(1413,'2013-06-10 21:15:06',0,92),(1414,'2013-06-11 21:15:07',0,88),(1415,'2013-06-12 21:15:07',0,87),(1416,'2013-06-13 21:15:07',0,86),(1417,'2013-06-14 21:15:30',0,85),(1418,'2013-06-15 21:15:30',0,81),(1419,'2013-06-16 21:15:30',0,80),(1420,'2013-06-18 17:39:54',0,75),(1421,'2013-06-20 12:56:19',0,74),(1422,'2013-06-20 23:36:44',0,99),(1423,'2013-06-21 23:36:44',0,94),(1424,'2013-06-22 23:36:44',0,89),(1425,'2013-06-23 23:36:44',0,82),(1426,'2013-06-24 23:36:44',0,79),(1427,'2013-06-25 23:36:44',0,78),(1428,'2013-06-26 23:37:07',0,77),(1429,'2013-06-27 23:37:07',0,76),(1430,'2013-06-28 20:50:21',0,104),(1431,'2013-06-29 20:50:21',0,90),(1432,'2013-06-30 20:50:21',0,80),(1433,'2013-07-01 20:50:21',0,79),(1434,'2013-07-03 19:21:01',0,78),(1435,'2013-07-04 19:21:01',0,77),(1436,'2013-07-04 20:50:34',0,98),(1437,'2013-07-05 20:50:34',0,87),(1438,'2013-07-06 20:50:34',0,86),(1439,'2013-07-07 20:50:34',0,85),(1440,'2013-07-08 20:50:34',0,84),(1441,'2013-07-09 20:51:07',0,83),(1442,'2013-07-10 20:51:07',0,82),(1443,'2013-07-11 20:51:07',0,81),(1444,'2013-07-12 20:51:07',0,80),(1445,'2013-07-13 20:51:07',0,79),(1446,'2013-07-14 20:51:07',0,78),(1447,'2013-07-15 20:51:07',0,77),(1448,'2013-07-16 23:34:54',0,76),(1449,'2013-07-17 23:34:54',0,75),(1450,'2013-07-18 23:34:54',0,74),(1451,'2013-07-19 23:34:54',0,73),(1452,'2013-07-20 23:34:54',0,72),(1453,'2013-07-21 16:14:38',0,103),(1454,'2013-07-22 16:14:38',0,89),(1455,'2013-07-23 16:14:38',0,88),(1456,'2013-07-24 16:14:49',0,87),(1457,'2013-07-25 16:14:49',0,84),(1458,'2013-07-26 16:14:49',0,83),(1459,'2013-07-27 16:14:49',0,82),(1460,'2013-07-28 16:14:49',0,81),(1461,'2013-07-29 16:14:49',0,80),(1462,'2013-07-30 16:14:49',0,79),(1463,'2013-07-31 16:15:00',0,78),(1464,'2013-08-01 16:15:00',0,77),(1465,'2013-08-02 16:15:00',0,76),(1466,'2013-08-02 16:25:24',0,111),(1467,'2013-08-03 16:25:24',0,94),(1468,'2013-08-04 16:25:24',0,84),(1469,'2013-08-05 16:25:24',0,83),(1470,'2013-08-06 16:25:24',0,82),(1471,'2013-08-07 16:25:35',0,81),(1472,'2013-08-08 16:25:35',0,76),(1473,'2013-08-09 16:25:35',0,75),(1474,'2013-08-10 16:25:35',0,74),(1475,'2013-08-11 16:25:35',0,73),(1476,'2013-08-12 16:25:35',0,72),(1477,'2013-08-13 16:25:35',0,71),(1478,'2013-08-14 16:25:45',0,70),(1479,'2013-08-15 16:25:45',0,69),(1480,'2013-08-16 16:25:45',0,68),(1481,'2013-08-16 16:50:22',0,98),(1482,'2013-08-17 16:50:22',0,95),(1483,'2013-08-18 16:50:22',0,91),(1484,'2013-08-19 16:50:22',0,90),(1485,'2013-08-20 16:50:22',0,89),(1486,'2013-08-21 16:50:33',0,88),(1487,'2013-08-22 16:50:33',0,87),(1488,'2013-08-23 16:50:33',0,86),(1489,'2013-08-24 16:50:33',0,85),(1490,'2013-08-25 16:50:33',0,84),(1491,'2013-08-26 16:50:33',0,83),(1492,'2013-08-27 16:50:33',0,82),(1493,'2013-08-28 16:50:44',0,81),(1494,'2013-08-29 16:50:44',0,80),(1495,'2013-08-30 16:50:44',0,79),(1496,'2013-08-31 02:51:47',0,101),(1497,'2013-09-01 02:51:47',0,90),(1498,'2013-09-02 02:51:47',0,84),(1499,'2013-09-03 02:51:47',0,83),(1500,'2013-09-04 02:51:59',0,82),(1501,'2013-09-05 02:51:59',0,81),(1502,'2013-09-06 02:51:59',0,80),(1503,'2013-09-07 02:51:59',0,79),(1504,'2013-09-08 02:51:59',0,78),(1505,'2013-09-09 02:51:59',0,77),(1506,'2013-09-10 02:51:59',0,76),(1507,'2013-09-11 02:52:10',0,75),(1508,'2013-09-12 02:52:10',0,74),(1509,'2013-09-13 02:52:10',0,73),(1510,'2013-09-14 02:52:10',0,72),(1511,'2013-09-15 02:52:10',0,71),(1512,'2013-09-16 02:52:10',0,70),(1513,'2013-09-17 02:52:10',0,69),(1514,'2013-09-18 02:52:22',0,68),(1515,'2013-09-18 21:08:06',0,91),(1516,'2013-09-19 21:08:06',0,84),(1517,'2013-09-20 21:08:06',0,78),(1518,'2013-09-21 21:08:06',0,77),(1519,'2013-09-22 21:08:06',0,76),(1520,'2013-09-23 21:08:06',0,75),(1521,'2013-09-24 21:08:17',0,74),(1522,'2013-09-25 21:08:17',0,73),(1523,'2013-09-26 21:08:17',0,72),(1524,'2013-09-27 21:08:17',0,71),(1525,'2013-09-28 21:08:17',0,70),(1526,'2013-09-29 21:08:17',0,69),(1527,'2013-09-30 21:08:17',0,68),(1528,'2013-10-01 21:08:29',0,67),(1529,'2013-10-02 21:08:29',0,66),(1530,'2013-10-03 02:23:36',0,87),(1531,'2013-10-04 02:23:36',0,80),(1532,'2013-10-05 02:23:36',0,73),(1533,'2013-10-06 02:23:36',0,71),(1534,'2013-10-07 02:23:36',0,70),(1535,'2013-10-08 02:23:36',0,69),(1536,'2013-10-09 02:23:47',0,68),(1537,'2013-10-10 02:23:47',0,67),(1538,'2013-10-11 02:23:47',0,66),(1539,'2013-10-12 02:23:47',0,65),(1540,'2013-10-13 02:23:47',0,64),(1541,'2013-10-14 02:23:47',0,63),(1542,'2013-10-15 02:23:47',0,62),(1543,'2013-10-16 02:23:58',0,61),(1544,'2013-10-17 02:23:58',0,60),(1545,'2013-10-18 02:23:58',0,59),(1546,'2013-10-18 02:25:41',0,84),(1547,'2013-10-19 02:25:41',0,76),(1548,'2013-10-20 02:25:41',0,71),(1549,'2013-10-21 02:25:41',0,68),(1550,'2013-10-22 02:25:41',0,67),(1551,'2013-10-23 02:25:53',0,66),(1552,'2013-10-24 21:11:21',0,65),(1553,'2013-10-25 21:11:21',0,64),(1554,'2013-10-26 21:11:21',0,63),(1555,'2013-10-27 21:11:21',0,62),(1556,'2013-10-28 21:11:21',0,61),(1557,'2013-10-29 21:11:21',0,60),(1558,'2013-10-30 21:11:21',0,59),(1559,'2013-10-31 21:11:21',0,58),(1560,'2013-11-01 21:11:21',0,57),(1561,'2013-11-02 02:39:07',0,80),(1562,'2013-11-03 02:39:07',0,74),(1563,'2013-11-04 02:39:07',0,70),(1564,'2013-11-05 02:39:07',0,69),(1565,'2013-11-06 02:39:07',0,67),(1566,'2013-11-07 02:39:07',0,66),(1567,'2013-11-08 02:39:07',0,65),(1568,'2013-11-09 02:39:07',0,64),(1569,'2013-11-10 02:39:07',0,63),(1570,'2013-11-11 02:39:07',0,62),(1571,'2013-11-12 02:39:07',0,61),(1572,'2013-11-13 02:39:07',0,60),(1573,'2013-11-14 02:39:07',0,59),(1574,'2013-11-14 04:07:48',0,80),(1575,'2013-11-15 04:07:48',0,79),(1576,'2013-11-16 04:07:48',0,76),(1577,'2013-11-17 04:07:48',0,75),(1578,'2013-11-18 04:07:48',0,74),(1579,'2013-11-19 04:07:48',0,73),(1580,'2013-11-20 04:07:48',0,72),(1581,'2013-11-21 04:07:48',0,71),(1582,'2013-11-22 04:07:48',0,70),(1583,'2013-11-23 04:07:48',0,69),(1584,'2013-11-24 04:07:48',0,68),(1585,'2013-11-25 04:07:48',0,67),(1586,'2013-11-26 04:07:48',0,66),(1587,'2013-11-27 22:42:36',0,65),(1588,'2013-11-28 22:42:36',0,64),(1589,'2013-11-29 22:42:36',0,63),(1590,'2013-11-30 01:45:03',0,84),(1591,'2013-12-01 01:45:03',0,77),(1592,'2013-12-02 01:45:03',0,68),(1593,'2013-12-03 01:45:03',0,67),(1594,'2013-12-04 01:45:03',0,66),(1595,'2013-12-05 01:45:03',0,65),(1596,'2013-12-06 01:45:03',0,64),(1597,'2013-12-07 01:45:03',0,63),(1598,'2013-12-08 01:45:03',0,62),(1599,'2013-12-09 01:45:03',0,61),(1600,'2013-12-10 01:45:03',0,60),(1601,'2013-12-11 01:45:03',0,59),(1602,'2013-12-11 02:57:14',0,79),(1603,'2013-12-12 02:57:14',0,74),(1604,'2013-12-13 02:57:14',0,73),(1605,'2013-12-14 02:57:14',0,71),(1606,'2013-12-15 02:57:14',0,70),(1607,'2013-12-16 02:57:14',0,68),(1608,'2013-12-17 02:57:14',0,67),(1609,'2013-12-18 02:57:14',0,66),(1610,'2013-12-19 02:58:42',0,65),(1611,'2013-12-20 02:58:42',0,64),(1612,'2013-12-21 02:58:42',0,63),(1613,'2013-12-22 02:58:42',0,62),(1614,'2013-12-23 02:58:42',0,61),(1615,'2013-12-23 03:50:42',0,85),(1616,'2013-12-24 03:50:42',0,76),(1617,'2013-12-25 03:50:42',0,72),(1618,'2013-12-26 03:50:53',0,39),(1619,'2013-12-26 10:26:10',0,57),(1620,'2013-12-27 10:26:10',0,56),(1621,'2013-12-28 10:26:10',0,55),(1622,'2013-12-29 10:26:10',0,54),(1623,'2013-12-30 10:26:10',0,53),(1624,'2013-12-31 02:05:34',0,75),(1625,'2014-01-01 02:05:34',0,68),(1626,'2014-01-02 02:05:52',0,65),(1627,'2014-01-03 02:05:53',0,64),(1628,'2014-01-04 02:05:53',0,63),(1629,'2014-01-05 02:05:53',0,62),(1630,'2014-01-06 02:05:53',0,61),(1631,'2014-01-07 02:05:53',0,60),(1632,'2014-01-08 02:05:53',0,59),(1633,'2014-01-09 02:06:03',0,58),(1634,'2014-01-09 03:09:10',0,79),(1635,'2014-01-10 03:09:11',0,72),(1636,'2014-01-11 03:09:11',0,70),(1637,'2014-01-12 03:09:11',0,69),(1638,'2014-01-13 03:09:11',0,68),(1639,'2014-01-14 03:09:11',0,67),(1640,'2014-01-15 03:09:11',0,66),(1641,'2014-01-16 03:09:24',0,65),(1642,'2014-01-17 03:09:25',0,64),(1643,'2014-01-18 03:09:25',0,63),(1644,'2014-01-19 03:09:25',0,62),(1645,'2014-01-20 03:09:25',0,61),(1646,'2014-01-21 03:09:25',0,60),(1647,'2014-01-22 03:09:25',0,59),(1648,'2014-01-23 03:09:25',0,58),(1649,'2014-01-23 03:57:05',0,79),(1650,'2014-01-24 03:57:05',0,71),(1651,'2014-01-25 03:57:05',0,70),(1652,'2014-01-26 03:57:05',0,69),(1653,'2014-01-27 03:57:05',0,68),(1654,'2014-01-28 03:57:05',0,67),(1655,'2014-01-29 03:57:05',0,66),(1656,'2014-01-30 03:57:05',0,65),(1657,'2014-01-31 03:57:05',0,64),(1658,'2014-02-01 03:57:05',0,63),(1659,'2014-02-02 03:57:05',0,62),(1660,'2014-02-03 03:57:05',0,61),(1661,'2014-02-04 01:50:19',0,87),(1662,'2014-02-05 01:50:41',0,72),(1663,'2014-02-06 01:50:41',0,69),(1664,'2014-02-07 01:50:41',0,68),(1665,'2014-02-08 01:50:41',0,67),(1666,'2014-02-09 01:50:41',0,66),(1667,'2014-02-10 01:50:41',0,65),(1668,'2014-02-11 01:50:41',0,64),(1669,'2014-02-12 01:51:03',0,63),(1670,'2014-02-13 01:51:03',0,62),(1671,'2014-02-14 01:51:03',0,61),(1672,'2014-02-15 01:51:03',0,60),(1673,'2014-02-16 01:51:03',0,59),(1674,'2014-02-17 01:51:03',0,58),(1675,'2014-02-18 01:51:03',0,57),(1676,'2014-02-18 02:01:41',0,83),(1677,'2014-02-19 02:01:52',0,73),(1678,'2014-02-20 02:01:52',0,71),(1679,'2014-02-21 02:01:52',0,70),(1680,'2014-02-22 02:01:52',0,69),(1681,'2014-02-23 02:01:52',0,68),(1682,'2014-02-24 02:01:52',0,65),(1683,'2014-02-25 02:01:52',0,64),(1684,'2014-02-26 02:02:05',0,63),(1685,'2014-02-27 02:02:05',0,62),(1686,'2014-02-28 02:02:05',0,61),(1687,'2014-03-01 02:02:05',0,60),(1688,'2014-03-02 02:02:05',0,59),(1689,'2014-03-03 02:02:05',0,58),(1690,'2014-03-04 02:02:05',0,57),(1691,'2014-03-04 03:48:29',0,82),(1692,'2014-03-05 03:48:41',0,68),(1693,'2014-03-06 03:48:41',0,67),(1694,'2014-03-07 03:48:41',0,66),(1695,'2014-03-08 03:48:41',0,65),(1696,'2014-03-09 03:48:41',0,64),(1697,'2014-03-10 03:48:41',0,63),(1698,'2014-03-11 02:07:11',0,86),(1699,'2014-03-12 02:07:23',0,76),(1700,'2014-03-13 02:07:23',0,72),(1701,'2014-03-14 02:07:23',0,71),(1702,'2014-03-15 02:07:23',0,70),(1703,'2014-03-16 02:07:23',0,69),(1704,'2014-03-17 02:07:23',0,68),(1705,'2014-03-18 02:07:23',0,67),(1706,'2014-03-19 02:07:35',0,66),(1707,'2014-03-20 02:07:35',0,65),(1708,'2014-03-21 02:07:35',0,64),(1709,'2014-03-22 02:07:35',0,63),(1710,'2014-03-23 02:07:35',0,62),(1711,'2014-03-24 02:07:35',0,61),(1712,'2014-03-25 02:07:35',0,60),(1713,'2014-03-26 02:07:47',0,59),(1714,'2014-03-27 02:07:47',0,58),(1715,'2014-03-28 02:07:47',0,57),(1716,'2014-03-28 03:24:38',0,75),(1717,'2014-03-29 03:24:38',0,69),(1718,'2014-03-30 03:24:38',0,67),(1719,'2014-03-31 03:24:38',0,66),(1720,'2014-04-01 03:24:38',0,65),(1721,'2014-04-02 03:24:51',0,64),(1722,'2014-04-03 03:24:51',0,63),(1723,'2014-04-04 16:57:14',0,62),(1724,'2014-04-05 16:57:14',0,61),(1725,'2014-04-06 16:57:14',0,60),(1726,'2014-04-07 16:57:14',0,59),(1727,'2014-04-08 16:57:20',0,58),(1728,'2014-04-09 02:40:14',0,79),(1729,'2014-04-10 02:40:14',0,75),(1730,'2014-04-11 02:40:14',0,69),(1731,'2014-04-12 02:40:14',0,68),(1732,'2014-04-13 02:40:14',0,67),(1733,'2014-04-14 02:40:14',0,66),(1734,'2014-04-15 02:40:14',0,63),(1735,'2014-04-16 13:47:05',0,62),(1736,'2014-04-17 13:47:05',0,61),(1737,'2014-04-18 13:47:05',0,60),(1738,'2014-04-19 13:47:05',0,59),(1739,'2014-04-20 13:47:05',0,58),(1740,'2014-04-21 02:23:10',0,76),(1741,'2014-04-22 02:23:10',0,75),(1742,'2014-04-23 02:23:22',0,74),(1743,'2014-04-24 02:23:22',0,73),(1744,'2014-04-25 02:23:22',0,72),(1745,'2014-04-26 02:23:22',0,71),(1746,'2014-04-27 02:23:22',0,70),(1747,'2014-04-28 02:23:22',0,69),(1748,'2014-04-29 02:23:22',0,68),(1749,'2014-04-30 02:23:43',0,67),(1750,'2014-05-01 02:23:44',0,66),(1751,'2014-05-02 02:23:44',0,65),(1752,'2014-05-03 02:23:44',0,64),(1753,'2014-05-03 21:02:15',0,93),(1754,'2014-05-04 21:02:15',0,81),(1755,'2014-05-05 21:02:15',0,80),(1756,'2014-05-06 21:02:23',0,78),(1757,'2014-05-07 21:02:27',0,77),(1758,'2014-05-08 21:02:27',0,69),(1759,'2014-05-09 21:02:27',0,68),(1760,'2014-05-10 21:02:27',0,67),(1761,'2014-05-11 21:02:27',0,66),(1762,'2014-05-13 13:27:31',0,65),(1763,'2014-05-14 13:27:31',0,64),(1764,'2014-05-15 13:27:31',0,63),(1765,'2014-05-16 13:27:31',0,62),(1766,'2014-05-17 13:27:31',0,61),(1767,'2014-05-18 13:27:31',0,60),(1768,'2014-05-18 21:16:51',0,85),(1769,'2014-05-19 21:17:04',0,80),(1770,'2014-05-20 21:17:04',0,79),(1771,'2014-05-21 21:17:04',0,78),(1772,'2014-05-22 21:17:04',0,75),(1773,'2014-05-23 21:17:04',0,72),(1774,'2014-05-24 21:17:04',0,71),(1775,'2014-05-25 21:17:04',0,68),(1776,'2014-05-26 21:17:22',0,67),(1777,'2014-05-27 21:17:26',0,66),(1778,'2014-05-28 00:20:32',0,87),(1779,'2014-05-29 00:20:32',0,79),(1780,'2014-05-30 00:20:32',0,75),(1781,'2014-05-31 00:20:32',0,74),(1782,'2014-06-01 00:20:32',0,73),(1783,'2014-06-02 00:20:32',0,72),(1784,'2014-06-03 00:20:46',0,71),(1785,'2014-06-04 00:03:14',0,97),(1786,'2014-06-05 00:03:14',0,87),(1787,'2014-06-06 09:14:31',0,81),(1788,'2014-06-07 09:14:31',0,80),(1789,'2014-06-08 09:14:31',0,70),(1790,'2014-06-09 09:14:31',0,69),(1791,'2014-06-10 09:14:32',0,68),(1792,'2014-06-11 09:14:32',0,67),(1793,'2014-06-11 16:47:42',0,93),(1794,'2014-06-12 16:47:42',0,81),(1795,'2014-06-13 16:47:42',0,66),(1796,'2014-06-13 18:56:49',0,85),(1797,'2014-06-14 18:56:49',0,84),(1798,'2014-06-15 18:56:49',0,75),(1799,'2014-06-16 18:57:07',0,74),(1800,'2014-06-17 18:57:13',0,73),(1801,'2014-06-18 18:57:13',0,72),(1802,'2014-06-19 18:57:13',0,71),(1803,'2014-06-20 18:57:13',0,70),(1804,'2014-06-20 20:18:27',0,97),(1805,'2014-06-21 20:18:27',0,94),(1806,'2014-06-22 20:18:27',0,81),(1807,'2014-06-24 20:17:06',0,80),(1808,'2014-06-25 20:17:06',0,79),(1809,'2014-06-26 20:17:06',0,78),(1810,'2014-06-27 20:17:06',0,77),(1811,'2014-06-28 20:17:06',0,76),(1812,'2014-06-29 20:17:06',0,75),(1813,'2014-06-30 20:17:22',0,74),(1814,'2014-07-01 20:17:22',0,73),(1815,'2014-07-02 20:17:22',0,72),(1816,'2014-07-03 20:17:22',0,71),(1817,'2014-07-04 20:17:22',0,70),(1818,'2014-07-05 20:17:22',0,69),(1819,'2014-07-06 00:54:44',0,95),(1820,'2014-07-07 00:54:44',0,87),(1821,'2014-07-08 00:55:02',0,85),(1822,'2014-07-09 00:55:08',0,79),(1823,'2014-07-10 00:55:08',0,78),(1824,'2014-07-11 00:55:08',0,77),(1825,'2014-07-12 00:55:08',0,76),(1826,'2014-07-13 00:55:08',0,75),(1827,'2014-07-14 00:55:08',0,74),(1828,'2014-07-15 00:55:16',0,73),(1829,'2014-07-16 00:55:24',0,72),(1830,'2014-07-17 00:55:24',0,71),(1831,'2014-07-18 15:56:43',0,94),(1832,'2014-07-19 15:56:43',0,86),(1833,'2014-07-20 15:56:43',0,85),(1834,'2014-07-21 17:09:22',0,82),(1835,'2014-07-22 17:09:23',0,81),(1836,'2014-07-23 17:09:23',0,80),(1837,'2014-07-24 17:09:23',0,79),(1838,'2014-07-25 17:09:23',0,78),(1839,'2014-07-26 17:09:23',0,77),(1840,'2014-07-27 17:09:23',0,76),(1841,'2014-07-28 17:09:23',0,75),(1842,'2014-07-29 16:46:57',0,99),(1843,'2014-07-30 16:46:57',0,86),(1844,'2014-07-31 16:46:57',0,73),(1845,'2014-08-01 16:46:57',0,72),(1846,'2014-08-02 16:46:57',0,71),(1847,'2014-08-03 16:46:57',0,70),(1848,'2014-08-03 17:07:08',0,93),(1849,'2014-08-04 17:07:08',0,89),(1850,'2014-08-05 17:07:23',0,87),(1851,'2014-08-06 17:07:23',0,81),(1852,'2014-08-07 17:07:23',0,80),(1853,'2014-08-08 17:07:23',0,79),(1854,'2014-08-09 17:07:23',0,78),(1855,'2014-08-10 17:07:23',0,77),(1856,'2014-08-11 17:07:23',0,76),(1857,'2014-08-12 17:07:35',0,75),(1858,'2014-08-13 17:07:35',0,74),(1859,'2014-08-14 17:07:35',0,73),(1860,'2014-08-15 17:07:35',0,72),(1861,'2014-08-16 17:07:35',0,71),(1862,'2014-08-16 17:44:23',0,99),(1863,'2014-08-17 17:44:23',0,90),(1864,'2014-08-18 17:44:23',0,87),(1865,'2014-08-19 17:44:37',0,86),(1866,'2014-08-20 17:44:37',0,85),(1867,'2014-08-21 17:44:37',0,84),(1868,'2014-08-21 19:56:59',0,107),(1869,'2014-08-22 19:56:59',0,92),(1870,'2014-08-23 19:56:59',0,90),(1871,'2014-08-24 19:56:59',0,83),(1872,'2014-08-25 19:56:59',0,81),(1873,'2014-08-26 19:57:11',0,80),(1874,'2014-08-27 19:57:11',0,78),(1875,'2014-08-28 19:57:11',0,77),(1876,'2014-08-29 19:57:11',0,76),(1877,'2014-08-30 19:57:11',0,75),(1878,'2014-08-31 19:57:11',0,74),(1879,'2014-09-01 19:57:12',0,73),(1880,'2014-09-02 19:57:24',0,72),(1881,'2014-09-03 19:57:24',0,71),(1882,'2014-09-04 17:02:07',0,99),(1883,'2014-09-05 17:02:07',0,87),(1884,'2014-09-06 17:02:07',0,76),(1885,'2014-09-07 17:02:07',0,75),(1886,'2014-09-08 17:02:07',0,74),(1887,'2014-09-09 17:02:20',0,73),(1888,'2014-09-10 17:02:20',0,72),(1889,'2014-09-11 17:02:20',0,71),(1890,'2014-09-12 17:02:20',0,70),(1891,'2014-09-13 17:02:20',0,68),(1892,'2014-09-14 17:02:20',0,67),(1893,'2014-09-15 17:02:20',0,66),(1894,'2014-09-16 17:02:32',0,65),(1895,'2014-09-16 19:15:46',0,86),(1896,'2014-09-17 19:15:46',0,84),(1897,'2014-09-18 19:15:46',0,83),(1898,'2014-09-19 19:15:46',0,82),(1899,'2014-09-21 23:09:58',0,81),(1900,'2014-09-22 23:09:58',0,76),(1901,'2014-09-23 23:09:58',0,75),(1902,'2014-09-24 23:09:58',0,74),(1903,'2014-09-25 23:09:58',0,73),(1904,'2014-09-27 18:20:57',0,72),(1905,'2014-09-28 18:20:57',0,71),(1906,'2014-09-29 18:20:57',0,70),(1907,'2014-09-30 18:20:57',0,69),(1908,'2014-10-01 18:20:57',0,68),(1909,'2014-10-02 18:20:57',0,67),(1910,'2014-10-03 18:20:57',0,66),(1911,'2014-10-04 18:21:08',0,65),(1912,'2014-10-05 18:21:08',0,64),(1913,'2014-10-06 18:21:08',0,63),(1914,'2014-10-06 19:12:25',0,88),(1915,'2014-10-07 19:12:25',0,81),(1916,'2014-10-08 19:12:25',0,76),(1917,'2014-10-09 19:12:25',0,75),(1918,'2014-10-10 19:12:25',0,68),(1919,'2014-10-11 19:12:38',0,67),(1920,'2014-10-12 19:12:46',0,66),(1921,'2014-10-13 19:12:46',0,63),(1922,'2014-10-14 19:12:46',0,62),(1923,'2014-10-15 19:12:46',0,61),(1924,'2014-10-16 19:12:46',0,60),(1925,'2014-10-17 19:12:46',0,59),(1926,'2014-10-18 19:12:51',0,58),(1927,'2014-10-19 01:46:51',0,81),(1928,'2014-10-20 01:46:55',0,69),(1929,'2014-10-21 01:46:55',0,68),(1930,'2014-10-22 01:46:55',0,67),(1931,'2014-10-23 01:46:55',0,66),(1932,'2014-10-24 01:46:55',0,65),(1933,'2014-10-25 01:46:55',0,64),(1934,'2014-10-26 01:47:04',0,63),(1935,'2014-10-26 02:02:05',0,84),(1936,'2014-10-27 02:02:09',0,76),(1937,'2014-10-28 02:02:09',0,68),(1938,'2014-10-30 15:28:03',0,67),(1939,'2014-10-31 15:28:03',0,66),(1940,'2014-11-01 15:28:03',0,65),(1941,'2014-11-02 15:28:05',0,64),(1942,'2014-11-03 15:28:05',0,63),(1943,'2014-11-04 15:28:05',0,62),(1944,'2014-11-05 15:28:05',0,61),(1945,'2014-11-06 15:28:05',0,60),(1946,'2014-11-07 15:28:05',0,59),(1947,'2014-11-08 15:28:05',0,58),(1948,'2014-11-09 15:28:27',0,57),(1949,'2014-11-10 15:28:27',0,56),(1950,'2014-11-11 04:48:00',0,72),(1951,'2014-11-12 04:48:00',0,68),(1952,'2014-11-13 04:48:00',0,67),(1953,'2014-11-14 04:48:00',0,66),(1954,'2014-11-15 04:48:00',0,65),(1955,'2014-11-16 04:48:13',0,64),(1956,'2014-11-17 04:48:15',0,63),(1957,'2014-11-18 04:48:15',0,62),(1958,'2014-11-19 04:48:15',0,61),(1959,'2014-11-20 04:48:15',0,60),(1960,'2014-11-21 04:48:15',0,59),(1961,'2014-11-22 04:48:15',0,58),(1962,'2014-11-23 04:48:26',0,57),(1963,'2014-11-24 04:48:28',0,56),(1964,'2014-11-25 04:48:28',0,55),(1965,'2014-11-26 04:11:43',0,75),(1966,'2014-11-27 04:11:43',0,69),(1967,'2014-11-28 19:19:54',0,68),(1968,'2014-11-29 19:19:54',0,66),(1969,'2014-11-30 19:19:54',0,65),(1970,'2014-12-02 17:52:27',0,64),(1971,'2014-12-03 17:52:27',0,63),(1972,'2014-12-04 17:52:27',0,62),(1973,'2014-12-05 17:52:41',0,61),(1974,'2014-12-06 17:52:41',0,60),(1975,'2014-12-07 17:52:41',0,59),(1976,'2014-12-08 17:52:41',0,58),(1977,'2014-12-09 17:52:41',0,57),(1978,'2014-12-10 17:52:41',0,56),(1979,'2014-12-11 17:52:41',0,55),(1980,'2014-12-12 02:33:36',0,76),(1981,'2014-12-13 02:33:41',0,74),(1982,'2014-12-14 02:33:41',0,73),(1983,'2014-12-15 02:33:41',0,69),(1984,'2014-12-16 02:33:41',0,68),(1985,'2014-12-17 02:33:41',0,67),(1986,'2014-12-18 02:33:41',0,66),(1987,'2014-12-19 02:33:50',0,65),(1988,'2014-12-20 02:33:55',0,64),(1989,'2014-12-21 02:33:55',0,63),(1990,'2014-12-22 02:33:55',0,62),(1991,'2014-12-23 02:33:55',0,61),(1992,'2014-12-24 02:33:55',0,60),(1993,'2014-12-25 02:33:55',0,59),(1994,'2014-12-26 02:34:02',0,58),(1995,'2014-12-27 02:34:08',0,57),(1996,'2014-12-28 02:34:08',0,56),(1997,'2014-12-29 02:34:08',0,55),(1998,'2014-12-30 02:34:08',0,54),(1999,'2014-12-31 02:34:08',0,53),(2000,'2015-01-01 02:34:08',0,52),(2001,'2015-01-02 02:34:13',0,51),(2002,'2015-01-03 02:34:19',0,50),(2003,'2015-01-03 11:10:57',0,69),(2004,'2015-01-04 11:10:57',0,65),(2005,'2015-01-05 11:10:57',0,64),(2006,'2015-01-06 11:10:57',0,63),(2007,'2015-01-07 11:10:57',0,62),(2008,'2015-01-08 11:10:57',0,61),(2009,'2015-01-09 11:11:09',0,60),(2010,'2015-01-10 11:11:09',0,59),(2011,'2015-01-11 11:11:09',0,58),(2012,'2015-01-12 11:11:09',0,57),(2013,'2015-01-13 11:11:09',0,56),(2014,'2015-01-14 11:11:09',0,55),(2015,'2015-01-15 11:11:09',0,54),(2016,'2015-01-16 02:59:25',0,74),(2017,'2015-01-17 02:59:30',0,73),(2018,'2015-01-18 02:59:30',0,72),(2019,'2015-01-19 02:59:30',0,71),(2020,'2015-01-20 02:59:30',0,70),(2021,'2015-01-21 02:59:30',0,67),(2022,'2015-01-22 02:59:30',0,65),(2023,'2015-01-23 02:59:36',0,64),(2024,'2015-01-24 02:59:42',0,63),(2025,'2015-01-25 02:59:42',0,62),(2026,'2015-01-26 02:59:42',0,61),(2027,'2015-01-27 02:59:42',0,60),(2028,'2015-01-28 02:59:42',0,59),(2029,'2015-01-29 02:59:42',0,58),(2030,'2015-01-30 02:59:51',0,57),(2031,'2015-01-31 02:59:56',0,56),(2032,'2015-02-01 02:59:56',0,55),(2033,'2015-02-02 02:59:56',0,54),(2034,'2015-02-03 02:37:48',0,76),(2035,'2015-02-04 02:37:48',0,71),(2036,'2015-02-05 02:37:48',0,70),(2037,'2015-02-06 02:37:55',0,69),(2038,'2015-02-07 02:38:00',0,68),(2039,'2015-02-08 02:38:00',0,67),(2040,'2015-02-09 02:38:00',0,66),(2041,'2015-02-10 02:38:00',0,65),(2042,'2015-02-11 02:38:00',0,64),(2043,'2015-02-12 02:38:00',0,63),(2044,'2015-02-13 02:38:08',0,62),(2045,'2015-02-14 02:38:14',0,61),(2046,'2015-02-15 02:38:14',0,60),(2047,'2015-02-16 02:38:14',0,59),(2048,'2015-02-17 02:38:14',0,58),(2049,'2015-02-18 02:38:14',0,57),(2050,'2015-02-19 02:38:14',0,56),(2051,'2015-02-20 02:38:22',0,55),(2052,'2015-02-20 03:20:03',0,74),(2053,'2015-02-21 03:20:08',0,73),(2054,'2015-02-22 03:20:08',0,72),(2055,'2015-02-23 03:20:08',0,60),(2056,'2015-02-24 03:20:08',0,59),(2057,'2015-02-25 03:20:08',0,58),(2058,'2015-02-26 03:20:08',0,57),(2059,'2015-02-27 03:20:16',0,56),(2060,'2015-02-28 02:22:52',0,79),(2061,'2015-03-01 02:22:52',0,76),(2062,'2015-03-02 02:22:52',0,74),(2063,'2015-03-03 02:22:52',0,69),(2064,'2015-03-04 02:22:52',0,68),(2065,'2015-03-05 02:22:52',0,63),(2066,'2015-03-06 02:22:59',0,62),(2067,'2015-03-07 02:23:04',0,61),(2068,'2015-03-08 02:23:04',0,60),(2069,'2015-03-09 02:23:04',0,59),(2070,'2015-03-10 02:23:04',0,58),(2071,'2015-03-11 02:14:43',0,83),(2072,'2015-03-12 02:14:43',0,77),(2073,'2015-03-13 02:14:49',0,74),(2074,'2015-03-14 02:14:55',0,73),(2075,'2015-03-15 02:14:55',0,72),(2076,'2015-03-16 02:14:55',0,71),(2077,'2015-03-17 02:14:55',0,70),(2078,'2015-03-18 02:14:55',0,69),(2079,'2015-03-19 02:14:55',0,68),(2080,'2015-03-20 02:14:55',0,67),(2081,'2015-03-21 02:14:55',0,66),(2082,'2015-03-21 03:05:57',0,89),(2083,'2015-03-22 03:05:57',0,78),(2084,'2015-03-23 03:05:57',0,70),(2085,'2015-03-24 03:05:57',0,69),(2086,'2015-03-25 03:05:57',0,68),(2087,'2015-03-26 03:05:57',0,67),(2088,'2015-03-27 03:06:04',0,66),(2089,'2015-03-28 03:06:09',0,65),(2090,'2015-03-29 03:06:09',0,64),(2091,'2015-03-30 03:06:09',0,63),(2092,'2015-03-31 02:37:37',0,81),(2093,'2015-04-01 02:37:37',0,76),(2094,'2015-04-02 02:37:37',0,73),(2095,'2015-04-03 02:37:59',0,72),(2096,'2015-04-04 02:38:04',0,71),(2097,'2015-04-05 02:38:04',0,70),(2098,'2015-04-06 02:38:04',0,69),(2099,'2015-04-07 02:38:04',0,68),(2100,'2015-04-08 02:38:04',0,67),(2101,'2015-04-09 02:38:04',0,66),(2102,'2015-04-10 02:38:12',0,65),(2103,'2015-04-11 02:38:17',0,64),(2104,'2015-04-12 02:38:17',0,63),(2105,'2015-04-13 02:38:17',0,62),(2106,'2015-04-14 02:38:17',0,61),(2107,'2015-04-15 02:38:17',0,60),(2108,'2015-04-15 03:13:22',0,86),(2109,'2015-04-16 03:13:22',0,74),(2110,'2015-04-17 03:13:27',0,70),(2111,'2015-04-18 03:13:27',0,69),(2112,'2015-04-19 03:13:27',0,68),(2113,'2015-04-20 03:13:27',0,67),(2114,'2015-04-21 03:13:27',0,66),(2115,'2015-04-22 03:13:27',0,65),(2116,'2015-04-23 03:13:27',0,64),(2117,'2015-04-24 03:13:42',0,63),(2118,'2015-04-25 03:13:47',0,62),(2119,'2015-04-26 03:13:47',0,61),(2120,'2015-04-26 04:01:09',0,84),(2121,'2015-04-27 04:01:09',0,76),(2122,'2015-04-28 04:01:09',0,68),(2123,'2015-04-29 04:01:09',0,67),(2124,'2015-04-30 04:01:09',0,66),(2125,'2015-05-01 04:01:18',0,65),(2126,'2015-05-02 04:01:22',0,64),(2127,'2015-05-03 04:01:22',0,63),(2128,'2015-05-04 04:01:22',0,62),(2129,'2015-05-05 04:01:22',0,61),(2130,'2015-05-06 04:01:22',0,60),(2131,'2015-05-07 03:27:55',0,84),(2132,'2015-05-08 03:27:55',0,71),(2133,'2015-05-09 03:27:55',0,67),(2134,'2015-05-10 03:27:55',0,66),(2135,'2015-05-11 03:27:55',0,65),(2136,'2015-05-12 03:27:55',0,64),(2137,'2015-05-13 03:27:55',0,63),(2138,'2015-05-14 03:27:55',0,62),(2139,'2015-05-15 03:27:55',0,61),(2140,'2015-05-16 03:27:55',0,60),(2141,'2015-05-16 04:58:14',0,82),(2142,'2015-05-17 04:58:14',0,76),(2143,'2015-05-18 04:58:14',0,68),(2144,'2015-05-19 04:58:14',0,67),(2145,'2015-05-20 04:58:14',0,66),(2146,'2015-05-21 04:58:14',0,65),(2147,'2015-05-22 04:59:04',0,64),(2148,'2015-05-23 04:59:14',0,63),(2149,'2015-05-24 04:59:14',0,62),(2150,'2015-05-25 04:59:14',0,61),(2151,'2015-05-26 04:59:14',0,60),(2152,'2015-05-27 04:59:14',0,59),(2153,'2015-05-27 18:20:43',0,83),(2154,'2015-05-28 18:20:43',0,78),(2155,'2015-05-29 18:20:42',0,77),(2156,'2015-05-30 18:20:42',0,71),(2157,'2015-05-31 18:20:42',0,70),(2158,'2015-06-01 18:20:42',0,69),(2159,'2015-06-02 18:20:42',0,68),(2160,'2015-06-02 20:05:13',0,91),(2161,'2015-06-03 20:05:13',0,83),(2162,'2015-06-04 20:05:10',0,82),(2163,'2015-06-05 20:05:26',0,81),(2164,'2015-06-06 20:05:26',0,80),(2165,'2015-06-07 20:05:26',0,76),(2166,'2015-06-08 20:05:26',0,75),(2167,'2015-06-09 20:05:26',0,74),(2168,'2015-06-10 20:05:26',0,73),(2169,'2015-06-11 20:05:24',0,72),(2170,'2015-06-12 20:05:40',0,71),(2171,'2015-06-13 20:05:40',0,70),(2172,'2015-06-14 20:05:40',0,69),(2173,'2015-06-15 20:05:40',0,68),(2174,'2015-06-16 20:05:40',0,67),(2175,'2015-06-17 20:05:40',0,66),(2176,'2015-06-18 20:05:41',0,65),(2177,'2015-06-19 18:24:32',0,91),(2178,'2015-06-20 18:24:32',0,88),(2179,'2015-06-21 18:24:32',0,87),(2180,'2015-06-22 18:24:32',0,86),(2181,'2015-06-23 18:24:32',0,85),(2182,'2015-06-24 18:24:32',0,84),(2183,'2015-06-25 18:24:32',0,83),(2184,'2015-06-26 18:24:49',0,82),(2185,'2015-06-27 18:24:49',0,81),(2186,'2015-06-28 18:24:49',0,80),(2187,'2015-06-29 18:24:49',0,79),(2188,'2015-06-30 18:24:49',0,78),(2189,'2015-07-01 18:24:49',0,77),(2190,'2015-07-02 18:24:49',0,76),(2191,'2015-07-03 18:24:55',0,75),(2192,'2015-07-04 18:24:55',0,74),(2193,'2015-07-05 18:24:55',0,73),(2194,'2015-07-06 18:24:55',0,72),(2195,'2015-07-07 18:24:55',0,71),(2196,'2015-07-08 18:24:55',0,70),(2197,'2015-07-09 18:24:55',0,69),(2198,'2015-07-10 18:25:08',0,68),(2199,'2015-07-11 00:12:22',0,94),(2200,'2015-07-12 00:12:22',0,86),(2201,'2015-07-13 00:12:22',0,85),(2202,'2015-07-14 00:12:22',0,84),(2203,'2015-07-15 00:12:22',0,83),(2204,'2015-07-16 00:12:22',0,82),(2205,'2015-07-17 00:12:25',0,81),(2206,'2015-07-18 00:12:35',0,80),(2207,'2015-07-19 00:12:35',0,79),(2208,'2015-07-20 00:12:35',0,78),(2209,'2015-07-21 00:12:35',0,77),(2210,'2015-07-22 00:12:35',0,76),(2211,'2015-07-23 00:12:35',0,75),(2212,'2015-07-24 00:12:38',0,74),(2213,'2015-07-25 00:12:47',0,73),(2214,'2015-07-26 00:12:47',0,72),(2215,'2015-07-27 00:12:47',0,71),(2216,'2015-07-28 00:12:47',0,70),(2217,'2015-07-29 00:12:47',0,69),(2218,'2015-07-30 00:12:47',0,68),(2219,'2015-07-31 00:12:51',0,67),(2220,'2015-07-31 16:49:47',0,97),(2221,'2015-08-01 16:49:47',0,86),(2222,'2015-08-02 16:49:47',0,85),(2223,'2015-08-03 16:49:47',0,84),(2224,'2015-08-04 16:49:47',0,83),(2225,'2015-08-05 16:49:47',0,82),(2226,'2015-08-06 16:49:47',0,81),(2227,'2015-08-07 16:50:02',0,80),(2228,'2015-08-08 16:50:02',0,79),(2229,'2015-08-09 16:50:02',0,78),(2230,'2015-08-10 16:50:02',0,77),(2231,'2015-08-11 16:50:02',0,75),(2232,'2015-08-12 16:50:02',0,74),(2233,'2015-08-13 16:50:02',0,73),(2234,'2015-08-14 16:50:17',0,72),(2235,'2015-08-15 16:26:19',0,100),(2236,'2015-08-16 16:26:19',0,92),(2237,'2015-08-17 16:26:19',0,76),(2238,'2015-08-18 16:26:19',0,75),(2239,'2015-08-19 16:26:19',0,74),(2240,'2015-08-20 16:26:19',0,73),(2241,'2015-08-21 16:26:34',0,72),(2242,'2015-08-22 16:26:34',0,71),(2243,'2015-08-23 16:26:34',0,70),(2244,'2015-08-24 16:26:34',0,69),(2245,'2015-08-25 16:26:34',0,68),(2246,'2015-08-26 16:26:34',0,67),(2247,'2015-08-27 16:26:34',0,66),(2248,'2015-08-28 16:26:51',0,65),(2249,'2015-08-29 16:26:51',0,64),(2250,'2015-08-30 16:26:51',0,63),(2251,'2015-08-30 16:51:54',0,89),(2252,'2016-01-29 17:45:54',0,71),(2253,'2016-01-30 17:45:54',0,70),(2254,'2016-01-31 17:45:54',0,68),(2255,'2016-02-01 17:45:49',0,65),(2256,'2016-02-02 17:45:49',0,64),(2257,'2016-02-03 17:45:49',0,63),(2258,'2016-02-04 17:45:49',0,62),(2259,'2016-02-05 17:45:49',0,61),(2260,'2016-02-06 17:45:49',0,60),(2261,'2016-02-07 17:45:49',0,59),(2262,'2016-02-08 17:46:05',0,58),(2263,'2016-02-09 17:46:15',0,57),(2264,'2016-02-10 17:46:15',0,56),(2265,'2016-02-11 17:46:15',0,55),(2266,'2016-02-12 17:46:15',0,54),(2267,'2016-02-13 17:46:15',0,53),(2268,'2016-02-14 02:42:16',0,74),(2269,'2016-02-15 02:42:16',0,71),(2270,'2016-02-16 02:42:31',0,67),(2271,'2016-02-17 02:42:35',0,66),(2272,'2016-02-18 02:42:35',0,65),(2273,'2016-02-19 02:42:35',0,64),(2274,'2016-02-20 02:42:35',0,63),(2275,'2016-02-21 02:42:35',0,62),(2276,'2016-02-22 02:42:35',0,61),(2277,'2016-02-23 02:42:35',0,60),(2278,'2016-02-24 02:42:35',0,59),(2279,'2016-02-25 02:42:35',0,58),(2280,'2016-02-26 02:42:35',0,57),(2281,'2016-02-27 02:42:35',0,56),(2282,'2016-02-28 02:42:35',0,55),(2283,'2016-02-29 02:42:35',0,54),(2284,'2016-03-01 02:43:08',0,53),(2285,'2016-03-01 03:36:01',0,75),(2286,'2016-03-02 03:36:07',0,73),(2287,'2016-03-03 15:08:50',0,65),(2288,'2016-03-04 15:08:50',0,64),(2289,'2016-03-05 15:08:50',0,63),(2290,'2016-03-06 15:08:50',0,62),(2291,'2016-03-07 15:08:50',0,61),(2292,'2016-03-08 15:08:40',0,60),(2293,'2016-03-10 14:42:16',0,59),(2294,'2016-03-11 14:42:16',0,58),(2295,'2016-03-12 14:42:16',0,57),(2296,'2016-03-13 14:42:16',0,56),(2297,'2016-03-14 14:42:16',0,55),(2298,'2016-03-15 01:14:38',0,78),(2299,'2016-03-16 01:14:38',0,73),(2300,'2016-03-17 01:14:38',0,71),(2301,'2016-03-18 18:15:08',0,70),(2302,'2016-03-19 18:15:08',0,61),(2303,'2016-03-20 18:15:08',0,60),(2304,'2016-03-21 18:15:08',0,59),(2305,'2016-03-22 03:35:14',0,86),(2306,'2016-03-23 03:35:14',0,75),(2307,'2016-03-24 03:35:14',0,73),(2308,'2016-03-25 03:35:14',0,63),(2309,'2016-03-26 03:35:14',0,62),(2310,'2016-03-27 03:35:14',0,61),(2311,'2016-03-28 03:35:14',0,60),(2312,'2016-03-29 03:35:14',0,59),(2313,'2016-03-30 03:35:14',0,58),(2314,'2016-03-31 03:35:14',0,57),(2315,'2016-04-01 03:35:14',0,56),(2316,'2016-04-02 03:01:35',0,74),(2317,'2016-04-03 03:01:35',0,69),(2318,'2016-04-04 03:01:35',0,68),(2319,'2016-04-05 03:02:16',0,67),(2320,'2016-04-06 03:02:34',0,66),(2321,'2016-04-07 03:02:34',0,65),(2322,'2016-04-08 03:02:34',0,64),(2323,'2016-04-09 03:02:34',0,63),(2324,'2016-04-10 03:02:34',0,62),(2325,'2016-04-11 03:02:34',0,61),(2326,'2016-04-12 03:02:34',0,60),(2327,'2016-04-13 03:02:52',0,59),(2328,'2016-04-14 03:02:52',0,58),(2329,'2016-04-15 02:23:51',0,82),(2330,'2016-04-16 02:23:51',0,79),(2331,'2016-04-17 02:23:51',0,71),(2332,'2016-04-18 02:23:51',0,60),(2333,'2016-04-19 02:23:49',0,59),(2334,'2016-04-20 02:24:08',0,58),(2335,'2016-04-21 02:24:08',0,57),(2336,'2016-04-22 02:24:08',0,56),(2337,'2016-04-23 02:24:08',0,55),(2338,'2016-04-23 10:19:25',0,76),(2339,'2016-04-24 10:19:25',0,65),(2340,'2016-04-25 10:19:25',0,64),(2341,'2016-04-26 10:19:32',0,63),(2342,'2016-04-27 10:19:36',0,62),(2343,'2016-04-28 10:19:36',0,61),(2344,'2016-04-29 10:19:36',0,60),(2345,'2016-04-30 10:19:36',0,59),(2346,'2016-05-01 10:19:36',0,58),(2347,'2016-05-02 10:19:36',0,57),(2348,'2016-05-03 10:19:36',0,56),(2349,'2016-05-04 10:19:36',0,55),(2350,'2016-05-05 03:46:28',0,85),(2351,'2016-05-06 03:46:28',0,72),(2352,'2016-05-07 03:46:28',0,71),(2353,'2016-05-08 03:46:28',0,70),(2354,'2016-05-09 03:46:28',0,69),(2355,'2016-05-10 03:46:53',0,68),(2356,'2016-05-11 03:47:12',0,67),(2357,'2016-05-12 03:47:12',0,66),(2358,'2016-05-13 03:47:12',0,65),(2359,'2016-05-14 03:47:12',0,64),(2360,'2016-05-15 03:47:12',0,63),(2361,'2016-05-16 03:47:12',0,62),(2362,'2016-05-17 03:47:06',0,61),(2363,'2016-05-18 23:31:13',0,60),(2364,'2016-05-19 23:31:13',0,59),(2365,'2016-05-20 23:31:13',0,58),(2366,'2016-05-21 23:31:13',0,57),(2367,'2016-05-22 02:59:37',0,84),(2368,'2016-05-23 02:59:37',0,70),(2369,'2016-05-24 02:59:40',0,69),(2370,'2016-05-25 02:59:54',0,68),(2371,'2016-05-26 02:59:54',0,67),(2372,'2016-05-27 02:59:54',0,66),(2373,'2016-05-28 14:10:59',0,65),(2374,'2016-05-29 14:10:59',0,64),(2375,'2016-05-30 14:10:59',0,63),(2376,'2016-05-31 14:11:14',0,62),(2377,'2016-06-01 14:11:14',0,61),(2378,'2016-06-02 14:11:14',0,60),(2379,'2016-06-02 21:30:55',0,81),(2380,'2016-06-03 21:30:55',0,78),(2381,'2016-06-04 21:30:55',0,76),(2382,'2016-06-05 21:30:55',0,75),(2383,'2016-06-06 21:30:55',0,74),(2384,'2016-06-07 21:31:13',0,73),(2385,'2016-06-08 21:31:13',0,72),(2386,'2016-06-09 21:31:13',0,71),(2387,'2016-06-10 21:31:13',0,70),(2388,'2016-06-11 21:31:13',0,69),(2389,'2016-06-12 04:57:20',0,96),(2390,'2016-06-13 04:57:20',0,79),(2391,'2016-06-14 04:57:28',0,72),(2392,'2016-06-15 04:57:39',0,71),(2393,'2016-06-16 04:57:39',0,70),(2394,'2016-06-17 03:27:22',0,98),(2395,'2016-06-18 03:27:22',0,86),(2396,'2016-06-19 03:27:22',0,83),(2397,'2016-06-20 03:27:22',0,82),(2398,'2016-06-21 03:27:28',0,81),(2399,'2016-06-22 03:27:40',0,80),(2400,'2016-06-23 03:27:40',0,79),(2401,'2016-06-24 03:27:40',0,78),(2402,'2016-06-25 03:27:40',0,77),(2403,'2016-06-26 03:27:40',0,76),(2404,'2016-06-27 03:27:40',0,75),(2405,'2016-06-28 03:27:46',0,74),(2406,'2016-06-29 03:27:58',0,73),(2407,'2016-06-30 03:27:58',0,72),(2408,'2016-07-01 03:27:58',0,71),(2409,'2016-07-02 03:27:58',0,70),(2410,'2016-07-03 03:27:58',0,69),(2411,'2016-07-04 03:27:58',0,68),(2412,'2016-07-05 03:28:11',0,67),(2413,'2016-07-06 03:28:23',0,66),(2414,'2016-07-06 18:25:12',0,96),(2415,'2016-07-07 18:25:12',0,94),(2416,'2016-07-08 18:25:12',0,85),(2417,'2016-07-09 18:25:12',0,84),(2418,'2016-07-10 18:25:12',0,83),(2419,'2016-07-11 18:25:12',0,82),(2420,'2016-07-12 18:25:34',0,81),(2421,'2016-07-13 18:25:34',0,80),(2422,'2016-07-14 18:25:34',0,79),(2423,'2016-07-15 18:25:34',0,78),(2424,'2016-07-16 18:25:34',0,77),(2425,'2016-07-17 18:25:34',0,76),(2426,'2016-07-18 18:25:34',0,75),(2427,'2016-07-19 18:25:56',0,74),(2428,'2016-07-20 18:25:56',0,73),(2429,'2016-07-21 18:25:56',0,72),(2430,'2016-07-22 18:25:56',0,71),(2431,'2016-07-23 18:25:56',0,70),(2432,'2016-07-24 18:25:56',0,69),(2433,'2016-07-25 18:25:56',0,68),(2434,'2016-07-26 18:26:19',0,67),(2435,'2016-07-27 16:45:39',0,90),(2436,'2016-07-28 16:45:39',0,86),(2437,'2016-07-29 16:45:39',0,84),(2438,'2016-07-30 16:45:39',0,83),(2439,'2016-07-31 16:45:39',0,82),(2440,'2016-08-01 16:45:39',0,81),(2441,'2016-08-02 16:46:03',0,80),(2442,'2016-08-03 16:46:03',0,79),(2443,'2016-08-04 16:46:03',0,78),(2444,'2016-08-05 16:46:03',0,76),(2445,'2016-08-06 16:46:03',0,75),(2446,'2016-08-07 16:46:03',0,74),(2447,'2016-08-08 16:46:03',0,73),(2448,'2016-08-09 16:46:25',0,72),(2449,'2016-08-10 16:46:25',0,71),(2450,'2016-08-11 16:46:25',0,70),(2451,'2016-08-12 16:46:25',0,69),(2452,'2016-08-13 16:46:25',0,68),(2453,'2016-08-14 16:46:25',0,67),(2454,'2016-08-15 09:59:49',0,96),(2455,'2016-08-16 10:00:05',0,90),(2456,'2016-08-17 10:00:09',0,82),(2457,'2016-08-18 10:00:09',0,74),(2458,'2016-08-19 10:00:09',0,73),(2459,'2016-08-20 10:00:09',0,72),(2460,'2016-08-21 10:00:09',0,71),(2461,'2016-08-22 10:00:09',0,70),(2462,'2016-08-23 10:00:24',0,69),(2463,'2016-08-24 10:00:28',0,68),(2464,'2016-08-25 10:00:28',0,67),(2465,'2016-08-26 10:00:28',0,66),(2466,'2016-08-27 10:00:28',0,65),(2467,'2016-08-28 10:00:28',0,64),(2468,'2016-08-29 10:00:28',0,63),(2469,'2016-08-30 22:09:59',0,62),(2470,'2016-08-31 22:09:59',0,61),(2471,'2016-09-01 01:32:56',0,83),(2472,'2016-09-02 01:32:56',0,81),(2473,'2016-09-03 01:32:56',0,78),(2474,'2016-09-04 01:32:56',0,77),(2475,'2016-09-05 01:32:56',0,76),(2476,'2016-09-06 01:33:01',0,75),(2477,'2016-09-07 01:33:17',0,74),(2478,'2016-09-08 01:33:17',0,73),(2479,'2016-09-09 01:33:17',0,72),(2480,'2016-09-10 01:33:17',0,71),(2481,'2016-09-11 01:33:17',0,70),(2482,'2016-09-12 01:33:17',0,69),(2483,'2016-09-13 01:33:17',0,68),(2484,'2016-09-14 01:33:17',0,67),(2485,'2016-09-15 01:33:17',0,66),(2486,'2016-09-16 01:33:17',0,65),(2487,'2016-09-17 01:33:17',0,64),(2488,'2016-09-18 01:33:17',0,63),(2489,'2016-09-19 01:33:17',0,62),(2490,'2016-09-20 01:11:27',0,87),(2491,'2016-09-21 01:11:44',0,85),(2492,'2016-09-22 01:11:44',0,77),(2493,'2016-09-23 01:11:44',0,76),(2494,'2016-09-24 01:11:44',0,75),(2495,'2016-09-25 01:11:44',0,72),(2496,'2016-09-26 01:11:44',0,71),(2497,'2016-09-27 01:11:48',0,70),(2498,'2016-09-28 01:12:05',0,69),(2499,'2016-09-29 01:12:05',0,68),(2500,'2016-09-30 01:12:05',0,67),(2501,'2016-10-01 01:12:05',0,66),(2502,'2016-10-02 01:12:05',0,65),(2503,'2016-10-03 01:12:05',0,64),(2504,'2016-10-04 01:12:18',0,63),(2505,'2016-10-05 01:12:35',0,62),(2506,'2016-10-06 01:12:35',0,61),(2507,'2016-10-07 01:12:35',0,60),(2508,'2016-10-07 01:44:55',0,84),(2509,'2016-10-08 01:44:55',0,76),(2510,'2016-10-09 01:44:55',0,75),(2511,'2016-10-10 01:44:55',0,74),(2512,'2016-10-11 01:44:59',0,70),(2513,'2016-10-12 01:45:16',0,69),(2514,'2016-10-13 01:45:16',0,68),(2515,'2016-10-14 01:45:16',0,67),(2516,'2016-10-15 01:45:16',0,66),(2517,'2016-10-16 01:45:16',0,65),(2518,'2016-10-17 01:45:16',0,64),(2519,'2016-10-18 01:45:19',0,63),(2520,'2016-10-19 00:19:56',0,89),(2521,'2016-10-20 00:19:56',0,77),(2522,'2016-10-21 00:19:56',0,75),(2523,'2016-10-22 00:19:56',0,74),(2524,'2016-10-23 00:19:56',0,73),(2525,'2016-10-24 00:19:56',0,72),(2526,'2016-10-25 00:19:58',0,71),(2527,'2016-10-26 00:20:16',0,70),(2528,'2016-10-27 00:20:16',0,69),(2529,'2016-10-28 00:20:16',0,68),(2530,'2016-10-29 18:57:39',0,67),(2531,'2016-10-30 18:57:39',0,66),(2532,'2016-10-31 18:57:39',0,65),(2533,'2016-11-01 01:18:37',0,90),(2534,'2016-11-02 01:18:54',0,78),(2535,'2016-11-03 01:18:54',0,73),(2536,'2016-11-04 01:18:54',0,72),(2537,'2016-11-05 01:18:54',0,71),(2538,'2016-11-06 01:18:54',0,70),(2539,'2016-11-07 01:18:54',0,69),(2540,'2016-11-08 01:18:58',0,68),(2541,'2016-11-09 01:19:14',0,67),(2542,'2016-11-10 01:19:14',0,66),(2543,'2016-11-11 01:19:14',0,65),(2544,'2016-11-12 01:19:14',0,64),(2545,'2016-11-13 01:19:14',0,63),(2546,'2016-11-14 01:19:14',0,62),(2547,'2016-11-15 01:19:18',0,61),(2548,'2016-11-16 01:19:34',0,60),(2549,'2016-11-17 01:19:34',0,59),(2550,'2016-11-18 01:19:34',0,58),(2551,'2016-11-19 01:19:34',0,57),(2552,'2016-11-20 01:19:34',0,56),(2553,'2016-11-21 01:19:34',0,55),(2554,'2016-11-22 00:16:17',0,80),(2555,'2016-11-23 00:16:36',0,76),(2556,'2016-11-24 00:16:36',0,71),(2557,'2016-11-25 00:16:36',0,70),(2558,'2016-11-26 00:16:36',0,69),(2559,'2016-11-27 00:16:36',0,68),(2560,'2016-11-28 00:16:36',0,67),(2561,'2016-11-29 00:16:34',0,66),(2562,'2016-11-30 00:16:52',0,65),(2563,'2016-12-01 00:16:52',0,64),(2564,'2016-12-01 04:44:57',0,88),(2565,'2016-12-02 04:44:57',0,77),(2566,'2016-12-03 04:44:57',0,76),(2567,'2016-12-04 04:44:57',0,71),(2568,'2016-12-05 04:44:57',0,68),(2569,'2016-12-06 04:45:01',0,67),(2570,'2016-12-07 04:45:13',0,66),(2571,'2016-12-08 04:45:13',0,65),(2572,'2016-12-09 04:45:13',0,64),(2573,'2016-12-10 04:45:13',0,63),(2574,'2016-12-11 04:45:13',0,62),(2575,'2016-12-12 04:45:13',0,61),(2576,'2016-12-13 04:45:17',0,60),(2577,'2016-12-14 04:45:29',0,59),(2578,'2016-12-15 04:45:29',0,58),(2579,'2016-12-16 04:45:29',0,57),(2580,'2016-12-17 04:45:29',0,56),(2581,'2016-12-18 04:45:29',0,55),(2582,'2016-12-19 04:45:29',0,54),(2583,'2016-12-20 04:45:32',0,53),(2584,'2016-12-21 03:12:54',0,77),(2585,'2016-12-22 03:12:54',0,71),(2586,'2016-12-23 03:12:54',0,70),(2587,'2016-12-24 03:12:54',0,68),(2588,'2016-12-25 03:12:54',0,63),(2589,'2016-12-26 03:12:54',0,62),(2590,'2016-12-27 03:13:04',0,61),(2591,'2016-12-28 03:13:18',0,60),(2592,'2016-12-29 03:13:18',0,59),(2593,'2016-12-30 03:13:18',0,58),(2594,'2016-12-31 03:13:18',0,57),(2595,'2017-01-01 03:13:18',0,56),(2596,'2017-01-02 03:13:18',0,55),(2597,'2017-01-03 03:13:19',0,54),(2598,'2017-01-04 02:11:17',0,76),(2599,'2017-01-05 02:11:17',0,70),(2600,'2017-01-06 02:11:17',0,67),(2601,'2017-01-07 02:11:17',0,66),(2602,'2017-01-08 02:11:17',0,65),(2603,'2017-01-09 02:11:17',0,64),(2604,'2017-01-10 02:11:17',0,63),(2605,'2017-01-11 02:11:31',0,62),(2606,'2017-01-12 02:11:31',0,61),(2607,'2017-01-13 02:11:31',0,60),(2608,'2017-01-14 02:11:31',0,59),(2609,'2017-01-15 02:11:31',0,58),(2610,'2017-01-16 02:11:31',0,57),(2611,'2017-01-17 02:11:31',0,56),(2612,'2017-01-18 02:11:48',0,55),(2613,'2017-01-19 02:11:48',0,54),(2614,'2017-01-20 02:11:48',0,53),(2615,'2017-01-21 02:11:49',0,52),(2616,'2017-01-22 02:11:49',0,51),(2617,'2017-01-23 02:11:49',0,50),(2618,'2017-01-23 03:51:20',0,71),(2619,'2017-01-24 03:51:21',0,70),(2620,'2017-01-25 03:51:37',0,69),(2621,'2017-01-26 03:51:37',0,66),(2622,'2017-01-27 03:51:37',0,65),(2623,'2017-01-28 03:51:37',0,64),(2624,'2017-01-29 03:51:37',0,63),(2625,'2017-01-30 03:51:37',0,62),(2626,'2017-01-31 03:51:38',0,61),(2627,'2017-02-01 03:51:54',0,60),(2628,'2017-02-02 03:51:54',0,59),(2629,'2017-02-03 03:51:54',0,58),(2630,'2017-02-04 03:51:54',0,57),(2631,'2017-02-05 03:51:54',0,56),(2632,'2017-02-06 03:51:54',0,55),(2633,'2017-02-07 03:51:55',0,54),(2634,'2017-02-08 03:52:11',0,53),(2635,'2017-02-08 12:32:24',0,73),(2636,'2017-02-09 12:32:24',0,68),(2637,'2017-02-10 12:32:24',0,67),(2638,'2017-02-11 12:32:24',0,66),(2639,'2017-02-12 12:32:24',0,65),(2640,'2017-02-13 12:32:24',0,62),(2641,'2017-02-14 12:32:36',0,61),(2642,'2017-02-15 12:32:41',0,60),(2643,'2017-02-16 12:32:41',0,59),(2644,'2017-02-17 12:32:41',0,58),(2645,'2017-02-18 12:32:41',0,57),(2646,'2017-02-19 12:32:41',0,56),(2647,'2017-02-20 12:32:41',0,55),(2648,'2017-02-21 12:32:53',0,54),(2649,'2017-02-22 12:32:58',0,53),(2650,'2017-02-23 12:32:58',0,52),(2651,'2017-02-24 12:32:58',0,51),(2652,'2017-02-25 12:32:58',0,50),(2653,'2017-02-26 12:32:58',0,49),(2654,'2017-02-27 12:32:58',0,48),(2655,'2017-02-28 01:18:21',0,72),(2656,'2017-03-01 01:18:38',0,64),(2657,'2017-03-02 01:18:38',0,62),(2658,'2017-03-03 01:18:38',0,61),(2659,'2017-03-04 01:18:38',0,60),(2660,'2017-03-05 01:18:38',0,59),(2661,'2017-03-06 01:18:38',0,58),(2662,'2017-03-07 01:18:38',0,57),(2663,'2017-03-08 01:18:55',0,56),(2664,'2017-03-09 01:18:55',0,55),(2665,'2017-03-10 01:18:55',0,54),(2666,'2017-03-11 01:18:55',0,53),(2667,'2017-03-12 01:18:55',0,52),(2668,'2017-03-13 01:18:55',0,51),(2669,'2017-03-14 01:18:55',0,50),(2670,'2017-03-15 01:19:11',0,49),(2671,'2017-03-16 01:19:11',0,48),(2672,'2017-03-16 10:25:48',0,68),(2673,'2017-03-17 10:25:48',0,66),(2674,'2017-03-18 10:25:48',0,64),(2675,'2017-03-19 10:25:48',0,63),(2676,'2017-03-20 10:25:48',0,62),(2677,'2017-03-21 10:25:57',0,61),(2678,'2017-03-22 10:26:04',0,60),(2679,'2017-03-23 10:26:04',0,59),(2680,'2017-03-24 10:26:04',0,58),(2681,'2017-03-25 21:22:55',0,57),(2682,'2017-03-26 21:22:55',0,56),(2683,'2017-03-27 21:22:55',0,55),(2684,'2017-03-28 21:23:13',0,54),(2685,'2017-03-29 22:46:06',0,53),(2686,'2017-03-30 01:26:00',0,76),(2687,'2017-03-31 01:26:00',0,67),(2688,'2017-04-01 01:26:00',0,63),(2689,'2017-04-02 01:26:00',0,61),(2690,'2017-04-03 01:26:00',0,60),(2691,'2017-04-04 01:26:00',0,59),(2692,'2017-04-05 01:26:07',0,58),(2693,'2017-04-06 01:26:07',0,57),(2694,'2017-04-07 01:26:07',0,56),(2695,'2017-04-08 01:26:07',0,55),(2696,'2017-04-09 01:26:07',0,54),(2697,'2017-04-10 01:26:07',0,53),(2698,'2017-04-11 01:26:07',0,52),(2699,'2017-04-12 01:26:40',0,51),(2700,'2017-04-13 01:26:40',0,50),(2701,'2017-04-14 01:26:40',0,49),(2702,'2017-04-14 10:19:17',0,72),(2703,'2017-04-15 10:19:17',0,71),(2704,'2017-04-16 10:19:17',0,70),(2705,'2017-04-17 10:19:17',0,66),(2706,'2017-04-18 10:19:30',0,65),(2707,'2017-04-19 10:19:39',0,64),(2708,'2017-04-20 10:19:39',0,63),(2709,'2017-04-21 10:19:39',0,62),(2710,'2017-04-22 10:19:39',0,61),(2711,'2017-04-23 10:19:39',0,60),(2712,'2017-04-24 10:19:39',0,59),(2713,'2017-04-25 10:19:52',0,58),(2714,'2017-04-26 10:20:02',0,57),(2715,'2017-04-27 10:20:02',0,56),(2716,'2017-04-28 10:20:02',0,55),(2717,'2017-04-29 10:20:02',0,54),(2718,'2017-04-30 10:20:02',0,53),(2719,'2017-05-01 10:20:02',0,52),(2720,'2017-05-02 10:20:13',0,51),(2721,'2017-05-03 10:20:23',0,50),(2722,'2017-05-04 10:20:23',0,49),(2723,'2017-05-05 10:20:23',0,48),(2724,'2017-05-05 18:45:51',0,79),(2725,'2017-05-06 18:45:51',0,72),(2726,'2017-05-07 18:45:51',0,71),(2727,'2017-05-08 18:45:51',0,70),(2728,'2017-05-09 18:46:14',0,69),(2729,'2017-05-10 18:46:14',0,63),(2730,'2017-05-11 18:46:14',0,62),(2731,'2017-05-12 18:46:14',0,61),(2732,'2017-05-13 18:46:14',0,60),(2733,'2016-05-16 13:25:50',0,59),(2734,'2016-05-17 13:25:50',0,58),(2735,'2016-05-18 13:25:50',0,57),(2736,'2016-05-19 13:25:50',0,56),(2737,'2016-05-20 13:25:50',0,55),(2738,'2016-05-21 13:25:50',0,54),(2739,'2016-05-22 13:25:50',0,53),(2740,'2016-05-23 13:25:50',0,52),(2741,'2016-05-24 13:25:50',0,51),(2742,'2016-05-24 19:13:36',0,85),(2743,'2016-05-25 19:13:36',0,75),(2744,'2016-05-26 19:13:36',0,71),(2745,'2016-05-27 19:13:36',0,66),(2746,'2016-05-28 19:13:36',0,65),(2747,'2016-05-29 19:13:36',0,64),(2748,'2016-05-30 19:13:36',0,63),(2749,'2016-05-31 19:13:36',0,62),(2750,'2016-06-01 19:13:36',0,61),(2751,'2016-06-02 19:13:36',0,60),(2752,'2016-06-03 19:13:36',0,59),(2753,'2016-06-04 19:13:36',0,58),(2754,'2016-06-05 19:13:36',0,57),(2755,'2016-06-06 19:13:36',0,56),(2756,'2016-06-07 18:47:19',0,79),(2757,'2016-06-08 18:47:19',0,78),(2758,'2016-06-09 18:47:19',0,77),(2759,'2016-06-10 18:47:19',0,76),(2760,'2016-06-11 18:47:19',0,75),(2761,'2016-06-12 18:47:19',0,74),(2762,'2016-06-13 18:47:19',0,73),(2763,'2016-06-14 18:47:19',0,72),(2764,'2016-06-15 18:47:19',0,71),(2765,'2016-06-16 18:47:19',0,70),(2766,'2016-06-17 18:47:19',0,69),(2767,'2016-06-18 18:47:19',0,68),(2768,'2016-06-19 18:47:19',0,67),(2769,'2016-06-20 18:31:29',0,96),(2770,'2016-06-21 18:31:29',0,88),(2771,'2016-06-24 03:34:24',0,59),(2772,'2016-06-25 03:34:24',0,58),(2773,'2016-06-26 03:34:24',0,57),(2774,'2016-06-26 19:15:01',0,89),(2775,'2016-06-27 19:15:01',0,88),(2776,'2016-06-28 19:15:01',0,85),(2777,'2016-06-29 19:15:01',0,83),(2778,'2016-06-30 19:15:01',0,82),(2779,'2016-07-01 19:15:01',0,76),(2780,'2016-07-02 19:15:01',0,75),(2781,'2016-07-03 19:15:01',0,74),(2782,'2016-07-04 19:15:01',0,73),(2783,'2016-07-05 19:15:01',0,72),(2784,'2016-07-06 19:15:01',0,71),(2785,'2016-07-06 19:43:47',0,93),(2786,'2016-07-07 19:43:47',0,87),(2787,'2016-07-08 19:43:47',0,85),(2788,'2016-07-09 19:43:47',0,83),(2789,'2016-07-10 19:43:47',0,82),(2790,'2016-07-11 19:43:47',0,81),(2791,'2016-07-12 19:43:47',0,80),(2792,'2016-07-13 19:43:47',0,79),(2793,'2016-07-14 19:43:47',0,78),(2794,'2016-07-15 19:43:47',0,77),(2795,'2016-07-16 19:43:47',0,76),(2796,'2016-07-17 19:43:47',0,75),(2797,'2016-07-18 19:43:47',0,74),(2798,'2016-07-19 19:43:47',0,73),(2799,'2016-07-20 19:43:47',0,72),(2800,'2016-07-21 19:43:47',0,71),(2801,'2016-07-22 19:43:47',0,70),(2802,'2016-07-23 19:43:47',0,69),(2803,'2016-07-24 19:43:47',0,68),(2804,'2016-07-24 20:35:14',0,92),(2805,'2016-07-25 20:35:14',0,88),(2806,'2016-07-26 20:35:14',0,84),(2807,'2016-07-27 20:35:14',0,76),(2808,'2016-07-28 20:35:14',0,75),(2809,'2016-07-29 20:35:14',0,72),(2810,'2016-07-30 20:35:14',0,71),(2811,'2016-07-31 20:35:14',0,70),(2812,'2016-08-01 20:35:14',0,69),(2813,'2016-08-02 20:35:14',0,68),(2814,'2016-08-03 20:35:14',0,67),(2815,'2016-08-04 20:35:14',0,66),(2816,'2016-08-05 20:35:14',0,65),(2817,'2016-08-06 20:35:14',0,64),(2818,'2016-08-07 20:35:14',0,63),(2819,'2016-08-08 20:35:14',0,62),(2820,'2016-08-09 20:35:14',0,61),(2821,'2016-08-10 20:35:14',0,60),(2822,'2016-08-11 20:35:14',0,59),(2823,'2016-08-12 20:35:14',0,58),(2824,'2016-08-13 19:30:28',0,86),(2825,'2016-08-14 19:30:28',0,72),(2826,'2016-08-15 19:30:28',0,71),(2827,'2016-08-16 19:30:28',0,70),(2828,'2016-08-17 19:30:28',0,69),(2829,'2016-08-18 19:30:28',0,68),(2830,'2016-08-19 19:30:28',0,67),(2831,'2016-08-20 19:30:28',0,66),(2832,'2016-08-21 19:30:28',0,65),(2833,'2016-08-22 19:30:28',0,64),(2834,'2016-08-23 19:30:28',0,63),(2835,'2016-08-24 19:30:28',0,62),(2836,'2016-08-25 19:30:28',0,61),(2837,'2016-08-26 19:07:39',0,89),(2838,'2016-08-27 19:07:39',0,88),(2839,'2016-08-28 19:07:39',0,85),(2840,'2016-08-29 19:07:39',0,80),(2841,'2016-08-30 19:07:39',0,79),(2842,'2017-09-01 02:44:56',0,82),(2843,'2017-09-02 02:44:56',0,76),(2844,'2017-09-03 02:44:56',0,75),(2845,'2017-09-04 02:44:56',0,74),(2846,'2017-09-05 02:44:56',0,73),(2847,'2017-09-06 02:44:56',0,72),(2848,'2017-09-07 02:44:56',0,71),(2849,'2017-09-08 02:44:56',0,70),(2850,'2017-09-09 02:44:56',0,69),(2851,'2017-09-10 02:44:56',0,68),(2852,'2017-09-11 02:44:56',0,67),(2853,'2017-09-12 02:44:56',0,66),(2854,'2017-09-13 01:45:27',0,65),(2855,'2017-09-14 01:45:27',0,64),(2856,'2017-09-15 01:45:27',0,63),(2857,'2017-09-16 01:45:27',0,62),(2858,'2017-09-17 01:45:27',0,61),(2859,'2017-09-18 01:45:27',0,60),(2860,'2017-09-19 01:45:27',0,59),(2861,'2017-09-20 01:46:11',0,58),(2862,'2017-09-21 01:46:11',0,57),(2863,'2017-09-21 19:18:01',0,83),(2864,'2017-09-22 19:18:01',0,80),(2865,'2017-09-23 19:18:01',0,76),(2866,'2017-09-24 19:18:01',0,69),(2867,'2017-09-25 19:18:01',0,68),(2868,'2017-09-26 19:18:18',0,66),(2869,'2017-09-27 19:18:29',0,65),(2870,'2017-09-28 19:18:29',0,64),(2871,'2017-09-29 19:18:29',0,63),(2872,'2017-09-30 19:18:29',0,62),(2873,'2017-10-01 19:18:29',0,61),(2874,'2017-10-02 19:18:29',0,60),(2875,'2017-10-03 19:18:40',0,59),(2876,'2017-10-04 19:18:50',0,58),(2877,'2017-10-05 19:18:50',0,57),(2878,'2017-10-06 19:18:50',0,56),(2879,'2017-10-07 19:18:50',0,55),(2880,'2017-10-08 19:18:50',0,54),(2881,'2017-10-09 19:18:50',0,53),(2882,'2017-10-10 19:18:50',0,52),(2883,'2017-10-11 19:18:50',0,51),(2884,'2017-10-12 01:08:50',0,73),(2885,'2017-10-13 01:08:50',0,72),(2886,'2017-10-14 01:08:50',0,68),(2887,'2017-10-15 01:08:50',0,67),(2888,'2017-10-16 01:08:50',0,65),(2889,'2017-10-17 01:08:50',0,64),(2890,'2017-10-18 01:08:50',0,63),(2891,'2017-10-19 01:08:50',0,62),(2892,'2017-10-20 01:08:50',0,61),(2893,'2017-10-21 01:08:50',0,60),(2894,'2017-10-22 01:08:50',0,59),(2895,'2017-10-23 01:08:50',0,58),(2896,'2017-10-24 01:08:50',0,57),(2897,'2017-10-25 01:08:50',0,56),(2898,'2017-10-26 01:09:53',0,55),(2899,'2017-10-27 01:09:59',0,54),(2900,'2017-10-28 01:09:59',0,53),(2901,'2017-10-29 01:09:59',0,52),(2902,'2017-10-30 01:10:00',0,51),(2903,'2017-10-31 01:10:00',0,50),(2904,'2017-11-01 01:10:00',0,49),(2905,'2017-11-02 00:48:59',0,78),(2906,'2017-11-03 00:49:06',0,68),(2907,'2017-11-04 00:49:06',0,67),(2908,'2017-11-05 00:49:06',0,66),(2909,'2017-11-06 00:49:06',0,65),(2910,'2017-11-07 00:49:06',0,64),(2911,'2017-11-08 00:49:06',0,63),(2912,'2017-11-10 10:26:22',0,62),(2913,'2017-11-11 10:26:22',0,61),(2914,'2017-11-12 10:26:22',0,60),(2915,'2017-11-13 10:26:22',0,59),(2916,'2017-11-14 10:26:22',0,58),(2917,'2017-11-15 10:26:22',0,57),(2918,'2017-11-16 10:26:40',0,56),(2919,'2017-11-18 18:18:22',0,55),(2920,'2017-11-19 18:18:22',0,54),(2921,'2017-11-20 19:32:37',0,53),(2922,'2017-11-21 19:32:37',0,52),(2923,'2017-11-21 23:33:53',0,75),(2924,'2017-11-22 23:34:14',0,72),(2925,'2017-11-23 23:34:14',0,66),(2926,'2017-11-24 23:34:14',0,65),(2927,'2017-11-25 23:34:14',0,64),(2928,'2017-11-26 23:34:14',0,63),(2929,'2017-11-27 23:34:14',0,62),(2930,'2017-11-28 23:34:14',0,61),(2931,'2017-11-29 23:34:46',0,60),(2932,'2017-11-30 23:34:52',0,59),(2933,'2017-12-01 23:34:52',0,58),(2934,'2017-12-02 23:34:52',0,57),(2935,'2017-12-03 23:34:52',0,56),(2936,'2017-12-04 03:32:26',0,81),(2937,'2017-12-05 03:32:26',0,69),(2938,'2017-12-06 03:32:26',0,65),(2939,'2017-12-07 03:32:51',0,64),(2940,'2017-12-08 03:32:53',0,63),(2941,'2017-12-09 03:32:53',0,62),(2942,'2017-12-10 03:32:53',0,61),(2943,'2017-12-11 03:32:53',0,60),(2944,'2017-12-12 03:32:53',0,59),(2945,'2017-12-13 03:32:53',0,58),(2946,'2017-12-14 03:33:13',0,57),(2947,'2017-12-15 03:33:15',0,56),(2948,'2017-12-16 03:33:15',0,55),(2949,'2017-12-17 03:33:15',0,54),(2950,'2017-12-18 03:33:15',0,53),(2951,'2017-12-18 23:49:49',0,72),(2952,'2017-12-19 23:49:49',0,70),(2953,'2017-12-20 23:50:03',0,66),(2954,'2017-12-21 23:50:11',0,65),(2955,'2017-12-22 23:50:11',0,64),(2956,'2017-12-23 23:50:11',0,63),(2957,'2017-12-24 23:50:11',0,62),(2958,'2017-12-25 23:50:11',0,61),(2959,'2017-12-26 23:50:11',0,60),(2960,'2017-12-27 23:50:26',0,59),(2961,'2017-12-28 23:50:34',0,58),(2962,'2017-12-29 01:54:36',0,80),(2963,'2017-12-30 01:54:36',0,73),(2964,'2017-12-31 01:54:36',0,67),(2965,'2018-01-01 01:54:36',0,66),(2966,'2018-01-02 01:54:36',0,65),(2967,'2018-01-03 01:54:36',0,64),(2968,'2018-01-04 01:54:53',0,63),(2969,'2018-01-05 01:54:58',0,62),(2970,'2018-01-06 01:54:58',0,61),(2971,'2018-01-07 01:54:58',0,60),(2972,'2018-01-08 01:54:58',0,59),(2973,'2018-01-09 01:54:58',0,58),(2974,'2018-01-10 01:54:58',0,57),(2975,'2018-01-11 01:55:15',0,56),(2976,'2018-01-12 01:55:20',0,55),(2977,'2018-01-13 01:55:20',0,54),(2978,'2018-01-14 01:55:20',0,53),(2979,'2018-01-15 01:11:47',0,74),(2980,'2018-01-16 01:11:47',0,68),(2981,'2018-01-17 01:11:47',0,67),(2982,'2018-01-18 01:12:07',0,66),(2983,'2018-01-19 01:12:13',0,65),(2984,'2018-01-20 01:12:13',0,64),(2985,'2018-01-21 01:12:13',0,63),(2986,'2018-01-22 01:12:13',0,62),(2987,'2018-01-23 01:12:13',0,61),(2988,'2018-01-24 01:12:13',0,60),(2989,'2018-01-25 01:12:29',0,59),(2990,'2018-01-26 01:12:35',0,58),(2991,'2018-01-27 01:12:35',0,57),(2992,'2018-01-28 01:12:35',0,56),(2993,'2018-01-29 01:12:35',0,55),(2994,'2018-01-30 01:12:35',0,54),(2995,'2018-01-31 01:12:35',0,53),(2996,'2018-01-31 02:43:55',0,76),(2997,'2018-02-01 02:44:14',0,75),(2998,'2018-02-02 02:44:18',0,69),(2999,'2018-02-03 02:44:18',0,68),(3000,'2018-02-04 02:44:18',0,67),(3001,'2018-02-05 02:44:18',0,65),(3002,'2018-02-06 02:44:18',0,61),(3003,'2018-02-07 02:44:18',0,60),(3004,'2018-02-08 02:44:37',0,59);
232/*!40000 ALTER TABLE `kw_setpoint` ENABLE KEYS */;
233UNLOCK TABLES;
234
235--
236-- Table structure for table `location_info`
237--
238
239DROP TABLE IF EXISTS `location_info`;
240CREATE TABLE `location_info` (
241 `id` int(11) NOT NULL auto_increment,
242 `system_name` varchar(100) NOT NULL default 'New Install',
243 `alarm_email` varchar(200) default NULL,
244 PRIMARY KEY (`id`)
245) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
246
247--
248-- Dumping data for table `location_info`
249--
250
251LOCK TABLES `location_info` WRITE;
252/*!40000 ALTER TABLE `location_info` DISABLE KEYS */;
253INSERT INTO `location_info` VALUES (1,'23486 Goldingc','Jayhawk@divide.net');
254/*!40000 ALTER TABLE `location_info` ENABLE KEYS */;
255UNLOCK TABLES;
256
257--
258-- Table structure for table `log_message`
259--
260
261DROP TABLE IF EXISTS `log_message`;
262CREATE TABLE `log_message` (
263 `id` int(11) NOT NULL auto_increment,
264 `timestamp` datetime NOT NULL,
265 `message` varchar(150) NOT NULL,
266 PRIMARY KEY (`id`)
267) ENGINE=InnoDB DEFAULT CHARSET=latin1;
268
269--
270-- Dumping data for table `log_message`
271--
272
273LOCK TABLES `log_message` WRITE;
274/*!40000 ALTER TABLE `log_message` DISABLE KEYS */;
275/*!40000 ALTER TABLE `log_message` ENABLE KEYS */;
276UNLOCK TABLES;
277
278--
279-- Table structure for table `notes`
280--
281
282DROP TABLE IF EXISTS `notes`;
283CREATE TABLE `notes` (
284 `id` int(11) NOT NULL auto_increment,
285 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
286 `name` varchar(100) NOT NULL,
287 `body` text NOT NULL,
288 PRIMARY KEY (`id`)
289) ENGINE=InnoDB DEFAULT CHARSET=latin1;
290
291--
292-- Dumping data for table `notes`
293--
294
295LOCK TABLES `notes` WRITE;
296/*!40000 ALTER TABLE `notes` DISABLE KEYS */;
297/*!40000 ALTER TABLE `notes` ENABLE KEYS */;
298UNLOCK TABLES;
299
300--
301-- Table structure for table `schedule_names`
302--
303
304DROP TABLE IF EXISTS `schedule_names`;
305CREATE TABLE `schedule_names` (
306 `id` int(11) NOT NULL auto_increment,
307 `name` varchar(100) NOT NULL,
308 `default_time` time NOT NULL,
309 `sunday` time NOT NULL,
310 `monday` time NOT NULL,
311 `tuesday` time NOT NULL,
312 `wednesday` time NOT NULL,
313 `thursday` time NOT NULL,
314 `friday` time NOT NULL,
315 `saturday` time NOT NULL,
316 PRIMARY KEY (`id`)
317) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
318
319--
320-- Dumping data for table `schedule_names`
321--
322
323LOCK TABLES `schedule_names` WRITE;
324/*!40000 ALTER TABLE `schedule_names` DISABLE KEYS */;
325INSERT INTO `schedule_names` VALUES (1,'Openers','00:00:00','04:00:00','03:45:00','04:00:00','03:45:00','04:00:00','03:45:00','04:00:00'),(2,'Closers','00:00:00','25:00:00','25:00:00','25:00:00','25:00:00','25:00:00','26:00:00','26:00:00'),(3,'Drive Thru Open','00:00:00','05:00:00','05:00:00','05:00:00','05:00:00','05:00:00','05:00:00','05:00:00'),(4,'Drive Thru Close','00:00:00','24:00:00','24:00:00','24:00:00','24:00:00','24:00:00','25:00:00','25:00:00'),(5,'Lobby Open','00:00:00','05:00:00','05:00:00','05:00:00','05:00:00','05:00:00','05:00:00','05:00:00'),(6,'Lobby Close','00:00:00','23:00:00','23:00:00','23:00:00','23:00:00','23:00:00','23:00:00','23:00:00'),(7,'Playland Open','00:00:00','08:00:00','08:00:00','08:00:00','08:00:00','08:00:00','08:00:00','08:00:00'),(8,'Playland Close','00:00:00','21:00:00','21:00:00','21:00:00','21:00:00','21:00:00','21:00:00','21:00:00'),(9,'Soffits OFF','00:00:00','24:00:00','24:00:00','24:00:00','24:00:00','24:00:00','24:00:00','24:00:00');
326/*!40000 ALTER TABLE `schedule_names` ENABLE KEYS */;
327UNLOCK TABLES;
328
329--
330-- Table structure for table `schedules_onetime`
331--
332
333DROP TABLE IF EXISTS `schedules_onetime`;
334CREATE TABLE `schedules_onetime` (
335 `id` int(11) NOT NULL auto_increment,
336 `onetime_name_id` int(11) NOT NULL,
337 `schedule_name_id` int(11) NOT NULL,
338 `time` time NOT NULL,
339 PRIMARY KEY (`id`)
340) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
341
342--
343-- Dumping data for table `schedules_onetime`
344--
345
346LOCK TABLES `schedules_onetime` WRITE;
347/*!40000 ALTER TABLE `schedules_onetime` DISABLE KEYS */;
348INSERT INTO `schedules_onetime` VALUES (1,1,1,'09:00:00'),(2,1,2,'09:01:00'),(3,1,3,'09:00:00'),(4,1,4,'09:01:00'),(5,1,5,'09:00:00'),(6,1,6,'09:01:00'),(7,1,7,'09:00:00'),(8,1,8,'09:01:00'),(13,3,2,'21:00:00'),(14,3,4,'20:00:00'),(15,3,6,'20:00:00'),(16,3,8,'20:00:00'),(17,4,1,'06:00:00'),(18,4,3,'08:00:00'),(19,4,5,'08:00:00'),(20,4,7,'08:00:00');
349/*!40000 ALTER TABLE `schedules_onetime` ENABLE KEYS */;
350UNLOCK TABLES;
351
352--
353-- Table structure for table `schedules_onetime_names`
354--
355
356DROP TABLE IF EXISTS `schedules_onetime_names`;
357CREATE TABLE `schedules_onetime_names` (
358 `id` int(11) NOT NULL auto_increment,
359 `name` varchar(100) NOT NULL,
360 `month` int(11) NOT NULL,
361 `day` int(11) NOT NULL,
362 PRIMARY KEY (`id`,`month`,`day`)
363) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
364
365--
366-- Dumping data for table `schedules_onetime_names`
367--
368
369LOCK TABLES `schedules_onetime_names` WRITE;
370/*!40000 ALTER TABLE `schedules_onetime_names` DISABLE KEYS */;
371INSERT INTO `schedules_onetime_names` VALUES (1,'Christmas Day',12,25),(3,'New Years Eve',12,31),(4,'New Years Day',1,1),(6,'New Entry',12,25);
372/*!40000 ALTER TABLE `schedules_onetime_names` ENABLE KEYS */;
373UNLOCK TABLES;
374
375--
376-- Table structure for table `settings_categories`
377--
378
379DROP TABLE IF EXISTS `settings_categories`;
380CREATE TABLE `settings_categories` (
381 `id` int(11) NOT NULL auto_increment,
382 `name` varchar(100) NOT NULL,
383 `description` varchar(255) default NULL,
384 PRIMARY KEY (`id`)
385) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
386
387--
388-- Dumping data for table `settings_categories`
389--
390
391LOCK TABLES `settings_categories` WRITE;
392/*!40000 ALTER TABLE `settings_categories` DISABLE KEYS */;
393INSERT INTO `settings_categories` VALUES (1,'HVAC','HVAC-related settings.');
394/*!40000 ALTER TABLE `settings_categories` ENABLE KEYS */;
395UNLOCK TABLES;
396
397--
398-- Table structure for table `settings_data`
399--
400
401DROP TABLE IF EXISTS `settings_data`;
402CREATE TABLE `settings_data` (
403 `id` int(11) NOT NULL auto_increment,
404 `category_id` int(11) NOT NULL,
405 `instance_id` int(11) NOT NULL,
406 `setting_id` int(11) NOT NULL,
407 `value` float NOT NULL default '0',
408 PRIMARY KEY (`id`)
409) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=latin1;
410
411--
412-- Dumping data for table `settings_data`
413--
414
415LOCK TABLES `settings_data` WRITE;
416/*!40000 ALTER TABLE `settings_data` DISABLE KEYS */;
417INSERT INTO `settings_data` VALUES (1,1,0,1,74),(3,1,0,2,180),(4,1,0,3,180),(5,1,0,4,30),(6,1,0,5,120),(7,1,0,6,1),(10,1,0,9,68),(11,1,0,10,1),(12,1,0,11,0.1),(17,1,0,13,15),(18,1,0,12,0.1),(19,1,0,14,60),(20,1,0,15,60),(21,1,0,16,0.1),(22,1,0,17,0.1),(23,1,0,18,85),(24,1,0,19,55),(25,1,0,20,180),(26,1,0,21,180),(27,1,0,22,0.5),(34,1,0,23,60),(35,1,0,24,180),(36,1,0,25,180),(37,1,0,26,180),(38,1,0,27,5),(39,1,0,28,10),(40,1,0,29,20),(41,1,0,30,60),(42,1,0,31,8),(43,1,0,32,60),(44,1,1,1,-5),(45,1,1,18,-1),(46,1,2,1,35),(47,1,2,18,38),(48,0,0,33,1),(49,0,0,34,113),(50,1,0,35,0.5),(51,1,0,36,50),(52,1,0,37,0),(53,1,0,38,0),(54,1,1,31,5),(56,1,2,31,4),(57,0,0,39,25),(58,1,2,29,15),(59,1,1,29,20),(60,1,3,18,85),(61,1,3,1,72),(62,1,4,1,76),(63,1,3,9,65),(64,1,4,9,68),(65,1,6,9,68),(66,1,6,1,78),(67,1,5,1,76),(68,1,5,9,68),(69,1,4,18,80),(70,1,5,18,85),(71,1,5,19,60),(72,1,4,19,60),(73,1,6,18,85),(74,1,6,19,55),(75,1,3,19,55);
418/*!40000 ALTER TABLE `settings_data` ENABLE KEYS */;
419UNLOCK TABLES;
420
421--
422-- Table structure for table `settings_meta`
423--
424
425DROP TABLE IF EXISTS `settings_meta`;
426CREATE TABLE `settings_meta` (
427 `id` int(11) NOT NULL auto_increment,
428 `category_id` int(11) NOT NULL,
429 `name` varchar(100) NOT NULL,
430 `description` varchar(255) default NULL,
431 PRIMARY KEY (`id`)
432) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=latin1;
433
434--
435-- Dumping data for table `settings_meta`
436--
437
438LOCK TABLES `settings_meta` WRITE;
439/*!40000 ALTER TABLE `settings_meta` DISABLE KEYS */;
440INSERT INTO `settings_meta` VALUES (1,1,'cooling_setpoint','cooling setpoint'),(2,1,'compressor_minimum_offtime','minimum interval in seconds between compressor run cycles'),(3,1,'compressor_minimum_ontime','minimum number of seconds the cooling compressor is allowed to run'),(5,1,'blower_emergency_activate_temp','temperature (F) above which the blower should activate'),(6,1,'deadband','allowable temp (F) deviation from setpoint before heating/cooling'),(9,1,'heating_setpoint','heating setpoint'),(10,1,'silent_deadband','if temp is within this deadband, heating/cooling will not stop even if temp has reached setpoint'),(11,1,'minimum_1st_stage_cp','allows cooling to stop without reaching target if cooling power gets too low'),(12,1,'2nd_stage_activation_cp','if cooling power on 1st stage is below this, 2nd stage can activate'),(13,1,'fan_on_minutes','fan should be on this many minutes of each 15-minute timespan'),(14,1,'heating_minimum_ontime','minimum interval in seconds that a heating element can be on'),(15,1,'heating_minimum_offtime','minimum interval in seconds betweeen heating cycles'),(16,1,'heating_2nd_stage_activation_power','if heating power on 1st stage is below this, 2nd stage can activate'),(17,1,'heating_minimum_1st_stage_power','allows heating to stop without reaching target if heating power gets too low'),(18,1,'cooling_setpoint_setback','cooling setpoint during setback'),(19,1,'heating_setpoint_setback','heating setpoint during setback'),(20,1,'cooling_2nd_stage_activation_delay','delay after stage one starts before stage 2 can be activated'),(21,1,'heating_2nd_stage_activation_delay','delay after stage one starts before stage 2 can be activated'),(22,1,'setpoint_max_demand_adjustment','the maximum number of degrees the setpoint can be adjusted due to KW demand'),(23,1,'humidity_trigger','the humidity percentage at which the humidity relay closes'),(24,1,'humidity_switch_delay','minimum number of seconds between humidity relay switches'),(25,1,'cool_fail_timelimit','number of seconds after minimum on-time within which supply temp must reduce'),(26,1,'heat_fail_timelimit','number of seconds after minimum on-time within which supply temp must increase'),(27,1,'cool_fail_temp','required temp reduction'),(28,1,'heat_fail_temp','required temp increase'),(29,1,'freezer_too_warm_temp','amount above setpoint that triggers an alarm'),(30,1,'freezer_too_warm_time','time above setpoint that triggers an alarm'),(31,1,'freezer_too_cold_temp','amount below setpoint that triggers an alarm'),(32,1,'freezer_too_cold_time','time below setpoint that triggers an alarm'),(33,0,'kw_multiplier','Incoming KW data will be multiplied by this value.'),(34,0,'db_version','Ektos database version number.'),(35,1,'perf_space_temp_change','HVAC performance is measured by the time it takes to change the space temp by this amount.'),(36,1,'perf_cycles_averaged','Determines the maximum number of previous cycles that will be used to determine average HVAC performance.'),(37,1,'celsius_temps','Convert all temps to Celsius.'),(38,1,'setpoint_dr_adjustment','Setpoint adjustment during manual demand response.'),(39,0,'email_port','Port to connect to for outgoing email.');
441/*!40000 ALTER TABLE `settings_meta` ENABLE KEYS */;
442UNLOCK TABLES;
443
444--
445-- Table structure for table `ui_system_maps`
446--
447
448DROP TABLE IF EXISTS `ui_system_maps`;
449CREATE TABLE `ui_system_maps` (
450 `id` int(11) NOT NULL auto_increment,
451 `data` text,
452 PRIMARY KEY (`id`)
453) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
454
455--
456-- Dumping data for table `ui_system_maps`
457--
458
459LOCK TABLES `ui_system_maps` WRITE;
460/*!40000 ALTER TABLE `ui_system_maps` DISABLE KEYS */;
461INSERT INTO `ui_system_maps` VALUES (1,'1,533,333:2,533,293:3,374,136:4,252,204:5,253,255:6,153,362:38,82,75:39,76,204:40,358,354:ladder,640,121:34,373,67:37,158,231:36,58,127:35,474,206:42,342,87:43,244,240:44,80,162|560,100,560,80:560,80,NaN,NaN:480,280,480,260:400,300,NaN,NaN:480,280,NaN,NaN:400,300,380,300:560,140,560,160:560,140,NaN,NaN:480,260,NaN,NaN:480,160,NaN,NaN:500,140,NaN,NaN:400,300,NaN,NaN:400,300,400,320:480,160,500,160:400,360,400,340:440,80,420,80:260,100,280,100:400,360,400,340');
462/*!40000 ALTER TABLE `ui_system_maps` ENABLE KEYS */;
463UNLOCK TABLES;
464
465--
466-- Table structure for table `users`
467--
468
469DROP TABLE IF EXISTS `users`;
470CREATE TABLE `users` (
471 `id` int(11) NOT NULL auto_increment,
472 `user_type_id` int(11) NOT NULL default '-1',
473 `username` varchar(20) NOT NULL,
474 `pin` int(6) NOT NULL default '-1',
475 PRIMARY KEY (`id`)
476) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
477
478--
479-- Dumping data for table `users`
480--
481
482LOCK TABLES `users` WRITE;
483/*!40000 ALTER TABLE `users` DISABLE KEYS */;
484INSERT INTO `users` VALUES (1,1,'Ektos Installer',124),(2,3,'Crew',123),(3,2,'Bob',4850),(4,3,'Manager',23486),(5,2,'New User',8594),(6,2,'New User',12345),(7,2,'Tech',1981),(8,-1,'New User',-1);
485/*!40000 ALTER TABLE `users` ENABLE KEYS */;
486UNLOCK TABLES;
487
488--
489-- Table structure for table `util_ids`
490--
491
492DROP TABLE IF EXISTS `util_ids`;
493CREATE TABLE `util_ids` (
494 `id` int(11) NOT NULL,
495 PRIMARY KEY (`id`)
496) ENGINE=InnoDB DEFAULT CHARSET=latin1;
497
498--
499-- Dumping data for table `util_ids`
500--
501
502LOCK TABLES `util_ids` WRITE;
503/*!40000 ALTER TABLE `util_ids` DISABLE KEYS */;
504INSERT INTO `util_ids` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31),(32),(33),(34),(35),(36),(37),(38),(39),(40),(41),(42),(43),(44),(45),(46),(47),(48),(49),(50);
505/*!40000 ALTER TABLE `util_ids` ENABLE KEYS */;
506UNLOCK TABLES;
507/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
508
509/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
510/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
511/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
512/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
513/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
514/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
515/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
516
517-- Dump completed on 2018-02-08 17:59:27