-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdump.sql
More file actions
182 lines (159 loc) · 252 KB
/
dump.sql
File metadata and controls
182 lines (159 loc) · 252 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
-- MySQL dump 10.13 Distrib 5.7.18, for macos10.12 (x86_64)
--
-- Host: localhost Database: florify
-- ------------------------------------------------------
-- Server version 5.7.18
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `data`
--
DROP TABLE IF EXISTS `data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plantId` int(11) NOT NULL,
`type` varchar(20) NOT NULL,
`reading` int(11) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5940 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `data`
--
LOCK TABLES `data` WRITE;
/*!40000 ALTER TABLE `data` DISABLE KEYS */;
INSERT INTO `data` VALUES (1,1,'temp',30,'2017-05-16 21:47:00'),(2,1,'temp',15,'2017-05-16 21:47:58'),(3,1,'temp',30,'2017-05-16 21:48:06'),(4,1,'temp',25,'2017-05-16 21:50:02'),(5,1,'hum',20,'2017-05-16 21:50:14'),(6,1,'hum',26,'2017-05-16 21:50:19'),(7,1,'hum',42,'2017-05-16 21:50:22'),(8,1,'hum',55,'2017-05-16 21:50:25'),(9,1,'lux',4500,'2017-05-16 21:50:43'),(10,1,'lux',5000,'2017-05-16 21:50:46'),(11,1,'lux',3600,'2017-05-16 21:50:53'),(12,1,'lux',4200,'2017-05-16 21:50:59'),(13,1,'ph',7,'2017-05-16 21:51:19'),(14,1,'ph',6,'2017-05-16 21:51:21'),(15,1,'ph',8,'2017-05-16 21:51:23'),(16,1,'ph',7,'2017-05-16 21:51:26'),(17,2,'temp',25,'2017-05-17 17:06:16'),(18,2,'temp',25,'2017-05-17 17:08:04'),(19,1,'temp',25,'2017-05-17 17:08:06'),(20,1,'temp',25,'2017-05-17 17:08:22'),(21,2,'temp',25,'2017-05-17 17:08:27'),(22,2,'temp',25,'2017-05-17 17:08:47'),(23,1,'temp',24,'2017-05-17 17:08:51'),(24,2,'temp',25,'2017-05-17 17:09:09'),(25,1,'temp',24,'2017-05-17 17:09:13'),(26,2,'temp',25,'2017-05-17 17:09:31'),(27,1,'temp',25,'2017-05-17 17:09:34'),(28,1,'temp',25,'2017-05-17 17:10:48'),(29,2,'temp',25,'2017-05-17 17:10:54'),(30,2,'temp',25,'2017-05-17 17:11:10'),(31,1,'temp',25,'2017-05-17 17:11:11'),(32,1,'temp',24,'2017-05-17 18:03:05'),(33,2,'temp',24,'2017-05-17 18:03:20'),(34,1,'temp',24,'2017-05-17 18:03:21'),(35,2,'hum',29,'2017-05-17 18:03:39'),(36,2,'lux',332,'2017-05-17 18:03:39'),(37,2,'ph',2290,'2017-05-17 18:03:39'),(38,2,'temp',24,'2017-05-17 18:03:39'),(39,1,'ph',18460,'2017-05-17 18:03:39'),(40,1,'hum',0,'2017-05-17 18:03:39'),(41,1,'lux',1144,'2017-05-17 18:03:39'),(42,1,'temp',24,'2017-05-17 18:03:39'),(43,2,'lux',332,'2017-05-17 18:03:59'),(44,2,'lux',303,'2017-05-17 18:04:02'),(45,2,'hum',29,'2017-05-17 18:04:02'),(46,2,'temp',24,'2017-05-17 18:04:02'),(47,2,'ph',2300,'2017-05-17 18:04:02'),(48,1,'temp',24,'2017-05-17 18:04:03'),(49,1,'hum',0,'2017-05-17 18:04:03'),(50,1,'lux',1144,'2017-05-17 18:04:03'),(51,1,'ph',18460,'2017-05-17 18:04:03'),(52,1,'ph',18460,'2017-05-17 18:04:20'),(53,1,'lux',1128,'2017-05-17 18:04:20'),(54,1,'hum',0,'2017-05-17 18:04:20'),(55,1,'temp',24,'2017-05-17 18:04:20'),(56,2,'hum',29,'2017-05-17 18:04:20'),(57,2,'temp',24,'2017-05-17 18:04:20'),(58,2,'ph',2300,'2017-05-17 18:04:20'),(59,2,'lux',319,'2017-05-17 18:04:20'),(60,2,'hum',1,'2017-05-17 18:05:44'),(61,2,'lux',992,'2017-05-17 18:05:44'),(62,2,'ph',0,'2017-05-17 18:05:44'),(63,2,'temp',24,'2017-05-17 18:05:44'),(64,1,'lux',927,'2017-05-17 19:49:36'),(65,1,'temp',23,'2017-05-17 19:49:36'),(66,1,'ph',30,'2017-05-17 19:49:36'),(67,1,'hum',0,'2017-05-17 19:49:36'),(68,1,'hum',0,'2017-05-17 19:49:51'),(69,1,'ph',30,'2017-05-17 19:49:51'),(70,1,'temp',23,'2017-05-17 19:49:51'),(71,1,'lux',835,'2017-05-17 19:49:51'),(72,2,'hum',0,'2017-05-17 19:49:52'),(73,2,'lux',974,'2017-05-17 19:49:52'),(74,2,'ph',0,'2017-05-17 19:49:52'),(75,2,'temp',24,'2017-05-17 19:49:52'),(76,2,'hum',0,'2017-05-17 19:50:05'),(77,2,'lux',833,'2017-05-17 19:50:05'),(78,2,'temp',24,'2017-05-17 19:50:05'),(79,2,'ph',0,'2017-05-17 19:50:05'),(80,1,'hum',0,'2017-05-17 19:50:06'),(81,1,'temp',23,'2017-05-17 19:50:06'),(82,1,'ph',30,'2017-05-17 19:50:06'),(83,1,'lux',851,'2017-05-17 19:50:06'),(84,1,'ph',30,'2017-05-17 19:50:21'),(85,1,'temp',23,'2017-05-17 19:50:21'),(86,1,'hum',0,'2017-05-17 19:50:21'),(87,1,'lux',851,'2017-05-17 19:50:21'),(88,2,'hum',0,'2017-05-17 19:50:24'),(89,2,'temp',24,'2017-05-17 19:50:24'),(90,2,'ph',0,'2017-05-17 19:50:24'),(91,2,'lux',833,'2017-05-17 19:50:24'),(92,2,'hum',0,'2017-05-17 19:51:39'),(93,2,'lux',788,'2017-05-17 19:51:39'),(94,2,'temp',24,'2017-05-17 19:51:39'),(95,2,'ph',0,'2017-05-17 19:51:39'),(96,1,'temp',24,'2017-05-17 19:51:45'),(97,1,'lux',1729,'2017-05-17 19:51:45'),(98,1,'ph',30,'2017-05-17 19:51:45'),(99,1,'hum',0,'2017-05-17 19:51:45'),(100,2,'hum',0,'2017-05-17 20:02:24'),(101,2,'temp',24,'2017-05-17 20:02:24'),(102,2,'lux',874,'2017-05-17 20:02:24'),(103,2,'ph',0,'2017-05-17 20:02:24'),(104,1,'temp',24,'2017-05-17 20:02:26'),(105,1,'lux',1814,'2017-05-17 20:02:26'),(106,1,'hum',0,'2017-05-17 20:02:26'),(107,1,'ph',30,'2017-05-17 20:02:26'),(108,2,'lux',874,'2017-05-17 20:02:37'),(109,2,'ph',0,'2017-05-17 20:02:37'),(110,2,'temp',24,'2017-05-17 20:02:37'),(111,2,'hum',0,'2017-05-17 20:02:37'),(112,1,'ph',30,'2017-05-17 20:02:40'),(113,1,'temp',24,'2017-05-17 20:02:40'),(114,1,'hum',0,'2017-05-17 20:02:40'),(115,1,'lux',1799,'2017-05-17 20:02:40'),(116,2,'temp',24,'2017-05-17 20:02:50'),(117,2,'lux',874,'2017-05-17 20:02:50'),(118,2,'hum',0,'2017-05-17 20:02:50'),(119,2,'ph',0,'2017-05-17 20:02:50'),(120,1,'hum',0,'2017-05-17 20:02:53'),(121,1,'temp',24,'2017-05-17 20:02:53'),(122,1,'lux',1784,'2017-05-17 20:02:53'),(123,1,'ph',30,'2017-05-17 20:02:53'),(124,2,'ph',0,'2017-05-17 20:03:03'),(125,2,'temp',24,'2017-05-17 20:03:03'),(126,2,'hum',0,'2017-05-17 20:03:03'),(127,2,'lux',858,'2017-05-17 20:03:03'),(128,2,'temp',24,'2017-05-18 20:23:06'),(129,2,'ph',0,'2017-05-18 20:23:07'),(130,2,'hum',0,'2017-05-18 20:23:07'),(131,2,'lux',2007,'2017-05-18 20:23:07'),(132,1,'temp',24,'2017-05-18 20:23:10'),(133,1,'hum',0,'2017-05-18 20:23:10'),(134,1,'lux',39,'2017-05-18 20:23:10'),(135,1,'ph',30,'2017-05-18 20:23:10'),(136,1,'temp',24,'2017-05-18 20:23:24'),(137,1,'lux',58,'2017-05-18 20:23:24'),(138,1,'hum',0,'2017-05-18 20:23:24'),(139,1,'ph',30,'2017-05-18 20:23:24'),(140,2,'hum',0,'2017-05-18 20:23:24'),(141,2,'lux',1997,'2017-05-18 20:23:24'),(142,2,'temp',24,'2017-05-18 20:23:24'),(143,2,'ph',0,'2017-05-18 20:23:24'),(144,1,'temp',24,'2017-05-18 20:23:39'),(145,1,'hum',0,'2017-05-18 20:23:39'),(146,1,'lux',58,'2017-05-18 20:23:39'),(147,1,'ph',30,'2017-05-18 20:23:39'),(148,2,'temp',24,'2017-05-18 20:23:40'),(149,2,'hum',0,'2017-05-18 20:23:40'),(150,2,'ph',0,'2017-05-18 20:23:40'),(151,2,'lux',1968,'2017-05-18 20:23:40'),(152,2,'temp',24,'2017-05-18 20:23:52'),(153,2,'hum',0,'2017-05-18 20:23:52'),(154,2,'lux',1952,'2017-05-18 20:23:52'),(155,2,'ph',0,'2017-05-18 20:23:52'),(156,1,'ph',30,'2017-05-18 20:23:53'),(157,1,'hum',0,'2017-05-18 20:23:53'),(158,1,'lux',58,'2017-05-18 20:23:53'),(159,1,'temp',24,'2017-05-18 20:23:53'),(160,2,'temp',25,'2017-05-18 20:24:09'),(161,2,'hum',0,'2017-05-18 20:24:09'),(162,2,'lux',1952,'2017-05-18 20:24:09'),(163,2,'ph',0,'2017-05-18 20:24:09'),(164,1,'temp',24,'2017-05-18 20:24:10'),(165,1,'hum',0,'2017-05-18 20:24:10'),(166,1,'ph',30,'2017-05-18 20:24:10'),(167,1,'lux',61,'2017-05-18 20:24:10'),(168,2,'temp',25,'2017-05-18 20:24:25'),(169,2,'hum',0,'2017-05-18 20:24:25'),(170,2,'lux',1968,'2017-05-18 20:24:25'),(171,2,'ph',0,'2017-05-18 20:24:25'),(172,1,'temp',24,'2017-05-18 20:24:28'),(173,1,'hum',0,'2017-05-18 20:24:28'),(174,1,'lux',61,'2017-05-18 20:24:28'),(175,1,'ph',30,'2017-05-18 20:24:28'),(176,2,'hum',0,'2017-05-18 20:24:37'),(177,2,'ph',0,'2017-05-18 20:24:37'),(178,2,'lux',1938,'2017-05-18 20:24:37'),(179,2,'temp',24,'2017-05-18 20:24:37'),(180,1,'temp',23,'2017-05-18 20:24:40'),(181,1,'ph',30,'2017-05-18 20:24:40'),(182,1,'lux',61,'2017-05-18 20:24:40'),(183,1,'hum',0,'2017-05-18 20:24:40'),(184,2,'temp',25,'2017-05-18 20:24:51'),(185,2,'hum',0,'2017-05-18 20:24:51'),(186,2,'lux',1954,'2017-05-18 20:24:51'),(187,2,'ph',0,'2017-05-18 20:24:51'),(188,1,'temp',24,'2017-05-18 20:24:57'),(189,1,'lux',79,'2017-05-18 20:24:57'),(190,1,'ph',30,'2017-05-18 20:24:57'),(191,1,'hum',0,'2017-05-18 20:24:57'),(192,2,'temp',25,'2017-05-18 20:25:03'),(193,2,'hum',0,'2017-05-18 20:25:03'),(194,2,'ph',0,'2017-05-18 20:25:03'),(195,2,'lux',1954,'2017-05-18 20:25:03'),(196,1,'ph',30,'2017-05-18 20:25:10'),(197,1,'lux',79,'2017-05-18 20:25:10'),(198,1,'hum',0,'2017-05-18 20:25:10'),(199,1,'temp',23,'2017-05-18 20:25:10'),(200,2,'temp',25,'2017-05-18 20:25:17'),(201,2,'hum',0,'2017-05-18 20:25:17'),(202,2,'lux',1938,'2017-05-18 20:25:17'),(203,2,'ph',0,'2017-05-18 20:25:17'),(204,1,'temp',23,'2017-05-18 20:25:24'),(205,1,'hum',0,'2017-05-18 20:25:24'),(206,1,'lux',61,'2017-05-18 20:25:24'),(207,1,'ph',30,'2017-05-18 20:25:24'),(208,2,'temp',25,'2017-05-18 20:25:29'),(209,2,'hum',0,'2017-05-18 20:25:29'),(210,2,'lux',1924,'2017-05-18 20:25:29'),(211,2,'ph',0,'2017-05-18 20:25:29'),(212,1,'temp',23,'2017-05-18 20:25:37'),(213,1,'hum',0,'2017-05-18 20:25:37'),(214,1,'ph',30,'2017-05-18 20:25:37'),(215,1,'lux',79,'2017-05-18 20:25:37'),(216,2,'temp',24,'2017-05-18 20:25:43'),(217,2,'hum',0,'2017-05-18 20:25:43'),(218,2,'lux',1913,'2017-05-18 20:25:43'),(219,2,'ph',0,'2017-05-18 20:25:43'),(220,1,'ph',30,'2017-05-18 20:25:53'),(221,1,'lux',58,'2017-05-18 20:25:53'),(222,1,'hum',0,'2017-05-18 20:25:53'),(223,1,'temp',23,'2017-05-18 20:25:53'),(224,2,'temp',25,'2017-05-18 20:25:55'),(225,2,'hum',0,'2017-05-18 20:25:55'),(226,2,'ph',0,'2017-05-18 20:25:55'),(227,2,'lux',1913,'2017-05-18 20:25:55'),(228,1,'temp',23,'2017-05-18 20:26:06'),(229,1,'hum',0,'2017-05-18 20:26:06'),(230,1,'lux',58,'2017-05-18 20:26:06'),(231,1,'ph',30,'2017-05-18 20:26:06'),(232,2,'temp',25,'2017-05-18 20:26:10'),(233,2,'hum',0,'2017-05-18 20:26:10'),(234,2,'ph',0,'2017-05-18 20:26:10'),(235,2,'lux',1928,'2017-05-18 20:26:10'),(236,1,'temp',23,'2017-05-18 20:26:24'),(237,1,'hum',0,'2017-05-18 20:26:24'),(238,1,'ph',30,'2017-05-18 20:26:24'),(239,1,'lux',58,'2017-05-18 20:26:24'),(240,2,'temp',25,'2017-05-18 20:26:27'),(241,2,'lux',1928,'2017-05-18 20:26:27'),(242,2,'hum',0,'2017-05-18 20:26:27'),(243,2,'ph',0,'2017-05-18 20:26:27'),(244,1,'temp',23,'2017-05-18 20:26:38'),(245,1,'hum',0,'2017-05-18 20:26:38'),(246,1,'lux',58,'2017-05-18 20:26:38'),(247,1,'ph',30,'2017-05-18 20:26:38'),(248,2,'hum',0,'2017-05-18 20:26:41'),(249,2,'temp',25,'2017-05-18 20:26:41'),(250,2,'lux',1928,'2017-05-18 20:26:41'),(251,2,'ph',0,'2017-05-18 20:26:41'),(252,1,'temp',23,'2017-05-18 20:26:50'),(253,1,'ph',30,'2017-05-18 20:26:50'),(254,1,'hum',0,'2017-05-18 20:26:50'),(255,1,'lux',58,'2017-05-18 20:26:50'),(256,2,'temp',25,'2017-05-18 20:26:54'),(257,2,'hum',0,'2017-05-18 20:26:54'),(258,2,'lux',1913,'2017-05-18 20:26:54'),(259,2,'ph',0,'2017-05-18 20:26:54'),(260,1,'temp',23,'2017-05-18 20:27:05'),(261,1,'hum',0,'2017-05-18 20:27:05'),(262,1,'ph',30,'2017-05-18 20:27:05'),(263,1,'lux',78,'2017-05-18 20:27:05'),(264,2,'hum',0,'2017-05-18 20:27:08'),(265,2,'temp',25,'2017-05-18 20:27:08'),(266,2,'lux',1930,'2017-05-18 20:27:08'),(267,2,'ph',0,'2017-05-18 20:27:08'),(268,1,'temp',23,'2017-05-18 20:27:18'),(269,1,'hum',0,'2017-05-18 20:27:18'),(270,1,'lux',78,'2017-05-18 20:27:18'),(271,1,'ph',30,'2017-05-18 20:27:18'),(272,2,'temp',25,'2017-05-18 20:27:21'),(273,2,'hum',0,'2017-05-18 20:27:21'),(274,2,'lux',1957,'2017-05-18 20:27:21'),(275,2,'ph',0,'2017-05-18 20:27:21'),(276,1,'temp',23,'2017-05-18 20:27:30'),(277,1,'hum',0,'2017-05-18 20:27:30'),(278,1,'lux',56,'2017-05-18 20:27:30'),(279,1,'ph',30,'2017-05-18 20:27:30'),(280,2,'temp',25,'2017-05-18 20:27:36'),(281,2,'hum',0,'2017-05-18 20:27:36'),(282,2,'ph',0,'2017-05-18 20:27:36'),(283,2,'lux',1943,'2017-05-18 20:27:36'),(284,1,'temp',23,'2017-05-18 20:27:43'),(285,1,'hum',0,'2017-05-18 20:27:43'),(286,1,'lux',56,'2017-05-18 20:27:43'),(287,1,'ph',50,'2017-05-18 20:27:43'),(288,2,'temp',25,'2017-05-18 20:27:50'),(289,2,'hum',0,'2017-05-18 20:27:50'),(290,2,'lux',1943,'2017-05-18 20:27:50'),(291,2,'ph',0,'2017-05-18 20:27:50'),(292,1,'lux',76,'2017-05-18 20:27:58'),(293,1,'temp',23,'2017-05-18 20:27:58'),(294,1,'ph',30,'2017-05-18 20:27:58'),(295,1,'hum',0,'2017-05-18 20:27:58'),(296,2,'temp',25,'2017-05-18 20:28:06'),(297,2,'hum',0,'2017-05-18 20:28:06'),(298,2,'lux',1930,'2017-05-18 20:28:06'),(299,2,'ph',0,'2017-05-18 20:28:06'),(300,1,'temp',23,'2017-05-18 20:28:11'),(301,1,'ph',30,'2017-05-18 20:28:11'),(302,1,'lux',56,'2017-05-18 20:28:11'),(303,1,'hum',0,'2017-05-18 20:28:11'),(304,2,'temp',25,'2017-05-18 20:28:18'),(305,2,'hum',0,'2017-05-18 20:28:18'),(306,2,'lux',1943,'2017-05-18 20:28:18'),(307,2,'ph',0,'2017-05-18 20:28:18'),(308,1,'temp',23,'2017-05-18 20:28:23'),(309,1,'hum',0,'2017-05-18 20:28:23'),(310,1,'lux',60,'2017-05-18 20:28:23'),(311,1,'ph',30,'2017-05-18 20:28:23'),(312,2,'temp',25,'2017-05-18 20:28:30'),(313,2,'hum',0,'2017-05-18 20:28:30'),(314,2,'lux',1930,'2017-05-18 20:28:30'),(315,2,'ph',0,'2017-05-18 20:28:30'),(316,1,'temp',23,'2017-05-18 20:28:37'),(317,1,'hum',0,'2017-05-18 20:28:37'),(318,1,'lux',60,'2017-05-18 20:28:37'),(319,1,'ph',30,'2017-05-18 20:28:37'),(320,2,'temp',25,'2017-05-18 20:28:46'),(321,2,'hum',0,'2017-05-18 20:28:46'),(322,2,'lux',1930,'2017-05-18 20:28:46'),(323,2,'ph',0,'2017-05-18 20:28:46'),(324,1,'temp',23,'2017-05-18 20:28:50'),(325,1,'hum',0,'2017-05-18 20:28:50'),(326,1,'lux',60,'2017-05-18 20:28:50'),(327,1,'ph',30,'2017-05-18 20:28:50'),(328,1,'temp',23,'2017-05-18 20:29:02'),(329,1,'hum',0,'2017-05-18 20:29:02'),(330,1,'lux',60,'2017-05-18 20:29:02'),(331,1,'ph',30,'2017-05-18 20:29:02'),(332,2,'hum',0,'2017-05-18 20:29:03'),(333,2,'lux',1913,'2017-05-18 20:29:03'),(334,2,'temp',25,'2017-05-18 20:29:03'),(335,2,'ph',0,'2017-05-18 20:29:03'),(336,1,'temp',23,'2017-05-18 20:29:14'),(337,1,'hum',0,'2017-05-18 20:29:14'),(338,1,'lux',79,'2017-05-18 20:29:14'),(339,1,'ph',30,'2017-05-18 20:29:14'),(340,2,'temp',25,'2017-05-18 20:29:20'),(341,2,'hum',0,'2017-05-18 20:29:20'),(342,2,'lux',1919,'2017-05-18 20:29:20'),(343,2,'ph',0,'2017-05-18 20:29:20'),(344,1,'temp',23,'2017-05-18 20:29:26'),(345,1,'ph',30,'2017-05-18 20:29:26'),(346,1,'lux',79,'2017-05-18 20:29:26'),(347,1,'hum',0,'2017-05-18 20:29:26'),(348,2,'hum',0,'2017-05-18 20:29:33'),(349,2,'ph',0,'2017-05-18 20:29:33'),(350,2,'lux',1919,'2017-05-18 20:29:33'),(351,2,'temp',25,'2017-05-18 20:29:33'),(352,1,'temp',23,'2017-05-18 20:29:39'),(353,1,'hum',0,'2017-05-18 20:29:39'),(354,1,'lux',79,'2017-05-18 20:29:39'),(355,1,'ph',30,'2017-05-18 20:29:39'),(356,2,'temp',25,'2017-05-18 20:29:46'),(357,2,'lux',1919,'2017-05-18 20:29:46'),(358,2,'hum',0,'2017-05-18 20:29:46'),(359,2,'ph',0,'2017-05-18 20:29:46'),(360,1,'lux',58,'2017-05-18 20:29:53'),(361,1,'temp',23,'2017-05-18 20:29:53'),(362,1,'ph',30,'2017-05-18 20:29:53'),(363,1,'hum',0,'2017-05-18 20:29:53'),(364,2,'lux',1919,'2017-05-18 20:30:00'),(365,2,'hum',0,'2017-05-18 20:30:00'),(366,2,'temp',25,'2017-05-18 20:30:00'),(367,2,'ph',0,'2017-05-18 20:30:00'),(368,1,'temp',23,'2017-05-18 20:30:08'),(369,1,'hum',0,'2017-05-18 20:30:08'),(370,1,'lux',58,'2017-05-18 20:30:08'),(371,1,'ph',30,'2017-05-18 20:30:08'),(372,2,'temp',25,'2017-05-18 20:30:18'),(373,2,'hum',0,'2017-05-18 20:30:18'),(374,2,'lux',1933,'2017-05-18 20:30:18'),(375,2,'ph',0,'2017-05-18 20:30:18'),(376,1,'temp',23,'2017-05-18 20:30:22'),(377,1,'hum',0,'2017-05-18 20:30:22'),(378,1,'lux',58,'2017-05-18 20:30:22'),(379,1,'ph',30,'2017-05-18 20:30:22'),(380,2,'temp',25,'2017-05-18 20:30:30'),(381,2,'hum',0,'2017-05-18 20:30:30'),(382,2,'lux',1933,'2017-05-18 20:30:30'),(383,2,'ph',0,'2017-05-18 20:30:30'),(384,1,'temp',23,'2017-05-18 20:30:37'),(385,1,'hum',0,'2017-05-18 20:30:37'),(386,1,'lux',58,'2017-05-18 20:30:37'),(387,1,'ph',30,'2017-05-18 20:30:37'),(388,2,'temp',25,'2017-05-18 20:30:44'),(389,2,'hum',0,'2017-05-18 20:30:44'),(390,2,'lux',1919,'2017-05-18 20:30:44'),(391,2,'ph',0,'2017-05-18 20:30:44'),(392,1,'temp',23,'2017-05-18 20:30:50'),(393,1,'hum',0,'2017-05-18 20:30:50'),(394,1,'lux',58,'2017-05-18 20:30:50'),(395,1,'ph',30,'2017-05-18 20:30:50'),(396,2,'temp',25,'2017-05-18 20:30:57'),(397,2,'hum',0,'2017-05-18 20:30:57'),(398,2,'ph',0,'2017-05-18 20:30:57'),(399,2,'lux',1919,'2017-05-18 20:30:57'),(400,1,'temp',23,'2017-05-18 20:31:09'),(401,1,'hum',0,'2017-05-18 20:31:09'),(402,1,'ph',30,'2017-05-18 20:31:09'),(403,1,'lux',58,'2017-05-18 20:31:09'),(404,2,'lux',1919,'2017-05-18 20:31:11'),(405,2,'ph',0,'2017-05-18 20:31:11'),(406,2,'hum',0,'2017-05-18 20:31:11'),(407,2,'temp',25,'2017-05-18 20:31:11'),(408,1,'temp',23,'2017-05-18 20:31:43'),(409,1,'hum',0,'2017-05-18 20:31:43'),(410,1,'lux',58,'2017-05-18 20:31:43'),(411,1,'ph',30,'2017-05-18 20:31:43'),(412,2,'hum',0,'2017-05-18 20:31:47'),(413,2,'temp',25,'2017-05-18 20:31:47'),(414,2,'lux',1919,'2017-05-18 20:31:47'),(415,2,'ph',0,'2017-05-18 20:31:47'),(416,2,'hum',0,'2017-05-18 20:32:01'),(417,2,'temp',25,'2017-05-18 20:32:01'),(418,2,'lux',1949,'2017-05-18 20:32:01'),(419,2,'ph',0,'2017-05-18 20:32:01'),(420,1,'temp',23,'2017-05-18 20:32:04'),(421,1,'hum',0,'2017-05-18 20:32:04'),(422,1,'lux',58,'2017-05-18 20:32:04'),(423,1,'ph',30,'2017-05-18 20:32:04'),(424,1,'temp',23,'2017-05-18 20:32:21'),(425,1,'hum',0,'2017-05-18 20:32:21'),(426,1,'lux',58,'2017-05-18 20:32:21'),(427,1,'ph',30,'2017-05-18 20:32:21'),(428,2,'temp',0,'2017-05-18 20:32:35'),(429,2,'lux',0,'2017-05-18 20:32:35'),(430,2,'hum',0,'2017-05-18 20:32:35'),(431,2,'ph',0,'2017-05-18 20:32:35'),(432,1,'temp',23,'2017-05-18 20:32:46'),(433,1,'lux',58,'2017-05-18 20:32:46'),(434,1,'ph',30,'2017-05-18 20:32:46'),(435,1,'hum',0,'2017-05-18 20:32:46'),(436,2,'temp',25,'2017-05-18 20:32:47'),(437,2,'ph',0,'2017-05-18 20:32:47'),(438,2,'lux',1954,'2017-05-18 20:32:47'),(439,2,'hum',0,'2017-05-18 20:32:47'),(440,1,'temp',23,'2017-05-18 20:33:01'),(441,1,'hum',0,'2017-05-18 20:33:01'),(442,1,'lux',58,'2017-05-18 20:33:01'),(443,1,'ph',30,'2017-05-18 20:33:01'),(444,2,'temp',25,'2017-05-18 20:33:03'),(445,2,'hum',0,'2017-05-18 20:33:03'),(446,2,'lux',1954,'2017-05-18 20:33:03'),(447,2,'ph',0,'2017-05-18 20:33:03'),(448,1,'temp',23,'2017-05-18 20:33:14'),(449,1,'hum',0,'2017-05-18 20:33:14'),(450,1,'lux',43,'2017-05-18 20:33:14'),(451,1,'ph',30,'2017-05-18 20:33:14'),(452,2,'lux',0,'2017-05-18 20:33:21'),(453,2,'temp',0,'2017-05-18 20:33:21'),(454,2,'ph',0,'2017-05-18 20:33:21'),(455,2,'hum',0,'2017-05-18 20:33:21'),(456,1,'ph',30,'2017-05-18 20:33:47'),(457,1,'hum',0,'2017-05-18 20:33:47'),(458,1,'temp',23,'2017-05-18 20:33:47'),(459,1,'lux',61,'2017-05-18 20:33:47'),(460,2,'temp',25,'2017-05-18 20:33:50'),(461,2,'hum',0,'2017-05-18 20:33:50'),(462,2,'lux',1949,'2017-05-18 20:33:50'),(463,2,'ph',0,'2017-05-18 20:33:50'),(464,2,'temp',25,'2017-05-18 20:34:04'),(465,2,'hum',0,'2017-05-18 20:34:04'),(466,2,'lux',1979,'2017-05-18 20:34:04'),(467,2,'ph',0,'2017-05-18 20:34:04'),(468,1,'temp',23,'2017-05-18 20:34:16'),(469,1,'hum',0,'2017-05-18 20:34:16'),(470,1,'ph',30,'2017-05-18 20:34:16'),(471,1,'lux',78,'2017-05-18 20:34:16'),(472,2,'temp',25,'2017-05-18 20:34:30'),(473,2,'hum',0,'2017-05-18 20:34:30'),(474,2,'lux',1969,'2017-05-18 20:34:30'),(475,2,'ph',0,'2017-05-18 20:34:30'),(476,1,'temp',23,'2017-05-18 20:34:32'),(477,1,'ph',30,'2017-05-18 20:34:32'),(478,1,'lux',78,'2017-05-18 20:34:32'),(479,1,'hum',0,'2017-05-18 20:34:32'),(480,2,'temp',25,'2017-05-18 20:34:49'),(481,2,'hum',0,'2017-05-18 20:34:49'),(482,2,'lux',1954,'2017-05-18 20:34:49'),(483,2,'ph',0,'2017-05-18 20:34:49'),(484,1,'lux',78,'2017-05-18 20:34:52'),(485,1,'hum',0,'2017-05-18 20:34:52'),(486,1,'temp',23,'2017-05-18 20:34:52'),(487,1,'ph',30,'2017-05-18 20:34:52'),(488,1,'temp',23,'2017-05-18 20:35:16'),(489,1,'hum',0,'2017-05-18 20:35:16'),(490,1,'lux',78,'2017-05-18 20:35:16'),(491,1,'ph',30,'2017-05-18 20:35:16'),(492,2,'temp',25,'2017-05-18 20:35:24'),(493,2,'hum',0,'2017-05-18 20:35:24'),(494,2,'lux',1954,'2017-05-18 20:35:24'),(495,2,'ph',0,'2017-05-18 20:35:24'),(496,1,'temp',23,'2017-05-18 20:35:39'),(497,1,'hum',0,'2017-05-18 20:35:39'),(498,1,'lux',61,'2017-05-18 20:35:39'),(499,1,'ph',30,'2017-05-18 20:35:39'),(500,2,'temp',25,'2017-05-18 20:35:42'),(501,2,'hum',0,'2017-05-18 20:35:42'),(502,2,'lux',1924,'2017-05-18 20:35:42'),(503,2,'ph',0,'2017-05-18 20:35:42'),(504,2,'temp',25,'2017-05-18 20:36:00'),(505,2,'hum',0,'2017-05-18 20:36:00'),(506,2,'lux',1924,'2017-05-18 20:36:00'),(507,2,'ph',0,'2017-05-18 20:36:00'),(508,1,'ph',30,'2017-05-18 20:36:01'),(509,1,'lux',61,'2017-05-18 20:36:01'),(510,1,'hum',0,'2017-05-18 20:36:01'),(511,1,'temp',23,'2017-05-18 20:36:01'),(512,2,'temp',25,'2017-05-18 20:36:13'),(513,2,'hum',0,'2017-05-18 20:36:13'),(514,2,'lux',1908,'2017-05-18 20:36:13'),(515,2,'ph',0,'2017-05-18 20:36:13'),(516,1,'lux',61,'2017-05-18 20:36:17'),(517,1,'hum',0,'2017-05-18 20:36:17'),(518,1,'temp',23,'2017-05-18 20:36:17'),(519,1,'ph',30,'2017-05-18 20:36:17'),(520,1,'temp',23,'2017-05-18 20:36:46'),(521,1,'ph',30,'2017-05-18 20:36:46'),(522,1,'lux',61,'2017-05-18 20:36:46'),(523,1,'hum',0,'2017-05-18 20:36:46'),(524,2,'temp',25,'2017-05-18 20:36:47'),(525,2,'hum',0,'2017-05-18 20:36:47'),(526,2,'ph',0,'2017-05-18 20:36:47'),(527,2,'lux',1909,'2017-05-18 20:36:47'),(528,2,'temp',25,'2017-05-18 20:36:59'),(529,2,'hum',0,'2017-05-18 20:36:59'),(530,2,'lux',1908,'2017-05-18 20:36:59'),(531,2,'ph',0,'2017-05-18 20:36:59'),(532,2,'temp',25,'2017-05-18 20:37:06'),(533,2,'hum',0,'2017-05-18 20:37:06'),(534,2,'lux',1908,'2017-05-18 20:37:06'),(535,2,'ph',0,'2017-05-18 20:37:06'),(536,1,'temp',23,'2017-05-18 20:37:13'),(537,1,'lux',61,'2017-05-18 20:37:13'),(538,1,'hum',0,'2017-05-18 20:37:13'),(539,1,'ph',30,'2017-05-18 20:37:13'),(540,2,'temp',25,'2017-05-18 20:37:28'),(541,2,'ph',0,'2017-05-18 20:37:28'),(542,2,'lux',1893,'2017-05-18 20:37:28'),(543,2,'hum',0,'2017-05-18 20:37:28'),(544,2,'hum',0,'2017-05-18 20:37:45'),(545,2,'temp',25,'2017-05-18 20:37:45'),(546,2,'ph',0,'2017-05-18 20:37:45'),(547,2,'lux',1893,'2017-05-18 20:37:45'),(548,1,'temp',23,'2017-05-18 20:37:47'),(549,1,'hum',0,'2017-05-18 20:37:47'),(550,1,'ph',30,'2017-05-18 20:37:47'),(551,1,'lux',61,'2017-05-18 20:37:47'),(552,2,'temp',25,'2017-05-18 20:38:11'),(553,2,'hum',0,'2017-05-18 20:38:11'),(554,2,'ph',0,'2017-05-18 20:38:11'),(555,2,'lux',1909,'2017-05-18 20:38:11'),(556,1,'temp',23,'2017-05-18 20:38:32'),(557,1,'hum',0,'2017-05-18 20:38:32'),(558,1,'lux',22,'2017-05-18 20:38:32'),(559,1,'ph',30,'2017-05-18 20:38:32'),(560,2,'lux',1893,'2017-05-18 20:38:34'),(561,2,'ph',0,'2017-05-18 20:38:34'),(562,2,'hum',0,'2017-05-18 20:38:34'),(563,2,'temp',25,'2017-05-18 20:38:34'),(564,1,'hum',0,'2017-05-18 20:38:45'),(565,1,'temp',23,'2017-05-18 20:38:45'),(566,1,'lux',60,'2017-05-18 20:38:45'),(567,1,'ph',30,'2017-05-18 20:38:45'),(568,2,'hum',0,'2017-05-18 20:38:51'),(569,2,'ph',0,'2017-05-18 20:38:51'),(570,2,'temp',25,'2017-05-18 20:38:51'),(571,2,'lux',1909,'2017-05-18 20:38:51'),(572,2,'hum',0,'2017-05-18 20:39:05'),(573,2,'lux',1909,'2017-05-18 20:39:05'),(574,2,'ph',0,'2017-05-18 20:39:05'),(575,2,'temp',25,'2017-05-18 20:39:05'),(576,1,'temp',23,'2017-05-18 20:39:23'),(577,1,'hum',0,'2017-05-18 20:39:23'),(578,1,'ph',30,'2017-05-18 20:39:23'),(579,1,'lux',61,'2017-05-18 20:39:23'),(580,2,'temp',25,'2017-05-18 20:39:27'),(581,2,'hum',0,'2017-05-18 20:39:27'),(582,2,'lux',1893,'2017-05-18 20:39:27'),(583,2,'ph',0,'2017-05-18 20:39:27'),(584,2,'temp',25,'2017-05-18 20:39:45'),(585,2,'hum',0,'2017-05-18 20:39:45'),(586,2,'ph',0,'2017-05-18 20:39:45'),(587,2,'lux',1893,'2017-05-18 20:39:45'),(588,2,'temp',25,'2017-05-18 20:40:06'),(589,2,'hum',0,'2017-05-18 20:40:06'),(590,2,'lux',1909,'2017-05-18 20:40:06'),(591,2,'ph',0,'2017-05-18 20:40:06'),(592,1,'temp',23,'2017-05-18 20:40:09'),(593,1,'hum',0,'2017-05-18 20:40:09'),(594,1,'lux',60,'2017-05-18 20:40:09'),(595,1,'ph',30,'2017-05-18 20:40:09'),(596,2,'temp',25,'2017-05-18 20:40:25'),(597,2,'hum',0,'2017-05-18 20:40:25'),(598,2,'ph',0,'2017-05-18 20:40:25'),(599,2,'lux',1924,'2017-05-18 20:40:25'),(600,1,'temp',23,'2017-05-18 20:40:29'),(601,1,'hum',0,'2017-05-18 20:40:29'),(602,1,'lux',60,'2017-05-18 20:40:29'),(603,1,'ph',30,'2017-05-18 20:40:29'),(604,2,'hum',0,'2017-05-18 20:40:49'),(605,2,'temp',25,'2017-05-18 20:40:49'),(606,2,'lux',1924,'2017-05-18 20:40:49'),(607,2,'ph',0,'2017-05-18 20:40:49'),(608,1,'temp',23,'2017-05-18 20:40:52'),(609,1,'hum',0,'2017-05-18 20:40:52'),(610,1,'lux',40,'2017-05-18 20:40:52'),(611,1,'ph',30,'2017-05-18 20:40:52'),(612,2,'hum',0,'2017-05-18 20:41:09'),(613,2,'temp',25,'2017-05-18 20:41:09'),(614,2,'ph',0,'2017-05-18 20:41:09'),(615,2,'lux',1924,'2017-05-18 20:41:09'),(616,1,'temp',23,'2017-05-18 20:41:12'),(617,1,'hum',0,'2017-05-18 20:41:12'),(618,1,'lux',60,'2017-05-18 20:41:12'),(619,1,'ph',30,'2017-05-18 20:41:12'),(620,2,'temp',25,'2017-05-18 20:41:32'),(621,2,'lux',1940,'2017-05-18 20:41:32'),(622,2,'ph',0,'2017-05-18 20:41:32'),(623,2,'hum',0,'2017-05-18 20:41:32'),(624,1,'hum',0,'2017-05-18 20:41:38'),(625,1,'temp',23,'2017-05-18 20:41:38'),(626,1,'lux',60,'2017-05-18 20:41:38'),(627,1,'ph',30,'2017-05-18 20:41:38'),(628,2,'temp',25,'2017-05-18 20:41:46'),(629,2,'hum',0,'2017-05-18 20:41:46'),(630,2,'lux',1909,'2017-05-18 20:41:46'),(631,2,'ph',0,'2017-05-18 20:41:46'),(632,1,'temp',23,'2017-05-18 20:41:55'),(633,1,'hum',0,'2017-05-18 20:41:55'),(634,1,'lux',40,'2017-05-18 20:41:55'),(635,1,'ph',30,'2017-05-18 20:41:55'),(636,2,'hum',0,'2017-05-18 20:42:02'),(637,2,'temp',25,'2017-05-18 20:42:02'),(638,2,'lux',1897,'2017-05-18 20:42:02'),(639,2,'ph',0,'2017-05-18 20:42:02'),(640,1,'hum',0,'2017-05-18 22:43:39'),(641,1,'ph',30,'2017-05-18 22:43:39'),(642,1,'lux',303,'2017-05-18 22:43:39'),(643,1,'temp',23,'2017-05-18 22:43:39'),(644,2,'ph',0,'2017-05-18 22:43:45'),(645,2,'lux',1273,'2017-05-18 22:43:45'),(646,2,'hum',0,'2017-05-18 22:43:45'),(647,2,'temp',25,'2017-05-18 22:43:45'),(648,1,'temp',23,'2017-05-18 22:43:51'),(649,1,'hum',0,'2017-05-18 22:43:51'),(650,1,'lux',287,'2017-05-18 22:43:51'),(651,1,'ph',30,'2017-05-18 22:43:51'),(652,2,'hum',0,'2017-05-18 22:44:00'),(653,2,'temp',25,'2017-05-18 22:44:00'),(654,2,'ph',0,'2017-05-18 22:44:00'),(655,2,'lux',1289,'2017-05-18 22:44:00'),(656,1,'temp',23,'2017-05-18 22:44:09'),(657,1,'hum',0,'2017-05-18 22:44:09'),(658,1,'lux',272,'2017-05-18 22:44:09'),(659,1,'ph',30,'2017-05-18 22:44:09'),(660,2,'temp',25,'2017-05-18 22:44:16'),(661,2,'hum',0,'2017-05-18 22:44:16'),(662,2,'lux',1289,'2017-05-18 22:44:16'),(663,2,'ph',0,'2017-05-18 22:44:16'),(664,2,'temp',25,'2017-05-18 22:44:30'),(665,2,'hum',0,'2017-05-18 22:44:30'),(666,2,'ph',0,'2017-05-18 22:44:30'),(667,2,'lux',1304,'2017-05-18 22:44:30'),(668,1,'temp',23,'2017-05-18 22:44:31'),(669,1,'hum',0,'2017-05-18 22:44:31'),(670,1,'lux',287,'2017-05-18 22:44:31'),(671,1,'ph',30,'2017-05-18 22:44:31'),(672,1,'temp',23,'2017-05-18 22:44:45'),(673,1,'hum',0,'2017-05-18 22:44:45'),(674,1,'lux',258,'2017-05-18 22:44:45'),(675,1,'ph',30,'2017-05-18 22:44:45'),(676,2,'temp',25,'2017-05-18 22:44:47'),(677,2,'hum',0,'2017-05-18 22:44:47'),(678,2,'lux',1257,'2017-05-18 22:44:47'),(679,2,'ph',0,'2017-05-18 22:44:47'),(680,1,'temp',23,'2017-05-18 22:45:00'),(681,1,'hum',0,'2017-05-18 22:45:00'),(682,1,'lux',289,'2017-05-18 22:45:00'),(683,1,'ph',30,'2017-05-18 22:45:00'),(684,2,'temp',24,'2017-05-18 22:45:13'),(685,2,'lux',1183,'2017-05-18 22:45:13'),(686,2,'hum',0,'2017-05-18 22:45:13'),(687,2,'ph',0,'2017-05-18 22:45:13'),(688,1,'temp',23,'2017-05-18 22:45:15'),(689,1,'hum',0,'2017-05-18 22:45:15'),(690,1,'ph',30,'2017-05-18 22:45:15'),(691,1,'lux',321,'2017-05-18 22:45:15'),(692,2,'hum',0,'2017-05-18 22:45:40'),(693,2,'temp',25,'2017-05-18 22:45:40'),(694,2,'lux',1164,'2017-05-18 22:45:40'),(695,2,'ph',0,'2017-05-18 22:45:40'),(696,1,'temp',23,'2017-05-18 22:45:40'),(697,1,'hum',0,'2017-05-18 22:45:40'),(698,1,'ph',30,'2017-05-18 22:45:40'),(699,1,'lux',370,'2017-05-18 22:45:40'),(700,2,'temp',24,'2017-05-18 22:45:59'),(701,2,'hum',0,'2017-05-18 22:45:59'),(702,2,'ph',0,'2017-05-18 22:45:59'),(703,2,'lux',1089,'2017-05-18 22:45:59'),(704,1,'temp',23,'2017-05-18 22:45:59'),(705,1,'hum',0,'2017-05-18 22:45:59'),(706,1,'ph',30,'2017-05-18 22:45:59'),(707,1,'lux',501,'2017-05-18 22:45:59'),(708,1,'temp',23,'2017-05-18 22:46:13'),(709,1,'hum',0,'2017-05-18 22:46:13'),(710,1,'lux',563,'2017-05-18 22:46:13'),(711,1,'ph',30,'2017-05-18 22:46:13'),(712,2,'temp',24,'2017-05-18 22:46:15'),(713,2,'hum',0,'2017-05-18 22:46:15'),(714,2,'ph',0,'2017-05-18 22:46:15'),(715,2,'lux',1058,'2017-05-18 22:46:15'),(716,2,'hum',0,'2017-05-18 22:46:28'),(717,2,'temp',24,'2017-05-18 22:46:28'),(718,2,'ph',0,'2017-05-18 22:46:28'),(719,2,'lux',1042,'2017-05-18 22:46:28'),(720,1,'ph',30,'2017-05-18 22:46:38'),(721,1,'lux',577,'2017-05-18 22:46:38'),(722,1,'hum',0,'2017-05-18 22:46:38'),(723,1,'temp',23,'2017-05-18 22:46:38'),(724,2,'ph',0,'2017-05-18 22:46:49'),(725,2,'temp',24,'2017-05-18 22:46:49'),(726,2,'hum',0,'2017-05-18 22:46:49'),(727,2,'lux',1027,'2017-05-18 22:46:49'),(728,1,'ph',30,'2017-05-18 22:46:50'),(729,1,'lux',547,'2017-05-18 22:46:50'),(730,1,'hum',0,'2017-05-18 22:46:50'),(731,1,'temp',23,'2017-05-18 22:46:50'),(732,2,'temp',25,'2017-05-18 22:47:08'),(733,2,'hum',0,'2017-05-18 22:47:08'),(734,2,'lux',1011,'2017-05-18 22:47:08'),(735,2,'ph',0,'2017-05-18 22:47:08'),(736,1,'temp',23,'2017-05-18 22:47:13'),(737,1,'ph',30,'2017-05-18 22:47:13'),(738,1,'lux',592,'2017-05-18 22:47:13'),(739,1,'hum',0,'2017-05-18 22:47:13'),(740,2,'temp',24,'2017-05-18 22:47:32'),(741,2,'hum',0,'2017-05-18 22:47:32'),(742,2,'ph',0,'2017-05-18 22:47:32'),(743,2,'lux',995,'2017-05-18 22:47:32'),(744,1,'hum',0,'2017-05-18 22:47:33'),(745,1,'temp',23,'2017-05-18 22:47:33'),(746,1,'lux',577,'2017-05-18 22:47:33'),(747,1,'ph',30,'2017-05-18 22:47:33'),(748,2,'hum',0,'2017-05-18 22:47:51'),(749,2,'temp',24,'2017-05-18 22:47:51'),(750,2,'lux',964,'2017-05-18 22:47:51'),(751,2,'ph',0,'2017-05-18 22:47:51'),(752,1,'ph',30,'2017-05-18 22:47:59'),(753,1,'lux',467,'2017-05-18 22:47:59'),(754,1,'hum',0,'2017-05-18 22:47:59'),(755,1,'temp',23,'2017-05-18 22:47:59'),(756,2,'ph',0,'2017-05-18 22:48:14'),(757,2,'lux',948,'2017-05-18 22:48:14'),(758,2,'hum',0,'2017-05-18 22:48:14'),(759,2,'temp',24,'2017-05-18 22:48:14'),(760,1,'temp',23,'2017-05-18 22:48:19'),(761,1,'hum',0,'2017-05-18 22:48:19'),(762,1,'ph',30,'2017-05-18 22:48:19'),(763,1,'lux',369,'2017-05-18 22:48:19'),(764,2,'temp',24,'2017-05-18 22:48:38'),(765,2,'hum',0,'2017-05-18 22:48:38'),(766,2,'ph',0,'2017-05-18 22:48:38'),(767,2,'lux',933,'2017-05-18 22:48:38'),(768,1,'temp',23,'2017-05-18 22:48:39'),(769,1,'hum',0,'2017-05-18 22:48:39'),(770,1,'lux',336,'2017-05-18 22:48:39'),(771,1,'ph',30,'2017-05-18 22:48:39'),(772,2,'temp',24,'2017-05-18 22:48:54'),(773,2,'lux',933,'2017-05-18 22:48:54'),(774,2,'hum',0,'2017-05-18 22:48:54'),(775,2,'ph',0,'2017-05-18 22:48:54'),(776,1,'temp',23,'2017-05-18 22:49:05'),(777,1,'hum',0,'2017-05-18 22:49:05'),(778,1,'lux',304,'2017-05-18 22:49:05'),(779,1,'ph',30,'2017-05-18 22:49:05'),(780,2,'temp',24,'2017-05-18 22:49:14'),(781,2,'hum',0,'2017-05-18 22:49:14'),(782,2,'lux',901,'2017-05-18 22:49:14'),(783,2,'ph',0,'2017-05-18 22:49:14'),(784,1,'hum',0,'2017-05-18 22:49:26'),(785,1,'temp',23,'2017-05-18 22:49:26'),(786,1,'lux',257,'2017-05-18 22:49:26'),(787,1,'ph',30,'2017-05-18 22:49:26'),(788,2,'temp',24,'2017-05-18 22:49:35'),(789,2,'hum',0,'2017-05-18 22:49:35'),(790,2,'lux',901,'2017-05-18 22:49:35'),(791,2,'ph',0,'2017-05-18 22:49:35'),(792,1,'temp',23,'2017-05-18 22:49:42'),(793,1,'lux',226,'2017-05-18 22:49:42'),(794,1,'hum',0,'2017-05-18 22:49:42'),(795,1,'ph',30,'2017-05-18 22:49:42'),(796,1,'ph',30,'2017-05-18 22:50:02'),(797,1,'lux',226,'2017-05-18 22:50:02'),(798,1,'hum',0,'2017-05-18 22:50:02'),(799,1,'temp',23,'2017-05-18 22:50:02'),(800,2,'temp',24,'2017-05-18 22:50:04'),(801,2,'lux',886,'2017-05-18 22:50:04'),(802,2,'ph',0,'2017-05-18 22:50:04'),(803,2,'hum',0,'2017-05-18 22:50:04'),(804,1,'temp',23,'2017-05-18 22:50:15'),(805,1,'hum',0,'2017-05-18 22:50:15'),(806,1,'ph',30,'2017-05-18 22:50:15'),(807,1,'lux',226,'2017-05-18 22:50:15'),(808,2,'temp',25,'2017-05-18 22:50:21'),(809,2,'hum',0,'2017-05-18 22:50:21'),(810,2,'lux',870,'2017-05-18 22:50:21'),(811,2,'ph',0,'2017-05-18 22:50:21'),(812,1,'temp',23,'2017-05-18 22:50:33'),(813,1,'hum',0,'2017-05-18 22:50:33'),(814,1,'lux',229,'2017-05-18 22:50:33'),(815,1,'ph',30,'2017-05-18 22:50:33'),(816,2,'temp',25,'2017-05-18 22:50:34'),(817,2,'ph',0,'2017-05-18 22:50:34'),(818,2,'lux',870,'2017-05-18 22:50:34'),(819,2,'hum',0,'2017-05-18 22:50:34'),(820,1,'temp',23,'2017-05-18 22:50:55'),(821,1,'hum',0,'2017-05-18 22:50:55'),(822,1,'lux',214,'2017-05-18 22:50:55'),(823,1,'ph',30,'2017-05-18 22:50:55'),(824,2,'temp',25,'2017-05-18 22:50:56'),(825,2,'hum',0,'2017-05-18 22:50:56'),(826,2,'lux',886,'2017-05-18 22:50:56'),(827,2,'ph',0,'2017-05-18 22:50:56'),(828,2,'temp',24,'2017-05-18 22:51:10'),(829,2,'hum',0,'2017-05-18 22:51:10'),(830,2,'lux',858,'2017-05-18 22:51:10'),(831,2,'ph',0,'2017-05-18 22:51:10'),(832,1,'temp',23,'2017-05-18 22:51:12'),(833,1,'hum',0,'2017-05-18 22:51:12'),(834,1,'lux',197,'2017-05-18 22:51:12'),(835,1,'ph',30,'2017-05-18 22:51:12'),(836,2,'temp',24,'2017-05-18 22:51:22'),(837,2,'hum',0,'2017-05-18 22:51:22'),(838,2,'lux',858,'2017-05-18 22:51:22'),(839,2,'ph',0,'2017-05-18 22:51:22'),(840,1,'temp',23,'2017-05-18 22:51:24'),(841,1,'hum',0,'2017-05-18 22:51:24'),(842,1,'lux',182,'2017-05-18 22:51:24'),(843,1,'ph',30,'2017-05-18 22:51:24'),(844,1,'temp',23,'2017-05-18 22:51:41'),(845,1,'hum',0,'2017-05-18 22:51:41'),(846,1,'ph',30,'2017-05-18 22:51:41'),(847,1,'lux',197,'2017-05-18 22:51:41'),(848,2,'temp',24,'2017-05-18 22:51:42'),(849,2,'lux',858,'2017-05-18 22:51:42'),(850,2,'ph',0,'2017-05-18 22:51:42'),(851,2,'hum',0,'2017-05-18 22:51:42'),(852,1,'temp',23,'2017-05-18 22:51:55'),(853,1,'hum',0,'2017-05-18 22:51:55'),(854,1,'ph',30,'2017-05-18 22:51:55'),(855,1,'lux',166,'2017-05-18 22:51:55'),(856,2,'temp',24,'2017-05-18 22:51:57'),(857,2,'hum',0,'2017-05-18 22:51:57'),(858,2,'lux',858,'2017-05-18 22:51:57'),(859,2,'ph',0,'2017-05-18 22:51:57'),(860,1,'temp',23,'2017-05-18 22:52:14'),(861,1,'ph',30,'2017-05-18 22:52:14'),(862,1,'lux',182,'2017-05-18 22:52:14'),(863,1,'hum',0,'2017-05-18 22:52:14'),(864,2,'temp',24,'2017-05-18 22:52:16'),(865,2,'hum',0,'2017-05-18 22:52:16'),(866,2,'lux',842,'2017-05-18 22:52:16'),(867,2,'ph',0,'2017-05-18 22:52:16'),(868,1,'hum',0,'2017-05-18 22:52:36'),(869,1,'temp',23,'2017-05-18 22:52:36'),(870,1,'lux',198,'2017-05-18 22:52:36'),(871,1,'ph',30,'2017-05-18 22:52:36'),(872,2,'ph',0,'2017-05-18 22:52:38'),(873,2,'lux',842,'2017-05-18 22:52:38'),(874,2,'hum',0,'2017-05-18 22:52:38'),(875,2,'temp',24,'2017-05-18 22:52:38'),(876,1,'lux',214,'2017-05-18 22:52:48'),(877,1,'hum',0,'2017-05-18 22:52:48'),(878,1,'temp',23,'2017-05-18 22:52:48'),(879,1,'ph',30,'2017-05-18 22:52:48'),(880,1,'hum',0,'2017-05-18 22:53:02'),(881,1,'temp',23,'2017-05-18 22:53:02'),(882,1,'lux',182,'2017-05-18 22:53:02'),(883,1,'ph',30,'2017-05-18 22:53:02'),(884,2,'lux',827,'2017-05-18 22:53:03'),(885,2,'hum',0,'2017-05-18 22:53:03'),(886,2,'ph',0,'2017-05-18 22:53:03'),(887,2,'temp',24,'2017-05-18 22:53:03'),(888,1,'temp',23,'2017-05-18 22:53:22'),(889,1,'hum',0,'2017-05-18 22:53:22'),(890,1,'lux',197,'2017-05-18 22:53:22'),(891,1,'ph',30,'2017-05-18 22:53:22'),(892,2,'hum',0,'2017-05-18 22:53:24'),(893,2,'temp',24,'2017-05-18 22:53:24'),(894,2,'lux',811,'2017-05-18 22:53:24'),(895,2,'ph',0,'2017-05-18 22:53:24'),(896,1,'temp',23,'2017-05-18 22:53:34'),(897,1,'hum',0,'2017-05-18 22:53:34'),(898,1,'lux',197,'2017-05-18 22:53:34'),(899,1,'ph',30,'2017-05-18 22:53:34'),(900,1,'temp',23,'2017-05-18 22:53:48'),(901,1,'hum',0,'2017-05-18 22:53:48'),(902,1,'ph',30,'2017-05-18 22:53:48'),(903,1,'lux',185,'2017-05-18 22:53:48'),(904,2,'hum',0,'2017-05-18 22:53:53'),(905,2,'temp',24,'2017-05-18 22:53:53'),(906,2,'lux',811,'2017-05-18 22:53:53'),(907,2,'ph',0,'2017-05-18 22:53:53'),(908,2,'temp',24,'2017-05-18 22:54:09'),(909,2,'hum',0,'2017-05-18 22:54:09'),(910,2,'lux',811,'2017-05-18 22:54:09'),(911,2,'ph',0,'2017-05-18 22:54:09'),(912,1,'hum',0,'2017-05-18 22:54:09'),(913,1,'temp',23,'2017-05-18 22:54:09'),(914,1,'lux',197,'2017-05-18 22:54:09'),(915,1,'ph',30,'2017-05-18 22:54:09'),(916,1,'temp',23,'2017-05-18 22:54:29'),(917,1,'hum',0,'2017-05-18 22:54:29'),(918,1,'ph',30,'2017-05-18 22:54:29'),(919,1,'lux',197,'2017-05-18 22:54:29'),(920,2,'temp',24,'2017-05-18 22:54:36'),(921,2,'hum',0,'2017-05-18 22:54:36'),(922,2,'ph',0,'2017-05-18 22:54:36'),(923,2,'lux',795,'2017-05-18 22:54:36'),(924,1,'hum',0,'2017-05-18 22:54:55'),(925,1,'temp',23,'2017-05-18 22:54:55'),(926,1,'lux',182,'2017-05-18 22:54:55'),(927,1,'ph',30,'2017-05-18 22:54:55'),(928,2,'hum',0,'2017-05-18 22:54:59'),(929,2,'temp',24,'2017-05-18 22:54:59'),(930,2,'lux',780,'2017-05-18 22:54:59'),(931,2,'ph',0,'2017-05-18 22:54:59'),(932,1,'temp',23,'2017-05-18 22:55:16'),(933,1,'lux',197,'2017-05-18 22:55:16'),(934,1,'ph',30,'2017-05-18 22:55:16'),(935,1,'hum',0,'2017-05-18 22:55:16'),(936,2,'hum',0,'2017-05-18 22:55:24'),(937,2,'ph',0,'2017-05-18 22:55:24'),(938,2,'lux',764,'2017-05-18 22:55:24'),(939,2,'temp',24,'2017-05-18 22:55:24'),(940,1,'temp',23,'2017-05-18 22:55:32'),(941,1,'hum',0,'2017-05-18 22:55:32'),(942,1,'lux',197,'2017-05-18 22:55:32'),(943,1,'ph',30,'2017-05-18 22:55:32'),(944,1,'ph',30,'2017-05-18 22:55:45'),(945,1,'lux',185,'2017-05-18 22:55:45'),(946,1,'temp',23,'2017-05-18 22:55:45'),(947,1,'hum',0,'2017-05-18 22:55:45'),(948,2,'temp',24,'2017-05-18 22:55:49'),(949,2,'lux',748,'2017-05-18 22:55:49'),(950,2,'hum',0,'2017-05-18 22:55:49'),(951,2,'ph',0,'2017-05-18 22:55:49'),(952,2,'temp',24,'2017-05-18 22:56:07'),(953,2,'hum',0,'2017-05-18 22:56:07'),(954,2,'ph',0,'2017-05-18 22:56:07'),(955,2,'lux',748,'2017-05-18 22:56:07'),(956,1,'ph',30,'2017-05-18 22:56:12'),(957,1,'lux',197,'2017-05-18 22:56:12'),(958,1,'hum',0,'2017-05-18 22:56:12'),(959,1,'temp',23,'2017-05-18 22:56:12'),(960,2,'hum',0,'2017-05-18 22:56:27'),(961,2,'temp',24,'2017-05-18 22:56:27'),(962,2,'lux',748,'2017-05-18 22:56:27'),(963,2,'ph',0,'2017-05-18 22:56:27'),(964,1,'temp',23,'2017-05-18 22:56:28'),(965,1,'hum',0,'2017-05-18 22:56:28'),(966,1,'ph',30,'2017-05-18 22:56:28'),(967,1,'lux',168,'2017-05-18 22:56:28'),(968,1,'ph',30,'2017-05-18 22:56:42'),(969,1,'lux',168,'2017-05-18 22:56:42'),(970,1,'hum',0,'2017-05-18 22:56:42'),(971,2,'temp',24,'2017-05-18 22:56:43'),(972,1,'temp',23,'2017-05-18 22:56:43'),(973,2,'hum',0,'2017-05-18 22:56:43'),(974,2,'lux',732,'2017-05-18 22:56:43'),(975,2,'ph',0,'2017-05-18 22:56:43'),(976,2,'temp',24,'2017-05-18 22:56:58'),(977,2,'hum',0,'2017-05-18 22:56:58'),(978,2,'lux',732,'2017-05-18 22:56:58'),(979,2,'ph',0,'2017-05-18 22:56:58'),(980,1,'hum',0,'2017-05-18 22:56:58'),(981,1,'temp',23,'2017-05-18 22:56:58'),(982,1,'lux',185,'2017-05-18 22:56:58'),(983,1,'ph',30,'2017-05-18 22:56:58'),(984,1,'temp',23,'2017-05-18 22:57:11'),(985,1,'lux',167,'2017-05-18 22:57:11'),(986,1,'ph',30,'2017-05-18 22:57:11'),(987,1,'hum',0,'2017-05-18 22:57:11'),(988,2,'temp',24,'2017-05-18 22:57:13'),(989,2,'hum',0,'2017-05-18 22:57:13'),(990,2,'ph',0,'2017-05-18 22:57:13'),(991,2,'lux',716,'2017-05-18 22:57:13'),(992,2,'temp',24,'2017-05-18 22:57:27'),(993,2,'hum',0,'2017-05-18 22:57:27'),(994,2,'lux',716,'2017-05-18 22:57:27'),(995,2,'ph',0,'2017-05-18 22:57:27'),(996,1,'lux',183,'2017-05-18 22:57:27'),(997,1,'ph',30,'2017-05-18 22:57:27'),(998,1,'hum',0,'2017-05-18 22:57:27'),(999,1,'temp',23,'2017-05-18 22:57:27'),(1000,2,'temp',24,'2017-05-18 22:57:46'),(1001,2,'lux',704,'2017-05-18 22:57:46'),(1002,2,'ph',0,'2017-05-18 22:57:46'),(1003,2,'hum',0,'2017-05-18 22:57:46'),(1004,1,'temp',23,'2017-05-18 22:57:46'),(1005,1,'hum',0,'2017-05-18 22:57:46'),(1006,1,'lux',136,'2017-05-18 22:57:46'),(1007,1,'ph',30,'2017-05-18 22:57:46'),(1008,1,'hum',0,'2017-05-18 22:58:00'),(1009,1,'temp',23,'2017-05-18 22:58:00'),(1010,1,'lux',167,'2017-05-18 22:58:00'),(1011,1,'ph',30,'2017-05-18 22:58:00'),(1012,2,'temp',24,'2017-05-18 22:58:02'),(1013,2,'hum',0,'2017-05-18 22:58:02'),(1014,2,'lux',704,'2017-05-18 22:58:02'),(1015,2,'ph',0,'2017-05-18 22:58:02'),(1016,2,'temp',24,'2017-05-18 22:58:20'),(1017,2,'hum',0,'2017-05-18 22:58:20'),(1018,2,'lux',673,'2017-05-18 22:58:20'),(1019,2,'ph',0,'2017-05-18 22:58:20'),(1020,1,'lux',136,'2017-05-18 22:58:21'),(1021,1,'hum',0,'2017-05-18 22:58:21'),(1022,1,'ph',30,'2017-05-18 22:58:21'),(1023,1,'temp',23,'2017-05-18 22:58:21'),(1024,2,'temp',24,'2017-05-18 22:58:32'),(1025,2,'ph',0,'2017-05-18 22:58:32'),(1026,2,'lux',688,'2017-05-18 22:58:32'),(1027,2,'hum',0,'2017-05-18 22:58:32'),(1028,1,'temp',23,'2017-05-18 22:58:33'),(1029,1,'ph',30,'2017-05-18 22:58:33'),(1030,1,'lux',167,'2017-05-18 22:58:33'),(1031,1,'hum',0,'2017-05-18 22:58:33'),(1032,1,'hum',0,'2017-05-18 22:58:46'),(1033,1,'temp',23,'2017-05-18 22:58:46'),(1034,1,'lux',63,'2017-05-18 22:58:46'),(1035,1,'ph',30,'2017-05-18 22:58:46'),(1036,2,'temp',24,'2017-05-18 22:59:02'),(1037,2,'lux',688,'2017-05-18 22:59:02'),(1038,2,'hum',0,'2017-05-18 22:59:02'),(1039,2,'ph',0,'2017-05-18 22:59:02'),(1040,1,'temp',23,'2017-05-18 22:59:05'),(1041,1,'hum',0,'2017-05-18 22:59:05'),(1042,1,'lux',183,'2017-05-18 22:59:05'),(1043,1,'ph',30,'2017-05-18 22:59:05'),(1044,1,'lux',183,'2017-05-18 22:59:18'),(1045,1,'hum',0,'2017-05-18 22:59:18'),(1046,1,'ph',30,'2017-05-18 22:59:18'),(1047,1,'temp',23,'2017-05-18 22:59:18'),(1048,2,'temp',24,'2017-05-18 22:59:18'),(1049,2,'hum',0,'2017-05-18 22:59:18'),(1050,2,'lux',673,'2017-05-18 22:59:18'),(1051,2,'ph',0,'2017-05-18 22:59:18'),(1052,1,'temp',23,'2017-05-18 22:59:32'),(1053,1,'ph',30,'2017-05-18 22:59:32'),(1054,1,'hum',0,'2017-05-18 22:59:32'),(1055,1,'lux',183,'2017-05-18 22:59:32'),(1056,2,'temp',24,'2017-05-18 22:59:34'),(1057,2,'hum',0,'2017-05-18 22:59:34'),(1058,2,'lux',673,'2017-05-18 22:59:34'),(1059,2,'ph',0,'2017-05-18 22:59:34'),(1060,1,'temp',23,'2017-05-18 22:59:44'),(1061,1,'hum',0,'2017-05-18 22:59:44'),(1062,1,'ph',30,'2017-05-18 22:59:44'),(1063,1,'lux',167,'2017-05-18 22:59:44'),(1064,2,'temp',24,'2017-05-18 22:59:50'),(1065,2,'hum',0,'2017-05-18 22:59:50'),(1066,2,'lux',673,'2017-05-18 22:59:50'),(1067,2,'ph',0,'2017-05-18 22:59:50'),(1068,1,'lux',198,'2017-05-18 23:00:02'),(1069,1,'ph',30,'2017-05-18 23:00:02'),(1070,1,'temp',23,'2017-05-18 23:00:02'),(1071,1,'hum',0,'2017-05-18 23:00:02'),(1072,2,'temp',24,'2017-05-18 23:00:03'),(1073,2,'hum',0,'2017-05-18 23:00:03'),(1074,2,'lux',673,'2017-05-18 23:00:03'),(1075,2,'ph',0,'2017-05-18 23:00:03'),(1076,1,'temp',23,'2017-05-18 23:00:24'),(1077,1,'hum',0,'2017-05-18 23:00:24'),(1078,1,'lux',183,'2017-05-18 23:00:24'),(1079,1,'ph',30,'2017-05-18 23:00:24'),(1080,2,'temp',24,'2017-05-18 23:00:27'),(1081,2,'hum',0,'2017-05-18 23:00:27'),(1082,2,'lux',657,'2017-05-18 23:00:27'),(1083,2,'ph',0,'2017-05-18 23:00:27'),(1084,2,'temp',24,'2017-05-18 23:00:42'),(1085,2,'hum',0,'2017-05-18 23:00:42'),(1086,2,'lux',657,'2017-05-18 23:00:42'),(1087,2,'ph',0,'2017-05-18 23:00:42'),(1088,1,'temp',23,'2017-05-18 23:00:45'),(1089,1,'hum',0,'2017-05-18 23:00:45'),(1090,1,'ph',30,'2017-05-18 23:00:45'),(1091,1,'lux',183,'2017-05-18 23:00:45'),(1092,2,'temp',24,'2017-05-18 23:00:56'),(1093,2,'hum',0,'2017-05-18 23:00:56'),(1094,2,'ph',0,'2017-05-18 23:00:56'),(1095,2,'lux',641,'2017-05-18 23:00:56'),(1096,1,'lux',167,'2017-05-18 23:01:10'),(1097,1,'hum',0,'2017-05-18 23:01:10'),(1098,1,'temp',23,'2017-05-18 23:01:10'),(1099,1,'ph',30,'2017-05-18 23:01:10'),(1100,2,'temp',24,'2017-05-18 23:01:12'),(1101,2,'hum',0,'2017-05-18 23:01:12'),(1102,2,'lux',624,'2017-05-18 23:01:12'),(1103,2,'ph',0,'2017-05-18 23:01:12'),(1104,1,'temp',23,'2017-05-18 23:01:33'),(1105,1,'lux',183,'2017-05-18 23:01:33'),(1106,1,'ph',30,'2017-05-18 23:01:33'),(1107,1,'hum',0,'2017-05-18 23:01:33'),(1108,2,'temp',24,'2017-05-18 23:01:35'),(1109,2,'hum',0,'2017-05-18 23:01:35'),(1110,2,'ph',0,'2017-05-18 23:01:35'),(1111,2,'lux',624,'2017-05-18 23:01:35'),(1112,2,'temp',24,'2017-05-18 23:02:03'),(1113,2,'ph',0,'2017-05-18 23:02:03'),(1114,2,'lux',641,'2017-05-18 23:02:03'),(1115,2,'hum',0,'2017-05-18 23:02:03'),(1116,1,'lux',167,'2017-05-18 23:02:05'),(1117,1,'hum',0,'2017-05-18 23:02:05'),(1118,1,'ph',30,'2017-05-18 23:02:05'),(1119,1,'temp',23,'2017-05-18 23:02:05'),(1120,2,'lux',626,'2017-05-18 23:02:15'),(1121,2,'hum',0,'2017-05-18 23:02:15'),(1122,2,'temp',24,'2017-05-18 23:02:15'),(1123,2,'ph',0,'2017-05-18 23:02:15'),(1124,2,'lux',626,'2017-05-18 23:02:29'),(1125,2,'hum',0,'2017-05-18 23:02:29'),(1126,2,'temp',24,'2017-05-18 23:02:29'),(1127,2,'ph',0,'2017-05-18 23:02:29'),(1128,1,'temp',23,'2017-05-18 23:02:35'),(1129,1,'hum',0,'2017-05-18 23:02:35'),(1130,1,'lux',170,'2017-05-18 23:02:35'),(1131,1,'ph',30,'2017-05-18 23:02:35'),(1132,2,'hum',0,'2017-05-18 23:02:49'),(1133,2,'temp',24,'2017-05-18 23:02:49'),(1134,2,'lux',626,'2017-05-18 23:02:49'),(1135,2,'ph',0,'2017-05-18 23:02:49'),(1136,1,'temp',23,'2017-05-18 23:03:06'),(1137,1,'ph',30,'2017-05-18 23:03:06'),(1138,1,'lux',170,'2017-05-18 23:03:06'),(1139,1,'hum',0,'2017-05-18 23:03:06'),(1140,2,'temp',24,'2017-05-18 23:03:07'),(1141,2,'hum',0,'2017-05-18 23:03:07'),(1142,2,'lux',608,'2017-05-18 23:03:07'),(1143,2,'ph',0,'2017-05-18 23:03:07'),(1144,1,'lux',170,'2017-05-18 23:03:26'),(1145,1,'temp',23,'2017-05-18 23:03:26'),(1146,1,'ph',30,'2017-05-18 23:03:26'),(1147,1,'hum',0,'2017-05-18 23:03:26'),(1148,2,'temp',24,'2017-05-18 23:03:28'),(1149,2,'ph',0,'2017-05-18 23:03:28'),(1150,2,'lux',594,'2017-05-18 23:03:28'),(1151,2,'hum',0,'2017-05-18 23:03:28'),(1152,1,'ph',30,'2017-05-18 23:03:49'),(1153,1,'lux',155,'2017-05-18 23:03:49'),(1154,1,'hum',0,'2017-05-18 23:03:49'),(1155,1,'temp',23,'2017-05-18 23:03:49'),(1156,2,'temp',24,'2017-05-18 23:03:58'),(1157,2,'hum',0,'2017-05-18 23:03:58'),(1158,2,'lux',577,'2017-05-18 23:03:58'),(1159,2,'ph',0,'2017-05-18 23:03:58'),(1160,1,'ph',30,'2017-05-18 23:04:03'),(1161,1,'lux',155,'2017-05-18 23:04:03'),(1162,1,'hum',0,'2017-05-18 23:04:03'),(1163,1,'temp',23,'2017-05-18 23:04:03'),(1164,2,'temp',24,'2017-05-18 23:04:17'),(1165,2,'hum',0,'2017-05-18 23:04:17'),(1166,2,'lux',545,'2017-05-18 23:04:17'),(1167,2,'ph',0,'2017-05-18 23:04:17'),(1168,1,'temp',23,'2017-05-18 23:04:18'),(1169,1,'hum',0,'2017-05-18 23:04:18'),(1170,1,'lux',155,'2017-05-18 23:04:18'),(1171,1,'ph',30,'2017-05-18 23:04:18'),(1172,1,'temp',23,'2017-05-18 23:04:32'),(1173,1,'hum',0,'2017-05-18 23:04:32'),(1174,1,'lux',155,'2017-05-18 23:04:32'),(1175,1,'ph',30,'2017-05-18 23:04:32'),(1176,2,'temp',24,'2017-05-18 23:04:35'),(1177,2,'hum',0,'2017-05-18 23:04:35'),(1178,2,'lux',545,'2017-05-18 23:04:35'),(1179,2,'ph',0,'2017-05-18 23:04:35'),(1180,1,'hum',0,'2017-05-18 23:04:44'),(1181,1,'lux',155,'2017-05-18 23:04:44'),(1182,1,'temp',23,'2017-05-18 23:04:44'),(1183,1,'ph',30,'2017-05-18 23:04:44'),(1184,2,'temp',25,'2017-05-18 23:04:48'),(1185,2,'lux',530,'2017-05-18 23:04:48'),(1186,2,'ph',0,'2017-05-18 23:04:48'),(1187,2,'hum',0,'2017-05-18 23:04:48'),(1188,1,'temp',23,'2017-05-18 23:05:01'),(1189,1,'hum',0,'2017-05-18 23:05:01'),(1190,1,'lux',170,'2017-05-18 23:05:01'),(1191,1,'ph',30,'2017-05-18 23:05:01'),(1192,2,'hum',0,'2017-05-18 23:05:02'),(1193,2,'lux',514,'2017-05-18 23:05:02'),(1194,2,'ph',0,'2017-05-18 23:05:02'),(1195,2,'temp',25,'2017-05-18 23:05:02'),(1196,2,'hum',0,'2017-05-18 23:05:25'),(1197,2,'temp',25,'2017-05-18 23:05:25'),(1198,2,'lux',498,'2017-05-18 23:05:25'),(1199,2,'ph',0,'2017-05-18 23:05:25'),(1200,1,'temp',23,'2017-05-18 23:05:25'),(1201,1,'ph',30,'2017-05-18 23:05:25'),(1202,1,'lux',155,'2017-05-18 23:05:25'),(1203,1,'hum',0,'2017-05-18 23:05:25'),(1204,1,'temp',23,'2017-05-18 23:05:45'),(1205,1,'hum',0,'2017-05-18 23:05:45'),(1206,1,'ph',30,'2017-05-18 23:05:45'),(1207,1,'lux',155,'2017-05-18 23:05:45'),(1208,2,'temp',25,'2017-05-18 23:05:51'),(1209,2,'hum',0,'2017-05-18 23:05:51'),(1210,2,'lux',465,'2017-05-18 23:05:51'),(1211,2,'ph',0,'2017-05-18 23:05:51'),(1212,2,'temp',25,'2017-05-18 23:06:08'),(1213,2,'hum',0,'2017-05-18 23:06:08'),(1214,2,'ph',0,'2017-05-18 23:06:08'),(1215,2,'lux',433,'2017-05-18 23:06:08'),(1216,1,'temp',23,'2017-05-18 23:06:09'),(1217,1,'hum',0,'2017-05-18 23:06:09'),(1218,1,'lux',155,'2017-05-18 23:06:09'),(1219,1,'ph',30,'2017-05-18 23:06:09'),(1220,2,'temp',25,'2017-05-18 23:06:20'),(1221,2,'hum',0,'2017-05-18 23:06:20'),(1222,2,'lux',448,'2017-05-18 23:06:20'),(1223,2,'ph',0,'2017-05-18 23:06:20'),(1224,1,'temp',23,'2017-05-18 23:06:31'),(1225,1,'ph',30,'2017-05-18 23:06:31'),(1226,1,'lux',155,'2017-05-18 23:06:31'),(1227,1,'hum',0,'2017-05-18 23:06:31'),(1228,2,'hum',0,'2017-05-18 23:06:34'),(1229,2,'temp',25,'2017-05-18 23:06:34'),(1230,2,'lux',448,'2017-05-18 23:06:34'),(1231,2,'ph',0,'2017-05-18 23:06:34'),(1232,1,'ph',30,'2017-05-18 23:06:51'),(1233,1,'hum',0,'2017-05-18 23:06:51'),(1234,1,'lux',138,'2017-05-18 23:06:51'),(1235,1,'temp',23,'2017-05-18 23:06:51'),(1236,2,'temp',25,'2017-05-18 23:06:52'),(1237,2,'ph',0,'2017-05-18 23:06:52'),(1238,2,'lux',448,'2017-05-18 23:06:52'),(1239,2,'hum',0,'2017-05-18 23:06:52'),(1240,1,'temp',23,'2017-05-18 23:07:03'),(1241,1,'hum',0,'2017-05-18 23:07:03'),(1242,1,'lux',139,'2017-05-18 23:07:03'),(1243,1,'ph',30,'2017-05-18 23:07:03'),(1244,2,'lux',433,'2017-05-18 23:07:14'),(1245,2,'hum',0,'2017-05-18 23:07:14'),(1246,2,'temp',25,'2017-05-18 23:07:14'),(1247,2,'ph',0,'2017-05-18 23:07:14'),(1248,1,'lux',155,'2017-05-18 23:07:15'),(1249,1,'ph',30,'2017-05-18 23:07:15'),(1250,1,'hum',0,'2017-05-18 23:07:15'),(1251,1,'temp',23,'2017-05-18 23:07:15'),(1252,1,'hum',0,'2017-05-18 23:07:40'),(1253,1,'temp',23,'2017-05-18 23:07:40'),(1254,1,'ph',30,'2017-05-18 23:07:40'),(1255,1,'lux',138,'2017-05-18 23:07:40'),(1256,2,'temp',25,'2017-05-18 23:07:41'),(1257,2,'hum',0,'2017-05-18 23:07:41'),(1258,2,'ph',0,'2017-05-18 23:07:41'),(1259,2,'lux',433,'2017-05-18 23:07:41'),(1260,2,'hum',0,'2017-05-18 23:08:03'),(1261,2,'temp',25,'2017-05-18 23:08:03'),(1262,2,'lux',399,'2017-05-18 23:08:03'),(1263,2,'ph',0,'2017-05-18 23:08:03'),(1264,1,'temp',23,'2017-05-18 23:08:04'),(1265,1,'lux',138,'2017-05-18 23:08:04'),(1266,1,'ph',30,'2017-05-18 23:08:04'),(1267,1,'hum',0,'2017-05-18 23:08:04'),(1268,2,'temp',25,'2017-05-18 23:08:27'),(1269,2,'ph',0,'2017-05-18 23:08:27'),(1270,2,'lux',369,'2017-05-18 23:08:27'),(1271,2,'hum',0,'2017-05-18 23:08:27'),(1272,1,'temp',23,'2017-05-18 23:08:27'),(1273,1,'hum',0,'2017-05-18 23:08:27'),(1274,1,'ph',30,'2017-05-18 23:08:27'),(1275,1,'lux',138,'2017-05-18 23:08:27'),(1276,2,'temp',25,'2017-05-18 23:08:50'),(1277,2,'lux',386,'2017-05-18 23:08:50'),(1278,2,'hum',0,'2017-05-18 23:08:50'),(1279,2,'ph',0,'2017-05-18 23:08:50'),(1280,1,'temp',23,'2017-05-18 23:08:55'),(1281,1,'hum',0,'2017-05-18 23:08:55'),(1282,1,'ph',30,'2017-05-18 23:08:55'),(1283,1,'lux',120,'2017-05-18 23:08:55'),(1284,1,'hum',0,'2017-05-18 23:09:16'),(1285,1,'lux',138,'2017-05-18 23:09:16'),(1286,1,'ph',30,'2017-05-18 23:09:16'),(1287,1,'temp',23,'2017-05-18 23:09:16'),(1288,2,'lux',453,'2017-05-18 23:09:17'),(1289,2,'hum',0,'2017-05-18 23:09:17'),(1290,2,'temp',25,'2017-05-18 23:09:17'),(1291,2,'ph',0,'2017-05-18 23:09:17'),(1292,1,'temp',23,'2017-05-18 23:09:33'),(1293,1,'hum',0,'2017-05-18 23:09:33'),(1294,1,'lux',82,'2017-05-18 23:09:33'),(1295,1,'ph',30,'2017-05-18 23:09:33'),(1296,2,'temp',25,'2017-05-18 23:09:36'),(1297,2,'hum',0,'2017-05-18 23:09:36'),(1298,2,'lux',468,'2017-05-18 23:09:36'),(1299,2,'ph',0,'2017-05-18 23:09:36'),(1300,2,'lux',436,'2017-05-18 23:09:59'),(1301,2,'hum',0,'2017-05-18 23:09:59'),(1302,2,'temp',25,'2017-05-18 23:09:59'),(1303,2,'ph',0,'2017-05-18 23:09:59'),(1304,1,'temp',23,'2017-05-18 23:10:03'),(1305,1,'lux',138,'2017-05-18 23:10:03'),(1306,1,'ph',30,'2017-05-18 23:10:03'),(1307,1,'hum',0,'2017-05-18 23:10:03'),(1308,1,'hum',0,'2017-05-18 23:10:19'),(1309,1,'ph',30,'2017-05-18 23:10:19'),(1310,1,'lux',138,'2017-05-18 23:10:19'),(1311,1,'temp',23,'2017-05-18 23:10:19'),(1312,2,'ph',0,'2017-05-18 23:10:20'),(1313,2,'lux',386,'2017-05-18 23:10:20'),(1314,2,'hum',0,'2017-05-18 23:10:20'),(1315,2,'temp',25,'2017-05-18 23:10:20'),(1316,1,'temp',23,'2017-05-18 23:10:39'),(1317,1,'hum',0,'2017-05-18 23:10:39'),(1318,1,'lux',120,'2017-05-18 23:10:39'),(1319,1,'ph',30,'2017-05-18 23:10:39'),(1320,2,'temp',25,'2017-05-18 23:10:42'),(1321,2,'hum',0,'2017-05-18 23:10:42'),(1322,2,'ph',0,'2017-05-18 23:10:42'),(1323,2,'lux',318,'2017-05-18 23:10:42'),(1324,1,'temp',23,'2017-05-18 23:11:02'),(1325,1,'hum',0,'2017-05-18 23:11:02'),(1326,1,'lux',102,'2017-05-18 23:11:02'),(1327,1,'ph',30,'2017-05-18 23:11:02'),(1328,2,'temp',25,'2017-05-18 23:11:03'),(1329,2,'ph',0,'2017-05-18 23:11:03'),(1330,2,'lux',301,'2017-05-18 23:11:03'),(1331,2,'hum',0,'2017-05-18 23:11:03'),(1332,2,'hum',0,'2017-05-18 23:11:25'),(1333,2,'temp',25,'2017-05-18 23:11:25'),(1334,2,'ph',0,'2017-05-18 23:11:25'),(1335,2,'lux',303,'2017-05-18 23:11:25'),(1336,1,'temp',23,'2017-05-18 23:11:26'),(1337,1,'hum',0,'2017-05-18 23:11:26'),(1338,1,'lux',120,'2017-05-18 23:11:26'),(1339,1,'ph',30,'2017-05-18 23:11:26'),(1340,1,'temp',23,'2017-05-18 23:11:48'),(1341,1,'hum',0,'2017-05-18 23:11:48'),(1342,1,'ph',30,'2017-05-18 23:11:48'),(1343,1,'lux',123,'2017-05-18 23:11:48'),(1344,2,'temp',25,'2017-05-18 23:11:52'),(1345,2,'ph',0,'2017-05-18 23:11:52'),(1346,2,'lux',319,'2017-05-18 23:11:52'),(1347,2,'hum',0,'2017-05-18 23:11:52'),(1348,1,'temp',23,'2017-05-18 23:12:14'),(1349,1,'lux',123,'2017-05-18 23:12:14'),(1350,1,'ph',30,'2017-05-18 23:12:14'),(1351,1,'hum',0,'2017-05-18 23:12:14'),(1352,2,'temp',25,'2017-05-18 23:12:15'),(1353,2,'lux',319,'2017-05-18 23:12:15'),(1354,2,'hum',0,'2017-05-18 23:12:15'),(1355,2,'ph',0,'2017-05-18 23:12:15'),(1356,2,'temp',25,'2017-05-18 23:13:02'),(1357,2,'hum',0,'2017-05-18 23:13:02'),(1358,2,'lux',303,'2017-05-18 23:13:02'),(1359,2,'ph',0,'2017-05-18 23:13:02'),(1360,1,'temp',23,'2017-05-18 23:13:15'),(1361,1,'hum',0,'2017-05-18 23:13:15'),(1362,1,'lux',86,'2017-05-18 23:13:15'),(1363,1,'ph',30,'2017-05-18 23:13:15'),(1364,2,'temp',25,'2017-05-18 23:13:18'),(1365,2,'hum',0,'2017-05-18 23:13:18'),(1366,2,'lux',256,'2017-05-18 23:13:18'),(1367,2,'ph',0,'2017-05-18 23:13:18'),(1368,1,'temp',23,'2017-05-18 23:13:26'),(1369,1,'hum',0,'2017-05-18 23:13:26'),(1370,1,'lux',120,'2017-05-18 23:13:26'),(1371,1,'ph',30,'2017-05-18 23:13:26'),(1372,1,'temp',23,'2017-05-18 23:13:41'),(1373,1,'hum',0,'2017-05-18 23:13:41'),(1374,1,'lux',120,'2017-05-18 23:13:41'),(1375,1,'ph',30,'2017-05-18 23:13:41'),(1376,2,'temp',25,'2017-05-18 23:13:45'),(1377,2,'hum',0,'2017-05-18 23:13:45'),(1378,2,'lux',256,'2017-05-18 23:13:45'),(1379,2,'ph',0,'2017-05-18 23:13:45'),(1380,1,'temp',23,'2017-05-18 23:17:02'),(1381,1,'lux',120,'2017-05-18 23:17:02'),(1382,1,'hum',0,'2017-05-18 23:17:02'),(1383,1,'ph',30,'2017-05-18 23:17:02'),(1384,2,'hum',0,'2017-05-18 23:17:04'),(1385,2,'lux',240,'2017-05-18 23:17:04'),(1386,2,'temp',25,'2017-05-18 23:17:04'),(1387,2,'ph',0,'2017-05-18 23:17:04'),(1388,1,'hum',12,'2017-05-18 23:17:21'),(1389,1,'temp',23,'2017-05-18 23:17:21'),(1390,1,'lux',45,'2017-05-18 23:17:21'),(1391,1,'ph',30,'2017-05-18 23:17:21'),(1392,2,'hum',7,'2017-05-18 23:17:26'),(1393,2,'temp',25,'2017-05-18 23:17:26'),(1394,2,'lux',52,'2017-05-18 23:17:26'),(1395,2,'ph',0,'2017-05-18 23:17:26'),(1396,1,'temp',23,'2017-05-18 23:17:41'),(1397,1,'lux',8,'2017-05-18 23:17:41'),(1398,1,'hum',19,'2017-05-18 23:17:41'),(1399,1,'ph',50,'2017-05-18 23:17:41'),(1400,2,'temp',25,'2017-05-18 23:17:49'),(1401,2,'ph',740,'2017-05-18 23:17:49'),(1402,2,'lux',2965,'2017-05-18 23:17:49'),(1403,2,'hum',40,'2017-05-18 23:17:49'),(1404,2,'hum',1,'2017-05-18 23:18:02'),(1405,2,'temp',25,'2017-05-18 23:18:02'),(1406,2,'lux',73,'2017-05-18 23:18:02'),(1407,2,'ph',0,'2017-05-18 23:18:02'),(1408,1,'temp',23,'2017-05-18 23:18:02'),(1409,1,'hum',0,'2017-05-18 23:18:02'),(1410,1,'lux',8,'2017-05-18 23:18:02'),(1411,1,'ph',30,'2017-05-18 23:18:02'),(1412,1,'temp',24,'2017-05-18 23:18:24'),(1413,1,'hum',0,'2017-05-18 23:18:24'),(1414,1,'lux',787,'2017-05-18 23:18:24'),(1415,1,'ph',30,'2017-05-18 23:18:24'),(1416,2,'lux',753,'2017-05-18 23:18:33'),(1417,2,'hum',1,'2017-05-18 23:18:33'),(1418,2,'temp',25,'2017-05-18 23:18:33'),(1419,2,'ph',0,'2017-05-18 23:18:33'),(1420,2,'hum',1,'2017-05-18 23:18:56'),(1421,2,'temp',25,'2017-05-18 23:18:56'),(1422,2,'lux',833,'2017-05-18 23:18:56'),(1423,2,'ph',0,'2017-05-18 23:18:56'),(1424,1,'temp',24,'2017-05-18 23:18:58'),(1425,1,'hum',0,'2017-05-18 23:18:58'),(1426,1,'lux',740,'2017-05-18 23:18:58'),(1427,1,'ph',30,'2017-05-18 23:18:58'),(1428,2,'lux',833,'2017-05-18 23:19:13'),(1429,2,'ph',0,'2017-05-18 23:19:13'),(1430,2,'hum',1,'2017-05-18 23:19:13'),(1431,2,'temp',25,'2017-05-18 23:19:13'),(1432,1,'lux',771,'2017-05-18 23:19:14'),(1433,1,'hum',0,'2017-05-18 23:19:14'),(1434,1,'ph',30,'2017-05-18 23:19:14'),(1435,1,'temp',24,'2017-05-18 23:19:14'),(1436,2,'temp',25,'2017-05-18 23:19:25'),(1437,2,'hum',1,'2017-05-18 23:19:25'),(1438,2,'ph',0,'2017-05-18 23:19:25'),(1439,2,'lux',849,'2017-05-18 23:19:25'),(1440,1,'hum',0,'2017-05-18 23:19:33'),(1441,1,'temp',24,'2017-05-18 23:19:33'),(1442,1,'lux',740,'2017-05-18 23:19:33'),(1443,1,'ph',30,'2017-05-18 23:19:33'),(1444,2,'temp',25,'2017-05-18 23:19:42'),(1445,2,'hum',1,'2017-05-18 23:19:42'),(1446,2,'lux',800,'2017-05-18 23:19:42'),(1447,2,'ph',0,'2017-05-18 23:19:42'),(1448,1,'temp',24,'2017-05-18 23:19:55'),(1449,1,'hum',0,'2017-05-18 23:19:55'),(1450,1,'lux',786,'2017-05-18 23:19:55'),(1451,1,'ph',30,'2017-05-18 23:19:55'),(1452,2,'temp',25,'2017-05-18 23:19:56'),(1453,2,'hum',1,'2017-05-18 23:19:56'),(1454,2,'lux',753,'2017-05-18 23:19:56'),(1455,2,'ph',0,'2017-05-18 23:19:56'),(1456,2,'hum',1,'2017-05-18 23:20:09'),(1457,2,'temp',25,'2017-05-18 23:20:09'),(1458,2,'lux',770,'2017-05-18 23:20:09'),(1459,2,'ph',0,'2017-05-18 23:20:09'),(1460,1,'temp',24,'2017-05-18 23:20:21'),(1461,1,'hum',0,'2017-05-18 23:20:21'),(1462,1,'lux',818,'2017-05-18 23:20:21'),(1463,1,'ph',30,'2017-05-18 23:20:21'),(1464,2,'temp',25,'2017-05-18 23:20:22'),(1465,2,'hum',1,'2017-05-18 23:20:22'),(1466,2,'lux',849,'2017-05-18 23:20:22'),(1467,2,'ph',0,'2017-05-18 23:20:22'),(1468,1,'lux',771,'2017-05-18 23:20:37'),(1469,1,'temp',24,'2017-05-18 23:20:37'),(1470,1,'hum',0,'2017-05-18 23:20:37'),(1471,1,'ph',30,'2017-05-18 23:20:37'),(1472,1,'temp',24,'2017-05-18 23:20:57'),(1473,1,'lux',740,'2017-05-18 23:20:57'),(1474,1,'hum',0,'2017-05-18 23:20:57'),(1475,1,'ph',30,'2017-05-18 23:20:57'),(1476,2,'ph',0,'2017-05-18 23:20:57'),(1477,2,'lux',831,'2017-05-18 23:20:57'),(1478,2,'hum',1,'2017-05-18 23:20:57'),(1479,2,'temp',25,'2017-05-18 23:20:57'),(1480,2,'hum',1,'2017-05-18 23:21:12'),(1481,2,'temp',25,'2017-05-18 23:21:12'),(1482,2,'ph',0,'2017-05-18 23:21:12'),(1483,2,'lux',768,'2017-05-18 23:21:12'),(1484,1,'temp',24,'2017-05-18 23:21:13'),(1485,1,'hum',0,'2017-05-18 23:21:13'),(1486,1,'lux',802,'2017-05-18 23:21:13'),(1487,1,'ph',30,'2017-05-18 23:21:13'),(1488,2,'lux',138,'2017-05-19 13:57:16'),(1489,2,'hum',1,'2017-05-19 13:57:16'),(1490,2,'temp',23,'2017-05-19 13:57:16'),(1491,2,'ph',0,'2017-05-19 13:57:16'),(1492,2,'hum',1,'2017-05-19 13:57:44'),(1493,2,'temp',23,'2017-05-19 13:57:44'),(1494,2,'lux',138,'2017-05-19 13:57:44'),(1495,2,'ph',0,'2017-05-19 13:57:44'),(1496,1,'temp',22,'2017-05-19 13:57:51'),(1497,1,'hum',0,'2017-05-19 13:57:51'),(1498,1,'ph',30,'2017-05-19 13:57:51'),(1499,1,'lux',79,'2017-05-19 13:57:51'),(1500,2,'temp',23,'2017-05-19 13:58:00'),(1501,2,'hum',1,'2017-05-19 13:58:00'),(1502,2,'ph',0,'2017-05-19 13:58:00'),(1503,2,'lux',123,'2017-05-19 13:58:00'),(1504,2,'temp',23,'2017-05-19 13:58:16'),(1505,2,'hum',1,'2017-05-19 13:58:16'),(1506,2,'lux',104,'2017-05-19 13:58:16'),(1507,2,'ph',0,'2017-05-19 13:58:16'),(1508,1,'temp',22,'2017-05-19 13:58:18'),(1509,1,'hum',0,'2017-05-19 13:58:18'),(1510,1,'lux',79,'2017-05-19 13:58:18'),(1511,1,'ph',30,'2017-05-19 13:58:18'),(1512,2,'ph',0,'2017-05-19 13:58:27'),(1513,2,'lux',121,'2017-05-19 13:58:27'),(1514,2,'hum',1,'2017-05-19 13:58:27'),(1515,2,'temp',23,'2017-05-19 13:58:27'),(1516,1,'temp',22,'2017-05-19 13:58:34'),(1517,1,'ph',30,'2017-05-19 13:58:34'),(1518,1,'lux',78,'2017-05-19 13:58:34'),(1519,1,'hum',0,'2017-05-19 13:58:34'),(1520,2,'ph',0,'2017-05-19 13:58:45'),(1521,2,'hum',1,'2017-05-19 13:58:45'),(1522,2,'temp',23,'2017-05-19 13:58:45'),(1523,2,'lux',139,'2017-05-19 13:58:45'),(1524,1,'temp',22,'2017-05-19 13:58:46'),(1525,1,'hum',0,'2017-05-19 13:58:46'),(1526,1,'lux',78,'2017-05-19 13:58:46'),(1527,1,'ph',30,'2017-05-19 13:58:46'),(1528,2,'hum',1,'2017-05-19 13:59:04'),(1529,2,'temp',23,'2017-05-19 13:59:04'),(1530,2,'ph',0,'2017-05-19 13:59:04'),(1531,2,'lux',87,'2017-05-19 13:59:04'),(1532,1,'temp',22,'2017-05-19 13:59:06'),(1533,1,'hum',0,'2017-05-19 13:59:06'),(1534,1,'lux',99,'2017-05-19 13:59:06'),(1535,1,'ph',30,'2017-05-19 13:59:06'),(1536,1,'lux',61,'2017-05-19 13:59:24'),(1537,1,'ph',30,'2017-05-19 13:59:24'),(1538,1,'hum',0,'2017-05-19 13:59:24'),(1539,1,'temp',22,'2017-05-19 13:59:24'),(1540,2,'temp',23,'2017-05-19 13:59:35'),(1541,2,'hum',1,'2017-05-19 13:59:35'),(1542,2,'ph',0,'2017-05-19 13:59:35'),(1543,2,'lux',87,'2017-05-19 13:59:35'),(1544,1,'hum',0,'2017-05-19 13:59:36'),(1545,1,'temp',22,'2017-05-19 13:59:36'),(1546,1,'lux',61,'2017-05-19 13:59:36'),(1547,1,'ph',50,'2017-05-19 13:59:36'),(1548,2,'temp',23,'2017-05-19 13:59:57'),(1549,2,'hum',1,'2017-05-19 13:59:57'),(1550,2,'lux',125,'2017-05-19 13:59:57'),(1551,2,'ph',0,'2017-05-19 13:59:57'),(1552,1,'hum',0,'2017-05-19 13:59:58'),(1553,1,'temp',22,'2017-05-19 13:59:58'),(1554,1,'ph',30,'2017-05-19 13:59:58'),(1555,1,'lux',79,'2017-05-19 13:59:58'),(1556,1,'hum',0,'2017-05-19 14:00:15'),(1557,1,'temp',22,'2017-05-19 14:00:15'),(1558,1,'ph',30,'2017-05-19 14:00:15'),(1559,1,'lux',79,'2017-05-19 14:00:15'),(1560,2,'temp',23,'2017-05-19 14:00:19'),(1561,2,'ph',0,'2017-05-19 14:00:19'),(1562,2,'lux',142,'2017-05-19 14:00:19'),(1563,2,'hum',1,'2017-05-19 14:00:19'),(1564,1,'ph',30,'2017-05-19 14:00:27'),(1565,1,'hum',0,'2017-05-19 14:00:27'),(1566,1,'temp',22,'2017-05-19 14:00:27'),(1567,1,'lux',97,'2017-05-19 14:00:27'),(1568,1,'ph',30,'2017-05-19 14:00:44'),(1569,1,'temp',22,'2017-05-19 14:00:44'),(1570,1,'lux',79,'2017-05-19 14:00:44'),(1571,1,'hum',0,'2017-05-19 14:00:44'),(1572,2,'temp',23,'2017-05-19 14:00:48'),(1573,2,'hum',1,'2017-05-19 14:00:48'),(1574,2,'lux',142,'2017-05-19 14:00:48'),(1575,2,'ph',0,'2017-05-19 14:00:48'),(1576,1,'lux',79,'2017-05-19 14:00:59'),(1577,1,'hum',0,'2017-05-19 14:00:59'),(1578,1,'temp',22,'2017-05-19 14:00:59'),(1579,1,'ph',30,'2017-05-19 14:00:59'),(1580,1,'ph',30,'2017-05-19 14:02:45'),(1581,1,'hum',0,'2017-05-19 14:02:45'),(1582,1,'temp',22,'2017-05-19 14:02:45'),(1583,1,'lux',60,'2017-05-19 14:02:45'),(1584,1,'hum',0,'2017-05-19 14:03:00'),(1585,1,'temp',22,'2017-05-19 14:03:00'),(1586,1,'lux',79,'2017-05-19 14:03:00'),(1587,1,'ph',30,'2017-05-19 14:03:00'),(1588,1,'ph',30,'2017-05-19 14:03:12'),(1589,1,'lux',97,'2017-05-19 14:03:12'),(1590,1,'hum',0,'2017-05-19 14:03:12'),(1591,1,'temp',22,'2017-05-19 14:03:12'),(1592,1,'hum',0,'2017-05-19 14:03:40'),(1593,1,'ph',30,'2017-05-19 14:03:40'),(1594,1,'temp',22,'2017-05-19 14:03:40'),(1595,1,'lux',60,'2017-05-19 14:03:40'),(1596,1,'temp',22,'2017-05-19 14:04:04'),(1597,1,'lux',40,'2017-05-19 14:04:04'),(1598,1,'ph',30,'2017-05-19 14:04:04'),(1599,1,'hum',0,'2017-05-19 14:04:04'),(1600,1,'ph',30,'2017-05-19 14:04:20'),(1601,1,'lux',63,'2017-05-19 14:04:20'),(1602,1,'hum',0,'2017-05-19 14:04:20'),(1603,1,'temp',22,'2017-05-19 14:04:20'),(1604,1,'temp',22,'2017-05-19 14:04:40'),(1605,1,'lux',63,'2017-05-19 14:04:40'),(1606,1,'hum',0,'2017-05-19 14:04:40'),(1607,1,'ph',30,'2017-05-19 14:04:40'),(1608,1,'hum',0,'2017-05-19 14:04:56'),(1609,1,'temp',22,'2017-05-19 14:04:56'),(1610,1,'ph',30,'2017-05-19 14:04:56'),(1611,1,'lux',82,'2017-05-19 14:04:56'),(1612,1,'temp',22,'2017-05-19 14:05:24'),(1613,1,'ph',30,'2017-05-19 14:05:24'),(1614,1,'lux',63,'2017-05-19 14:05:24'),(1615,1,'hum',0,'2017-05-19 14:05:24'),(1616,1,'lux',82,'2017-05-19 14:05:39'),(1617,1,'temp',22,'2017-05-19 14:05:39'),(1618,1,'ph',30,'2017-05-19 14:05:39'),(1619,1,'hum',0,'2017-05-19 14:05:39'),(1620,1,'hum',0,'2017-05-19 14:05:59'),(1621,1,'temp',22,'2017-05-19 14:05:59'),(1622,1,'lux',24,'2017-05-19 14:05:59'),(1623,1,'ph',30,'2017-05-19 14:05:59'),(1624,1,'hum',0,'2017-05-19 14:06:24'),(1625,1,'temp',22,'2017-05-19 14:06:24'),(1626,1,'lux',42,'2017-05-19 14:06:24'),(1627,1,'ph',30,'2017-05-19 14:06:24'),(1628,1,'lux',61,'2017-05-19 14:06:42'),(1629,1,'ph',30,'2017-05-19 14:06:42'),(1630,1,'hum',0,'2017-05-19 14:06:42'),(1631,1,'temp',22,'2017-05-19 14:06:42'),(1632,1,'hum',0,'2017-05-19 14:07:31'),(1633,1,'temp',22,'2017-05-19 14:07:31'),(1634,1,'lux',79,'2017-05-19 14:07:31'),(1635,1,'ph',30,'2017-05-19 14:07:31'),(1636,2,'temp',23,'2017-05-19 14:07:31'),(1637,2,'hum',1,'2017-05-19 14:07:31'),(1638,2,'lux',107,'2017-05-19 14:07:31'),(1639,2,'ph',0,'2017-05-19 14:07:31'),(1640,1,'hum',0,'2017-05-19 14:07:46'),(1641,1,'lux',79,'2017-05-19 14:07:46'),(1642,1,'temp',22,'2017-05-19 14:07:46'),(1643,1,'ph',30,'2017-05-19 14:07:46'),(1644,2,'temp',23,'2017-05-19 14:07:46'),(1645,2,'hum',1,'2017-05-19 14:07:46'),(1646,2,'ph',0,'2017-05-19 14:07:46'),(1647,2,'lux',107,'2017-05-19 14:07:46'),(1648,1,'temp',22,'2017-05-19 14:07:59'),(1649,1,'hum',0,'2017-05-19 14:07:59'),(1650,1,'lux',79,'2017-05-19 14:07:59'),(1651,1,'ph',30,'2017-05-19 14:07:59'),(1652,2,'ph',0,'2017-05-19 14:08:00'),(1653,2,'lux',142,'2017-05-19 14:08:00'),(1654,2,'hum',1,'2017-05-19 14:08:00'),(1655,2,'temp',23,'2017-05-19 14:08:00'),(1656,2,'temp',23,'2017-05-19 14:08:17'),(1657,2,'hum',1,'2017-05-19 14:08:17'),(1658,2,'lux',123,'2017-05-19 14:08:17'),(1659,2,'ph',0,'2017-05-19 14:08:17'),(1660,1,'temp',22,'2017-05-19 14:08:19'),(1661,1,'hum',0,'2017-05-19 14:08:19'),(1662,1,'lux',75,'2017-05-19 14:08:19'),(1663,1,'ph',30,'2017-05-19 14:08:19'),(1664,2,'hum',1,'2017-05-19 14:08:30'),(1665,2,'temp',23,'2017-05-19 14:08:30'),(1666,2,'lux',123,'2017-05-19 14:08:30'),(1667,2,'ph',0,'2017-05-19 14:08:30'),(1668,1,'temp',22,'2017-05-19 14:08:47'),(1669,1,'hum',0,'2017-05-19 14:08:47'),(1670,1,'lux',61,'2017-05-19 14:08:47'),(1671,1,'ph',30,'2017-05-19 14:08:47'),(1672,2,'hum',1,'2017-05-19 14:08:51'),(1673,2,'lux',86,'2017-05-19 14:08:51'),(1674,2,'temp',23,'2017-05-19 14:08:51'),(1675,2,'ph',0,'2017-05-19 14:08:51'),(1676,1,'temp',22,'2017-05-19 14:09:10'),(1677,1,'hum',0,'2017-05-19 14:09:10'),(1678,1,'lux',65,'2017-05-19 14:09:10'),(1679,1,'ph',30,'2017-05-19 14:09:10'),(1680,2,'hum',1,'2017-05-19 14:09:16'),(1681,2,'temp',23,'2017-05-19 14:09:16'),(1682,2,'ph',0,'2017-05-19 14:09:16'),(1683,2,'lux',123,'2017-05-19 14:09:16'),(1684,2,'temp',23,'2017-05-19 14:09:33'),(1685,2,'hum',1,'2017-05-19 14:09:33'),(1686,2,'lux',86,'2017-05-19 14:09:33'),(1687,2,'ph',0,'2017-05-19 14:09:33'),(1688,1,'temp',22,'2017-05-19 14:09:37'),(1689,1,'hum',0,'2017-05-19 14:09:37'),(1690,1,'lux',45,'2017-05-19 14:09:37'),(1691,1,'ph',30,'2017-05-19 14:09:37'),(1692,2,'temp',23,'2017-05-19 14:09:50'),(1693,2,'hum',1,'2017-05-19 14:09:50'),(1694,2,'ph',0,'2017-05-19 14:09:50'),(1695,2,'lux',1862,'2017-05-19 14:09:50'),(1696,1,'temp',22,'2017-05-19 14:09:51'),(1697,1,'hum',0,'2017-05-19 14:09:51'),(1698,1,'lux',1048,'2017-05-19 14:09:51'),(1699,1,'ph',30,'2017-05-19 14:09:51'),(1700,2,'temp',23,'2017-05-19 14:10:19'),(1701,2,'hum',2,'2017-05-19 14:10:19'),(1702,2,'lux',1850,'2017-05-19 14:10:19'),(1703,2,'ph',0,'2017-05-19 14:10:19'),(1704,1,'temp',22,'2017-05-19 14:10:20'),(1705,1,'hum',0,'2017-05-19 14:10:20'),(1706,1,'ph',30,'2017-05-19 14:10:20'),(1707,1,'lux',1048,'2017-05-19 14:10:20'),(1708,1,'temp',22,'2017-05-19 14:10:39'),(1709,1,'hum',0,'2017-05-19 14:10:39'),(1710,1,'lux',1033,'2017-05-19 14:10:39'),(1711,1,'ph',30,'2017-05-19 14:10:39'),(1712,2,'temp',23,'2017-05-19 14:10:42'),(1713,2,'hum',2,'2017-05-19 14:10:42'),(1714,2,'lux',1819,'2017-05-19 14:10:42'),(1715,2,'ph',0,'2017-05-19 14:10:42'),(1716,2,'temp',23,'2017-05-19 14:11:02'),(1717,2,'hum',2,'2017-05-19 14:11:02'),(1718,2,'lux',1805,'2017-05-19 14:11:02'),(1719,2,'ph',0,'2017-05-19 14:11:02'),(1720,1,'temp',22,'2017-05-19 14:11:03'),(1721,1,'lux',1017,'2017-05-19 14:11:03'),(1722,1,'hum',0,'2017-05-19 14:11:03'),(1723,1,'ph',30,'2017-05-19 14:11:03'),(1724,2,'temp',23,'2017-05-19 14:11:27'),(1725,2,'lux',1805,'2017-05-19 14:11:27'),(1726,2,'hum',2,'2017-05-19 14:11:27'),(1727,2,'ph',0,'2017-05-19 14:11:27'),(1728,1,'temp',22,'2017-05-19 14:11:29'),(1729,1,'hum',0,'2017-05-19 14:11:29'),(1730,1,'lux',1033,'2017-05-19 14:11:29'),(1731,1,'ph',30,'2017-05-19 14:11:29'),(1732,2,'hum',2,'2017-05-19 14:11:42'),(1733,2,'lux',1774,'2017-05-19 14:11:42'),(1734,2,'temp',23,'2017-05-19 14:11:42'),(1735,2,'ph',0,'2017-05-19 14:11:42'),(1736,1,'temp',23,'2017-05-19 14:11:45'),(1737,1,'hum',0,'2017-05-19 14:11:45'),(1738,1,'lux',1033,'2017-05-19 14:11:45'),(1739,1,'ph',30,'2017-05-19 14:11:45'),(1740,2,'temp',23,'2017-05-19 14:11:58'),(1741,2,'hum',2,'2017-05-19 14:11:58'),(1742,2,'lux',1774,'2017-05-19 14:11:58'),(1743,2,'ph',0,'2017-05-19 14:11:58'),(1744,1,'temp',23,'2017-05-19 14:11:59'),(1745,1,'hum',0,'2017-05-19 14:11:59'),(1746,1,'lux',1017,'2017-05-19 14:11:59'),(1747,1,'ph',30,'2017-05-19 14:11:59'),(1748,2,'temp',23,'2017-05-19 14:12:11'),(1749,2,'hum',0,'2017-05-19 14:12:12'),(1750,2,'lux',1742,'2017-05-19 14:12:12'),(1751,2,'ph',0,'2017-05-19 14:12:12'),(1752,1,'temp',23,'2017-05-19 14:12:13'),(1753,1,'hum',0,'2017-05-19 14:12:13'),(1754,1,'lux',1017,'2017-05-19 14:12:13'),(1755,1,'ph',30,'2017-05-19 14:12:13'),(1756,2,'hum',0,'2017-05-19 14:12:32'),(1757,2,'temp',23,'2017-05-19 14:12:32'),(1758,2,'lux',1758,'2017-05-19 14:12:32'),(1759,2,'ph',0,'2017-05-19 14:12:32'),(1760,1,'temp',22,'2017-05-19 14:12:33'),(1761,1,'hum',0,'2017-05-19 14:12:33'),(1762,1,'lux',1017,'2017-05-19 14:12:33'),(1763,1,'ph',30,'2017-05-19 14:12:33'),(1764,2,'temp',23,'2017-05-19 14:12:44'),(1765,2,'hum',2,'2017-05-19 14:12:44'),(1766,2,'lux',1742,'2017-05-19 14:12:44'),(1767,2,'ph',0,'2017-05-19 14:12:44'),(1768,1,'temp',23,'2017-05-19 14:12:50'),(1769,1,'hum',0,'2017-05-19 14:12:50'),(1770,1,'lux',1001,'2017-05-19 14:12:50'),(1771,1,'ph',30,'2017-05-19 14:12:50'),(1772,1,'temp',23,'2017-05-19 14:13:03'),(1773,1,'hum',0,'2017-05-19 14:13:03'),(1774,1,'lux',986,'2017-05-19 14:13:03'),(1775,1,'ph',30,'2017-05-19 14:13:03'),(1776,2,'temp',23,'2017-05-19 14:13:05'),(1777,2,'hum',0,'2017-05-19 14:13:05'),(1778,2,'lux',1727,'2017-05-19 14:13:05'),(1779,2,'ph',0,'2017-05-19 14:13:05'),(1780,1,'hum',0,'2017-05-19 14:13:21'),(1781,1,'temp',23,'2017-05-19 14:13:21'),(1782,1,'lux',970,'2017-05-19 14:13:21'),(1783,1,'ph',30,'2017-05-19 14:13:21'),(1784,2,'ph',0,'2017-05-19 14:13:22'),(1785,2,'lux',1682,'2017-05-19 14:13:22'),(1786,2,'hum',0,'2017-05-19 14:13:22'),(1787,2,'temp',23,'2017-05-19 14:13:22'),(1788,2,'ph',0,'2017-05-19 14:13:47'),(1789,2,'lux',1643,'2017-05-19 14:13:47'),(1790,2,'hum',1,'2017-05-19 14:13:47'),(1791,2,'temp',24,'2017-05-19 14:13:47'),(1792,1,'temp',23,'2017-05-19 14:13:53'),(1793,1,'hum',0,'2017-05-19 14:13:53'),(1794,1,'lux',939,'2017-05-19 14:13:53'),(1795,1,'ph',30,'2017-05-19 14:13:53'),(1796,1,'temp',23,'2017-05-19 14:14:15'),(1797,1,'ph',30,'2017-05-19 14:14:15'),(1798,1,'lux',912,'2017-05-19 14:14:15'),(1799,1,'hum',0,'2017-05-19 14:14:15'),(1800,2,'temp',24,'2017-05-19 14:14:16'),(1801,2,'hum',1,'2017-05-19 14:14:16'),(1802,2,'lux',1612,'2017-05-19 14:14:16'),(1803,2,'ph',0,'2017-05-19 14:14:16'),(1804,2,'temp',24,'2017-05-19 14:14:31'),(1805,2,'ph',0,'2017-05-19 14:14:31'),(1806,2,'lux',1599,'2017-05-19 14:14:31'),(1807,2,'hum',1,'2017-05-19 14:14:31'),(1808,1,'hum',0,'2017-05-19 14:14:33'),(1809,1,'temp',23,'2017-05-19 14:14:33'),(1810,1,'lux',912,'2017-05-19 14:14:33'),(1811,1,'ph',30,'2017-05-19 14:14:33'),(1812,1,'hum',0,'2017-05-19 14:14:54'),(1813,1,'temp',23,'2017-05-19 14:14:54'),(1814,1,'lux',912,'2017-05-19 14:14:54'),(1815,1,'ph',30,'2017-05-19 14:14:54'),(1816,2,'lux',1612,'2017-05-19 14:14:57'),(1817,2,'temp',24,'2017-05-19 14:14:57'),(1818,2,'hum',1,'2017-05-19 14:14:57'),(1819,2,'ph',0,'2017-05-19 14:14:57'),(1820,2,'temp',24,'2017-05-19 14:15:16'),(1821,2,'hum',1,'2017-05-19 14:15:16'),(1822,2,'lux',1628,'2017-05-19 14:15:16'),(1823,2,'ph',0,'2017-05-19 14:15:16'),(1824,1,'temp',23,'2017-05-19 14:15:21'),(1825,1,'hum',0,'2017-05-19 14:15:21'),(1826,1,'lux',912,'2017-05-19 14:15:21'),(1827,1,'ph',30,'2017-05-19 14:15:21'),(1828,2,'hum',1,'2017-05-19 14:15:38'),(1829,2,'temp',24,'2017-05-19 14:15:38'),(1830,2,'lux',1643,'2017-05-19 14:15:38'),(1831,2,'ph',0,'2017-05-19 14:15:38'),(1832,1,'temp',23,'2017-05-19 14:15:40'),(1833,1,'lux',927,'2017-05-19 14:15:40'),(1834,1,'ph',30,'2017-05-19 14:15:40'),(1835,1,'hum',0,'2017-05-19 14:15:40'),(1836,2,'ph',0,'2017-05-19 14:15:51'),(1837,2,'temp',24,'2017-05-19 14:15:51'),(1838,2,'lux',1628,'2017-05-19 14:15:51'),(1839,2,'hum',1,'2017-05-19 14:15:51'),(1840,1,'hum',0,'2017-05-19 14:16:03'),(1841,1,'temp',23,'2017-05-19 14:16:03'),(1842,1,'lux',912,'2017-05-19 14:16:03'),(1843,1,'ph',30,'2017-05-19 14:16:03'),(1844,2,'temp',24,'2017-05-19 14:16:08'),(1845,2,'ph',0,'2017-05-19 14:16:08'),(1846,2,'lux',1612,'2017-05-19 14:16:08'),(1847,2,'hum',1,'2017-05-19 14:16:08'),(1848,2,'lux',1612,'2017-05-19 14:16:30'),(1849,2,'hum',1,'2017-05-19 14:16:30'),(1850,2,'temp',24,'2017-05-19 14:16:30'),(1851,2,'ph',0,'2017-05-19 14:16:30'),(1852,1,'temp',23,'2017-05-19 14:16:33'),(1853,1,'hum',0,'2017-05-19 14:16:33'),(1854,1,'lux',896,'2017-05-19 14:16:33'),(1855,1,'ph',30,'2017-05-19 14:16:33'),(1856,1,'temp',23,'2017-05-19 14:16:46'),(1857,1,'hum',0,'2017-05-19 14:16:46'),(1858,1,'lux',880,'2017-05-19 14:16:46'),(1859,1,'ph',30,'2017-05-19 14:16:46'),(1860,2,'temp',24,'2017-05-19 14:16:52'),(1861,2,'hum',1,'2017-05-19 14:16:52'),(1862,2,'lux',1583,'2017-05-19 14:16:52'),(1863,2,'ph',0,'2017-05-19 14:16:52'),(1864,1,'lux',880,'2017-05-19 14:17:06'),(1865,1,'temp',23,'2017-05-19 14:17:06'),(1866,1,'ph',30,'2017-05-19 14:17:06'),(1867,1,'hum',0,'2017-05-19 14:17:06'),(1868,2,'lux',1551,'2017-05-19 14:17:18'),(1869,2,'hum',1,'2017-05-19 14:17:18'),(1870,2,'temp',24,'2017-05-19 14:17:18'),(1871,2,'ph',0,'2017-05-19 14:17:18'),(1872,1,'ph',30,'2017-05-19 14:17:19'),(1873,1,'lux',880,'2017-05-19 14:17:19'),(1874,1,'hum',0,'2017-05-19 14:17:19'),(1875,1,'temp',23,'2017-05-19 14:17:19'),(1876,2,'temp',24,'2017-05-19 14:17:34'),(1877,2,'lux',1504,'2017-05-19 14:17:34'),(1878,2,'ph',0,'2017-05-19 14:17:34'),(1879,2,'hum',1,'2017-05-19 14:17:34'),(1880,1,'temp',23,'2017-05-19 14:17:35'),(1881,1,'hum',0,'2017-05-19 14:17:35'),(1882,1,'lux',880,'2017-05-19 14:17:35'),(1883,1,'ph',30,'2017-05-19 14:17:35'),(1884,2,'temp',24,'2017-05-19 14:17:50'),(1885,2,'hum',1,'2017-05-19 14:17:50'),(1886,2,'lux',1490,'2017-05-19 14:17:50'),(1887,2,'ph',0,'2017-05-19 14:17:50'),(1888,1,'hum',0,'2017-05-19 14:17:55'),(1889,1,'temp',23,'2017-05-19 14:17:55'),(1890,1,'lux',880,'2017-05-19 14:17:55'),(1891,1,'ph',30,'2017-05-19 14:17:55'),(1892,2,'hum',1,'2017-05-19 14:18:04'),(1893,2,'lux',1473,'2017-05-19 14:18:04'),(1894,2,'temp',24,'2017-05-19 14:18:04'),(1895,2,'ph',0,'2017-05-19 14:18:04'),(1896,1,'temp',23,'2017-05-19 14:18:09'),(1897,1,'lux',833,'2017-05-19 14:18:09'),(1898,1,'hum',0,'2017-05-19 14:18:09'),(1899,1,'ph',30,'2017-05-19 14:18:09'),(1900,1,'temp',23,'2017-05-19 14:18:31'),(1901,1,'hum',0,'2017-05-19 14:18:31'),(1902,1,'lux',833,'2017-05-19 14:18:31'),(1903,1,'ph',30,'2017-05-19 14:18:31'),(1904,2,'hum',1,'2017-05-19 14:18:33'),(1905,2,'temp',24,'2017-05-19 14:18:33'),(1906,2,'lux',1457,'2017-05-19 14:18:33'),(1907,2,'ph',0,'2017-05-19 14:18:33'),(1908,2,'temp',24,'2017-05-19 14:18:53'),(1909,2,'lux',1473,'2017-05-19 14:18:53'),(1910,2,'hum',1,'2017-05-19 14:18:53'),(1911,2,'ph',0,'2017-05-19 14:18:53'),(1912,1,'hum',0,'2017-05-19 14:18:59'),(1913,1,'temp',23,'2017-05-19 14:18:59'),(1914,1,'lux',833,'2017-05-19 14:18:59'),(1915,1,'ph',30,'2017-05-19 14:18:59'),(1916,2,'temp',24,'2017-05-19 14:19:19'),(1917,2,'hum',1,'2017-05-19 14:19:19'),(1918,2,'lux',1506,'2017-05-19 14:19:19'),(1919,2,'ph',0,'2017-05-19 14:19:19'),(1920,1,'hum',0,'2017-05-19 14:19:21'),(1921,1,'temp',23,'2017-05-19 14:19:21'),(1922,1,'lux',880,'2017-05-19 14:19:21'),(1923,1,'ph',30,'2017-05-19 14:19:21'),(1924,1,'hum',0,'2017-05-19 14:19:34'),(1925,1,'temp',23,'2017-05-19 14:19:34'),(1926,1,'lux',911,'2017-05-19 14:19:34'),(1927,1,'ph',30,'2017-05-19 14:19:34'),(1928,2,'hum',1,'2017-05-19 14:19:36'),(1929,2,'lux',1553,'2017-05-19 14:19:36'),(1930,2,'temp',24,'2017-05-19 14:19:36'),(1931,2,'ph',0,'2017-05-19 14:19:36'),(1932,1,'temp',23,'2017-05-19 14:19:56'),(1933,1,'hum',0,'2017-05-19 14:19:56'),(1934,1,'lux',911,'2017-05-19 14:19:56'),(1935,1,'ph',30,'2017-05-19 14:19:56'),(1936,2,'temp',24,'2017-05-19 14:19:57'),(1937,2,'hum',1,'2017-05-19 14:19:57'),(1938,2,'lux',1583,'2017-05-19 14:19:57'),(1939,2,'ph',0,'2017-05-19 14:19:57'),(1940,1,'temp',23,'2017-05-19 14:20:16'),(1941,1,'lux',927,'2017-05-19 14:20:16'),(1942,1,'ph',30,'2017-05-19 14:20:16'),(1943,1,'hum',0,'2017-05-19 14:20:16'),(1944,2,'hum',1,'2017-05-19 14:20:20'),(1945,2,'temp',24,'2017-05-19 14:20:20'),(1946,2,'lux',1599,'2017-05-19 14:20:20'),(1947,2,'ph',0,'2017-05-19 14:20:20'),(1948,2,'hum',1,'2017-05-19 14:20:34'),(1949,2,'temp',24,'2017-05-19 14:20:34'),(1950,2,'lux',1599,'2017-05-19 14:20:34'),(1951,2,'ph',0,'2017-05-19 14:20:34'),(1952,1,'temp',23,'2017-05-19 14:20:34'),(1953,1,'hum',0,'2017-05-19 14:20:34'),(1954,1,'ph',30,'2017-05-19 14:20:34'),(1955,1,'lux',911,'2017-05-19 14:20:34'),(1956,2,'hum',1,'2017-05-19 14:20:47'),(1957,2,'lux',1599,'2017-05-19 14:20:47'),(1958,2,'ph',0,'2017-05-19 14:20:47'),(1959,2,'temp',24,'2017-05-19 14:20:47'),(1960,1,'temp',23,'2017-05-19 14:20:48'),(1961,1,'lux',927,'2017-05-19 14:20:48'),(1962,1,'ph',30,'2017-05-19 14:20:48'),(1963,1,'hum',0,'2017-05-19 14:20:48'),(1964,2,'temp',24,'2017-05-19 14:21:04'),(1965,2,'hum',1,'2017-05-19 14:21:04'),(1966,2,'lux',1557,'2017-05-19 14:21:04'),(1967,2,'ph',0,'2017-05-19 14:21:04'),(1968,1,'hum',0,'2017-05-19 14:21:07'),(1969,1,'temp',23,'2017-05-19 14:21:07'),(1970,1,'lux',896,'2017-05-19 14:21:07'),(1971,1,'ph',30,'2017-05-19 14:21:07'),(1972,1,'temp',23,'2017-05-19 14:21:19'),(1973,1,'hum',0,'2017-05-19 14:21:19'),(1974,1,'lux',880,'2017-05-19 14:21:19'),(1975,1,'ph',30,'2017-05-19 14:21:19'),(1976,2,'temp',24,'2017-05-19 14:21:20'),(1977,2,'hum',1,'2017-05-19 14:21:20'),(1978,2,'lux',1541,'2017-05-19 14:21:20'),(1979,2,'ph',0,'2017-05-19 14:21:20'),(1980,1,'temp',23,'2017-05-19 14:21:42'),(1981,1,'hum',0,'2017-05-19 14:21:42'),(1982,1,'lux',864,'2017-05-19 14:21:42'),(1983,1,'ph',30,'2017-05-19 14:21:42'),(1984,2,'hum',1,'2017-05-19 14:21:50'),(1985,2,'lux',1494,'2017-05-19 14:21:50'),(1986,2,'ph',0,'2017-05-19 14:21:50'),(1987,2,'temp',24,'2017-05-19 14:21:50'),(1988,2,'lux',1447,'2017-05-19 14:22:09'),(1989,2,'hum',1,'2017-05-19 14:22:09'),(1990,2,'temp',24,'2017-05-19 14:22:09'),(1991,2,'ph',0,'2017-05-19 14:22:09'),(1992,1,'temp',23,'2017-05-19 14:22:11'),(1993,1,'hum',0,'2017-05-19 14:22:11'),(1994,1,'lux',833,'2017-05-19 14:22:11'),(1995,1,'ph',30,'2017-05-19 14:22:11'),(1996,1,'temp',23,'2017-05-19 14:22:29'),(1997,1,'hum',0,'2017-05-19 14:22:29'),(1998,1,'lux',818,'2017-05-19 14:22:29'),(1999,1,'ph',30,'2017-05-19 14:22:29'),(2000,2,'temp',24,'2017-05-19 14:22:32'),(2001,2,'hum',1,'2017-05-19 14:22:32'),(2002,2,'lux',1430,'2017-05-19 14:22:32'),(2003,2,'ph',0,'2017-05-19 14:22:32'),(2004,1,'temp',23,'2017-05-19 14:22:52'),(2005,1,'lux',818,'2017-05-19 14:22:52'),(2006,1,'hum',0,'2017-05-19 14:22:52'),(2007,1,'ph',30,'2017-05-19 14:22:52'),(2008,2,'temp',24,'2017-05-19 14:22:52'),(2009,2,'hum',1,'2017-05-19 14:22:52'),(2010,2,'lux',1400,'2017-05-19 14:22:52'),(2011,2,'ph',0,'2017-05-19 14:22:52'),(2012,1,'hum',0,'2017-05-19 14:23:12'),(2013,1,'temp',23,'2017-05-19 14:23:12'),(2014,1,'lux',818,'2017-05-19 14:23:12'),(2015,1,'ph',30,'2017-05-19 14:23:12'),(2016,2,'temp',24,'2017-05-19 14:23:13'),(2017,2,'lux',1400,'2017-05-19 14:23:13'),(2018,2,'hum',1,'2017-05-19 14:23:13'),(2019,2,'ph',0,'2017-05-19 14:23:13'),(2020,1,'temp',23,'2017-05-19 14:23:38'),(2021,1,'hum',0,'2017-05-19 14:23:38'),(2022,1,'lux',821,'2017-05-19 14:23:38'),(2023,1,'ph',30,'2017-05-19 14:23:38'),(2024,2,'temp',24,'2017-05-19 14:23:39'),(2025,2,'hum',1,'2017-05-19 14:23:39'),(2026,2,'lux',1414,'2017-05-19 14:23:39'),(2027,2,'ph',0,'2017-05-19 14:23:39'),(2028,2,'temp',24,'2017-05-19 14:23:52'),(2029,2,'hum',1,'2017-05-19 14:23:52'),(2030,2,'lux',1416,'2017-05-19 14:23:52'),(2031,2,'ph',0,'2017-05-19 14:23:52'),(2032,1,'temp',23,'2017-05-19 14:23:53'),(2033,1,'hum',0,'2017-05-19 14:23:53'),(2034,1,'lux',837,'2017-05-19 14:23:53'),(2035,1,'ph',30,'2017-05-19 14:23:53'),(2036,2,'temp',24,'2017-05-19 14:24:11'),(2037,2,'hum',1,'2017-05-19 14:24:11'),(2038,2,'lux',1430,'2017-05-19 14:24:11'),(2039,2,'ph',0,'2017-05-19 14:24:11'),(2040,1,'temp',23,'2017-05-19 14:24:12'),(2041,1,'hum',0,'2017-05-19 14:24:12'),(2042,1,'lux',837,'2017-05-19 14:24:12'),(2043,1,'ph',30,'2017-05-19 14:24:12'),(2044,1,'temp',23,'2017-05-19 14:24:25'),(2045,1,'hum',0,'2017-05-19 14:24:25'),(2046,1,'lux',851,'2017-05-19 14:24:25'),(2047,1,'ph',30,'2017-05-19 14:24:25'),(2048,2,'ph',0,'2017-05-19 14:24:34'),(2049,2,'lux',1463,'2017-05-19 14:24:34'),(2050,2,'hum',1,'2017-05-19 14:24:34'),(2051,2,'temp',24,'2017-05-19 14:24:34'),(2052,1,'temp',23,'2017-05-19 14:24:49'),(2053,1,'hum',0,'2017-05-19 14:24:49'),(2054,1,'lux',868,'2017-05-19 14:24:49'),(2055,1,'ph',30,'2017-05-19 14:24:49'),(2056,2,'temp',24,'2017-05-19 14:24:50'),(2057,2,'hum',1,'2017-05-19 14:24:50'),(2058,2,'lux',1463,'2017-05-19 14:24:50'),(2059,2,'ph',0,'2017-05-19 14:24:50'),(2060,1,'temp',23,'2017-05-19 14:25:04'),(2061,1,'hum',0,'2017-05-19 14:25:04'),(2062,1,'lux',898,'2017-05-19 14:25:04'),(2063,1,'ph',30,'2017-05-19 14:25:04'),(2064,2,'lux',1494,'2017-05-19 14:25:05'),(2065,2,'hum',1,'2017-05-19 14:25:05'),(2066,2,'temp',24,'2017-05-19 14:25:05'),(2067,2,'ph',0,'2017-05-19 14:25:05'),(2068,2,'temp',24,'2017-05-19 14:25:24'),(2069,2,'hum',1,'2017-05-19 14:25:24'),(2070,2,'lux',1541,'2017-05-19 14:25:24'),(2071,2,'ph',0,'2017-05-19 14:25:24'),(2072,1,'hum',0,'2017-05-19 14:25:25'),(2073,1,'temp',23,'2017-05-19 14:25:25'),(2074,1,'lux',915,'2017-05-19 14:25:25'),(2075,1,'ph',30,'2017-05-19 14:25:25'),(2076,2,'temp',24,'2017-05-19 14:25:49'),(2077,2,'lux',1573,'2017-05-19 14:25:49'),(2078,2,'hum',1,'2017-05-19 14:25:49'),(2079,2,'ph',0,'2017-05-19 14:25:49'),(2080,1,'temp',23,'2017-05-19 14:25:50'),(2081,1,'lux',915,'2017-05-19 14:25:50'),(2082,1,'ph',30,'2017-05-19 14:25:50'),(2083,1,'hum',0,'2017-05-19 14:25:50'),(2084,2,'hum',1,'2017-05-19 14:26:06'),(2085,2,'temp',24,'2017-05-19 14:26:06'),(2086,2,'lux',1633,'2017-05-19 14:26:06'),(2087,2,'ph',0,'2017-05-19 14:26:06'),(2088,1,'temp',23,'2017-05-19 14:26:07'),(2089,1,'hum',0,'2017-05-19 14:26:07'),(2090,1,'lux',976,'2017-05-19 14:26:07'),(2091,1,'ph',30,'2017-05-19 14:26:07'),(2092,1,'hum',0,'2017-05-19 14:26:20'),(2093,1,'temp',23,'2017-05-19 14:26:20'),(2094,1,'ph',30,'2017-05-19 14:26:20'),(2095,1,'lux',976,'2017-05-19 14:26:20'),(2096,2,'temp',24,'2017-05-19 14:26:20'),(2097,2,'hum',1,'2017-05-19 14:26:20'),(2098,2,'lux',1648,'2017-05-19 14:26:20'),(2099,2,'ph',0,'2017-05-19 14:26:20'),(2100,2,'lux',1677,'2017-05-19 14:26:32'),(2101,2,'hum',1,'2017-05-19 14:26:32'),(2102,2,'temp',24,'2017-05-19 14:26:32'),(2103,2,'ph',0,'2017-05-19 14:26:32'),(2104,1,'temp',23,'2017-05-19 14:26:34'),(2105,1,'hum',0,'2017-05-19 14:26:34'),(2106,1,'lux',992,'2017-05-19 14:26:34'),(2107,1,'ph',30,'2017-05-19 14:26:34'),(2108,1,'temp',23,'2017-05-19 14:26:46'),(2109,1,'hum',0,'2017-05-19 14:26:46'),(2110,1,'lux',1007,'2017-05-19 14:26:46'),(2111,1,'ph',30,'2017-05-19 14:26:46'),(2112,2,'temp',24,'2017-05-19 14:26:46'),(2113,2,'hum',1,'2017-05-19 14:26:46'),(2114,2,'lux',1677,'2017-05-19 14:26:46'),(2115,2,'ph',0,'2017-05-19 14:26:46'),(2116,2,'temp',24,'2017-05-19 14:27:01'),(2117,2,'ph',0,'2017-05-19 14:27:01'),(2118,2,'lux',1692,'2017-05-19 14:27:01'),(2119,2,'hum',1,'2017-05-19 14:27:01'),(2120,1,'ph',30,'2017-05-19 14:27:06'),(2121,1,'hum',0,'2017-05-19 14:27:06'),(2122,1,'temp',23,'2017-05-19 14:27:06'),(2123,1,'lux',1007,'2017-05-19 14:27:06'),(2124,2,'temp',24,'2017-05-19 14:27:19'),(2125,2,'ph',0,'2017-05-19 14:27:19'),(2126,2,'lux',1706,'2017-05-19 14:27:19'),(2127,2,'hum',1,'2017-05-19 14:27:19'),(2128,1,'temp',23,'2017-05-19 14:27:20'),(2129,1,'hum',0,'2017-05-19 14:27:20'),(2130,1,'lux',1007,'2017-05-19 14:27:20'),(2131,1,'ph',30,'2017-05-19 14:27:20'),(2132,1,'temp',23,'2017-05-19 14:27:36'),(2133,1,'lux',1023,'2017-05-19 14:27:36'),(2134,1,'hum',0,'2017-05-19 14:27:36'),(2135,1,'ph',30,'2017-05-19 14:27:36'),(2136,2,'temp',24,'2017-05-19 14:27:37'),(2137,2,'hum',1,'2017-05-19 14:27:37'),(2138,2,'lux',1722,'2017-05-19 14:27:37'),(2139,2,'ph',0,'2017-05-19 14:27:37'),(2140,2,'temp',24,'2017-05-19 14:27:50'),(2141,2,'hum',1,'2017-05-19 14:27:50'),(2142,2,'lux',1737,'2017-05-19 14:27:50'),(2143,2,'ph',0,'2017-05-19 14:27:50'),(2144,1,'temp',23,'2017-05-19 14:27:51'),(2145,1,'hum',0,'2017-05-19 14:27:51'),(2146,1,'lux',1023,'2017-05-19 14:27:51'),(2147,1,'ph',30,'2017-05-19 14:27:51'),(2148,1,'lux',1011,'2017-05-19 14:28:06'),(2149,1,'ph',30,'2017-05-19 14:28:06'),(2150,1,'hum',0,'2017-05-19 14:28:06'),(2151,1,'temp',23,'2017-05-19 14:28:06'),(2152,2,'hum',1,'2017-05-19 14:28:08'),(2153,2,'temp',24,'2017-05-19 14:28:08'),(2154,2,'lux',1741,'2017-05-19 14:28:08'),(2155,2,'ph',0,'2017-05-19 14:28:08'),(2156,1,'temp',23,'2017-05-19 14:28:18'),(2157,1,'hum',0,'2017-05-19 14:28:18'),(2158,1,'lux',1027,'2017-05-19 14:28:18'),(2159,1,'ph',30,'2017-05-19 14:28:18'),(2160,2,'temp',24,'2017-05-19 14:28:21'),(2161,2,'lux',1741,'2017-05-19 14:28:21'),(2162,2,'hum',1,'2017-05-19 14:28:21'),(2163,2,'ph',0,'2017-05-19 14:28:21'),(2164,2,'temp',24,'2017-05-19 14:28:34'),(2165,2,'hum',1,'2017-05-19 14:28:34'),(2166,2,'lux',1741,'2017-05-19 14:28:34'),(2167,2,'ph',0,'2017-05-19 14:28:34'),(2168,1,'temp',23,'2017-05-19 14:28:34'),(2169,1,'hum',0,'2017-05-19 14:28:34'),(2170,1,'lux',1027,'2017-05-19 14:28:34'),(2171,1,'ph',30,'2017-05-19 14:28:34'),(2172,1,'ph',30,'2017-05-19 14:28:47'),(2173,1,'temp',23,'2017-05-19 14:28:47'),(2174,1,'lux',1042,'2017-05-19 14:28:47'),(2175,1,'hum',0,'2017-05-19 14:28:47'),(2176,2,'hum',1,'2017-05-19 14:28:49'),(2177,2,'temp',24,'2017-05-19 14:28:49'),(2178,2,'lux',1741,'2017-05-19 14:28:49'),(2179,2,'ph',0,'2017-05-19 14:28:49'),(2180,1,'temp',23,'2017-05-19 14:29:07'),(2181,1,'hum',0,'2017-05-19 14:29:07'),(2182,1,'lux',1027,'2017-05-19 14:29:07'),(2183,1,'ph',30,'2017-05-19 14:29:07'),(2184,2,'temp',24,'2017-05-19 14:29:10'),(2185,2,'hum',1,'2017-05-19 14:29:10'),(2186,2,'ph',0,'2017-05-19 14:29:10'),(2187,2,'lux',1741,'2017-05-19 14:29:10'),(2188,2,'temp',24,'2017-05-19 14:29:24'),(2189,2,'hum',1,'2017-05-19 14:29:24'),(2190,2,'lux',1756,'2017-05-19 14:29:24'),(2191,2,'ph',0,'2017-05-19 14:29:24'),(2192,1,'temp',23,'2017-05-19 14:29:24'),(2193,1,'hum',0,'2017-05-19 14:29:24'),(2194,1,'lux',1042,'2017-05-19 14:29:24'),(2195,1,'ph',30,'2017-05-19 14:29:24'),(2196,1,'temp',23,'2017-05-19 14:29:36'),(2197,1,'hum',0,'2017-05-19 14:29:36'),(2198,1,'lux',1042,'2017-05-19 14:29:36'),(2199,1,'ph',30,'2017-05-19 14:29:36'),(2200,2,'lux',1756,'2017-05-19 14:29:49'),(2201,2,'hum',1,'2017-05-19 14:29:49'),(2202,2,'temp',24,'2017-05-19 14:29:49'),(2203,2,'ph',0,'2017-05-19 14:29:49'),(2204,1,'temp',23,'2017-05-19 14:29:56'),(2205,1,'hum',0,'2017-05-19 14:29:56'),(2206,1,'lux',1042,'2017-05-19 14:29:56'),(2207,1,'ph',30,'2017-05-19 14:29:56'),(2208,2,'temp',24,'2017-05-19 14:30:01'),(2209,2,'lux',1787,'2017-05-19 14:30:01'),(2210,2,'hum',1,'2017-05-19 14:30:01'),(2211,2,'ph',0,'2017-05-19 14:30:01'),(2212,1,'temp',23,'2017-05-19 14:30:14'),(2213,1,'lux',1058,'2017-05-19 14:30:14'),(2214,1,'ph',30,'2017-05-19 14:30:14'),(2215,1,'hum',0,'2017-05-19 14:30:14'),(2216,2,'lux',1835,'2017-05-19 14:30:16'),(2217,2,'temp',24,'2017-05-19 14:30:16'),(2218,2,'hum',1,'2017-05-19 14:30:16'),(2219,2,'ph',0,'2017-05-19 14:30:16'),(2220,2,'lux',1866,'2017-05-19 14:30:32'),(2221,2,'temp',24,'2017-05-19 14:30:32'),(2222,2,'ph',0,'2017-05-19 14:30:32'),(2223,2,'hum',1,'2017-05-19 14:30:32'),(2224,1,'temp',23,'2017-05-19 14:30:39'),(2225,1,'hum',0,'2017-05-19 14:30:39'),(2226,1,'lux',1105,'2017-05-19 14:30:39'),(2227,1,'ph',30,'2017-05-19 14:30:39'),(2228,2,'temp',24,'2017-05-19 14:30:55'),(2229,2,'hum',1,'2017-05-19 14:30:55'),(2230,2,'lux',1899,'2017-05-19 14:30:55'),(2231,2,'ph',0,'2017-05-19 14:30:55'),(2232,1,'lux',1120,'2017-05-19 14:31:00'),(2233,1,'temp',23,'2017-05-19 14:31:00'),(2234,1,'hum',0,'2017-05-19 14:31:00'),(2235,1,'ph',30,'2017-05-19 14:31:00'),(2236,1,'temp',23,'2017-05-19 14:31:17'),(2237,1,'hum',0,'2017-05-19 14:31:17'),(2238,1,'lux',1136,'2017-05-19 14:31:17'),(2239,1,'ph',30,'2017-05-19 14:31:17'),(2240,2,'hum',1,'2017-05-19 14:31:18'),(2241,2,'temp',24,'2017-05-19 14:31:18'),(2242,2,'lux',1913,'2017-05-19 14:31:18'),(2243,2,'ph',0,'2017-05-19 14:31:18'),(2244,2,'ph',0,'2017-05-19 14:31:33'),(2245,2,'lux',1931,'2017-05-19 14:31:33'),(2246,2,'hum',1,'2017-05-19 14:31:33'),(2247,2,'temp',24,'2017-05-19 14:31:33'),(2248,1,'temp',23,'2017-05-19 14:31:35'),(2249,1,'hum',0,'2017-05-19 14:31:35'),(2250,1,'lux',1152,'2017-05-19 14:31:35'),(2251,1,'ph',30,'2017-05-19 14:31:35'),(2252,1,'temp',23,'2017-05-19 14:31:48'),(2253,1,'lux',1152,'2017-05-19 14:31:48'),(2254,1,'ph',30,'2017-05-19 14:31:48'),(2255,1,'hum',0,'2017-05-19 14:31:48'),(2256,2,'temp',24,'2017-05-19 14:31:48'),(2257,2,'hum',1,'2017-05-19 14:31:48'),(2258,2,'lux',1899,'2017-05-19 14:31:49'),(2259,2,'ph',0,'2017-05-19 14:31:49'),(2260,2,'temp',24,'2017-05-19 14:32:07'),(2261,2,'hum',1,'2017-05-19 14:32:07'),(2262,2,'lux',1915,'2017-05-19 14:32:07'),(2263,2,'ph',0,'2017-05-19 14:32:07'),(2264,1,'temp',23,'2017-05-19 14:32:12'),(2265,1,'lux',1136,'2017-05-19 14:32:12'),(2266,1,'ph',30,'2017-05-19 14:32:12'),(2267,1,'hum',0,'2017-05-19 14:32:12'),(2268,2,'hum',1,'2017-05-19 14:32:22'),(2269,2,'temp',24,'2017-05-19 14:32:22'),(2270,2,'lux',1931,'2017-05-19 14:32:22'),(2271,2,'ph',0,'2017-05-19 14:32:22'),(2272,1,'ph',30,'2017-05-19 14:32:29'),(2273,1,'lux',698,'2017-05-19 14:32:29'),(2274,1,'hum',0,'2017-05-19 14:32:29'),(2275,1,'temp',23,'2017-05-19 14:32:29'),(2276,1,'temp',23,'2017-05-19 14:32:44'),(2277,1,'ph',30,'2017-05-19 14:32:44'),(2278,1,'lux',29,'2017-05-19 14:32:44'),(2279,1,'hum',0,'2017-05-19 14:32:44'),(2280,2,'temp',24,'2017-05-19 14:32:45'),(2281,2,'hum',0,'2017-05-19 14:32:45'),(2282,2,'lux',177,'2017-05-19 14:32:45'),(2283,2,'ph',0,'2017-05-19 14:32:45'),(2284,1,'temp',23,'2017-05-19 14:32:59'),(2285,1,'hum',11,'2017-05-19 14:32:59'),(2286,1,'lux',66,'2017-05-19 14:32:59'),(2287,1,'ph',10490,'2017-05-19 14:32:59'),(2288,2,'hum',27,'2017-05-19 14:33:02'),(2289,2,'temp',24,'2017-05-19 14:33:02'),(2290,2,'lux',110,'2017-05-19 14:33:02'),(2291,2,'ph',640,'2017-05-19 14:33:02'),(2292,2,'temp',24,'2017-05-19 14:33:21'),(2293,2,'hum',1,'2017-05-19 14:33:21'),(2294,2,'lux',73,'2017-05-19 14:33:21'),(2295,2,'ph',150,'2017-05-19 14:33:21'),(2296,1,'temp',23,'2017-05-19 14:33:24'),(2297,1,'hum',11,'2017-05-19 14:33:24'),(2298,1,'lux',66,'2017-05-19 14:33:24'),(2299,1,'ph',10530,'2017-05-19 14:33:24'),(2300,2,'hum',1,'2017-05-19 14:33:37'),(2301,2,'temp',24,'2017-05-19 14:33:37'),(2302,2,'lux',90,'2017-05-19 14:33:37'),(2303,2,'ph',160,'2017-05-19 14:33:37'),(2304,1,'temp',23,'2017-05-19 14:33:39'),(2305,1,'hum',11,'2017-05-19 14:33:39'),(2306,1,'lux',48,'2017-05-19 14:33:39'),(2307,1,'ph',10560,'2017-05-19 14:33:39'),(2308,2,'temp',24,'2017-05-19 14:33:49'),(2309,2,'lux',146,'2017-05-19 14:33:49'),(2310,2,'ph',120,'2017-05-19 14:33:49'),(2311,2,'hum',1,'2017-05-19 14:33:49'),(2312,2,'temp',24,'2017-05-19 14:34:03'),(2313,2,'ph',160,'2017-05-19 14:34:03'),(2314,2,'lux',130,'2017-05-19 14:34:03'),(2315,2,'hum',1,'2017-05-19 14:34:03'),(2316,1,'hum',11,'2017-05-19 14:34:06'),(2317,1,'temp',23,'2017-05-19 14:34:06'),(2318,1,'lux',86,'2017-05-19 14:34:06'),(2319,1,'ph',10580,'2017-05-19 14:34:06'),(2320,1,'temp',22,'2017-05-19 14:34:19'),(2321,1,'hum',11,'2017-05-19 14:34:19'),(2322,1,'lux',1590,'2017-05-19 14:34:19'),(2323,1,'ph',10330,'2017-05-19 14:34:19'),(2324,2,'temp',23,'2017-05-19 14:34:19'),(2325,2,'ph',80,'2017-05-19 14:34:19'),(2326,2,'lux',2040,'2017-05-19 14:34:19'),(2327,2,'hum',1,'2017-05-19 14:34:19'),(2328,2,'lux',2025,'2017-05-19 14:34:33'),(2329,2,'temp',23,'2017-05-19 14:34:33'),(2330,2,'ph',100,'2017-05-19 14:34:33'),(2331,2,'hum',1,'2017-05-19 14:34:33'),(2332,1,'temp',22,'2017-05-19 14:34:34'),(2333,1,'hum',11,'2017-05-19 14:34:34'),(2334,1,'lux',1559,'2017-05-19 14:34:34'),(2335,1,'ph',10350,'2017-05-19 14:34:34'),(2336,1,'hum',11,'2017-05-19 14:34:51'),(2337,1,'temp',22,'2017-05-19 14:34:51'),(2338,1,'lux',1574,'2017-05-19 14:34:51'),(2339,1,'ph',10350,'2017-05-19 14:34:51'),(2340,2,'hum',1,'2017-05-19 14:34:52'),(2341,2,'temp',23,'2017-05-19 14:34:52'),(2342,2,'ph',110,'2017-05-19 14:34:52'),(2343,2,'lux',2009,'2017-05-19 14:34:52'),(2344,2,'temp',23,'2017-05-19 14:35:09'),(2345,2,'hum',1,'2017-05-19 14:35:09'),(2346,2,'lux',2009,'2017-05-19 14:35:09'),(2347,2,'ph',120,'2017-05-19 14:35:09'),(2348,1,'hum',11,'2017-05-19 14:35:10'),(2349,1,'temp',22,'2017-05-19 14:35:10'),(2350,1,'lux',1574,'2017-05-19 14:35:10'),(2351,1,'ph',10350,'2017-05-19 14:35:10'),(2352,1,'lux',1590,'2017-05-19 14:35:23'),(2353,1,'temp',22,'2017-05-19 14:35:23'),(2354,1,'ph',10370,'2017-05-19 14:35:23'),(2355,1,'hum',11,'2017-05-19 14:35:23'),(2356,2,'hum',1,'2017-05-19 14:35:24'),(2357,2,'temp',23,'2017-05-19 14:35:24'),(2358,2,'lux',2025,'2017-05-19 14:35:24'),(2359,2,'ph',130,'2017-05-19 14:35:24'),(2360,1,'hum',11,'2017-05-19 14:35:43'),(2361,1,'temp',22,'2017-05-19 14:35:43'),(2362,1,'lux',1619,'2017-05-19 14:35:43'),(2363,1,'ph',10370,'2017-05-19 14:35:43'),(2364,2,'ph',150,'2017-05-19 14:35:50'),(2365,2,'temp',24,'2017-05-19 14:35:50'),(2366,2,'lux',2054,'2017-05-19 14:35:50'),(2367,2,'hum',1,'2017-05-19 14:35:50'),(2368,1,'hum',11,'2017-05-19 14:35:56'),(2369,1,'temp',22,'2017-05-19 14:35:56'),(2370,1,'lux',1638,'2017-05-19 14:35:56'),(2371,1,'ph',10440,'2017-05-19 14:35:56'),(2372,2,'temp',24,'2017-05-19 14:36:09'),(2373,2,'hum',1,'2017-05-19 14:36:09'),(2374,2,'lux',2069,'2017-05-19 14:36:09'),(2375,2,'ph',160,'2017-05-19 14:36:09'),(2376,1,'temp',22,'2017-05-19 14:36:12'),(2377,1,'lux',1609,'2017-05-19 14:36:12'),(2378,1,'ph',9590,'2017-05-19 14:36:12'),(2379,1,'hum',14,'2017-05-19 14:36:12'),(2380,1,'temp',22,'2017-05-19 14:36:35'),(2381,1,'ph',9630,'2017-05-19 14:36:35'),(2382,1,'lux',717,'2017-05-19 14:36:35'),(2383,1,'hum',14,'2017-05-19 14:36:35'),(2384,2,'hum',1,'2017-05-19 14:36:41'),(2385,2,'temp',24,'2017-05-19 14:36:41'),(2386,2,'lux',2009,'2017-05-19 14:36:41'),(2387,2,'ph',160,'2017-05-19 14:36:41'),(2388,2,'hum',1,'2017-05-19 14:36:58'),(2389,2,'temp',24,'2017-05-19 14:36:58'),(2390,2,'lux',1994,'2017-05-19 14:36:58'),(2391,2,'ph',170,'2017-05-19 14:36:58'),(2392,1,'ph',9860,'2017-05-19 14:36:59'),(2393,1,'temp',22,'2017-05-19 14:36:59'),(2394,1,'lux',717,'2017-05-19 14:36:59'),(2395,1,'hum',12,'2017-05-19 14:36:59'),(2396,1,'temp',22,'2017-05-19 14:37:17'),(2397,1,'hum',12,'2017-05-19 14:37:17'),(2398,1,'lux',701,'2017-05-19 14:37:17'),(2399,1,'ph',9810,'2017-05-19 14:37:17'),(2400,2,'ph',170,'2017-05-19 14:37:20'),(2401,2,'hum',1,'2017-05-19 14:37:20'),(2402,2,'lux',1965,'2017-05-19 14:37:20'),(2403,2,'temp',24,'2017-05-19 14:37:20'),(2404,1003,'temp',22,'2017-05-19 14:37:45'),(2405,1003,'hum',12,'2017-05-19 14:37:45'),(2406,1003,'lux',670,'2017-05-19 14:37:45'),(2407,1003,'ph',9940,'2017-05-19 14:37:45'),(2408,1002,'hum',1,'2017-05-19 14:37:47'),(2409,1002,'lux',1935,'2017-05-19 14:37:47'),(2410,1002,'ph',180,'2017-05-19 14:37:47'),(2411,1002,'temp',24,'2017-05-19 14:37:47'),(2412,1002,'hum',1,'2017-05-19 14:38:00'),(2413,1002,'temp',24,'2017-05-19 14:38:00'),(2414,1002,'lux',1904,'2017-05-19 14:38:00'),(2415,1002,'ph',200,'2017-05-19 14:38:00'),(2416,1003,'hum',12,'2017-05-19 14:38:02'),(2417,1003,'lux',654,'2017-05-19 14:38:02'),(2418,1003,'temp',22,'2017-05-19 14:38:02'),(2419,1003,'ph',9920,'2017-05-19 14:38:02'),(2420,1002,'hum',1,'2017-05-19 14:38:12'),(2421,1002,'temp',24,'2017-05-19 14:38:12'),(2422,1002,'ph',200,'2017-05-19 14:38:12'),(2423,1002,'lux',1919,'2017-05-19 14:38:12'),(2424,1003,'temp',22,'2017-05-19 14:38:15'),(2425,1003,'hum',12,'2017-05-19 14:38:15'),(2426,1003,'lux',639,'2017-05-19 14:38:15'),(2427,1003,'ph',9960,'2017-05-19 14:38:15'),(2428,1002,'hum',1,'2017-05-19 14:38:29'),(2429,1002,'temp',24,'2017-05-19 14:38:29'),(2430,1002,'lux',1904,'2017-05-19 14:38:29'),(2431,1002,'ph',210,'2017-05-19 14:38:29'),(2432,1003,'temp',22,'2017-05-19 14:38:31'),(2433,1003,'hum',12,'2017-05-19 14:38:31'),(2434,1003,'lux',639,'2017-05-19 14:38:31'),(2435,1003,'ph',9960,'2017-05-19 14:38:31'),(2436,1002,'hum',1,'2017-05-19 14:38:49'),(2437,1002,'temp',24,'2017-05-19 14:38:49'),(2438,1002,'lux',1936,'2017-05-19 14:38:49'),(2439,1002,'ph',210,'2017-05-19 14:38:49'),(2440,1003,'temp',22,'2017-05-19 14:38:51'),(2441,1003,'hum',12,'2017-05-19 14:38:51'),(2442,1003,'lux',639,'2017-05-19 14:38:51'),(2443,1003,'ph',9960,'2017-05-19 14:38:51'),(2444,1002,'hum',1,'2017-05-19 14:39:07'),(2445,1002,'temp',24,'2017-05-19 14:39:07'),(2446,1002,'lux',1966,'2017-05-19 14:39:07'),(2447,1002,'ph',220,'2017-05-19 14:39:07'),(2448,1003,'temp',22,'2017-05-19 14:39:09'),(2449,1003,'ph',9960,'2017-05-19 14:39:09'),(2450,1003,'lux',686,'2017-05-19 14:39:09'),(2451,1003,'hum',12,'2017-05-19 14:39:09'),(2452,1002,'hum',1,'2017-05-19 14:39:20'),(2453,1002,'temp',24,'2017-05-19 14:39:20'),(2454,1002,'lux',1995,'2017-05-19 14:39:20'),(2455,1002,'ph',230,'2017-05-19 14:39:20'),(2456,1003,'temp',22,'2017-05-19 14:39:29'),(2457,1003,'hum',12,'2017-05-19 14:39:29'),(2458,1003,'lux',701,'2017-05-19 14:39:29'),(2459,1003,'ph',9920,'2017-05-19 14:39:29'),(2460,1002,'temp',24,'2017-05-19 14:39:34'),(2461,1002,'hum',1,'2017-05-19 14:39:34'),(2462,1002,'lux',2011,'2017-05-19 14:39:34'),(2463,1002,'ph',230,'2017-05-19 14:39:34'),(2464,1003,'temp',22,'2017-05-19 14:39:45'),(2465,1003,'hum',12,'2017-05-19 14:39:45'),(2466,1003,'lux',717,'2017-05-19 14:39:45'),(2467,1003,'ph',10010,'2017-05-19 14:39:45'),(2468,1002,'temp',24,'2017-05-19 14:39:47'),(2469,1002,'lux',2026,'2017-05-19 14:39:47'),(2470,1002,'hum',1,'2017-05-19 14:39:47'),(2471,1002,'ph',230,'2017-05-19 14:39:47'),(2472,1003,'temp',22,'2017-05-19 14:40:05'),(2473,1003,'hum',12,'2017-05-19 14:40:05'),(2474,1003,'lux',733,'2017-05-19 14:40:05'),(2475,1003,'ph',10010,'2017-05-19 14:40:05'),(2476,1002,'hum',1,'2017-05-19 14:40:07'),(2477,1002,'temp',24,'2017-05-19 14:40:07'),(2478,1002,'lux',2026,'2017-05-19 14:40:07'),(2479,1002,'ph',230,'2017-05-19 14:40:07'),(2480,1003,'temp',22,'2017-05-19 14:40:20'),(2481,1003,'ph',10010,'2017-05-19 14:40:20'),(2482,1003,'hum',12,'2017-05-19 14:40:20'),(2483,1003,'lux',780,'2017-05-19 14:40:20'),(2484,1002,'temp',24,'2017-05-19 14:40:22'),(2485,1002,'lux',2040,'2017-05-19 14:40:22'),(2486,1002,'hum',1,'2017-05-19 14:40:22'),(2487,1002,'ph',230,'2017-05-19 14:40:22'),(2488,1002,'temp',24,'2017-05-19 14:40:36'),(2489,1002,'hum',1,'2017-05-19 14:40:36'),(2490,1002,'lux',2070,'2017-05-19 14:40:36'),(2491,1002,'ph',250,'2017-05-19 14:40:36'),(2492,1003,'temp',22,'2017-05-19 14:40:47'),(2493,1003,'hum',12,'2017-05-19 14:40:47'),(2494,1003,'ph',9880,'2017-05-19 14:40:47'),(2495,1003,'lux',780,'2017-05-19 14:40:47'),(2496,1002,'temp',24,'2017-05-19 14:40:50'),(2497,1002,'hum',1,'2017-05-19 14:40:50'),(2498,1002,'lux',2086,'2017-05-19 14:40:50'),(2499,1002,'ph',260,'2017-05-19 14:40:50'),(2500,1001,'temp',22,'2017-05-19 14:41:44'),(2501,1001,'hum',11,'2017-05-19 14:41:44'),(2502,1001,'ph',10030,'2017-05-19 14:41:44'),(2503,1001,'lux',748,'2017-05-19 14:41:44'),(2504,1002,'temp',24,'2017-05-19 14:41:46'),(2505,1002,'hum',1,'2017-05-19 14:41:46'),(2506,1002,'lux',2180,'2017-05-19 14:41:46'),(2507,1002,'ph',270,'2017-05-19 14:41:46'),(2508,1002,'temp',24,'2017-05-19 14:42:01'),(2509,1002,'hum',1,'2017-05-19 14:42:01'),(2510,1002,'lux',2227,'2017-05-19 14:42:01'),(2511,1002,'ph',270,'2017-05-19 14:42:01'),(2512,1001,'hum',13,'2017-05-19 14:42:03'),(2513,1001,'temp',22,'2017-05-19 14:42:03'),(2514,1001,'ph',10050,'2017-05-19 14:42:03'),(2515,1001,'lux',779,'2017-05-19 14:42:03'),(2516,1003,'lux',1332,'2017-05-19 14:42:13'),(2517,1003,'temp',23,'2017-05-19 14:42:13'),(2518,1003,'hum',7,'2017-05-19 14:42:13'),(2519,1003,'ph',80,'2017-05-19 14:42:13'),(2520,1001,'temp',22,'2017-05-19 14:42:15'),(2521,1001,'hum',12,'2017-05-19 14:42:15'),(2522,1001,'lux',795,'2017-05-19 14:42:15'),(2523,1001,'ph',10070,'2017-05-19 14:42:15'),(2524,1002,'hum',1,'2017-05-19 14:42:19'),(2525,1002,'temp',24,'2017-05-19 14:42:19'),(2526,1002,'lux',2243,'2017-05-19 14:42:19'),(2527,1002,'ph',290,'2017-05-19 14:42:19'),(2528,1003,'temp',23,'2017-05-19 14:42:32'),(2529,1003,'hum',7,'2017-05-19 14:42:32'),(2530,1003,'lux',1420,'2017-05-19 14:42:32'),(2531,1003,'ph',100,'2017-05-19 14:42:32'),(2532,1001,'temp',22,'2017-05-19 14:42:33'),(2533,1001,'hum',12,'2017-05-19 14:42:33'),(2534,1001,'lux',811,'2017-05-19 14:42:33'),(2535,1001,'ph',10030,'2017-05-19 14:42:33'),(2536,1002,'hum',1,'2017-05-19 14:42:41'),(2537,1002,'temp',24,'2017-05-19 14:42:41'),(2538,1002,'lux',2273,'2017-05-19 14:42:41'),(2539,1002,'ph',280,'2017-05-19 14:42:41'),(2540,1003,'lux',1449,'2017-05-19 14:42:50'),(2541,1003,'hum',7,'2017-05-19 14:42:50'),(2542,1003,'temp',23,'2017-05-19 14:42:50'),(2543,1003,'ph',80,'2017-05-19 14:42:50'),(2544,1001,'temp',22,'2017-05-19 14:42:53'),(2545,1001,'hum',13,'2017-05-19 14:42:53'),(2546,1001,'lux',810,'2017-05-19 14:42:53'),(2547,1001,'ph',10090,'2017-05-19 14:42:53'),(2548,1002,'temp',24,'2017-05-19 14:42:55'),(2549,1002,'hum',1,'2017-05-19 14:42:55'),(2550,1002,'lux',2259,'2017-05-19 14:42:55'),(2551,1002,'ph',280,'2017-05-19 14:42:55'),(2552,1002,'temp',24,'2017-05-19 14:43:08'),(2553,1002,'lux',2259,'2017-05-19 14:43:08'),(2554,1002,'hum',1,'2017-05-19 14:43:08'),(2555,1002,'ph',280,'2017-05-19 14:43:08'),(2556,1003,'temp',23,'2017-05-19 14:43:09'),(2557,1003,'lux',1449,'2017-05-19 14:43:09'),(2558,1003,'hum',7,'2017-05-19 14:43:09'),(2559,1003,'ph',100,'2017-05-19 14:43:09'),(2560,1001,'hum',11,'2017-05-19 14:43:10'),(2561,1001,'temp',22,'2017-05-19 14:43:10'),(2562,1001,'lux',159,'2017-05-19 14:43:10'),(2563,1001,'ph',10050,'2017-05-19 14:43:10'),(2564,1002,'hum',1,'2017-05-19 14:43:24'),(2565,1002,'lux',2259,'2017-05-19 14:43:24'),(2566,1002,'temp',24,'2017-05-19 14:43:24'),(2567,1002,'ph',280,'2017-05-19 14:43:24'),(2568,1001,'hum',13,'2017-05-19 14:43:25'),(2569,1001,'temp',22,'2017-05-19 14:43:25'),(2570,1001,'lux',142,'2017-05-19 14:43:25'),(2571,1001,'ph',10070,'2017-05-19 14:43:25'),(2572,1003,'temp',23,'2017-05-19 14:43:27'),(2573,1003,'hum',7,'2017-05-19 14:43:27'),(2574,1003,'lux',1420,'2017-05-19 14:43:27'),(2575,1003,'ph',100,'2017-05-19 14:43:27'),(2576,1003,'temp',24,'2017-05-19 14:43:41'),(2577,1003,'hum',7,'2017-05-19 14:43:41'),(2578,1003,'lux',1420,'2017-05-19 14:43:41'),(2579,1003,'ph',100,'2017-05-19 14:43:41'),(2580,1002,'hum',1,'2017-05-19 14:43:46'),(2581,1002,'temp',24,'2017-05-19 14:43:46'),(2582,1002,'lux',2243,'2017-05-19 14:43:46'),(2583,1002,'ph',290,'2017-05-19 14:43:46'),(2584,1001,'temp',22,'2017-05-19 14:43:48'),(2585,1001,'hum',11,'2017-05-19 14:43:48'),(2586,1001,'lux',105,'2017-05-19 14:43:48'),(2587,1001,'ph',10070,'2017-05-19 14:43:48'),(2588,1001,'temp',22,'2017-05-19 14:44:00'),(2589,1001,'hum',11,'2017-05-19 14:44:00'),(2590,1001,'lux',795,'2017-05-19 14:44:00'),(2591,1001,'ph',10110,'2017-05-19 14:44:00'),(2592,1003,'ph',100,'2017-05-19 14:44:02'),(2593,1003,'lux',1420,'2017-05-19 14:44:02'),(2594,1003,'hum',7,'2017-05-19 14:44:02'),(2595,1003,'temp',24,'2017-05-19 14:44:02'),(2596,1002,'temp',24,'2017-05-19 14:44:03'),(2597,1002,'lux',2259,'2017-05-19 14:44:03'),(2598,1002,'ph',300,'2017-05-19 14:44:03'),(2599,1002,'hum',1,'2017-05-19 14:44:03'),(2600,1002,'temp',24,'2017-05-19 14:44:16'),(2601,1002,'ph',290,'2017-05-19 14:44:16'),(2602,1002,'lux',2243,'2017-05-19 14:44:16'),(2603,1002,'hum',1,'2017-05-19 14:44:16'),(2604,1003,'lux',1434,'2017-05-19 14:44:18'),(2605,1003,'hum',7,'2017-05-19 14:44:18'),(2606,1003,'temp',24,'2017-05-19 14:44:18'),(2607,1003,'ph',100,'2017-05-19 14:44:18'),(2608,1001,'ph',10050,'2017-05-19 14:44:19'),(2609,1001,'lux',810,'2017-05-19 14:44:19'),(2610,1001,'hum',11,'2017-05-19 14:44:19'),(2611,1001,'temp',22,'2017-05-19 14:44:19'),(2612,1003,'hum',7,'2017-05-19 14:44:35'),(2613,1003,'lux',1434,'2017-05-19 14:44:35'),(2614,1003,'temp',24,'2017-05-19 14:44:35'),(2615,1003,'ph',100,'2017-05-19 14:44:35'),(2616,1001,'ph',9960,'2017-05-19 14:44:37'),(2617,1001,'lux',826,'2017-05-19 14:44:37'),(2618,1001,'temp',22,'2017-05-19 14:44:37'),(2619,1001,'hum',11,'2017-05-19 14:44:37'),(2620,1002,'hum',1,'2017-05-19 14:44:47'),(2621,1002,'temp',24,'2017-05-19 14:44:47'),(2622,1002,'lux',2259,'2017-05-19 14:44:47'),(2623,1002,'ph',300,'2017-05-19 14:44:47'),(2624,1001,'temp',22,'2017-05-19 14:44:51'),(2625,1001,'hum',13,'2017-05-19 14:44:51'),(2626,1001,'lux',826,'2017-05-19 14:44:51'),(2627,1001,'ph',9960,'2017-05-19 14:44:51'),(2628,1003,'temp',24,'2017-05-19 14:44:54'),(2629,1003,'hum',7,'2017-05-19 14:44:54'),(2630,1003,'lux',139,'2017-05-19 14:44:54'),(2631,1003,'ph',100,'2017-05-19 14:44:54'),(2632,1001,'temp',22,'2017-05-19 14:45:11'),(2633,1001,'hum',11,'2017-05-19 14:45:11'),(2634,1001,'lux',842,'2017-05-19 14:45:11'),(2635,1001,'ph',9920,'2017-05-19 14:45:11'),(2636,1002,'ph',300,'2017-05-19 14:45:12'),(2637,1002,'lux',2195,'2017-05-19 14:45:12'),(2638,1002,'hum',1,'2017-05-19 14:45:12'),(2639,1002,'temp',24,'2017-05-19 14:45:12'),(2640,1003,'temp',24,'2017-05-19 14:45:17'),(2641,1003,'hum',7,'2017-05-19 14:45:17'),(2642,1003,'lux',87,'2017-05-19 14:45:17'),(2643,1003,'ph',100,'2017-05-19 14:45:17'),(2644,1001,'hum',13,'2017-05-19 14:45:26'),(2645,1001,'temp',22,'2017-05-19 14:45:26'),(2646,1001,'lux',798,'2017-05-19 14:45:26'),(2647,1001,'ph',10050,'2017-05-19 14:45:26'),(2648,1002,'temp',24,'2017-05-19 14:45:28'),(2649,1002,'lux',2116,'2017-05-19 14:45:28'),(2650,1002,'ph',300,'2017-05-19 14:45:28'),(2651,1002,'hum',1,'2017-05-19 14:45:28'),(2652,1003,'temp',24,'2017-05-19 14:45:31'),(2653,1003,'hum',7,'2017-05-19 14:45:31'),(2654,1003,'ph',100,'2017-05-19 14:45:31'),(2655,1003,'lux',1336,'2017-05-19 14:45:31'),(2656,1001,'temp',22,'2017-05-19 14:45:44'),(2657,1001,'lux',767,'2017-05-19 14:45:44'),(2658,1001,'ph',10010,'2017-05-19 14:45:44'),(2659,1001,'hum',11,'2017-05-19 14:45:44'),(2660,1002,'temp',24,'2017-05-19 14:45:45'),(2661,1002,'hum',1,'2017-05-19 14:45:45'),(2662,1002,'lux',2055,'2017-05-19 14:45:45'),(2663,1002,'ph',310,'2017-05-19 14:45:45'),(2664,1003,'temp',24,'2017-05-19 14:45:51'),(2665,1003,'hum',7,'2017-05-19 14:45:51'),(2666,1003,'ph',110,'2017-05-19 14:45:51'),(2667,1003,'lux',1262,'2017-05-19 14:45:51'),(2668,1001,'hum',11,'2017-05-19 14:46:01'),(2669,1001,'temp',22,'2017-05-19 14:46:01'),(2670,1001,'lux',748,'2017-05-19 14:46:01'),(2671,1001,'ph',9960,'2017-05-19 14:46:01'),(2672,1002,'hum',1,'2017-05-19 14:46:04'),(2673,1002,'lux',1920,'2017-05-19 14:46:04'),(2674,1002,'ph',340,'2017-05-19 14:46:04'),(2675,1002,'temp',24,'2017-05-19 14:46:04'),(2676,1003,'temp',24,'2017-05-19 14:46:06'),(2677,1003,'hum',7,'2017-05-19 14:46:06'),(2678,1003,'lux',794,'2017-05-19 14:46:06'),(2679,1003,'ph',110,'2017-05-19 14:46:06'),(2680,1002,'temp',24,'2017-05-19 14:46:18'),(2681,1002,'lux',1778,'2017-05-19 14:46:18'),(2682,1002,'hum',1,'2017-05-19 14:46:18'),(2683,1002,'ph',350,'2017-05-19 14:46:18'),(2684,1003,'hum',7,'2017-05-19 14:46:30'),(2685,1003,'temp',24,'2017-05-19 14:46:30'),(2686,1003,'lux',1091,'2017-05-19 14:46:30'),(2687,1003,'ph',100,'2017-05-19 14:46:30'),(2688,1001,'hum',11,'2017-05-19 14:46:31'),(2689,1001,'temp',22,'2017-05-19 14:46:31'),(2690,1001,'lux',701,'2017-05-19 14:46:31'),(2691,1001,'ph',9920,'2017-05-19 14:46:31'),(2692,1002,'temp',24,'2017-05-19 14:46:43'),(2693,1002,'ph',350,'2017-05-19 14:46:43'),(2694,1002,'lux',1645,'2017-05-19 14:46:43'),(2695,1002,'hum',1,'2017-05-19 14:46:43'),(2696,1001,'temp',22,'2017-05-19 14:46:45'),(2697,1001,'lux',638,'2017-05-19 14:46:45'),(2698,1001,'ph',10010,'2017-05-19 14:46:45'),(2699,1001,'hum',11,'2017-05-19 14:46:45'),(2700,1002,'temp',24,'2017-05-19 14:46:58'),(2701,1002,'hum',1,'2017-05-19 14:46:58'),(2702,1002,'lux',1570,'2017-05-19 14:46:58'),(2703,1002,'ph',350,'2017-05-19 14:46:58'),(2704,1003,'temp',24,'2017-05-19 14:47:01'),(2705,1003,'hum',7,'2017-05-19 14:47:01'),(2706,1003,'lux',1296,'2017-05-19 14:47:01'),(2707,1003,'ph',100,'2017-05-19 14:47:01'),(2708,1001,'temp',22,'2017-05-19 14:47:03'),(2709,1001,'hum',11,'2017-05-19 14:47:03'),(2710,1001,'lux',607,'2017-05-19 14:47:03'),(2711,1001,'ph',10010,'2017-05-19 14:47:03'),(2712,1003,'lux',1193,'2017-05-19 14:47:13'),(2713,1003,'hum',7,'2017-05-19 14:47:13'),(2714,1003,'temp',24,'2017-05-19 14:47:13'),(2715,1003,'ph',100,'2017-05-19 14:47:13'),(2716,1002,'temp',24,'2017-05-19 14:47:17'),(2717,1002,'hum',1,'2017-05-19 14:47:17'),(2718,1002,'lux',1507,'2017-05-19 14:47:17'),(2719,1002,'ph',380,'2017-05-19 14:47:17'),(2720,1001,'hum',11,'2017-05-19 14:47:18'),(2721,1001,'temp',22,'2017-05-19 14:47:18'),(2722,1001,'lux',594,'2017-05-19 14:47:18'),(2723,1001,'ph',10100,'2017-05-19 14:47:18'),(2724,1003,'temp',24,'2017-05-19 14:47:30'),(2725,1003,'hum',7,'2017-05-19 14:47:30'),(2726,1003,'lux',1163,'2017-05-19 14:47:30'),(2727,1003,'ph',100,'2017-05-19 14:47:30'),(2728,1003,'temp',24,'2017-05-19 14:47:35'),(2729,1003,'hum',7,'2017-05-19 14:47:35'),(2730,1003,'lux',1163,'2017-05-19 14:47:35'),(2731,1003,'ph',100,'2017-05-19 14:47:35'),(2732,1002,'temp',24,'2017-05-19 14:47:36'),(2733,1002,'hum',1,'2017-05-19 14:47:36'),(2734,1002,'lux',1444,'2017-05-19 14:47:36'),(2735,1002,'ph',360,'2017-05-19 14:47:36'),(2736,1001,'lux',579,'2017-05-19 14:47:37'),(2737,1001,'ph',10100,'2017-05-19 14:47:37'),(2738,1001,'temp',22,'2017-05-19 14:47:37'),(2739,1001,'hum',11,'2017-05-19 14:47:37'),(2740,1002,'temp',24,'2017-05-19 14:47:50'),(2741,1002,'hum',1,'2017-05-19 14:47:50'),(2742,1002,'lux',1391,'2017-05-19 14:47:50'),(2743,1002,'ph',380,'2017-05-19 14:47:50'),(2744,1001,'temp',22,'2017-05-19 14:47:51'),(2745,1001,'ph',10100,'2017-05-19 14:47:51'),(2746,1001,'lux',547,'2017-05-19 14:47:51'),(2747,1001,'hum',11,'2017-05-19 14:47:51'),(2748,1003,'temp',24,'2017-05-19 14:47:51'),(2749,1003,'hum',7,'2017-05-19 14:47:51'),(2750,1003,'lux',1119,'2017-05-19 14:47:51'),(2751,1003,'ph',100,'2017-05-19 14:47:51'),(2752,1003,'hum',7,'2017-05-19 14:48:04'),(2753,1003,'temp',24,'2017-05-19 14:48:04'),(2754,1003,'lux',1074,'2017-05-19 14:48:04'),(2755,1003,'ph',110,'2017-05-19 14:48:04'),(2756,1001,'hum',11,'2017-05-19 14:48:05'),(2757,1001,'temp',22,'2017-05-19 14:48:05'),(2758,1001,'lux',516,'2017-05-19 14:48:05'),(2759,1001,'ph',10100,'2017-05-19 14:48:05'),(2760,1002,'ph',380,'2017-05-19 14:48:07'),(2761,1002,'hum',1,'2017-05-19 14:48:07'),(2762,1002,'lux',1316,'2017-05-19 14:48:07'),(2763,1002,'temp',24,'2017-05-19 14:48:07'),(2764,1001,'temp',22,'2017-05-19 14:48:18'),(2765,1001,'lux',516,'2017-05-19 14:48:18'),(2766,1001,'ph',10050,'2017-05-19 14:48:18'),(2767,1001,'hum',11,'2017-05-19 14:48:18'),(2768,1003,'temp',24,'2017-05-19 14:48:20'),(2769,1003,'hum',7,'2017-05-19 14:48:20'),(2770,1003,'lux',1031,'2017-05-19 14:48:20'),(2771,1003,'ph',100,'2017-05-19 14:48:20'),(2772,1002,'temp',24,'2017-05-19 14:48:23'),(2773,1002,'hum',1,'2017-05-19 14:48:23'),(2774,1002,'lux',1285,'2017-05-19 14:48:23'),(2775,1002,'ph',380,'2017-05-19 14:48:23'),(2776,1001,'ph',10080,'2017-05-19 14:48:37'),(2777,1001,'lux',516,'2017-05-19 14:48:37'),(2778,1001,'hum',11,'2017-05-19 14:48:37'),(2779,1001,'temp',22,'2017-05-19 14:48:37'),(2780,1003,'temp',24,'2017-05-19 14:48:38'),(2781,1003,'ph',100,'2017-05-19 14:48:38'),(2782,1003,'lux',990,'2017-05-19 14:48:38'),(2783,1003,'hum',7,'2017-05-19 14:48:38'),(2784,1002,'temp',24,'2017-05-19 14:48:39'),(2785,1002,'hum',1,'2017-05-19 14:48:39'),(2786,1002,'lux',1237,'2017-05-19 14:48:39'),(2787,1002,'ph',380,'2017-05-19 14:48:39'),(2788,1001,'temp',22,'2017-05-19 14:48:49'),(2789,1001,'lux',467,'2017-05-19 14:48:49'),(2790,1001,'hum',11,'2017-05-19 14:48:49'),(2791,1001,'ph',10150,'2017-05-19 14:48:49'),(2792,1003,'hum',7,'2017-05-19 14:48:52'),(2793,1003,'lux',960,'2017-05-19 14:48:52'),(2794,1003,'temp',24,'2017-05-19 14:48:52'),(2795,1003,'ph',100,'2017-05-19 14:48:52'),(2796,1001,'temp',22,'2017-05-19 14:49:03'),(2797,1001,'lux',450,'2017-05-19 14:49:03'),(2798,1001,'ph',10100,'2017-05-19 14:49:03'),(2799,1001,'hum',11,'2017-05-19 14:49:03'),(2800,1002,'temp',24,'2017-05-19 14:49:08'),(2801,1002,'hum',1,'2017-05-19 14:49:08'),(2802,1002,'ph',380,'2017-05-19 14:49:08'),(2803,1002,'lux',1190,'2017-05-19 14:49:08'),(2804,1003,'temp',24,'2017-05-19 14:49:12'),(2805,1003,'ph',100,'2017-05-19 14:49:12'),(2806,1003,'lux',945,'2017-05-19 14:49:12'),(2807,1003,'hum',7,'2017-05-19 14:49:12'),(2808,1003,'temp',24,'2017-05-19 14:49:27'),(2809,1003,'hum',7,'2017-05-19 14:49:27'),(2810,1003,'lux',932,'2017-05-19 14:49:27'),(2811,1003,'ph',100,'2017-05-19 14:49:27'),(2812,1002,'temp',24,'2017-05-19 14:49:27'),(2813,1002,'hum',1,'2017-05-19 14:49:27'),(2814,1002,'lux',1190,'2017-05-19 14:49:27'),(2815,1002,'ph',380,'2017-05-19 14:49:27'),(2816,1001,'temp',22,'2017-05-19 14:49:29'),(2817,1001,'lux',450,'2017-05-19 14:49:29'),(2818,1001,'ph',9940,'2017-05-19 14:49:29'),(2819,1001,'hum',11,'2017-05-19 14:49:29'),(2820,1001,'temp',22,'2017-05-19 14:49:43'),(2821,1001,'hum',11,'2017-05-19 14:49:43'),(2822,1001,'lux',450,'2017-05-19 14:49:43'),(2823,1001,'ph',10080,'2017-05-19 14:49:43'),(2824,1003,'temp',24,'2017-05-19 14:49:44'),(2825,1003,'hum',7,'2017-05-19 14:49:44'),(2826,1003,'ph',100,'2017-05-19 14:49:44'),(2827,1003,'lux',945,'2017-05-19 14:49:44'),(2828,1002,'temp',24,'2017-05-19 14:49:47'),(2829,1002,'hum',1,'2017-05-19 14:49:47'),(2830,1002,'ph',380,'2017-05-19 14:49:47'),(2831,1002,'lux',1206,'2017-05-19 14:49:47'),(2832,1001,'temp',22,'2017-05-19 14:49:55'),(2833,1001,'hum',11,'2017-05-19 14:49:55'),(2834,1001,'lux',467,'2017-05-19 14:49:55'),(2835,1001,'ph',10080,'2017-05-19 14:49:55'),(2836,1002,'hum',2,'2017-05-19 14:50:00'),(2837,1002,'temp',24,'2017-05-19 14:50:00'),(2838,1002,'lux',1206,'2017-05-19 14:50:00'),(2839,1002,'ph',380,'2017-05-19 14:50:00'),(2840,1003,'temp',24,'2017-05-19 14:50:02'),(2841,1003,'hum',7,'2017-05-19 14:50:02'),(2842,1003,'lux',931,'2017-05-19 14:50:02'),(2843,1003,'ph',100,'2017-05-19 14:50:02'),(2844,1001,'temp',22,'2017-05-19 14:50:13'),(2845,1001,'hum',12,'2017-05-19 14:50:13'),(2846,1001,'lux',448,'2017-05-19 14:50:13'),(2847,1001,'ph',10010,'2017-05-19 14:50:13'),(2848,1002,'temp',24,'2017-05-19 14:50:15'),(2849,1002,'lux',1221,'2017-05-19 14:50:15'),(2850,1002,'ph',380,'2017-05-19 14:50:15'),(2851,1002,'hum',2,'2017-05-19 14:50:15'),(2852,1003,'hum',7,'2017-05-19 14:50:16'),(2853,1003,'temp',24,'2017-05-19 14:50:16'),(2854,1003,'lux',945,'2017-05-19 14:50:16'),(2855,1003,'ph',110,'2017-05-19 14:50:16'),(2856,1003,'temp',24,'2017-05-19 14:50:33'),(2857,1003,'lux',964,'2017-05-19 14:50:33'),(2858,1003,'hum',7,'2017-05-19 14:50:33'),(2859,1003,'ph',100,'2017-05-19 14:50:33'),(2860,1001,'hum',12,'2017-05-19 14:50:34'),(2861,1001,'temp',22,'2017-05-19 14:50:34'),(2862,1001,'lux',465,'2017-05-19 14:50:34'),(2863,1001,'ph',10150,'2017-05-19 14:50:34'),(2864,1002,'lux',1221,'2017-05-19 14:50:38'),(2865,1002,'hum',2,'2017-05-19 14:50:38'),(2866,1002,'temp',24,'2017-05-19 14:50:38'),(2867,1002,'ph',380,'2017-05-19 14:50:38'),(2868,1001,'temp',22,'2017-05-19 14:50:52'),(2869,1001,'ph',10190,'2017-05-19 14:50:52'),(2870,1001,'lux',482,'2017-05-19 14:50:52'),(2871,1001,'hum',12,'2017-05-19 14:50:52'),(2872,1002,'ph',380,'2017-05-19 14:50:53'),(2873,1002,'lux',1253,'2017-05-19 14:50:53'),(2874,1002,'hum',2,'2017-05-19 14:50:53'),(2875,1002,'temp',24,'2017-05-19 14:50:53'),(2876,1003,'ph',110,'2017-05-19 14:50:53'),(2877,1003,'hum',7,'2017-05-19 14:50:53'),(2878,1003,'lux',979,'2017-05-19 14:50:53'),(2879,1003,'temp',24,'2017-05-19 14:50:53'),(2880,1001,'temp',22,'2017-05-19 14:51:05'),(2881,1001,'lux',498,'2017-05-19 14:51:05'),(2882,1001,'ph',10150,'2017-05-19 14:51:05'),(2883,1001,'hum',12,'2017-05-19 14:51:05'),(2884,1002,'hum',2,'2017-05-19 14:51:06'),(2885,1002,'lux',1269,'2017-05-19 14:51:06'),(2886,1002,'temp',24,'2017-05-19 14:51:06'),(2887,1002,'ph',380,'2017-05-19 14:51:06'),(2888,1003,'temp',24,'2017-05-19 14:51:07'),(2889,1003,'hum',7,'2017-05-19 14:51:07'),(2890,1003,'lux',1023,'2017-05-19 14:51:07'),(2891,1003,'ph',110,'2017-05-19 14:51:07'),(2892,1002,'hum',2,'2017-05-19 14:51:26'),(2893,1002,'temp',24,'2017-05-19 14:51:26'),(2894,1002,'lux',1285,'2017-05-19 14:51:26'),(2895,1002,'ph',390,'2017-05-19 14:51:26'),(2896,1003,'hum',7,'2017-05-19 14:51:26'),(2897,1003,'temp',24,'2017-05-19 14:51:26'),(2898,1003,'lux',1038,'2017-05-19 14:51:26'),(2899,1003,'ph',110,'2017-05-19 14:51:26'),(2900,1001,'temp',22,'2017-05-19 14:51:32'),(2901,1001,'hum',11,'2017-05-19 14:51:32'),(2902,1001,'lux',532,'2017-05-19 14:51:32'),(2903,1001,'ph',10080,'2017-05-19 14:51:32'),(2904,1003,'temp',24,'2017-05-19 14:51:42'),(2905,1003,'hum',7,'2017-05-19 14:51:42'),(2906,1003,'lux',1066,'2017-05-19 14:51:42'),(2907,1003,'ph',110,'2017-05-19 14:51:42'),(2908,1001,'temp',22,'2017-05-19 14:51:44'),(2909,1001,'hum',12,'2017-05-19 14:51:44'),(2910,1001,'lux',530,'2017-05-19 14:51:44'),(2911,1001,'ph',10190,'2017-05-19 14:51:44'),(2912,1002,'ph',380,'2017-05-19 14:51:45'),(2913,1002,'lux',1332,'2017-05-19 14:51:45'),(2914,1002,'hum',2,'2017-05-19 14:51:45'),(2915,1002,'temp',24,'2017-05-19 14:51:45'),(2916,1003,'temp',24,'2017-05-19 14:51:56'),(2917,1003,'hum',7,'2017-05-19 14:51:56'),(2918,1003,'lux',1066,'2017-05-19 14:51:56'),(2919,1003,'ph',110,'2017-05-19 14:51:56'),(2920,1002,'temp',24,'2017-05-19 14:51:57'),(2921,1002,'hum',2,'2017-05-19 14:51:57'),(2922,1002,'lux',1348,'2017-05-19 14:51:57'),(2923,1002,'ph',390,'2017-05-19 14:51:57'),(2924,1001,'temp',22,'2017-05-19 14:52:01'),(2925,1001,'hum',12,'2017-05-19 14:52:01'),(2926,1001,'lux',530,'2017-05-19 14:52:01'),(2927,1001,'ph',10190,'2017-05-19 14:52:01'),(2928,1003,'lux',1066,'2017-05-19 14:52:10'),(2929,1003,'hum',7,'2017-05-19 14:52:10'),(2930,1003,'ph',100,'2017-05-19 14:52:10'),(2931,1003,'temp',24,'2017-05-19 14:52:10'),(2932,1001,'hum',12,'2017-05-19 14:52:20'),(2933,1001,'temp',22,'2017-05-19 14:52:20'),(2934,1001,'lux',545,'2017-05-19 14:52:20'),(2935,1001,'ph',10190,'2017-05-19 14:52:20'),(2936,1002,'temp',24,'2017-05-19 14:52:22'),(2937,1002,'hum',2,'2017-05-19 14:52:22'),(2938,1002,'lux',1348,'2017-05-19 14:52:22'),(2939,1002,'ph',390,'2017-05-19 14:52:22'),(2940,1002,'ph',390,'2017-05-19 14:52:34'),(2941,1002,'temp',24,'2017-05-19 14:52:34'),(2942,1002,'hum',2,'2017-05-19 14:52:34'),(2943,1002,'lux',1381,'2017-05-19 14:52:34'),(2944,1001,'ph',10170,'2017-05-19 14:52:37'),(2945,1001,'lux',561,'2017-05-19 14:52:37'),(2946,1001,'temp',22,'2017-05-19 14:52:37'),(2947,1001,'hum',12,'2017-05-19 14:52:37'),(2948,1003,'temp',24,'2017-05-19 14:52:38'),(2949,1003,'hum',7,'2017-05-19 14:52:38'),(2950,1003,'lux',1115,'2017-05-19 14:52:38'),(2951,1003,'ph',110,'2017-05-19 14:52:38'),(2952,1001,'temp',22,'2017-05-19 14:52:49'),(2953,1001,'hum',11,'2017-05-19 14:52:49'),(2954,1001,'lux',579,'2017-05-19 14:52:49'),(2955,1001,'ph',10110,'2017-05-19 14:52:49'),(2956,1002,'temp',24,'2017-05-19 14:52:51'),(2957,1002,'hum',2,'2017-05-19 14:52:51'),(2958,1002,'lux',1395,'2017-05-19 14:52:51'),(2959,1002,'ph',400,'2017-05-19 14:52:51'),(2960,1003,'temp',24,'2017-05-19 14:52:52'),(2961,1003,'hum',7,'2017-05-19 14:52:52'),(2962,1003,'lux',1115,'2017-05-19 14:52:52'),(2963,1003,'ph',110,'2017-05-19 14:52:52'),(2964,1001,'ph',10060,'2017-05-19 14:53:03'),(2965,1001,'lux',579,'2017-05-19 14:53:03'),(2966,1001,'hum',11,'2017-05-19 14:53:03'),(2967,1001,'temp',22,'2017-05-19 14:53:03'),(2968,1002,'temp',24,'2017-05-19 14:53:05'),(2969,1002,'hum',2,'2017-05-19 14:53:05'),(2970,1002,'lux',1428,'2017-05-19 14:53:05'),(2971,1002,'ph',400,'2017-05-19 14:53:05'),(2972,1003,'hum',7,'2017-05-19 14:53:09'),(2973,1003,'temp',24,'2017-05-19 14:53:09'),(2974,1003,'ph',120,'2017-05-19 14:53:09'),(2975,1003,'lux',1144,'2017-05-19 14:53:09'),(2976,1001,'temp',22,'2017-05-19 14:53:15'),(2977,1001,'lux',577,'2017-05-19 14:53:15'),(2978,1001,'hum',12,'2017-05-19 14:53:15'),(2979,1001,'ph',10170,'2017-05-19 14:53:15'),(2980,1003,'temp',24,'2017-05-19 14:53:29'),(2981,1003,'hum',7,'2017-05-19 14:53:29'),(2982,1003,'ph',110,'2017-05-19 14:53:29'),(2983,1003,'lux',1144,'2017-05-19 14:53:29'),(2984,1001,'temp',22,'2017-05-19 14:53:29'),(2985,1001,'hum',13,'2017-05-19 14:53:29'),(2986,1001,'lux',577,'2017-05-19 14:53:29'),(2987,1001,'ph',10350,'2017-05-19 14:53:29'),(2988,1002,'temp',24,'2017-05-19 14:53:32'),(2989,1002,'lux',1444,'2017-05-19 14:53:32'),(2990,1002,'ph',400,'2017-05-19 14:53:32'),(2991,1002,'hum',2,'2017-05-19 14:53:32'),(2992,1001,'hum',13,'2017-05-19 14:53:41'),(2993,1001,'temp',22,'2017-05-19 14:53:41'),(2994,1001,'lux',594,'2017-05-19 14:53:41'),(2995,1001,'ph',10390,'2017-05-19 14:53:41'),(2996,1003,'temp',24,'2017-05-19 14:53:44'),(2997,1003,'hum',7,'2017-05-19 14:53:44'),(2998,1003,'lux',1159,'2017-05-19 14:53:44'),(2999,1003,'ph',110,'2017-05-19 14:53:44'),(3000,1002,'temp',24,'2017-05-19 14:53:58'),(3001,1002,'ph',400,'2017-05-19 14:53:58'),(3002,1002,'lux',1460,'2017-05-19 14:53:58'),(3003,1002,'hum',2,'2017-05-19 14:53:58'),(3004,1001,'temp',22,'2017-05-19 14:53:58'),(3005,1001,'hum',13,'2017-05-19 14:53:58'),(3006,1001,'lux',594,'2017-05-19 14:53:58'),(3007,1001,'ph',10390,'2017-05-19 14:53:58'),(3008,1003,'temp',24,'2017-05-19 14:54:02'),(3009,1003,'hum',7,'2017-05-19 14:54:02'),(3010,1003,'lux',1159,'2017-05-19 14:54:02'),(3011,1003,'ph',110,'2017-05-19 14:54:02'),(3012,1002,'temp',24,'2017-05-19 14:54:18'),(3013,1002,'hum',2,'2017-05-19 14:54:18'),(3014,1002,'lux',1428,'2017-05-19 14:54:18'),(3015,1002,'ph',400,'2017-05-19 14:54:18'),(3016,1001,'hum',13,'2017-05-19 14:54:18'),(3017,1001,'temp',22,'2017-05-19 14:54:18'),(3018,1001,'lux',594,'2017-05-19 14:54:18'),(3019,1001,'ph',10440,'2017-05-19 14:54:18'),(3020,1003,'ph',110,'2017-05-19 14:54:25'),(3021,1003,'lux',1174,'2017-05-19 14:54:25'),(3022,1003,'hum',7,'2017-05-19 14:54:25'),(3023,1003,'temp',24,'2017-05-19 14:54:25'),(3024,1001,'temp',22,'2017-05-19 14:54:40'),(3025,1001,'hum',13,'2017-05-19 14:54:40'),(3026,1001,'lux',594,'2017-05-19 14:54:40'),(3027,1001,'ph',10440,'2017-05-19 14:54:40'),(3028,1003,'ph',120,'2017-05-19 14:54:41'),(3029,1003,'lux',1147,'2017-05-19 14:54:41'),(3030,1003,'hum',7,'2017-05-19 14:54:41'),(3031,1003,'temp',24,'2017-05-19 14:54:41'),(3032,1002,'temp',24,'2017-05-19 14:54:45'),(3033,1002,'hum',2,'2017-05-19 14:54:45'),(3034,1002,'ph',400,'2017-05-19 14:54:45'),(3035,1002,'lux',1444,'2017-05-19 14:54:45'),(3036,1003,'temp',24,'2017-05-19 14:54:53'),(3037,1003,'hum',7,'2017-05-19 14:54:53'),(3038,1003,'lux',1147,'2017-05-19 14:54:53'),(3039,1003,'ph',110,'2017-05-19 14:54:53'),(3040,1002,'temp',24,'2017-05-19 14:55:00'),(3041,1002,'hum',2,'2017-05-19 14:55:00'),(3042,1002,'lux',1428,'2017-05-19 14:55:00'),(3043,1002,'ph',410,'2017-05-19 14:55:00'),(3044,1001,'hum',13,'2017-05-19 14:55:01'),(3045,1001,'temp',22,'2017-05-19 14:55:01'),(3046,1001,'lux',594,'2017-05-19 14:55:01'),(3047,1001,'ph',10440,'2017-05-19 14:55:01'),(3048,1001,'hum',13,'2017-05-19 14:55:14'),(3049,1001,'lux',594,'2017-05-19 14:55:14'),(3050,1001,'temp',22,'2017-05-19 14:55:14'),(3051,1001,'ph',10440,'2017-05-19 14:55:14'),(3052,1002,'temp',24,'2017-05-19 14:55:16'),(3053,1002,'hum',2,'2017-05-19 14:55:16'),(3054,1002,'ph',400,'2017-05-19 14:55:16'),(3055,1002,'lux',1460,'2017-05-19 14:55:16'),(3056,1003,'ph',110,'2017-05-19 14:55:17'),(3057,1003,'lux',1177,'2017-05-19 14:55:17'),(3058,1003,'temp',24,'2017-05-19 14:55:17'),(3059,1003,'hum',7,'2017-05-19 14:55:17'),(3060,1001,'hum',13,'2017-05-19 14:55:26'),(3061,1001,'temp',22,'2017-05-19 14:55:26'),(3062,1001,'lux',594,'2017-05-19 14:55:26'),(3063,1001,'ph',10370,'2017-05-19 14:55:26'),(3064,1003,'temp',24,'2017-05-19 14:55:33'),(3065,1003,'hum',7,'2017-05-19 14:55:33'),(3066,1003,'lux',1206,'2017-05-19 14:55:33'),(3067,1003,'ph',120,'2017-05-19 14:55:33'),(3068,1002,'temp',24,'2017-05-19 14:55:34'),(3069,1002,'hum',2,'2017-05-19 14:55:34'),(3070,1002,'lux',1476,'2017-05-19 14:55:34'),(3071,1002,'ph',410,'2017-05-19 14:55:34'),(3072,1003,'hum',7,'2017-05-19 14:55:45'),(3073,1003,'lux',1206,'2017-05-19 14:55:45'),(3074,1003,'temp',24,'2017-05-19 14:55:45'),(3075,1003,'ph',120,'2017-05-19 14:55:45'),(3076,1001,'lux',594,'2017-05-19 14:55:47'),(3077,1001,'hum',13,'2017-05-19 14:55:47'),(3078,1001,'temp',22,'2017-05-19 14:55:47'),(3079,1001,'ph',10370,'2017-05-19 14:55:47'),(3080,1002,'temp',24,'2017-05-19 14:55:48'),(3081,1002,'hum',2,'2017-05-19 14:55:48'),(3082,1002,'lux',1523,'2017-05-19 14:55:48'),(3083,1002,'ph',400,'2017-05-19 14:55:48'),(3084,1002,'hum',2,'2017-05-19 14:56:11'),(3085,1002,'temp',24,'2017-05-19 14:56:11'),(3086,1002,'lux',1539,'2017-05-19 14:56:11'),(3087,1002,'ph',410,'2017-05-19 14:56:11'),(3088,1001,'temp',22,'2017-05-19 14:56:12'),(3089,1001,'hum',13,'2017-05-19 14:56:12'),(3090,1001,'lux',594,'2017-05-19 14:56:12'),(3091,1001,'ph',10370,'2017-05-19 14:56:12'),(3092,1003,'temp',24,'2017-05-19 14:56:13'),(3093,1003,'hum',7,'2017-05-19 14:56:13'),(3094,1003,'lux',1221,'2017-05-19 14:56:13'),(3095,1003,'ph',120,'2017-05-19 14:56:13'),(3096,1002,'temp',24,'2017-05-19 14:56:25'),(3097,1002,'lux',1586,'2017-05-19 14:56:25'),(3098,1002,'hum',2,'2017-05-19 14:56:25'),(3099,1002,'ph',400,'2017-05-19 14:56:25'),(3100,1003,'temp',24,'2017-05-19 14:56:26'),(3101,1003,'hum',7,'2017-05-19 14:56:26'),(3102,1003,'lux',1267,'2017-05-19 14:56:26'),(3103,1003,'ph',120,'2017-05-19 14:56:26'),(3104,1001,'temp',22,'2017-05-19 14:56:31'),(3105,1001,'hum',13,'2017-05-19 14:56:31'),(3106,1001,'lux',624,'2017-05-19 14:56:31'),(3107,1001,'ph',10420,'2017-05-19 14:56:31'),(3108,1003,'ph',120,'2017-05-19 14:56:49'),(3109,1003,'lux',1296,'2017-05-19 14:56:49'),(3110,1003,'hum',7,'2017-05-19 14:56:49'),(3111,1003,'temp',24,'2017-05-19 14:56:49'),(3112,1002,'temp',24,'2017-05-19 14:56:50'),(3113,1002,'hum',2,'2017-05-19 14:56:50'),(3114,1002,'lux',1616,'2017-05-19 14:56:50'),(3115,1002,'ph',410,'2017-05-19 14:56:50'),(3116,1001,'temp',22,'2017-05-19 14:56:51'),(3117,1001,'hum',13,'2017-05-19 14:56:51'),(3118,1001,'lux',641,'2017-05-19 14:56:51'),(3119,1001,'ph',10370,'2017-05-19 14:56:51'),(3120,1002,'temp',24,'2017-05-19 14:57:08'),(3121,1002,'hum',2,'2017-05-19 14:57:08'),(3122,1002,'ph',430,'2017-05-19 14:57:08'),(3123,1002,'lux',1661,'2017-05-19 14:57:08'),(3124,1001,'temp',22,'2017-05-19 14:57:09'),(3125,1001,'hum',13,'2017-05-19 14:57:09'),(3126,1001,'lux',641,'2017-05-19 14:57:09'),(3127,1001,'ph',10420,'2017-05-19 14:57:09'),(3128,1003,'hum',7,'2017-05-19 14:57:10'),(3129,1003,'lux',1340,'2017-05-19 14:57:10'),(3130,1003,'ph',120,'2017-05-19 14:57:10'),(3131,1003,'temp',24,'2017-05-19 14:57:10'),(3132,1003,'ph',120,'2017-05-19 14:57:26'),(3133,1003,'hum',7,'2017-05-19 14:57:26'),(3134,1003,'lux',1355,'2017-05-19 14:57:26'),(3135,1003,'temp',24,'2017-05-19 14:57:26'),(3136,1001,'ph',10420,'2017-05-19 14:57:26'),(3137,1001,'lux',655,'2017-05-19 14:57:26'),(3138,1001,'hum',13,'2017-05-19 14:57:26'),(3139,1001,'temp',22,'2017-05-19 14:57:26'),(3140,1002,'temp',24,'2017-05-19 14:57:28'),(3141,1002,'hum',2,'2017-05-19 14:57:28'),(3142,1002,'lux',1706,'2017-05-19 14:57:28'),(3143,1002,'ph',430,'2017-05-19 14:57:28'),(3144,1002,'temp',24,'2017-05-19 14:57:42'),(3145,1002,'hum',2,'2017-05-19 14:57:42'),(3146,1002,'ph',410,'2017-05-19 14:57:42'),(3147,1002,'lux',1736,'2017-05-19 14:57:42'),(3148,1001,'temp',22,'2017-05-19 14:57:43'),(3149,1001,'hum',13,'2017-05-19 14:57:43'),(3150,1001,'lux',688,'2017-05-19 14:57:43'),(3151,1001,'ph',10420,'2017-05-19 14:57:43'),(3152,1003,'hum',7,'2017-05-19 14:57:45'),(3153,1003,'lux',1385,'2017-05-19 14:57:45'),(3154,1003,'temp',24,'2017-05-19 14:57:45'),(3155,1003,'ph',120,'2017-05-19 14:57:45'),(3156,1001,'temp',22,'2017-05-19 14:57:58'),(3157,1001,'hum',13,'2017-05-19 14:57:58'),(3158,1001,'ph',10420,'2017-05-19 14:57:58'),(3159,1001,'lux',688,'2017-05-19 14:57:58'),(3160,1003,'temp',24,'2017-05-19 14:58:00'),(3161,1003,'hum',7,'2017-05-19 14:58:00'),(3162,1003,'lux',1429,'2017-05-19 14:58:00'),(3163,1003,'ph',120,'2017-05-19 14:58:00'),(3164,1002,'temp',24,'2017-05-19 14:58:11'),(3165,1002,'ph',410,'2017-05-19 14:58:11'),(3166,1002,'lux',1783,'2017-05-19 14:58:11'),(3167,1002,'hum',2,'2017-05-19 14:58:11'),(3168,1001,'lux',688,'2017-05-19 14:58:11'),(3169,1001,'hum',13,'2017-05-19 14:58:11'),(3170,1001,'temp',22,'2017-05-19 14:58:11'),(3171,1001,'ph',10420,'2017-05-19 14:58:11'),(3172,1003,'temp',24,'2017-05-19 14:58:16'),(3173,1003,'hum',7,'2017-05-19 14:58:16'),(3174,1003,'lux',1459,'2017-05-19 14:58:16'),(3175,1003,'ph',110,'2017-05-19 14:58:16'),(3176,1001,'hum',13,'2017-05-19 14:58:23'),(3177,1001,'temp',22,'2017-05-19 14:58:23'),(3178,1001,'lux',704,'2017-05-19 14:58:23'),(3179,1001,'ph',10420,'2017-05-19 14:58:23'),(3180,1002,'temp',24,'2017-05-19 14:58:26'),(3181,1002,'hum',2,'2017-05-19 14:58:26'),(3182,1002,'lux',1830,'2017-05-19 14:58:26'),(3183,1002,'ph',430,'2017-05-19 14:58:26'),(3184,1003,'temp',24,'2017-05-19 14:58:30'),(3185,1003,'hum',7,'2017-05-19 14:58:30'),(3186,1003,'lux',1488,'2017-05-19 14:58:30'),(3187,1003,'ph',110,'2017-05-19 14:58:30'),(3188,1002,'temp',24,'2017-05-19 14:58:40'),(3189,1002,'lux',1862,'2017-05-19 14:58:40'),(3190,1002,'hum',2,'2017-05-19 14:58:40'),(3191,1002,'ph',430,'2017-05-19 14:58:40'),(3192,1003,'temp',24,'2017-05-19 14:58:46'),(3193,1003,'lux',1492,'2017-05-19 14:58:46'),(3194,1003,'ph',120,'2017-05-19 14:58:46'),(3195,1003,'hum',7,'2017-05-19 14:58:46'),(3196,1001,'temp',22,'2017-05-19 14:58:47'),(3197,1001,'hum',13,'2017-05-19 14:58:47'),(3198,1001,'lux',737,'2017-05-19 14:58:47'),(3199,1001,'ph',10370,'2017-05-19 14:58:47'),(3200,1002,'temp',24,'2017-05-19 14:58:53'),(3201,1002,'lux',1909,'2017-05-19 14:58:53'),(3202,1002,'hum',2,'2017-05-19 14:58:53'),(3203,1002,'ph',410,'2017-05-19 14:58:53'),(3204,1001,'hum',13,'2017-05-19 14:58:58'),(3205,1001,'lux',753,'2017-05-19 14:58:58'),(3206,1001,'ph',10370,'2017-05-19 14:58:58'),(3207,1001,'temp',22,'2017-05-19 14:58:58'),(3208,1003,'temp',24,'2017-05-19 14:59:01'),(3209,1003,'hum',7,'2017-05-19 14:59:01'),(3210,1003,'lux',1537,'2017-05-19 14:59:01'),(3211,1003,'ph',120,'2017-05-19 14:59:01'),(3212,1002,'hum',2,'2017-05-19 14:59:10'),(3213,1002,'temp',24,'2017-05-19 14:59:10'),(3214,1002,'lux',1941,'2017-05-19 14:59:10'),(3215,1002,'ph',410,'2017-05-19 14:59:10'),(3216,1003,'temp',24,'2017-05-19 14:59:13'),(3217,1003,'hum',7,'2017-05-19 14:59:13'),(3218,1003,'lux',1566,'2017-05-19 14:59:13'),(3219,1003,'ph',120,'2017-05-19 14:59:13'),(3220,1001,'hum',13,'2017-05-19 14:59:14'),(3221,1001,'lux',770,'2017-05-19 14:59:14'),(3222,1001,'temp',22,'2017-05-19 14:59:14'),(3223,1001,'ph',10420,'2017-05-19 14:59:14'),(3224,1001,'hum',13,'2017-05-19 14:59:29'),(3225,1001,'temp',22,'2017-05-19 14:59:29'),(3226,1001,'ph',10420,'2017-05-19 14:59:29'),(3227,1001,'lux',786,'2017-05-19 14:59:29'),(3228,1003,'temp',24,'2017-05-19 14:59:30'),(3229,1003,'hum',7,'2017-05-19 14:59:30'),(3230,1003,'lux',1595,'2017-05-19 14:59:30'),(3231,1003,'ph',120,'2017-05-19 14:59:30'),(3232,1002,'hum',2,'2017-05-19 14:59:33'),(3233,1002,'temp',24,'2017-05-19 14:59:33'),(3234,1002,'lux',2001,'2017-05-19 14:59:33'),(3235,1002,'ph',430,'2017-05-19 14:59:33'),(3236,1001,'temp',22,'2017-05-19 14:59:42'),(3237,1001,'hum',13,'2017-05-19 14:59:42'),(3238,1001,'lux',798,'2017-05-19 14:59:42'),(3239,1001,'ph',10420,'2017-05-19 14:59:42'),(3240,1003,'temp',24,'2017-05-19 14:59:45'),(3241,1003,'lux',1638,'2017-05-19 14:59:45'),(3242,1003,'hum',7,'2017-05-19 14:59:45'),(3243,1003,'ph',110,'2017-05-19 14:59:45'),(3244,1002,'ph',430,'2017-05-19 14:59:46'),(3245,1002,'lux',2075,'2017-05-19 14:59:46'),(3246,1002,'hum',2,'2017-05-19 14:59:46'),(3247,1002,'temp',24,'2017-05-19 14:59:46'),(3248,1001,'ph',10370,'2017-05-19 14:59:55'),(3249,1001,'hum',13,'2017-05-19 14:59:55'),(3250,1001,'lux',845,'2017-05-19 14:59:55'),(3251,1001,'temp',22,'2017-05-19 14:59:55'),(3252,1002,'temp',24,'2017-05-19 14:59:58'),(3253,1002,'hum',2,'2017-05-19 14:59:58'),(3254,1002,'lux',2122,'2017-05-19 14:59:58'),(3255,1002,'ph',430,'2017-05-19 14:59:58'),(3256,1003,'hum',7,'2017-05-19 14:59:59'),(3257,1003,'temp',24,'2017-05-19 14:59:59'),(3258,1003,'lux',1680,'2017-05-19 14:59:59'),(3259,1003,'ph',120,'2017-05-19 14:59:59'),(3260,1001,'temp',22,'2017-05-19 15:00:14'),(3261,1001,'hum',13,'2017-05-19 15:00:14'),(3262,1001,'lux',845,'2017-05-19 15:00:14'),(3263,1001,'ph',10420,'2017-05-19 15:00:14'),(3264,1002,'temp',24,'2017-05-19 15:00:15'),(3265,1002,'hum',2,'2017-05-19 15:00:15'),(3266,1002,'lux',2138,'2017-05-19 15:00:15'),(3267,1002,'ph',430,'2017-05-19 15:00:15'),(3268,1003,'temp',24,'2017-05-19 15:00:19'),(3269,1003,'hum',7,'2017-05-19 15:00:19'),(3270,1003,'lux',1711,'2017-05-19 15:00:19'),(3271,1003,'ph',120,'2017-05-19 15:00:19'),(3272,1003,'temp',24,'2017-05-19 15:00:33'),(3273,1003,'hum',7,'2017-05-19 15:00:33'),(3274,1003,'lux',1764,'2017-05-19 15:00:33'),(3275,1003,'ph',120,'2017-05-19 15:00:33'),(3276,1001,'lux',864,'2017-05-19 15:00:36'),(3277,1001,'temp',22,'2017-05-19 15:00:36'),(3278,1001,'ph',10420,'2017-05-19 15:00:36'),(3279,1001,'hum',13,'2017-05-19 15:00:36'),(3280,1002,'temp',24,'2017-05-19 15:00:40'),(3281,1002,'hum',2,'2017-05-19 15:00:40'),(3282,1002,'lux',2185,'2017-05-19 15:00:40'),(3283,1002,'ph',430,'2017-05-19 15:00:40'),(3284,1003,'temp',24,'2017-05-19 15:00:45'),(3285,1003,'hum',7,'2017-05-19 15:00:45'),(3286,1003,'lux',1754,'2017-05-19 15:00:45'),(3287,1003,'ph',120,'2017-05-19 15:00:45'),(3288,1001,'temp',22,'2017-05-19 15:00:52'),(3289,1001,'hum',13,'2017-05-19 15:00:52'),(3290,1001,'lux',896,'2017-05-19 15:00:52'),(3291,1001,'ph',10420,'2017-05-19 15:00:52'),(3292,1002,'temp',24,'2017-05-19 15:00:54'),(3293,1002,'hum',2,'2017-05-19 15:00:54'),(3294,1002,'lux',2202,'2017-05-19 15:00:54'),(3295,1002,'ph',430,'2017-05-19 15:00:54'),(3296,1003,'temp',24,'2017-05-19 15:00:58'),(3297,1003,'hum',7,'2017-05-19 15:00:58'),(3298,1003,'lux',1779,'2017-05-19 15:00:58'),(3299,1003,'ph',120,'2017-05-19 15:00:59'),(3300,1001,'temp',22,'2017-05-19 15:01:06'),(3301,1001,'hum',13,'2017-05-19 15:01:06'),(3302,1001,'lux',880,'2017-05-19 15:01:06'),(3303,1001,'ph',10420,'2017-05-19 15:01:06'),(3304,1002,'ph',430,'2017-05-19 15:01:08'),(3305,1002,'lux',2202,'2017-05-19 15:01:08'),(3306,1002,'hum',2,'2017-05-19 15:01:08'),(3307,1002,'temp',24,'2017-05-19 15:01:08'),(3308,1002,'temp',24,'2017-05-19 15:01:26'),(3309,1002,'ph',430,'2017-05-19 15:01:26'),(3310,1002,'lux',2171,'2017-05-19 15:01:26'),(3311,1002,'hum',2,'2017-05-19 15:01:26'),(3312,1001,'hum',13,'2017-05-19 15:01:28'),(3313,1001,'temp',22,'2017-05-19 15:01:28'),(3314,1001,'lux',908,'2017-05-19 15:01:28'),(3315,1001,'ph',10390,'2017-05-19 15:01:28'),(3316,1003,'ph',120,'2017-05-19 15:01:31'),(3317,1003,'lux',1768,'2017-05-19 15:01:31'),(3318,1003,'hum',7,'2017-05-19 15:01:31'),(3319,1003,'temp',24,'2017-05-19 15:01:31'),(3320,1001,'temp',22,'2017-05-19 15:01:45'),(3321,1001,'lux',892,'2017-05-19 15:01:45'),(3322,1001,'ph',10390,'2017-05-19 15:01:45'),(3323,1001,'hum',13,'2017-05-19 15:01:45'),(3324,1002,'temp',24,'2017-05-19 15:01:46'),(3325,1002,'hum',2,'2017-05-19 15:01:46'),(3326,1002,'lux',2187,'2017-05-19 15:01:46'),(3327,1002,'ph',430,'2017-05-19 15:01:46'),(3328,1003,'lux',1768,'2017-05-19 15:01:48'),(3329,1003,'ph',120,'2017-05-19 15:01:48'),(3330,1003,'hum',7,'2017-05-19 15:01:48'),(3331,1003,'temp',24,'2017-05-19 15:01:48'),(3332,1003,'temp',24,'2017-05-19 15:02:04'),(3333,1003,'hum',7,'2017-05-19 15:02:04'),(3334,1003,'lux',1799,'2017-05-19 15:02:04'),(3335,1003,'ph',120,'2017-05-19 15:02:04'),(3336,1001,'temp',22,'2017-05-19 15:02:04'),(3337,1001,'hum',13,'2017-05-19 15:02:04'),(3338,1001,'lux',896,'2017-05-19 15:02:04'),(3339,1001,'ph',10420,'2017-05-19 15:02:04'),(3340,1002,'hum',2,'2017-05-19 15:02:13'),(3341,1002,'temp',24,'2017-05-19 15:02:13'),(3342,1002,'lux',2219,'2017-05-19 15:02:13'),(3343,1002,'ph',430,'2017-05-19 15:02:13'),(3344,1003,'temp',24,'2017-05-19 15:02:16'),(3345,1003,'hum',7,'2017-05-19 15:02:16'),(3346,1003,'lux',1829,'2017-05-19 15:02:16'),(3347,1003,'ph',120,'2017-05-19 15:02:16'),(3348,1001,'lux',896,'2017-05-19 15:02:22'),(3349,1001,'hum',13,'2017-05-19 15:02:22'),(3350,1001,'temp',22,'2017-05-19 15:02:22'),(3351,1001,'ph',10450,'2017-05-19 15:02:22'),(3352,1002,'temp',24,'2017-05-19 15:02:31'),(3353,1002,'lux',2282,'2017-05-19 15:02:31'),(3354,1002,'ph',430,'2017-05-19 15:02:31'),(3355,1002,'hum',2,'2017-05-19 15:02:31'),(3356,1003,'temp',24,'2017-05-19 15:02:32'),(3357,1003,'hum',8,'2017-05-19 15:02:32'),(3358,1003,'lux',1844,'2017-05-19 15:02:32'),(3359,1003,'ph',120,'2017-05-19 15:02:32'),(3360,1003,'hum',8,'2017-05-19 15:02:46'),(3361,1003,'temp',24,'2017-05-19 15:02:46'),(3362,1003,'lux',1874,'2017-05-19 15:02:46'),(3363,1003,'ph',120,'2017-05-19 15:02:46'),(3364,1002,'hum',2,'2017-05-19 15:02:47'),(3365,1002,'temp',24,'2017-05-19 15:02:47'),(3366,1002,'lux',2331,'2017-05-19 15:02:47'),(3367,1002,'ph',430,'2017-05-19 15:02:47'),(3368,1001,'temp',22,'2017-05-19 15:02:49'),(3369,1001,'lux',896,'2017-05-19 15:02:49'),(3370,1001,'hum',13,'2017-05-19 15:02:49'),(3371,1001,'ph',10400,'2017-05-19 15:02:49'),(3372,1003,'lux',1933,'2017-05-19 15:03:02'),(3373,1003,'hum',8,'2017-05-19 15:03:02'),(3374,1003,'temp',24,'2017-05-19 15:03:02'),(3375,1003,'ph',120,'2017-05-19 15:03:02'),(3376,1001,'hum',13,'2017-05-19 15:03:03'),(3377,1001,'temp',22,'2017-05-19 15:03:03'),(3378,1001,'ph',10450,'2017-05-19 15:03:03'),(3379,1001,'lux',959,'2017-05-19 15:03:03'),(3380,1002,'hum',2,'2017-05-19 15:03:05'),(3381,1002,'lux',2410,'2017-05-19 15:03:05'),(3382,1002,'temp',24,'2017-05-19 15:03:05'),(3383,1002,'ph',430,'2017-05-19 15:03:05'),(3384,1002,'temp',24,'2017-05-19 15:03:17'),(3385,1002,'hum',2,'2017-05-19 15:03:17'),(3386,1002,'ph',440,'2017-05-19 15:03:17'),(3387,1002,'lux',2532,'2017-05-19 15:03:17'),(3388,1001,'temp',22,'2017-05-19 15:03:19'),(3389,1001,'lux',959,'2017-05-19 15:03:19'),(3390,1001,'hum',13,'2017-05-19 15:03:19'),(3391,1001,'ph',10450,'2017-05-19 15:03:19'),(3392,1003,'temp',24,'2017-05-19 15:03:24'),(3393,1003,'hum',8,'2017-05-19 15:03:24'),(3394,1003,'lux',2003,'2017-05-19 15:03:24'),(3395,1003,'ph',120,'2017-05-19 15:03:24'),(3396,1001,'temp',22,'2017-05-19 15:03:35'),(3397,1001,'hum',13,'2017-05-19 15:03:35'),(3398,1001,'lux',1006,'2017-05-19 15:03:35'),(3399,1001,'ph',10400,'2017-05-19 15:03:35'),(3400,1002,'lux',2637,'2017-05-19 15:03:37'),(3401,1002,'hum',2,'2017-05-19 15:03:37'),(3402,1002,'temp',24,'2017-05-19 15:03:37'),(3403,1002,'ph',430,'2017-05-19 15:03:37'),(3404,1003,'temp',24,'2017-05-19 15:03:40'),(3405,1003,'hum',8,'2017-05-19 15:03:40'),(3406,1003,'lux',2191,'2017-05-19 15:03:40'),(3407,1003,'ph',120,'2017-05-19 15:03:40'),(3408,1001,'temp',22,'2017-05-19 15:03:55'),(3409,1001,'hum',13,'2017-05-19 15:03:55'),(3410,1001,'ph',10310,'2017-05-19 15:03:55'),(3411,1001,'lux',1131,'2017-05-19 15:03:55'),(3412,1003,'temp',24,'2017-05-19 15:03:56'),(3413,1003,'ph',120,'2017-05-19 15:03:56'),(3414,1003,'lux',2370,'2017-05-19 15:03:56'),(3415,1003,'hum',8,'2017-05-19 15:03:56'),(3416,1002,'lux',2898,'2017-05-19 15:03:58'),(3417,1002,'hum',2,'2017-05-19 15:03:58'),(3418,1002,'temp',24,'2017-05-19 15:03:58'),(3419,1002,'ph',430,'2017-05-19 15:03:58'),(3420,1001,'temp',22,'2017-05-19 15:04:10'),(3421,1001,'hum',13,'2017-05-19 15:04:10'),(3422,1001,'lux',1304,'2017-05-19 15:04:10'),(3423,1001,'ph',10400,'2017-05-19 15:04:10'),(3424,1002,'hum',2,'2017-05-19 15:04:11'),(3425,1002,'temp',24,'2017-05-19 15:04:11'),(3426,1002,'ph',430,'2017-05-19 15:04:11'),(3427,1002,'lux',3158,'2017-05-19 15:04:11'),(3428,1003,'temp',24,'2017-05-19 15:04:12'),(3429,1003,'hum',8,'2017-05-19 15:04:12'),(3430,1003,'ph',120,'2017-05-19 15:04:12'),(3431,1003,'lux',2543,'2017-05-19 15:04:12'),(3432,1003,'temp',24,'2017-05-19 15:04:36'),(3433,1003,'hum',8,'2017-05-19 15:04:36'),(3434,1003,'lux',2562,'2017-05-19 15:04:36'),(3435,1003,'ph',120,'2017-05-19 15:04:36'),(3436,1001,'temp',22,'2017-05-19 15:04:37'),(3437,1001,'hum',13,'2017-05-19 15:04:37'),(3438,1001,'lux',1304,'2017-05-19 15:04:37'),(3439,1001,'ph',10450,'2017-05-19 15:04:37'),(3440,1002,'temp',24,'2017-05-19 15:04:43'),(3441,1002,'hum',2,'2017-05-19 15:04:43'),(3442,1002,'lux',3158,'2017-05-19 15:04:43'),(3443,1002,'ph',440,'2017-05-19 15:04:43'),(3444,1001,'temp',22,'2017-05-19 15:04:59'),(3445,1001,'hum',13,'2017-05-19 15:04:59'),(3446,1001,'ph',10450,'2017-05-19 15:04:59'),(3447,1001,'lux',1336,'2017-05-19 15:04:59'),(3448,1002,'ph',440,'2017-05-19 15:05:00'),(3449,1002,'lux',3233,'2017-05-19 15:05:00'),(3450,1002,'hum',2,'2017-05-19 15:05:00'),(3451,1002,'temp',24,'2017-05-19 15:05:00'),(3452,1003,'temp',24,'2017-05-19 15:05:01'),(3453,1003,'ph',120,'2017-05-19 15:05:01'),(3454,1003,'lux',2590,'2017-05-19 15:05:01'),(3455,1003,'hum',8,'2017-05-19 15:05:01'),(3456,1001,'temp',22,'2017-05-19 15:05:11'),(3457,1001,'hum',13,'2017-05-19 15:05:11'),(3458,1001,'lux',1430,'2017-05-19 15:05:11'),(3459,1001,'ph',10450,'2017-05-19 15:05:11'),(3460,1002,'temp',24,'2017-05-19 15:05:16'),(3461,1002,'ph',440,'2017-05-19 15:05:16'),(3462,1002,'lux',3262,'2017-05-19 15:05:16'),(3463,1002,'hum',2,'2017-05-19 15:05:16'),(3464,1002,'temp',24,'2017-05-19 15:05:31'),(3465,1002,'hum',2,'2017-05-19 15:05:31'),(3466,1002,'lux',3158,'2017-05-19 15:05:31'),(3467,1002,'ph',430,'2017-05-19 15:05:31'),(3468,1001,'temp',22,'2017-05-19 15:05:32'),(3469,1001,'lux',1320,'2017-05-19 15:05:32'),(3470,1001,'hum',13,'2017-05-19 15:05:32'),(3471,1001,'ph',10400,'2017-05-19 15:05:32'),(3472,1003,'ph',120,'2017-05-19 15:05:35'),(3473,1003,'lux',2548,'2017-05-19 15:05:35'),(3474,1003,'hum',8,'2017-05-19 15:05:35'),(3475,1003,'temp',24,'2017-05-19 15:05:35'),(3476,1001,'temp',22,'2017-05-19 15:05:57'),(3477,1001,'ph',10470,'2017-05-19 15:05:57'),(3478,1001,'lux',1241,'2017-05-19 15:05:57'),(3479,1001,'hum',13,'2017-05-19 15:05:57'),(3480,1002,'temp',24,'2017-05-19 15:05:58'),(3481,1002,'ph',440,'2017-05-19 15:05:58'),(3482,1002,'lux',3143,'2017-05-19 15:05:58'),(3483,1002,'hum',2,'2017-05-19 15:05:58'),(3484,1003,'hum',8,'2017-05-19 15:06:00'),(3485,1003,'temp',24,'2017-05-19 15:06:00'),(3486,1003,'lux',2520,'2017-05-19 15:06:00'),(3487,1003,'ph',120,'2017-05-19 15:06:00'),(3488,1001,'temp',22,'2017-05-19 15:06:11'),(3489,1001,'hum',13,'2017-05-19 15:06:11'),(3490,1001,'ph',10470,'2017-05-19 15:06:11'),(3491,1001,'lux',1336,'2017-05-19 15:06:11'),(3492,1003,'hum',8,'2017-05-19 15:06:13'),(3493,1003,'temp',24,'2017-05-19 15:06:13'),(3494,1003,'lux',2635,'2017-05-19 15:06:13'),(3495,1003,'ph',120,'2017-05-19 15:06:13'),(3496,1002,'hum',2,'2017-05-19 15:06:20'),(3497,1002,'temp',24,'2017-05-19 15:06:20'),(3498,1002,'lux',3262,'2017-05-19 15:06:20'),(3499,1002,'ph',450,'2017-05-19 15:06:20'),(3500,1003,'ph',120,'2017-05-19 15:06:26'),(3501,1003,'lux',2662,'2017-05-19 15:06:26'),(3502,1003,'hum',7,'2017-05-19 15:06:26'),(3503,1003,'temp',24,'2017-05-19 15:06:26'),(3504,1001,'temp',22,'2017-05-19 15:06:32'),(3505,1001,'hum',13,'2017-05-19 15:06:32'),(3506,1001,'ph',10430,'2017-05-19 15:06:32'),(3507,1001,'lux',1383,'2017-05-19 15:06:32'),(3508,1002,'temp',24,'2017-05-19 15:06:34'),(3509,1002,'hum',2,'2017-05-19 15:06:34'),(3510,1002,'lux',3248,'2017-05-19 15:06:34'),(3511,1002,'ph',440,'2017-05-19 15:06:34'),(3512,1002,'hum',2,'2017-05-19 15:06:47'),(3513,1002,'temp',24,'2017-05-19 15:06:47'),(3514,1002,'lux',3188,'2017-05-19 15:06:47'),(3515,1002,'ph',440,'2017-05-19 15:06:47'),(3516,1003,'temp',24,'2017-05-19 15:06:48'),(3517,1003,'hum',7,'2017-05-19 15:06:48'),(3518,1003,'lux',2564,'2017-05-19 15:06:48'),(3519,1003,'ph',120,'2017-05-19 15:06:48'),(3520,1001,'temp',22,'2017-05-19 15:06:59'),(3521,1001,'ph',10470,'2017-05-19 15:06:59'),(3522,1001,'lux',1257,'2017-05-19 15:06:59'),(3523,1001,'hum',13,'2017-05-19 15:06:59'),(3524,1002,'temp',24,'2017-05-19 15:06:59'),(3525,1002,'hum',2,'2017-05-19 15:06:59'),(3526,1002,'lux',3208,'2017-05-19 15:06:59'),(3527,1002,'ph',440,'2017-05-19 15:06:59'),(3528,1003,'hum',8,'2017-05-19 15:07:24'),(3529,1003,'temp',24,'2017-05-19 15:07:24'),(3530,1003,'lux',2577,'2017-05-19 15:07:24'),(3531,1003,'ph',120,'2017-05-19 15:07:24'),(3532,1001,'temp',22,'2017-05-19 15:07:25'),(3533,1001,'hum',13,'2017-05-19 15:07:25'),(3534,1001,'ph',10520,'2017-05-19 15:07:25'),(3535,1001,'lux',1289,'2017-05-19 15:07:25'),(3536,1002,'temp',24,'2017-05-19 15:07:27'),(3537,1002,'hum',2,'2017-05-19 15:07:27'),(3538,1002,'lux',3269,'2017-05-19 15:07:27'),(3539,1002,'ph',440,'2017-05-19 15:07:27'),(3540,1003,'temp',24,'2017-05-19 15:07:42'),(3541,1003,'hum',8,'2017-05-19 15:07:42'),(3542,1003,'ph',120,'2017-05-19 15:07:42'),(3543,1003,'lux',2833,'2017-05-19 15:07:42'),(3544,1001,'temp',22,'2017-05-19 15:07:44'),(3545,1001,'hum',13,'2017-05-19 15:07:44'),(3546,1001,'ph',10520,'2017-05-19 15:07:44'),(3547,1001,'lux',1463,'2017-05-19 15:07:44'),(3548,1002,'temp',24,'2017-05-19 15:07:45'),(3549,1002,'ph',450,'2017-05-19 15:07:45'),(3550,1002,'hum',2,'2017-05-19 15:07:45'),(3551,1002,'lux',3495,'2017-05-19 15:07:45'),(3552,1003,'hum',8,'2017-05-19 15:08:01'),(3553,1003,'temp',24,'2017-05-19 15:08:01'),(3554,1003,'lux',2884,'2017-05-19 15:08:01'),(3555,1003,'ph',120,'2017-05-19 15:08:01'),(3556,1002,'ph',450,'2017-05-19 15:08:02'),(3557,1002,'lux',3539,'2017-05-19 15:08:02'),(3558,1002,'hum',2,'2017-05-19 15:08:02'),(3559,1002,'temp',24,'2017-05-19 15:08:02'),(3560,1001,'temp',22,'2017-05-19 15:08:03'),(3561,1001,'hum',13,'2017-05-19 15:08:03'),(3562,1001,'lux',1541,'2017-05-19 15:08:03'),(3563,1001,'ph',10430,'2017-05-19 15:08:03'),(3564,1003,'lux',2864,'2017-05-19 15:08:13'),(3565,1003,'ph',120,'2017-05-19 15:08:13'),(3566,1003,'hum',7,'2017-05-19 15:08:13'),(3567,1003,'temp',24,'2017-05-19 15:08:13'),(3568,1002,'ph',440,'2017-05-19 15:08:17'),(3569,1002,'lux',3533,'2017-05-19 15:08:17'),(3570,1002,'hum',2,'2017-05-19 15:08:17'),(3571,1002,'temp',24,'2017-05-19 15:08:17'),(3572,1001,'temp',22,'2017-05-19 15:08:21'),(3573,1001,'hum',13,'2017-05-19 15:08:21'),(3574,1001,'lux',1573,'2017-05-19 15:08:21'),(3575,1001,'ph',10470,'2017-05-19 15:08:21'),(3576,1003,'temp',24,'2017-05-19 15:08:25'),(3577,1003,'hum',7,'2017-05-19 15:08:25'),(3578,1003,'lux',2794,'2017-05-19 15:08:25'),(3579,1003,'ph',120,'2017-05-19 15:08:25'),(3580,1002,'temp',24,'2017-05-19 15:08:33'),(3581,1002,'hum',2,'2017-05-19 15:08:33'),(3582,1002,'lux',3473,'2017-05-19 15:08:33'),(3583,1002,'ph',450,'2017-05-19 15:08:33'),(3584,1001,'temp',22,'2017-05-19 15:08:35'),(3585,1001,'hum',13,'2017-05-19 15:08:35'),(3586,1001,'lux',1477,'2017-05-19 15:08:35'),(3587,1001,'ph',10470,'2017-05-19 15:08:35'),(3588,1003,'temp',24,'2017-05-19 15:08:49'),(3589,1003,'hum',7,'2017-05-19 15:08:49'),(3590,1003,'lux',2780,'2017-05-19 15:08:49'),(3591,1003,'ph',120,'2017-05-19 15:08:49'),(3592,1001,'temp',22,'2017-05-19 15:08:50'),(3593,1001,'hum',13,'2017-05-19 15:08:50'),(3594,1001,'ph',10470,'2017-05-19 15:08:50'),(3595,1001,'lux',1477,'2017-05-19 15:08:50'),(3596,1002,'temp',24,'2017-05-19 15:08:51'),(3597,1002,'hum',2,'2017-05-19 15:08:51'),(3598,1002,'ph',450,'2017-05-19 15:08:51'),(3599,1002,'lux',3479,'2017-05-19 15:08:51'),(3600,1003,'hum',7,'2017-05-19 15:09:01'),(3601,1003,'temp',24,'2017-05-19 15:09:01'),(3602,1003,'lux',2767,'2017-05-19 15:09:01'),(3603,1003,'ph',120,'2017-05-19 15:09:01'),(3604,1002,'hum',2,'2017-05-19 15:09:05'),(3605,1002,'temp',24,'2017-05-19 15:09:05'),(3606,1002,'lux',3479,'2017-05-19 15:09:05'),(3607,1002,'ph',450,'2017-05-19 15:09:05'),(3608,1001,'ph',10470,'2017-05-19 15:09:06'),(3609,1001,'lux',1430,'2017-05-19 15:09:06'),(3610,1001,'hum',13,'2017-05-19 15:09:06'),(3611,1001,'temp',22,'2017-05-19 15:09:06'),(3612,1003,'ph',120,'2017-05-19 15:09:18'),(3613,1003,'lux',2796,'2017-05-19 15:09:18'),(3614,1003,'hum',7,'2017-05-19 15:09:18'),(3615,1003,'temp',24,'2017-05-19 15:09:18'),(3616,1002,'ph',450,'2017-05-19 15:09:18'),(3617,1002,'hum',2,'2017-05-19 15:09:18'),(3618,1002,'lux',3554,'2017-05-19 15:09:18'),(3619,1002,'temp',25,'2017-05-19 15:09:18'),(3620,1001,'temp',23,'2017-05-19 15:09:21'),(3621,1001,'hum',13,'2017-05-19 15:09:21'),(3622,1001,'lux',1416,'2017-05-19 15:09:21'),(3623,1001,'ph',10500,'2017-05-19 15:09:21'),(3624,1002,'temp',25,'2017-05-19 15:09:32'),(3625,1002,'hum',2,'2017-05-19 15:09:32'),(3626,1002,'lux',3719,'2017-05-19 15:09:32'),(3627,1002,'ph',450,'2017-05-19 15:09:32'),(3628,1001,'temp',23,'2017-05-19 15:09:33'),(3629,1001,'hum',13,'2017-05-19 15:09:33'),(3630,1001,'lux',1510,'2017-05-19 15:09:33'),(3631,1001,'ph',10500,'2017-05-19 15:09:33'),(3632,1003,'hum',7,'2017-05-19 15:09:34'),(3633,1003,'temp',24,'2017-05-19 15:09:34'),(3634,1003,'lux',2946,'2017-05-19 15:09:34'),(3635,1003,'ph',120,'2017-05-19 15:09:34'),(3636,1003,'temp',24,'2017-05-19 15:09:47'),(3637,1003,'hum',7,'2017-05-19 15:09:47'),(3638,1003,'ph',120,'2017-05-19 15:09:47'),(3639,1003,'lux',3117,'2017-05-19 15:09:47'),(3640,1001,'hum',13,'2017-05-19 15:09:48'),(3641,1001,'temp',23,'2017-05-19 15:09:48'),(3642,1001,'lux',1541,'2017-05-19 15:09:48'),(3643,1001,'ph',10500,'2017-05-19 15:09:48'),(3644,1002,'temp',25,'2017-05-19 15:09:51'),(3645,1002,'hum',2,'2017-05-19 15:09:51'),(3646,1002,'lux',3884,'2017-05-19 15:09:51'),(3647,1002,'ph',440,'2017-05-19 15:09:51'),(3648,1003,'temp',24,'2017-05-19 15:09:59'),(3649,1003,'hum',7,'2017-05-19 15:09:59'),(3650,1003,'lux',3385,'2017-05-19 15:09:59'),(3651,1003,'ph',120,'2017-05-19 15:09:59'),(3652,1001,'temp',23,'2017-05-19 15:10:05'),(3653,1001,'hum',13,'2017-05-19 15:10:05'),(3654,1001,'lux',1752,'2017-05-19 15:10:05'),(3655,1001,'ph',10500,'2017-05-19 15:10:05'),(3656,1002,'temp',25,'2017-05-19 15:10:06'),(3657,1002,'hum',2,'2017-05-19 15:10:06'),(3658,1002,'lux',4320,'2017-05-19 15:10:06'),(3659,1002,'ph',450,'2017-05-19 15:10:06'),(3660,1003,'hum',7,'2017-05-19 15:10:17'),(3661,1003,'temp',24,'2017-05-19 15:10:17'),(3662,1003,'ph',120,'2017-05-19 15:10:17'),(3663,1003,'lux',3668,'2017-05-19 15:10:17'),(3664,1002,'hum',2,'2017-05-19 15:10:19'),(3665,1002,'temp',24,'2017-05-19 15:10:19'),(3666,1002,'lux',4555,'2017-05-19 15:10:19'),(3667,1002,'ph',460,'2017-05-19 15:10:19'),(3668,1001,'ph',10500,'2017-05-19 15:10:20'),(3669,1001,'lux',2120,'2017-05-19 15:10:20'),(3670,1001,'hum',13,'2017-05-19 15:10:20'),(3671,1001,'temp',23,'2017-05-19 15:10:20'),(3672,1002,'hum',2,'2017-05-19 15:10:34'),(3673,1002,'temp',24,'2017-05-19 15:10:34'),(3674,1002,'lux',4424,'2017-05-19 15:10:34'),(3675,1002,'ph',450,'2017-05-19 15:10:34'),(3676,1001,'temp',23,'2017-05-19 15:10:36'),(3677,1001,'hum',13,'2017-05-19 15:10:36'),(3678,1001,'lux',2030,'2017-05-19 15:10:36'),(3679,1001,'ph',10450,'2017-05-19 15:10:36'),(3680,1003,'hum',7,'2017-05-19 15:10:37'),(3681,1003,'temp',24,'2017-05-19 15:10:37'),(3682,1003,'lux',3639,'2017-05-19 15:10:37'),(3683,1003,'ph',120,'2017-05-19 15:10:37'),(3684,1002,'temp',24,'2017-05-19 15:10:49'),(3685,1002,'hum',2,'2017-05-19 15:10:49'),(3686,1002,'ph',460,'2017-05-19 15:10:49'),(3687,1002,'lux',4309,'2017-05-19 15:10:49'),(3688,1003,'hum',7,'2017-05-19 15:10:51'),(3689,1003,'ph',120,'2017-05-19 15:10:51'),(3690,1003,'lux',3487,'2017-05-19 15:10:51'),(3691,1003,'temp',24,'2017-05-19 15:10:51'),(3692,1001,'ph',10500,'2017-05-19 15:10:52'),(3693,1001,'lux',1925,'2017-05-19 15:10:52'),(3694,1001,'hum',13,'2017-05-19 15:10:52'),(3695,1001,'temp',23,'2017-05-19 15:10:52'),(3696,1003,'temp',24,'2017-05-19 15:11:05'),(3697,1003,'ph',130,'2017-05-19 15:11:05'),(3698,1003,'lux',3331,'2017-05-19 15:11:05'),(3699,1003,'hum',7,'2017-05-19 15:11:05'),(3700,1001,'hum',13,'2017-05-19 15:11:08'),(3701,1001,'temp',23,'2017-05-19 15:11:08'),(3702,1001,'lux',1783,'2017-05-19 15:11:08'),(3703,1001,'ph',10500,'2017-05-19 15:11:08'),(3704,1002,'hum',2,'2017-05-19 15:11:11'),(3705,1002,'temp',25,'2017-05-19 15:11:11'),(3706,1002,'lux',4110,'2017-05-19 15:11:11'),(3707,1002,'ph',440,'2017-05-19 15:11:11'),(3708,1003,'hum',7,'2017-05-19 15:11:17'),(3709,1003,'temp',24,'2017-05-19 15:11:17'),(3710,1003,'lux',3459,'2017-05-19 15:11:17'),(3711,1003,'ph',120,'2017-05-19 15:11:17'),(3712,1001,'temp',23,'2017-05-19 15:11:23'),(3713,1001,'lux',1955,'2017-05-19 15:11:23'),(3714,1001,'ph',10500,'2017-05-19 15:11:23'),(3715,1001,'hum',13,'2017-05-19 15:11:23'),(3716,1002,'lux',4230,'2017-05-19 15:11:24'),(3717,1002,'temp',25,'2017-05-19 15:11:24'),(3718,1002,'ph',450,'2017-05-19 15:11:24'),(3719,1002,'hum',2,'2017-05-19 15:11:24'),(3720,1001,'temp',23,'2017-05-19 15:11:37'),(3721,1001,'ph',10500,'2017-05-19 15:11:37'),(3722,1001,'lux',1767,'2017-05-19 15:11:37'),(3723,1001,'hum',13,'2017-05-19 15:11:37'),(3724,1003,'lux',3317,'2017-05-19 15:11:37'),(3725,1003,'ph',120,'2017-05-19 15:11:37'),(3726,1003,'hum',7,'2017-05-19 15:11:37'),(3727,1003,'temp',24,'2017-05-19 15:11:37'),(3728,1002,'hum',2,'2017-05-19 15:11:43'),(3729,1002,'ph',450,'2017-05-19 15:11:43'),(3730,1002,'lux',3945,'2017-05-19 15:11:43'),(3731,1002,'temp',25,'2017-05-19 15:11:43'),(3732,1003,'hum',7,'2017-05-19 15:11:58'),(3733,1003,'lux',3124,'2017-05-19 15:11:58'),(3734,1003,'ph',120,'2017-05-19 15:11:58'),(3735,1003,'temp',24,'2017-05-19 15:11:58'),(3736,1001,'hum',12,'2017-05-19 15:11:59'),(3737,1001,'temp',23,'2017-05-19 15:11:59'),(3738,1001,'lux',1692,'2017-05-19 15:11:59'),(3739,1001,'ph',10500,'2017-05-19 15:11:59'),(3740,1002,'ph',460,'2017-05-19 15:12:02'),(3741,1002,'temp',25,'2017-05-19 15:12:02'),(3742,1002,'lux',3855,'2017-05-19 15:12:02'),(3743,1002,'hum',2,'2017-05-19 15:12:02'),(3744,1001,'temp',23,'2017-05-19 15:12:12'),(3745,1001,'hum',13,'2017-05-19 15:12:12'),(3746,1001,'lux',1799,'2017-05-19 15:12:12'),(3747,1001,'ph',10500,'2017-05-19 15:12:12'),(3748,1003,'temp',23,'2017-05-19 15:12:13'),(3749,1003,'hum',7,'2017-05-19 15:12:13'),(3750,1003,'lux',3195,'2017-05-19 15:12:13'),(3751,1003,'ph',120,'2017-05-19 15:12:13'),(3752,1002,'temp',25,'2017-05-19 15:12:14'),(3753,1002,'ph',460,'2017-05-19 15:12:14'),(3754,1002,'lux',3884,'2017-05-19 15:12:14'),(3755,1002,'hum',2,'2017-05-19 15:12:14'),(3756,1003,'temp',24,'2017-05-19 15:12:37'),(3757,1003,'hum',7,'2017-05-19 15:12:37'),(3758,1003,'ph',120,'2017-05-19 15:12:37'),(3759,1003,'lux',3077,'2017-05-19 15:12:37'),(3760,1001,'temp',23,'2017-05-19 15:12:38'),(3761,1001,'ph',10500,'2017-05-19 15:12:38'),(3762,1001,'lux',1677,'2017-05-19 15:12:38'),(3763,1001,'hum',13,'2017-05-19 15:12:38'),(3764,1002,'temp',24,'2017-05-19 15:12:39'),(3765,1002,'hum',2,'2017-05-19 15:12:39'),(3766,1002,'lux',3752,'2017-05-19 15:12:39'),(3767,1002,'ph',450,'2017-05-19 15:12:39'),(3768,1003,'ph',130,'2017-05-19 15:12:51'),(3769,1003,'hum',7,'2017-05-19 15:12:51'),(3770,1003,'lux',3147,'2017-05-19 15:12:51'),(3771,1003,'temp',24,'2017-05-19 15:12:51'),(3772,1001,'temp',23,'2017-05-19 15:12:53'),(3773,1001,'hum',13,'2017-05-19 15:12:53'),(3774,1001,'lux',1783,'2017-05-19 15:12:53'),(3775,1001,'ph',10500,'2017-05-19 15:12:53'),(3776,1002,'temp',24,'2017-05-19 15:12:55'),(3777,1002,'hum',2,'2017-05-19 15:12:55'),(3778,1002,'lux',3873,'2017-05-19 15:12:55'),(3779,1002,'ph',460,'2017-05-19 15:12:55'),(3780,1003,'temp',24,'2017-05-19 15:13:04'),(3781,1003,'hum',7,'2017-05-19 15:13:04'),(3782,1003,'lux',3266,'2017-05-19 15:13:04'),(3783,1003,'ph',120,'2017-05-19 15:13:04'),(3784,1002,'temp',24,'2017-05-19 15:13:09'),(3785,1002,'hum',2,'2017-05-19 15:13:09'),(3786,1002,'lux',3767,'2017-05-19 15:13:09'),(3787,1002,'ph',450,'2017-05-19 15:13:09'),(3788,1001,'ph',10500,'2017-05-19 15:13:10'),(3789,1001,'lux',1955,'2017-05-19 15:13:10'),(3790,1001,'hum',13,'2017-05-19 15:13:10'),(3791,1001,'temp',23,'2017-05-19 15:13:10'),(3792,1002,'hum',2,'2017-05-19 15:13:21'),(3793,1002,'temp',25,'2017-05-19 15:13:21'),(3794,1002,'lux',3512,'2017-05-19 15:13:21'),(3795,1002,'ph',450,'2017-05-19 15:13:21'),(3796,1003,'temp',24,'2017-05-19 15:13:23'),(3797,1003,'hum',7,'2017-05-19 15:13:23'),(3798,1003,'lux',2923,'2017-05-19 15:13:23'),(3799,1003,'ph',120,'2017-05-19 15:13:23'),(3800,1001,'lux',1706,'2017-05-19 15:13:25'),(3801,1001,'ph',10520,'2017-05-19 15:13:25'),(3802,1001,'hum',13,'2017-05-19 15:13:25'),(3803,1001,'temp',23,'2017-05-19 15:13:25'),(3804,1001,'temp',23,'2017-05-19 15:13:37'),(3805,1001,'hum',13,'2017-05-19 15:13:37'),(3806,1001,'lux',1722,'2017-05-19 15:13:37'),(3807,1001,'ph',10520,'2017-05-19 15:13:37'),(3808,1003,'hum',7,'2017-05-19 15:13:39'),(3809,1003,'temp',24,'2017-05-19 15:13:39'),(3810,1003,'lux',2863,'2017-05-19 15:13:39'),(3811,1003,'ph',130,'2017-05-19 15:13:39'),(3812,1002,'temp',25,'2017-05-19 15:13:45'),(3813,1002,'lux',3509,'2017-05-19 15:13:45'),(3814,1002,'ph',450,'2017-05-19 15:13:45'),(3815,1002,'hum',2,'2017-05-19 15:13:45'),(3816,1001,'hum',13,'2017-05-19 15:13:51'),(3817,1001,'lux',2496,'2017-05-19 15:13:51'),(3818,1001,'temp',23,'2017-05-19 15:13:51'),(3819,1001,'ph',10430,'2017-05-19 15:13:51'),(3820,1003,'temp',24,'2017-05-19 15:13:53'),(3821,1003,'lux',4044,'2017-05-19 15:13:53'),(3822,1003,'hum',7,'2017-05-19 15:13:53'),(3823,1003,'ph',120,'2017-05-19 15:13:53'),(3824,1001,'temp',23,'2017-05-19 15:14:04'),(3825,1001,'hum',13,'2017-05-19 15:14:04'),(3826,1001,'lux',4927,'2017-05-19 15:14:04'),(3827,1001,'ph',10520,'2017-05-19 15:14:04'),(3828,1002,'ph',450,'2017-05-19 15:14:06'),(3829,1002,'lux',6360,'2017-05-19 15:14:06'),(3830,1002,'hum',2,'2017-05-19 15:14:06'),(3831,1002,'temp',25,'2017-05-19 15:14:06'),(3832,1003,'lux',7879,'2017-05-19 15:14:09'),(3833,1003,'ph',130,'2017-05-19 15:14:09'),(3834,1003,'hum',7,'2017-05-19 15:14:09'),(3835,1003,'temp',24,'2017-05-19 15:14:09'),(3836,1001,'temp',23,'2017-05-19 15:14:21'),(3837,1001,'hum',12,'2017-05-19 15:14:21'),(3838,1001,'lux',2749,'2017-05-19 15:14:21'),(3839,1001,'ph',10520,'2017-05-19 15:14:21'),(3840,1002,'temp',25,'2017-05-19 15:14:22'),(3841,1002,'hum',2,'2017-05-19 15:14:22'),(3842,1002,'lux',9783,'2017-05-19 15:14:22'),(3843,1002,'ph',460,'2017-05-19 15:14:22'),(3844,1003,'temp',24,'2017-05-19 15:14:24'),(3845,1003,'hum',7,'2017-05-19 15:14:24'),(3846,1003,'lux',9977,'2017-05-19 15:14:24'),(3847,1003,'ph',120,'2017-05-19 15:14:24'),(3848,1002,'temp',25,'2017-05-19 15:14:39'),(3849,1002,'hum',2,'2017-05-19 15:14:39'),(3850,1002,'ph',450,'2017-05-19 15:14:39'),(3851,1002,'lux',9682,'2017-05-19 15:14:39'),(3852,1001,'temp',23,'2017-05-19 15:14:40'),(3853,1001,'hum',13,'2017-05-19 15:14:40'),(3854,1001,'lux',2951,'2017-05-19 15:14:40'),(3855,1001,'ph',10560,'2017-05-19 15:14:40'),(3856,1003,'temp',24,'2017-05-19 15:14:41'),(3857,1003,'hum',7,'2017-05-19 15:14:41'),(3858,1003,'lux',9832,'2017-05-19 15:14:41'),(3859,1003,'ph',150,'2017-05-19 15:14:41'),(3860,1001,'temp',23,'2017-05-19 15:15:10'),(3861,1001,'ph',10520,'2017-05-19 15:15:10'),(3862,1001,'lux',3146,'2017-05-19 15:15:10'),(3863,1001,'hum',13,'2017-05-19 15:15:10'),(3864,1003,'temp',24,'2017-05-19 15:15:12'),(3865,1003,'hum',7,'2017-05-19 15:15:12'),(3866,1003,'lux',10034,'2017-05-19 15:15:12'),(3867,1003,'ph',130,'2017-05-19 15:15:12'),(3868,1001,'hum',13,'2017-05-19 15:15:23'),(3869,1001,'temp',23,'2017-05-19 15:15:23'),(3870,1001,'lux',3300,'2017-05-19 15:15:23'),(3871,1001,'ph',10520,'2017-05-19 15:15:23'),(3872,1003,'temp',24,'2017-05-19 15:15:24'),(3873,1003,'lux',10345,'2017-05-19 15:15:24'),(3874,1003,'ph',150,'2017-05-19 15:15:24'),(3875,1003,'hum',7,'2017-05-19 15:15:24'),(3876,1002,'temp',25,'2017-05-19 15:15:26'),(3877,1002,'hum',2,'2017-05-19 15:15:26'),(3878,1002,'lux',10024,'2017-05-19 15:15:26'),(3879,1002,'ph',460,'2017-05-19 15:15:26'),(3880,1003,'hum',7,'2017-05-19 15:15:42'),(3881,1003,'temp',24,'2017-05-19 15:15:42'),(3882,1003,'lux',10345,'2017-05-19 15:15:42'),(3883,1003,'ph',130,'2017-05-19 15:15:42'),(3884,1002,'temp',25,'2017-05-19 15:15:43'),(3885,1002,'hum',2,'2017-05-19 15:15:43'),(3886,1002,'lux',10037,'2017-05-19 15:15:43'),(3887,1002,'ph',460,'2017-05-19 15:15:43'),(3888,1001,'temp',23,'2017-05-19 15:15:45'),(3889,1001,'hum',13,'2017-05-19 15:15:45'),(3890,1001,'lux',3271,'2017-05-19 15:15:45'),(3891,1001,'ph',10600,'2017-05-19 15:15:45'),(3892,1003,'hum',7,'2017-05-19 15:16:04'),(3893,1003,'temp',24,'2017-05-19 15:16:04'),(3894,1003,'ph',130,'2017-05-19 15:16:04'),(3895,1003,'lux',10286,'2017-05-19 15:16:04'),(3896,1002,'temp',25,'2017-05-19 15:16:06'),(3897,1002,'hum',2,'2017-05-19 15:16:06'),(3898,1002,'lux',10136,'2017-05-19 15:16:06'),(3899,1002,'ph',480,'2017-05-19 15:16:06'),(3900,1001,'temp',23,'2017-05-19 15:16:08'),(3901,1001,'hum',13,'2017-05-19 15:16:08'),(3902,1001,'lux',3227,'2017-05-19 15:16:08'),(3903,1001,'ph',10550,'2017-05-19 15:16:08'),(3904,1002,'lux',10050,'2017-05-19 15:16:25'),(3905,1002,'hum',2,'2017-05-19 15:16:25'),(3906,1002,'temp',25,'2017-05-19 15:16:25'),(3907,1002,'ph',480,'2017-05-19 15:16:25'),(3908,1003,'temp',24,'2017-05-19 15:16:28'),(3909,1003,'hum',7,'2017-05-19 15:16:28'),(3910,1003,'lux',10174,'2017-05-19 15:16:28'),(3911,1003,'ph',130,'2017-05-19 15:16:28'),(3912,1001,'temp',23,'2017-05-19 15:16:28'),(3913,1001,'hum',13,'2017-05-19 15:16:28'),(3914,1001,'lux',3146,'2017-05-19 15:16:28'),(3915,1001,'ph',10530,'2017-05-19 15:16:28'),(3916,1002,'temp',25,'2017-05-19 15:16:40'),(3917,1002,'hum',2,'2017-05-19 15:16:40'),(3918,1002,'ph',480,'2017-05-19 15:16:40'),(3919,1002,'lux',10111,'2017-05-19 15:16:40'),(3920,1003,'temp',24,'2017-05-19 15:16:42'),(3921,1003,'hum',7,'2017-05-19 15:16:42'),(3922,1003,'ph',130,'2017-05-19 15:16:42'),(3923,1003,'lux',10286,'2017-05-19 15:16:42'),(3924,1001,'hum',13,'2017-05-19 15:16:45'),(3925,1001,'temp',23,'2017-05-19 15:16:45'),(3926,1001,'lux',3072,'2017-05-19 15:16:45'),(3927,1001,'ph',10580,'2017-05-19 15:16:45'),(3928,1002,'hum',2,'2017-05-19 15:16:53'),(3929,1002,'temp',25,'2017-05-19 15:16:53'),(3930,1002,'lux',10185,'2017-05-19 15:16:53'),(3931,1002,'ph',480,'2017-05-19 15:16:53'),(3932,1003,'temp',24,'2017-05-19 15:16:58'),(3933,1003,'hum',7,'2017-05-19 15:16:58'),(3934,1003,'lux',11108,'2017-05-19 15:16:58'),(3935,1003,'ph',130,'2017-05-19 15:16:58'),(3936,1001,'temp',23,'2017-05-19 15:16:59'),(3937,1001,'hum',13,'2017-05-19 15:16:59'),(3938,1001,'lux',3101,'2017-05-19 15:16:59'),(3939,1001,'ph',10580,'2017-05-19 15:16:59'),(3940,1002,'lux',10232,'2017-05-19 15:17:08'),(3941,1002,'temp',25,'2017-05-19 15:17:08'),(3942,1002,'hum',2,'2017-05-19 15:17:08'),(3943,1002,'ph',460,'2017-05-19 15:17:08'),(3944,1003,'temp',24,'2017-05-19 15:17:11'),(3945,1003,'hum',7,'2017-05-19 15:17:11'),(3946,1003,'lux',15273,'2017-05-19 15:17:11'),(3947,1003,'ph',130,'2017-05-19 15:17:11'),(3948,1001,'temp',23,'2017-05-19 15:17:14'),(3949,1001,'hum',13,'2017-05-19 15:17:14'),(3950,1001,'lux',3057,'2017-05-19 15:17:14'),(3951,1001,'ph',10580,'2017-05-19 15:17:14'),(3952,1003,'temp',24,'2017-05-19 15:17:23'),(3953,1003,'hum',8,'2017-05-19 15:17:23'),(3954,1003,'lux',19466,'2017-05-19 15:17:23'),(3955,1003,'ph',120,'2017-05-19 15:17:23'),(3956,1002,'temp',25,'2017-05-19 15:17:30'),(3957,1002,'ph',480,'2017-05-19 15:17:30'),(3958,1002,'lux',12530,'2017-05-19 15:17:30'),(3959,1002,'hum',2,'2017-05-19 15:17:30'),(3960,1001,'temp',23,'2017-05-19 15:17:30'),(3961,1001,'hum',13,'2017-05-19 15:17:30'),(3962,1001,'ph',10600,'2017-05-19 15:17:30'),(3963,1001,'lux',2830,'2017-05-19 15:17:30'),(3964,1003,'temp',24,'2017-05-19 15:17:44'),(3965,1003,'lux',21083,'2017-05-19 15:17:44'),(3966,1003,'ph',130,'2017-05-19 15:17:44'),(3967,1003,'hum',7,'2017-05-19 15:17:44'),(3968,1001,'ph',10580,'2017-05-19 15:17:44'),(3969,1001,'temp',23,'2017-05-19 15:17:44'),(3970,1001,'lux',2546,'2017-05-19 15:17:44'),(3971,1001,'hum',13,'2017-05-19 15:17:44'),(3972,1002,'temp',25,'2017-05-19 15:17:47'),(3973,1002,'hum',2,'2017-05-19 15:17:47'),(3974,1002,'lux',16002,'2017-05-19 15:17:47'),(3975,1002,'ph',480,'2017-05-19 15:17:47'),(3976,1001,'lux',2331,'2017-05-19 15:18:01'),(3977,1001,'ph',10580,'2017-05-19 15:18:01'),(3978,1001,'hum',13,'2017-05-19 15:18:01'),(3979,1001,'temp',23,'2017-05-19 15:18:01'),(3980,1003,'hum',7,'2017-05-19 15:18:03'),(3981,1003,'lux',22790,'2017-05-19 15:18:03'),(3982,1003,'temp',24,'2017-05-19 15:18:03'),(3983,1003,'ph',150,'2017-05-19 15:18:03'),(3984,1002,'hum',2,'2017-05-19 15:18:06'),(3985,1002,'temp',25,'2017-05-19 15:18:06'),(3986,1002,'lux',17571,'2017-05-19 15:18:06'),(3987,1002,'ph',480,'2017-05-19 15:18:06'),(3988,1001,'hum',13,'2017-05-19 15:18:24'),(3989,1001,'temp',23,'2017-05-19 15:18:24'),(3990,1001,'ph',10580,'2017-05-19 15:18:24'),(3991,1001,'lux',2361,'2017-05-19 15:18:24'),(3992,1003,'temp',24,'2017-05-19 15:18:26'),(3993,1003,'lux',21083,'2017-05-19 15:18:26'),(3994,1003,'ph',120,'2017-05-19 15:18:26'),(3995,1003,'hum',7,'2017-05-19 15:18:26'),(3996,1002,'hum',2,'2017-05-19 15:18:31'),(3997,1002,'temp',25,'2017-05-19 15:18:31'),(3998,1002,'lux',14353,'2017-05-19 15:18:31'),(3999,1002,'ph',480,'2017-05-19 15:18:31'),(4000,1001,'temp',23,'2017-05-19 15:18:50'),(4001,1001,'hum',13,'2017-05-19 15:18:50'),(4002,1001,'lux',2345,'2017-05-19 15:18:50'),(4003,1001,'ph',10660,'2017-05-19 15:18:50'),(4004,1002,'temp',25,'2017-05-19 15:18:51'),(4005,1002,'hum',2,'2017-05-19 15:18:51'),(4006,1002,'lux',12900,'2017-05-19 15:18:51'),(4007,1002,'ph',480,'2017-05-19 15:18:51'),(4008,1003,'temp',24,'2017-05-19 15:18:53'),(4009,1003,'hum',7,'2017-05-19 15:18:53'),(4010,1003,'lux',21083,'2017-05-19 15:18:53'),(4011,1003,'ph',120,'2017-05-19 15:18:53'),(4012,1001,'lux',2156,'2017-05-19 15:19:04'),(4013,1001,'hum',13,'2017-05-19 15:19:04'),(4014,1001,'ph',10660,'2017-05-19 15:19:04'),(4015,1001,'temp',23,'2017-05-19 15:19:04'),(4016,1002,'temp',25,'2017-05-19 15:19:05'),(4017,1002,'lux',10027,'2017-05-19 15:19:05'),(4018,1002,'ph',480,'2017-05-19 15:19:05'),(4019,1002,'hum',2,'2017-05-19 15:19:05'),(4020,1003,'temp',24,'2017-05-19 15:19:13'),(4021,1003,'hum',7,'2017-05-19 15:19:13'),(4022,1003,'lux',10399,'2017-05-19 15:19:13'),(4023,1003,'ph',120,'2017-05-19 15:19:13'),(4024,1002,'temp',25,'2017-05-19 15:19:28'),(4025,1002,'hum',2,'2017-05-19 15:19:28'),(4026,1002,'ph',480,'2017-05-19 15:19:28'),(4027,1002,'lux',10807,'2017-05-19 15:19:28'),(4028,1001,'temp',23,'2017-05-19 15:19:30'),(4029,1001,'hum',13,'2017-05-19 15:19:30'),(4030,1001,'lux',2451,'2017-05-19 15:19:30'),(4031,1001,'ph',10640,'2017-05-19 15:19:30'),(4032,1003,'temp',24,'2017-05-19 15:19:31'),(4033,1003,'lux',17086,'2017-05-19 15:19:31'),(4034,1003,'ph',110,'2017-05-19 15:19:31'),(4035,1003,'hum',8,'2017-05-19 15:19:31'),(4036,1002,'lux',18866,'2017-05-19 15:19:41'),(4037,1002,'temp',25,'2017-05-19 15:19:41'),(4038,1002,'hum',2,'2017-05-19 15:19:41'),(4039,1002,'ph',480,'2017-05-19 15:19:41'),(4040,1001,'temp',23,'2017-05-19 15:19:42'),(4041,1001,'hum',13,'2017-05-19 15:19:42'),(4042,1001,'lux',2020,'2017-05-19 15:19:42'),(4043,1001,'ph',10660,'2017-05-19 15:19:42'),(4044,1003,'temp',24,'2017-05-19 15:19:51'),(4045,1003,'lux',16083,'2017-05-19 15:19:51'),(4046,1003,'hum',8,'2017-05-19 15:19:51'),(4047,1003,'ph',120,'2017-05-19 15:19:51'),(4048,1001,'lux',1989,'2017-05-19 15:19:56'),(4049,1001,'temp',23,'2017-05-19 15:19:56'),(4050,1001,'ph',10620,'2017-05-19 15:19:56'),(4051,1001,'hum',13,'2017-05-19 15:19:56'),(4052,1002,'temp',25,'2017-05-19 15:19:58'),(4053,1002,'hum',2,'2017-05-19 15:19:58'),(4054,1002,'lux',12530,'2017-05-19 15:19:58'),(4055,1002,'ph',480,'2017-05-19 15:19:58'),(4056,1003,'temp',24,'2017-05-19 15:20:10'),(4057,1003,'hum',8,'2017-05-19 15:20:10'),(4058,1003,'ph',120,'2017-05-19 15:20:10'),(4059,1003,'lux',20243,'2017-05-19 15:20:10'),(4060,1001,'temp',23,'2017-05-19 15:20:11'),(4061,1001,'hum',13,'2017-05-19 15:20:11'),(4062,1001,'lux',1819,'2017-05-19 15:20:11'),(4063,1001,'ph',10540,'2017-05-19 15:20:11'),(4064,1001,'lux',1637,'2017-05-19 15:20:25'),(4065,1001,'ph',10620,'2017-05-19 15:20:25'),(4066,1001,'hum',13,'2017-05-19 15:20:25'),(4067,1001,'temp',23,'2017-05-19 15:20:25'),(4068,1003,'hum',8,'2017-05-19 15:20:26'),(4069,1003,'temp',24,'2017-05-19 15:20:26'),(4070,1003,'ph',120,'2017-05-19 15:20:26'),(4071,1003,'lux',14448,'2017-05-19 15:20:26'),(4072,1002,'ph',480,'2017-05-19 15:20:30'),(4073,1002,'temp',25,'2017-05-19 15:20:30'),(4074,1002,'lux',14683,'2017-05-19 15:20:30'),(4075,1002,'hum',2,'2017-05-19 15:20:30'),(4076,1001,'hum',13,'2017-05-19 15:20:40'),(4077,1001,'temp',23,'2017-05-19 15:20:40'),(4078,1001,'ph',10620,'2017-05-19 15:20:40'),(4079,1001,'lux',1681,'2017-05-19 15:20:40'),(4080,1003,'temp',24,'2017-05-19 15:20:43'),(4081,1003,'hum',8,'2017-05-19 15:20:43'),(4082,1003,'lux',16543,'2017-05-19 15:20:43'),(4083,1003,'ph',120,'2017-05-19 15:20:43'),(4084,1002,'hum',2,'2017-05-19 15:20:49'),(4085,1002,'temp',25,'2017-05-19 15:20:49'),(4086,1002,'lux',15533,'2017-05-19 15:20:49'),(4087,1002,'ph',480,'2017-05-19 15:20:49'),(4088,1001,'temp',23,'2017-05-19 15:20:54'),(4089,1001,'hum',13,'2017-05-19 15:20:54'),(4090,1001,'lux',3539,'2017-05-19 15:20:54'),(4091,1001,'ph',10620,'2017-05-19 15:20:54'),(4092,1003,'temp',24,'2017-05-19 15:20:58'),(4093,1003,'lux',18195,'2017-05-19 15:20:58'),(4094,1003,'hum',8,'2017-05-19 15:20:58'),(4095,1003,'ph',140,'2017-05-19 15:20:58'),(4096,1002,'temp',25,'2017-05-19 15:21:21'),(4097,1002,'hum',2,'2017-05-19 15:21:21'),(4098,1002,'lux',15533,'2017-05-19 15:21:21'),(4099,1002,'ph',480,'2017-05-19 15:21:21'),(4100,1001,'temp',23,'2017-05-19 15:21:21'),(4101,1001,'hum',18,'2017-05-19 15:21:21'),(4102,1001,'lux',9865,'2017-05-19 15:21:21'),(4103,1001,'ph',10710,'2017-05-19 15:21:21'),(4104,1003,'temp',25,'2017-05-19 15:21:22'),(4105,1003,'lux',17086,'2017-05-19 15:21:22'),(4106,1003,'hum',8,'2017-05-19 15:21:22'),(4107,1003,'ph',140,'2017-05-19 15:21:22'),(4108,1002,'hum',2,'2017-05-19 15:21:33'),(4109,1002,'temp',25,'2017-05-19 15:21:33'),(4110,1002,'lux',14683,'2017-05-19 15:21:33'),(4111,1002,'ph',480,'2017-05-19 15:21:33'),(4112,1001,'temp',23,'2017-05-19 15:21:35'),(4113,1001,'hum',18,'2017-05-19 15:21:35'),(4114,1001,'lux',8961,'2017-05-19 15:21:35'),(4115,1001,'ph',10540,'2017-05-19 15:21:35'),(4116,1003,'temp',24,'2017-05-19 15:21:36'),(4117,1003,'hum',8,'2017-05-19 15:21:36'),(4118,1003,'lux',17571,'2017-05-19 15:21:36'),(4119,1003,'ph',110,'2017-05-19 15:21:36'),(4120,1003,'lux',16043,'2017-05-19 15:21:49'),(4121,1003,'hum',8,'2017-05-19 15:21:49'),(4122,1003,'temp',25,'2017-05-19 15:21:49'),(4123,1003,'ph',120,'2017-05-19 15:21:49'),(4124,1001,'temp',23,'2017-05-19 15:21:50'),(4125,1001,'hum',18,'2017-05-19 15:21:50'),(4126,1001,'lux',7203,'2017-05-19 15:21:50'),(4127,1001,'ph',10540,'2017-05-19 15:21:50'),(4128,1002,'temp',25,'2017-05-19 15:21:53'),(4129,1002,'hum',2,'2017-05-19 15:21:53'),(4130,1002,'lux',14683,'2017-05-19 15:21:53'),(4131,1002,'ph',480,'2017-05-19 15:21:53'),(4132,1001,'temp',23,'2017-05-19 15:22:13'),(4133,1001,'hum',18,'2017-05-19 15:22:13'),(4134,1001,'lux',6450,'2017-05-19 15:22:13'),(4135,1001,'ph',10500,'2017-05-19 15:22:13'),(4136,1002,'hum',2,'2017-05-19 15:22:14'),(4137,1002,'temp',25,'2017-05-19 15:22:14'),(4138,1002,'lux',14683,'2017-05-19 15:22:14'),(4139,1002,'ph',490,'2017-05-19 15:22:14'),(4140,1003,'lux',17571,'2017-05-19 15:22:16'),(4141,1003,'ph',120,'2017-05-19 15:22:16'),(4142,1003,'hum',8,'2017-05-19 15:22:16'),(4143,1003,'temp',25,'2017-05-19 15:22:16'),(4144,1001,'temp',23,'2017-05-19 15:22:36'),(4145,1001,'hum',18,'2017-05-19 15:22:36'),(4146,1001,'lux',4677,'2017-05-19 15:22:36'),(4147,1001,'ph',10590,'2017-05-19 15:22:36'),(4148,1003,'temp',25,'2017-05-19 15:22:37'),(4149,1003,'hum',8,'2017-05-19 15:22:37'),(4150,1003,'lux',17571,'2017-05-19 15:22:37'),(4151,1003,'ph',140,'2017-05-19 15:22:37'),(4152,1002,'temp',25,'2017-05-19 15:22:48'),(4153,1002,'lux',15096,'2017-05-19 15:22:48'),(4154,1002,'hum',2,'2017-05-19 15:22:48'),(4155,1002,'ph',480,'2017-05-19 15:22:48'),(4156,1001,'temp',23,'2017-05-19 15:22:49'),(4157,1001,'hum',18,'2017-05-19 15:22:49'),(4158,1001,'ph',10680,'2017-05-19 15:22:49'),(4159,1001,'lux',3406,'2017-05-19 15:22:49'),(4160,1003,'temp',25,'2017-05-19 15:22:59'),(4161,1003,'hum',8,'2017-05-19 15:22:59'),(4162,1003,'lux',15610,'2017-05-19 15:22:59'),(4163,1003,'ph',140,'2017-05-19 15:22:59'),(4164,1001,'hum',18,'2017-05-19 15:23:05'),(4165,1001,'temp',23,'2017-05-19 15:23:05'),(4166,1001,'lux',2877,'2017-05-19 15:23:05'),(4167,1001,'ph',10680,'2017-05-19 15:23:05'),(4168,1002,'temp',0,'2017-05-19 15:23:08'),(4169,1002,'lux',0,'2017-05-19 15:23:08'),(4170,1002,'ph',0,'2017-05-19 15:23:08'),(4171,1002,'hum',0,'2017-05-19 15:23:08'),(4172,1002,'temp',25,'2017-05-19 15:23:24'),(4173,1002,'hum',2,'2017-05-19 15:23:24'),(4174,1002,'lux',16083,'2017-05-19 15:23:24'),(4175,1002,'ph',480,'2017-05-19 15:23:24'),(4176,1001,'temp',23,'2017-05-19 15:23:25'),(4177,1001,'lux',2546,'2017-05-19 15:23:25'),(4178,1001,'hum',18,'2017-05-19 15:23:25'),(4179,1001,'ph',10660,'2017-05-19 15:23:25'),(4180,1002,'temp',25,'2017-05-19 15:23:39'),(4181,1002,'hum',2,'2017-05-19 15:23:39'),(4182,1002,'ph',490,'2017-05-19 15:23:39'),(4183,1002,'lux',15572,'2017-05-19 15:23:39'),(4184,1003,'temp',25,'2017-05-19 15:23:39'),(4185,1003,'hum',8,'2017-05-19 15:23:39'),(4186,1003,'ph',120,'2017-05-19 15:23:39'),(4187,1003,'lux',18753,'2017-05-19 15:23:39'),(4188,1001,'temp',23,'2017-05-19 15:23:40'),(4189,1001,'hum',18,'2017-05-19 15:23:40'),(4190,1001,'lux',2125,'2017-05-19 15:23:40'),(4191,1001,'ph',10660,'2017-05-19 15:23:40'),(4192,1001,'temp',23,'2017-05-19 15:23:56'),(4193,1001,'ph',10740,'2017-05-19 15:23:56'),(4194,1001,'lux',1913,'2017-05-19 15:23:56'),(4195,1001,'hum',18,'2017-05-19 15:23:56'),(4196,1003,'temp',25,'2017-05-19 15:24:02'),(4197,1003,'hum',8,'2017-05-19 15:24:02'),(4198,1003,'ph',140,'2017-05-19 15:24:02'),(4199,1003,'lux',18195,'2017-05-19 15:24:02'),(4200,1002,'hum',2,'2017-05-19 15:24:02'),(4201,1002,'temp',25,'2017-05-19 15:24:02'),(4202,1002,'lux',15572,'2017-05-19 15:24:02'),(4203,1002,'ph',490,'2017-05-19 15:24:02'),(4204,1001,'temp',23,'2017-05-19 15:24:14'),(4205,1001,'hum',18,'2017-05-19 15:24:14'),(4206,1001,'lux',1756,'2017-05-19 15:24:14'),(4207,1001,'ph',10660,'2017-05-19 15:24:14'),(4208,1003,'hum',8,'2017-05-19 15:24:16'),(4209,1003,'temp',25,'2017-05-19 15:24:16'),(4210,1003,'lux',18143,'2017-05-19 15:24:16'),(4211,1003,'ph',140,'2017-05-19 15:24:16'),(4212,1002,'temp',25,'2017-05-19 15:24:17'),(4213,1002,'hum',2,'2017-05-19 15:24:17'),(4214,1002,'lux',15096,'2017-05-19 15:24:17'),(4215,1002,'ph',480,'2017-05-19 15:24:17'),(4216,1003,'temp',25,'2017-05-19 15:24:34'),(4217,1003,'hum',8,'2017-05-19 15:24:34'),(4218,1003,'ph',140,'2017-05-19 15:24:34'),(4219,1003,'lux',17571,'2017-05-19 15:24:34'),(4220,1002,'temp',25,'2017-05-19 15:24:37'),(4221,1002,'lux',15533,'2017-05-19 15:24:37'),(4222,1002,'ph',500,'2017-05-19 15:24:37'),(4223,1002,'hum',2,'2017-05-19 15:24:37'),(4224,1001,'temp',23,'2017-05-19 15:24:40'),(4225,1001,'lux',1607,'2017-05-19 15:24:40'),(4226,1001,'hum',18,'2017-05-19 15:24:40'),(4227,1001,'ph',10660,'2017-05-19 15:24:40'),(4228,1002,'temp',25,'2017-05-19 15:24:59'),(4229,1002,'hum',2,'2017-05-19 15:24:59'),(4230,1002,'lux',7140,'2017-05-19 15:24:59'),(4231,1002,'ph',500,'2017-05-19 15:24:59'),(4232,1003,'temp',25,'2017-05-19 15:25:00'),(4233,1003,'hum',8,'2017-05-19 15:25:00'),(4234,1003,'lux',7696,'2017-05-19 15:25:00'),(4235,1003,'ph',140,'2017-05-19 15:25:00'),(4236,1001,'temp',23,'2017-05-19 15:25:00'),(4237,1001,'hum',18,'2017-05-19 15:25:00'),(4238,1001,'lux',1850,'2017-05-19 15:25:00'),(4239,1001,'ph',10740,'2017-05-19 15:25:00'),(4240,1002,'temp',25,'2017-05-19 15:25:20'),(4241,1002,'hum',2,'2017-05-19 15:25:20'),(4242,1002,'ph',490,'2017-05-19 15:25:20'),(4243,1002,'lux',10550,'2017-05-19 15:25:20'),(4244,1001,'temp',23,'2017-05-19 15:25:21'),(4245,1001,'hum',18,'2017-05-19 15:25:21'),(4246,1001,'lux',2172,'2017-05-19 15:25:21'),(4247,1001,'ph',10720,'2017-05-19 15:25:21'),(4248,1003,'hum',8,'2017-05-19 15:25:28'),(4249,1003,'temp',25,'2017-05-19 15:25:28'),(4250,1003,'lux',11009,'2017-05-19 15:25:28'),(4251,1003,'ph',140,'2017-05-19 15:25:28'),(4252,1002,'hum',2,'2017-05-19 15:25:36'),(4253,1002,'temp',25,'2017-05-19 15:25:36'),(4254,1002,'lux',9565,'2017-05-19 15:25:36'),(4255,1002,'ph',490,'2017-05-19 15:25:36'),(4256,1003,'temp',25,'2017-05-19 15:25:42'),(4257,1003,'hum',8,'2017-05-19 15:25:42'),(4258,1003,'lux',13075,'2017-05-19 15:25:42'),(4259,1003,'ph',120,'2017-05-19 15:25:42'),(4260,1001,'temp',23,'2017-05-19 15:25:42'),(4261,1001,'hum',18,'2017-05-19 15:25:42'),(4262,1001,'lux',2049,'2017-05-19 15:25:42'),(4263,1001,'ph',10720,'2017-05-19 15:25:42'),(4264,1002,'temp',25,'2017-05-19 15:25:48'),(4265,1002,'hum',2,'2017-05-19 15:25:48'),(4266,1002,'lux',8493,'2017-05-19 15:25:48'),(4267,1002,'ph',490,'2017-05-19 15:25:48'),(4268,1003,'temp',25,'2017-05-19 15:25:54'),(4269,1003,'hum',8,'2017-05-19 15:25:54'),(4270,1003,'lux',6331,'2017-05-19 15:25:54'),(4271,1003,'ph',140,'2017-05-19 15:25:54'),(4272,1001,'temp',23,'2017-05-19 15:25:55'),(4273,1001,'hum',18,'2017-05-19 15:25:55'),(4274,1001,'lux',2079,'2017-05-19 15:25:55'),(4275,1001,'ph',10550,'2017-05-19 15:25:55'),(4276,1002,'temp',25,'2017-05-19 15:26:05'),(4277,1002,'hum',2,'2017-05-19 15:26:05'),(4278,1002,'ph',490,'2017-05-19 15:26:05'),(4279,1002,'lux',5701,'2017-05-19 15:26:05'),(4280,1003,'temp',25,'2017-05-19 15:26:19'),(4281,1003,'lux',5997,'2017-05-19 15:26:19'),(4282,1003,'hum',8,'2017-05-19 15:26:19'),(4283,1003,'ph',140,'2017-05-19 15:26:19'),(4284,1002,'temp',25,'2017-05-19 15:26:21'),(4285,1002,'hum',2,'2017-05-19 15:26:21'),(4286,1002,'lux',5503,'2017-05-19 15:26:21'),(4287,1002,'ph',490,'2017-05-19 15:26:21'),(4288,1001,'hum',18,'2017-05-19 15:26:23'),(4289,1001,'temp',23,'2017-05-19 15:26:23'),(4290,1001,'lux',2109,'2017-05-19 15:26:23'),(4291,1001,'ph',10470,'2017-05-19 15:26:23'),(4292,1002,'lux',4861,'2017-05-19 15:26:34'),(4293,1002,'ph',490,'2017-05-19 15:26:34'),(4294,1002,'temp',25,'2017-05-19 15:26:34'),(4295,1002,'hum',2,'2017-05-19 15:26:34'),(4296,1003,'temp',25,'2017-05-19 15:26:35'),(4297,1003,'hum',8,'2017-05-19 15:26:35'),(4298,1003,'lux',5176,'2017-05-19 15:26:35'),(4299,1003,'ph',120,'2017-05-19 15:26:35'),(4300,1001,'temp',23,'2017-05-19 15:26:40'),(4301,1001,'hum',18,'2017-05-19 15:26:40'),(4302,1001,'lux',2109,'2017-05-19 15:26:40'),(4303,1001,'ph',10640,'2017-05-19 15:26:40'),(4304,1001,'temp',23,'2017-05-19 15:27:02'),(4305,1001,'hum',18,'2017-05-19 15:27:02'),(4306,1001,'lux',2125,'2017-05-19 15:27:02'),(4307,1001,'ph',10720,'2017-05-19 15:27:02'),(4308,1003,'temp',25,'2017-05-19 15:27:06'),(4309,1003,'lux',5290,'2017-05-19 15:27:06'),(4310,1003,'hum',8,'2017-05-19 15:27:06'),(4311,1003,'ph',120,'2017-05-19 15:27:06'),(4312,1002,'temp',25,'2017-05-19 15:27:15'),(4313,1002,'hum',2,'2017-05-19 15:27:15'),(4314,1002,'ph',490,'2017-05-19 15:27:15'),(4315,1002,'lux',5011,'2017-05-19 15:27:15'),(4316,1001,'temp',23,'2017-05-19 15:27:18'),(4317,1001,'hum',18,'2017-05-19 15:27:18'),(4318,1001,'lux',2361,'2017-05-19 15:27:18'),(4319,1001,'ph',10720,'2017-05-19 15:27:18'),(4320,1003,'hum',8,'2017-05-19 15:27:21'),(4321,1003,'temp',25,'2017-05-19 15:27:21'),(4322,1003,'lux',5895,'2017-05-19 15:27:21'),(4323,1003,'ph',140,'2017-05-19 15:27:21'),(4324,1002,'temp',25,'2017-05-19 15:27:32'),(4325,1002,'ph',490,'2017-05-19 15:27:32'),(4326,1002,'hum',2,'2017-05-19 15:27:32'),(4327,1002,'lux',6295,'2017-05-19 15:27:32'),(4328,1001,'temp',23,'2017-05-19 15:27:35'),(4329,1001,'hum',18,'2017-05-19 15:27:35'),(4330,1001,'lux',2267,'2017-05-19 15:27:35'),(4331,1001,'ph',10720,'2017-05-19 15:27:35'),(4332,1003,'hum',8,'2017-05-19 15:27:35'),(4333,1003,'temp',25,'2017-05-19 15:27:35'),(4334,1003,'lux',9237,'2017-05-19 15:27:35'),(4335,1003,'ph',140,'2017-05-19 15:27:35'),(4336,1002,'lux',9887,'2017-05-19 15:27:52'),(4337,1002,'temp',25,'2017-05-19 15:27:52'),(4338,1002,'ph',500,'2017-05-19 15:27:52'),(4339,1002,'hum',2,'2017-05-19 15:27:52'),(4340,1003,'lux',8869,'2017-05-19 15:27:52'),(4341,1003,'hum',8,'2017-05-19 15:27:52'),(4342,1003,'ph',140,'2017-05-19 15:27:52'),(4343,1003,'temp',25,'2017-05-19 15:27:52'),(4344,1001,'lux',2784,'2017-05-19 15:27:53'),(4345,1001,'temp',23,'2017-05-19 15:27:53'),(4346,1001,'ph',10810,'2017-05-19 15:27:53'),(4347,1001,'hum',18,'2017-05-19 15:27:53'),(4348,1002,'hum',2,'2017-05-19 15:28:08'),(4349,1002,'temp',25,'2017-05-19 15:28:08'),(4350,1002,'lux',8775,'2017-05-19 15:28:08'),(4351,1002,'ph',500,'2017-05-19 15:28:08'),(4352,1001,'temp',23,'2017-05-19 15:28:09'),(4353,1001,'ph',10720,'2017-05-19 15:28:09'),(4354,1001,'lux',2830,'2017-05-19 15:28:09'),(4355,1001,'hum',19,'2017-05-19 15:28:09'),(4356,1003,'temp',25,'2017-05-19 15:28:11'),(4357,1003,'lux',10095,'2017-05-19 15:28:11'),(4358,1003,'hum',8,'2017-05-19 15:28:11'),(4359,1003,'ph',140,'2017-05-19 15:28:11'),(4360,1003,'temp',25,'2017-05-19 15:28:30'),(4361,1003,'hum',8,'2017-05-19 15:28:30'),(4362,1003,'lux',10060,'2017-05-19 15:28:30'),(4363,1003,'ph',140,'2017-05-19 15:28:30'),(4364,1002,'temp',25,'2017-05-19 15:28:34'),(4365,1002,'hum',2,'2017-05-19 15:28:34'),(4366,1002,'lux',9820,'2017-05-19 15:28:34'),(4367,1002,'ph',490,'2017-05-19 15:28:34'),(4368,1001,'hum',18,'2017-05-19 15:28:36'),(4369,1001,'temp',23,'2017-05-19 15:28:36'),(4370,1001,'lux',8458,'2017-05-19 15:28:36'),(4371,1001,'ph',10640,'2017-05-19 15:28:36'),(4372,1003,'hum',8,'2017-05-19 15:28:42'),(4373,1003,'temp',25,'2017-05-19 15:28:42'),(4374,1003,'lux',10165,'2017-05-19 15:28:42'),(4375,1003,'ph',140,'2017-05-19 15:28:42'),(4376,1001,'temp',23,'2017-05-19 15:28:52'),(4377,1001,'hum',18,'2017-05-19 15:28:52'),(4378,1001,'ph',10720,'2017-05-19 15:28:52'),(4379,1001,'lux',9077,'2017-05-19 15:28:52'),(4380,1003,'temp',25,'2017-05-19 15:28:54'),(4381,1003,'hum',8,'2017-05-19 15:28:54'),(4382,1003,'lux',22456,'2017-05-19 15:28:54'),(4383,1003,'ph',140,'2017-05-19 15:28:54'),(4384,1002,'hum',2,'2017-05-19 15:28:56'),(4385,1002,'temp',25,'2017-05-19 15:28:56'),(4386,1002,'lux',10099,'2017-05-19 15:28:56'),(4387,1002,'ph',500,'2017-05-19 15:28:56'),(4388,1001,'temp',23,'2017-05-19 15:29:06'),(4389,1001,'hum',18,'2017-05-19 15:29:06'),(4390,1001,'lux',10175,'2017-05-19 15:29:06'),(4391,1001,'ph',10720,'2017-05-19 15:29:06'),(4392,1003,'temp',25,'2017-05-19 15:29:09'),(4393,1003,'lux',15961,'2017-05-19 15:29:09'),(4394,1003,'ph',140,'2017-05-19 15:29:09'),(4395,1003,'hum',8,'2017-05-19 15:29:09'),(4396,1002,'hum',2,'2017-05-19 15:29:10'),(4397,1002,'temp',25,'2017-05-19 15:29:10'),(4398,1002,'lux',14683,'2017-05-19 15:29:10'),(4399,1002,'ph',490,'2017-05-19 15:29:10'),(4400,1003,'temp',25,'2017-05-19 15:29:23'),(4401,1003,'hum',8,'2017-05-19 15:29:23'),(4402,1003,'lux',22456,'2017-05-19 15:29:23'),(4403,1003,'ph',140,'2017-05-19 15:29:23'),(4404,1002,'hum',2,'2017-05-19 15:29:23'),(4405,1002,'temp',25,'2017-05-19 15:29:23'),(4406,1002,'lux',18866,'2017-05-19 15:29:23'),(4407,1002,'ph',490,'2017-05-19 15:29:23'),(4408,1001,'temp',24,'2017-05-19 15:29:24'),(4409,1001,'hum',18,'2017-05-19 15:29:24'),(4410,1001,'lux',10872,'2017-05-19 15:29:24'),(4411,1001,'ph',10770,'2017-05-19 15:29:24'),(4412,1003,'temp',25,'2017-05-19 15:29:45'),(4413,1003,'hum',7,'2017-05-19 15:29:45'),(4414,1003,'ph',140,'2017-05-19 15:29:45'),(4415,1003,'lux',23290,'2017-05-19 15:29:45'),(4416,1001,'temp',24,'2017-05-19 15:29:45'),(4417,1001,'hum',18,'2017-05-19 15:29:45'),(4418,1001,'lux',10743,'2017-05-19 15:29:45'),(4419,1001,'ph',10770,'2017-05-19 15:29:45'),(4420,1002,'temp',25,'2017-05-19 15:29:49'),(4421,1002,'hum',2,'2017-05-19 15:29:49'),(4422,1002,'lux',18866,'2017-05-19 15:29:49'),(4423,1002,'ph',490,'2017-05-19 15:29:49'),(4424,1003,'hum',8,'2017-05-19 15:30:05'),(4425,1003,'temp',25,'2017-05-19 15:30:05'),(4426,1003,'lux',8409,'2017-05-19 15:30:05'),(4427,1003,'ph',140,'2017-05-19 15:30:05'),(4428,1002,'temp',25,'2017-05-19 15:30:06'),(4429,1002,'hum',2,'2017-05-19 15:30:06'),(4430,1002,'lux',8785,'2017-05-19 15:30:06'),(4431,1002,'ph',490,'2017-05-19 15:30:06'),(4432,1001,'temp',24,'2017-05-19 15:30:13'),(4433,1001,'hum',18,'2017-05-19 15:30:13'),(4434,1001,'lux',5267,'2017-05-19 15:30:13'),(4435,1001,'ph',10680,'2017-05-19 15:30:13'),(4436,1003,'temp',25,'2017-05-19 15:30:18'),(4437,1003,'hum',8,'2017-05-19 15:30:18'),(4438,1003,'lux',5246,'2017-05-19 15:30:18'),(4439,1003,'ph',140,'2017-05-19 15:30:18'),(4440,1002,'temp',25,'2017-05-19 15:30:20'),(4441,1002,'hum',2,'2017-05-19 15:30:20'),(4442,1002,'lux',4884,'2017-05-19 15:30:20'),(4443,1002,'ph',490,'2017-05-19 15:30:20'),(4444,1001,'ph',10770,'2017-05-19 15:30:28'),(4445,1001,'lux',2605,'2017-05-19 15:30:28'),(4446,1001,'hum',18,'2017-05-19 15:30:28'),(4447,1001,'temp',24,'2017-05-19 15:30:28'),(4448,1003,'temp',25,'2017-05-19 15:30:35'),(4449,1003,'hum',8,'2017-05-19 15:30:35'),(4450,1003,'lux',4773,'2017-05-19 15:30:35'),(4451,1003,'ph',140,'2017-05-19 15:30:35'),(4452,1001,'temp',24,'2017-05-19 15:30:39'),(4453,1001,'lux',2394,'2017-05-19 15:30:39'),(4454,1001,'hum',18,'2017-05-19 15:30:39'),(4455,1001,'ph',10680,'2017-05-19 15:30:39'),(4456,1002,'ph',490,'2017-05-19 15:30:41'),(4457,1002,'lux',4403,'2017-05-19 15:30:41'),(4458,1002,'hum',2,'2017-05-19 15:30:41'),(4459,1002,'temp',25,'2017-05-19 15:30:41'),(4460,1001,'lux',2267,'2017-05-19 15:30:54'),(4461,1001,'temp',24,'2017-05-19 15:30:54'),(4462,1001,'ph',10730,'2017-05-19 15:30:54'),(4463,1001,'hum',18,'2017-05-19 15:30:54'),(4464,1003,'temp',25,'2017-05-19 15:30:57'),(4465,1003,'hum',7,'2017-05-19 15:30:57'),(4466,1003,'lux',4524,'2017-05-19 15:30:57'),(4467,1003,'ph',140,'2017-05-19 15:30:57'),(4468,1002,'hum',2,'2017-05-19 15:31:02'),(4469,1002,'temp',25,'2017-05-19 15:31:02'),(4470,1002,'lux',4204,'2017-05-19 15:31:02'),(4471,1002,'ph',490,'2017-05-19 15:31:02'),(4472,1001,'hum',18,'2017-05-19 15:31:13'),(4473,1001,'temp',24,'2017-05-19 15:31:13'),(4474,1001,'ph',10730,'2017-05-19 15:31:13'),(4475,1001,'lux',2282,'2017-05-19 15:31:13'),(4476,1003,'temp',25,'2017-05-19 15:31:13'),(4477,1003,'ph',140,'2017-05-19 15:31:13'),(4478,1003,'hum',8,'2017-05-19 15:31:13'),(4479,1003,'lux',4856,'2017-05-19 15:31:13'),(4480,1002,'temp',25,'2017-05-19 15:31:24'),(4481,1002,'hum',2,'2017-05-19 15:31:24'),(4482,1002,'ph',490,'2017-05-19 15:31:24'),(4483,1002,'lux',4690,'2017-05-19 15:31:24'),(4484,1003,'lux',6029,'2017-05-19 15:31:30'),(4485,1003,'temp',25,'2017-05-19 15:31:30'),(4486,1003,'hum',8,'2017-05-19 15:31:30'),(4487,1003,'ph',140,'2017-05-19 15:31:30'),(4488,1002,'temp',25,'2017-05-19 15:31:36'),(4489,1002,'hum',2,'2017-05-19 15:31:36'),(4490,1002,'lux',6211,'2017-05-19 15:31:36'),(4491,1002,'ph',510,'2017-05-19 15:31:36'),(4492,1001,'temp',24,'2017-05-19 15:31:37'),(4493,1001,'lux',2926,'2017-05-19 15:31:37'),(4494,1001,'hum',18,'2017-05-19 15:31:37'),(4495,1001,'ph',10730,'2017-05-19 15:31:37'),(4496,1003,'temp',25,'2017-05-19 15:31:48'),(4497,1003,'lux',6083,'2017-05-19 15:31:48'),(4498,1003,'ph',140,'2017-05-19 15:31:48'),(4499,1003,'hum',8,'2017-05-19 15:31:48'),(4500,1002,'temp',25,'2017-05-19 15:31:52'),(4501,1002,'hum',2,'2017-05-19 15:31:52'),(4502,1002,'lux',6564,'2017-05-19 15:31:52'),(4503,1002,'ph',490,'2017-05-19 15:31:52'),(4504,1001,'temp',24,'2017-05-19 15:31:54'),(4505,1001,'hum',18,'2017-05-19 15:31:54'),(4506,1001,'lux',3316,'2017-05-19 15:31:54'),(4507,1001,'ph',10730,'2017-05-19 15:31:54'),(4508,1002,'temp',25,'2017-05-19 15:32:14'),(4509,1002,'hum',2,'2017-05-19 15:32:14'),(4510,1002,'lux',5288,'2017-05-19 15:32:14'),(4511,1002,'ph',490,'2017-05-19 15:32:14'),(4512,1003,'hum',7,'2017-05-19 15:32:16'),(4513,1003,'temp',25,'2017-05-19 15:32:16'),(4514,1003,'lux',6083,'2017-05-19 15:32:16'),(4515,1003,'ph',140,'2017-05-19 15:32:16'),(4516,1001,'temp',24,'2017-05-19 15:32:17'),(4517,1001,'hum',18,'2017-05-19 15:32:17'),(4518,1001,'lux',2800,'2017-05-19 15:32:17'),(4519,1001,'ph',10730,'2017-05-19 15:32:17'),(4520,1002,'temp',25,'2017-05-19 15:32:32'),(4521,1002,'lux',5096,'2017-05-19 15:32:32'),(4522,1002,'hum',2,'2017-05-19 15:32:32'),(4523,1002,'ph',490,'2017-05-19 15:32:32'),(4524,1001,'temp',24,'2017-05-19 15:32:33'),(4525,1001,'lux',2361,'2017-05-19 15:32:33'),(4526,1001,'hum',18,'2017-05-19 15:32:33'),(4527,1001,'ph',10730,'2017-05-19 15:32:33'),(4528,1003,'temp',25,'2017-05-19 15:32:35'),(4529,1003,'hum',8,'2017-05-19 15:32:35'),(4530,1003,'lux',5026,'2017-05-19 15:32:35'),(4531,1003,'ph',140,'2017-05-19 15:32:35'),(4532,1001,'ph',10730,'2017-05-19 15:32:46'),(4533,1001,'lux',2109,'2017-05-19 15:32:46'),(4534,1001,'hum',18,'2017-05-19 15:32:46'),(4535,1001,'temp',24,'2017-05-19 15:32:46'),(4536,1002,'temp',25,'2017-05-19 15:32:47'),(4537,1002,'hum',2,'2017-05-19 15:32:47'),(4538,1002,'lux',4114,'2017-05-19 15:32:47'),(4539,1002,'ph',500,'2017-05-19 15:32:47'),(4540,1003,'lux',4421,'2017-05-19 15:32:48'),(4541,1003,'hum',8,'2017-05-19 15:32:48'),(4542,1003,'temp',25,'2017-05-19 15:32:48'),(4543,1003,'ph',140,'2017-05-19 15:32:48'),(4544,1002,'hum',2,'2017-05-19 15:32:59'),(4545,1002,'temp',25,'2017-05-19 15:32:59'),(4546,1002,'lux',4540,'2017-05-19 15:32:59'),(4547,1002,'ph',500,'2017-05-19 15:32:59'),(4548,1003,'temp',25,'2017-05-19 15:33:00'),(4549,1003,'hum',7,'2017-05-19 15:33:00'),(4550,1003,'lux',4862,'2017-05-19 15:33:00'),(4551,1003,'ph',140,'2017-05-19 15:33:00'),(4552,1001,'ph',10730,'2017-05-19 15:33:01'),(4553,1001,'lux',1945,'2017-05-19 15:33:01'),(4554,1001,'hum',18,'2017-05-19 15:33:01'),(4555,1001,'temp',24,'2017-05-19 15:33:01'),(4556,1001,'hum',18,'2017-05-19 15:33:17'),(4557,1001,'lux',2394,'2017-05-19 15:33:17'),(4558,1001,'ph',10820,'2017-05-19 15:33:17'),(4559,1001,'temp',24,'2017-05-19 15:33:17'),(4560,1003,'hum',8,'2017-05-19 15:33:18'),(4561,1003,'temp',25,'2017-05-19 15:33:18'),(4562,1003,'lux',8825,'2017-05-19 15:33:18'),(4563,1003,'ph',140,'2017-05-19 15:33:18'),(4564,1002,'temp',25,'2017-05-19 15:33:19'),(4565,1002,'hum',2,'2017-05-19 15:33:19'),(4566,1002,'lux',8894,'2017-05-19 15:33:19'),(4567,1002,'ph',500,'2017-05-19 15:33:19'),(4568,1002,'temp',25,'2017-05-19 15:33:31'),(4569,1002,'hum',2,'2017-05-19 15:33:31'),(4570,1002,'lux',9898,'2017-05-19 15:33:31'),(4571,1002,'ph',500,'2017-05-19 15:33:31'),(4572,1001,'temp',24,'2017-05-19 15:33:32'),(4573,1001,'hum',18,'2017-05-19 15:33:32'),(4574,1001,'lux',3122,'2017-05-19 15:33:32'),(4575,1001,'ph',10730,'2017-05-19 15:33:32'),(4576,1003,'temp',25,'2017-05-19 15:33:34'),(4577,1003,'hum',7,'2017-05-19 15:33:34'),(4578,1003,'lux',10356,'2017-05-19 15:33:34'),(4579,1003,'ph',140,'2017-05-19 15:33:34'),(4580,1003,'temp',25,'2017-05-19 15:33:54'),(4581,1003,'lux',15418,'2017-05-19 15:33:54'),(4582,1003,'hum',7,'2017-05-19 15:33:54'),(4583,1003,'ph',140,'2017-05-19 15:33:54'),(4584,1001,'temp',24,'2017-05-19 15:33:58'),(4585,1001,'hum',18,'2017-05-19 15:33:58'),(4586,1001,'lux',3539,'2017-05-19 15:33:58'),(4587,1001,'ph',10730,'2017-05-19 15:33:58'),(4588,1001,'temp',24,'2017-05-19 15:34:16'),(4589,1001,'hum',18,'2017-05-19 15:34:16'),(4590,1001,'ph',10820,'2017-05-19 15:34:16'),(4591,1001,'lux',3137,'2017-05-19 15:34:16'),(4592,1003,'temp',25,'2017-05-19 15:34:17'),(4593,1003,'hum',7,'2017-05-19 15:34:17'),(4594,1003,'lux',12260,'2017-05-19 15:34:17'),(4595,1003,'ph',140,'2017-05-19 15:34:17'),(4596,1002,'temp',25,'2017-05-19 15:34:19'),(4597,1002,'lux',14649,'2017-05-19 15:34:19'),(4598,1002,'hum',2,'2017-05-19 15:34:19'),(4599,1002,'ph',500,'2017-05-19 15:34:19'),(4600,1001,'temp',24,'2017-05-19 15:34:28'),(4601,1001,'hum',18,'2017-05-19 15:34:28'),(4602,1001,'lux',2650,'2017-05-19 15:34:28'),(4603,1001,'ph',10820,'2017-05-19 15:34:28'),(4604,1003,'temp',25,'2017-05-19 15:34:35'),(4605,1003,'ph',140,'2017-05-19 15:34:35'),(4606,1003,'lux',5224,'2017-05-19 15:34:35'),(4607,1003,'hum',8,'2017-05-19 15:34:35'),(4608,1002,'temp',25,'2017-05-19 15:34:36'),(4609,1002,'hum',2,'2017-05-19 15:34:36'),(4610,1002,'lux',4928,'2017-05-19 15:34:36'),(4611,1002,'ph',500,'2017-05-19 15:34:36'),(4612,1001,'hum',18,'2017-05-19 15:34:48'),(4613,1001,'temp',24,'2017-05-19 15:34:48'),(4614,1001,'lux',2621,'2017-05-19 15:34:48'),(4615,1001,'ph',10800,'2017-05-19 15:34:48'),(4616,1003,'temp',25,'2017-05-19 15:34:51'),(4617,1003,'hum',7,'2017-05-19 15:34:51'),(4618,1003,'lux',4892,'2017-05-19 15:34:51'),(4619,1003,'ph',140,'2017-05-19 15:34:51'),(4620,1002,'temp',25,'2017-05-19 15:34:53'),(4621,1002,'hum',2,'2017-05-19 15:34:53'),(4622,1002,'lux',4562,'2017-05-19 15:34:53'),(4623,1002,'ph',500,'2017-05-19 15:34:53'),(4624,1001,'temp',24,'2017-05-19 15:35:05'),(4625,1001,'hum',18,'2017-05-19 15:35:05'),(4626,1001,'lux',2517,'2017-05-19 15:35:05'),(4627,1001,'ph',10710,'2017-05-19 15:35:05'),(4628,1003,'hum',7,'2017-05-19 15:35:06'),(4629,1003,'temp',25,'2017-05-19 15:35:06'),(4630,1003,'lux',4516,'2017-05-19 15:35:06'),(4631,1003,'ph',140,'2017-05-19 15:35:06'),(4632,1002,'temp',25,'2017-05-19 15:35:08'),(4633,1002,'hum',2,'2017-05-19 15:35:08'),(4634,1002,'lux',4181,'2017-05-19 15:35:08'),(4635,1002,'ph',520,'2017-05-19 15:35:08'),(4636,1003,'temp',25,'2017-05-19 15:35:23'),(4637,1003,'hum',7,'2017-05-19 15:35:23'),(4638,1003,'lux',4492,'2017-05-19 15:35:23'),(4639,1003,'ph',140,'2017-05-19 15:35:23'),(4640,1001,'temp',24,'2017-05-19 15:35:24'),(4641,1001,'ph',10710,'2017-05-19 15:35:24'),(4642,1001,'lux',2331,'2017-05-19 15:35:24'),(4643,1001,'hum',18,'2017-05-19 15:35:24'),(4644,1002,'hum',2,'2017-05-19 15:35:33'),(4645,1002,'temp',25,'2017-05-19 15:35:33'),(4646,1002,'lux',4211,'2017-05-19 15:35:33'),(4647,1002,'ph',500,'2017-05-19 15:35:33'),(4648,1003,'temp',25,'2017-05-19 15:35:50'),(4649,1003,'hum',7,'2017-05-19 15:35:50'),(4650,1003,'ph',140,'2017-05-19 15:35:50'),(4651,1003,'lux',4794,'2017-05-19 15:35:50'),(4652,1001,'temp',24,'2017-05-19 15:35:52'),(4653,1001,'hum',18,'2017-05-19 15:35:52'),(4654,1001,'lux',2378,'2017-05-19 15:35:52'),(4655,1001,'ph',10710,'2017-05-19 15:35:52'),(4656,1002,'hum',2,'2017-05-19 15:35:53'),(4657,1002,'temp',25,'2017-05-19 15:35:53'),(4658,1002,'lux',4824,'2017-05-19 15:35:53'),(4659,1002,'ph',500,'2017-05-19 15:35:53'),(4660,1001,'temp',24,'2017-05-19 15:36:11'),(4661,1001,'hum',18,'2017-05-19 15:36:11'),(4662,1001,'lux',2486,'2017-05-19 15:36:11'),(4663,1001,'ph',10710,'2017-05-19 15:36:11'),(4664,1003,'temp',25,'2017-05-19 15:36:14'),(4665,1003,'hum',7,'2017-05-19 15:36:14'),(4666,1003,'lux',4753,'2017-05-19 15:36:14'),(4667,1003,'ph',140,'2017-05-19 15:36:14'),(4668,1002,'temp',25,'2017-05-19 15:36:15'),(4669,1002,'hum',2,'2017-05-19 15:36:15'),(4670,1002,'lux',4388,'2017-05-19 15:36:15'),(4671,1002,'ph',500,'2017-05-19 15:36:15'),(4672,1001,'hum',18,'2017-05-19 15:36:23'),(4673,1001,'temp',24,'2017-05-19 15:36:23'),(4674,1001,'lux',2219,'2017-05-19 15:36:23'),(4675,1001,'ph',10800,'2017-05-19 15:36:23'),(4676,1002,'temp',25,'2017-05-19 15:36:27'),(4677,1002,'hum',2,'2017-05-19 15:36:27'),(4678,1002,'lux',3984,'2017-05-19 15:36:27'),(4679,1002,'ph',500,'2017-05-19 15:36:27'),(4680,1003,'temp',25,'2017-05-19 15:36:31'),(4681,1003,'hum',7,'2017-05-19 15:36:31'),(4682,1003,'ph',140,'2017-05-19 15:36:31'),(4683,1003,'lux',4341,'2017-05-19 15:36:31'),(4684,1001,'temp',24,'2017-05-19 15:36:38'),(4685,1001,'lux',2126,'2017-05-19 15:36:38'),(4686,1001,'hum',19,'2017-05-19 15:36:38'),(4687,1001,'ph',10900,'2017-05-19 15:36:38'),(4688,1002,'temp',25,'2017-05-19 15:36:40'),(4689,1002,'lux',3789,'2017-05-19 15:36:40'),(4690,1002,'hum',2,'2017-05-19 15:36:40'),(4691,1002,'ph',500,'2017-05-19 15:36:40'),(4692,1003,'temp',25,'2017-05-19 15:36:45'),(4693,1003,'lux',4069,'2017-05-19 15:36:45'),(4694,1003,'ph',140,'2017-05-19 15:36:45'),(4695,1003,'hum',7,'2017-05-19 15:36:45'),(4696,1001,'temp',24,'2017-05-19 15:36:54'),(4697,1001,'hum',19,'2017-05-19 15:36:54'),(4698,1001,'lux',2050,'2017-05-19 15:36:54'),(4699,1001,'ph',10820,'2017-05-19 15:36:54'),(4700,1002,'temp',25,'2017-05-19 15:36:55'),(4701,1002,'hum',2,'2017-05-19 15:36:55'),(4702,1002,'lux',3623,'2017-05-19 15:36:55'),(4703,1002,'ph',490,'2017-05-19 15:36:55'),(4704,1003,'ph',140,'2017-05-19 15:37:05'),(4705,1003,'hum',7,'2017-05-19 15:37:05'),(4706,1003,'lux',3873,'2017-05-19 15:37:05'),(4707,1003,'temp',25,'2017-05-19 15:37:05'),(4708,1001,'temp',24,'2017-05-19 15:37:06'),(4709,1001,'hum',19,'2017-05-19 15:37:06'),(4710,1001,'lux',1884,'2017-05-19 15:37:06'),(4711,1001,'ph',10900,'2017-05-19 15:37:06'),(4712,1002,'ph',500,'2017-05-19 15:37:11'),(4713,1002,'lux',3436,'2017-05-19 15:37:11'),(4714,1002,'temp',25,'2017-05-19 15:37:11'),(4715,1002,'hum',2,'2017-05-19 15:37:11'),(4716,1001,'temp',24,'2017-05-19 15:37:22'),(4717,1001,'hum',19,'2017-05-19 15:37:22'),(4718,1001,'lux',1772,'2017-05-19 15:37:22'),(4719,1001,'ph',10820,'2017-05-19 15:37:22'),(4720,1002,'temp',25,'2017-05-19 15:37:24'),(4721,1002,'lux',3262,'2017-05-19 15:37:24'),(4722,1002,'hum',2,'2017-05-19 15:37:24'),(4723,1002,'ph',500,'2017-05-19 15:37:24'),(4724,1003,'hum',7,'2017-05-19 15:37:25'),(4725,1003,'temp',25,'2017-05-19 15:37:25'),(4726,1003,'lux',3600,'2017-05-19 15:37:25'),(4727,1003,'ph',140,'2017-05-19 15:37:25'),(4728,1003,'ph',140,'2017-05-19 15:37:39'),(4729,1003,'hum',7,'2017-05-19 15:37:39'),(4730,1003,'temp',25,'2017-05-19 15:37:39'),(4731,1003,'lux',3429,'2017-05-19 15:37:39'),(4732,1002,'lux',3171,'2017-05-19 15:37:39'),(4733,1002,'hum',2,'2017-05-19 15:37:39'),(4734,1002,'ph',500,'2017-05-19 15:37:39'),(4735,1002,'temp',25,'2017-05-19 15:37:39'),(4736,1001,'temp',24,'2017-05-19 15:37:41'),(4737,1001,'hum',19,'2017-05-19 15:37:41'),(4738,1001,'lux',1682,'2017-05-19 15:37:41'),(4739,1001,'ph',10900,'2017-05-19 15:37:41'),(4740,1001,'temp',24,'2017-05-19 15:37:55'),(4741,1001,'hum',19,'2017-05-19 15:37:55'),(4742,1001,'lux',1592,'2017-05-19 15:37:55'),(4743,1001,'ph',10900,'2017-05-19 15:37:55'),(4744,1003,'temp',25,'2017-05-19 15:37:57'),(4745,1003,'hum',7,'2017-05-19 15:37:57'),(4746,1003,'lux',3328,'2017-05-19 15:37:57'),(4747,1003,'ph',140,'2017-05-19 15:37:57'),(4748,1002,'temp',25,'2017-05-19 15:38:02'),(4749,1002,'lux',3081,'2017-05-19 15:38:02'),(4750,1002,'hum',2,'2017-05-19 15:38:02'),(4751,1002,'ph',490,'2017-05-19 15:38:02'),(4752,1001,'temp',24,'2017-05-19 15:38:14'),(4753,1001,'hum',19,'2017-05-19 15:38:14'),(4754,1001,'lux',1530,'2017-05-19 15:38:14'),(4755,1001,'ph',10820,'2017-05-19 15:38:14'),(4756,1003,'temp',25,'2017-05-19 15:38:21'),(4757,1003,'hum',7,'2017-05-19 15:38:21'),(4758,1003,'lux',3228,'2017-05-19 15:38:21'),(4759,1003,'ph',140,'2017-05-19 15:38:21'),(4760,1002,'temp',25,'2017-05-19 15:38:25'),(4761,1002,'hum',2,'2017-05-19 15:38:25'),(4762,1002,'lux',2959,'2017-05-19 15:38:25'),(4763,1002,'ph',490,'2017-05-19 15:38:25'),(4764,1003,'temp',25,'2017-05-19 15:38:34'),(4765,1003,'hum',7,'2017-05-19 15:38:34'),(4766,1003,'lux',3100,'2017-05-19 15:38:34'),(4767,1003,'ph',140,'2017-05-19 15:38:34'),(4768,1001,'hum',18,'2017-05-19 15:38:39'),(4769,1001,'temp',24,'2017-05-19 15:38:39'),(4770,1001,'lux',1467,'2017-05-19 15:38:39'),(4771,1001,'ph',10800,'2017-05-19 15:38:39'),(4772,1002,'temp',25,'2017-05-19 15:38:43'),(4773,1002,'hum',2,'2017-05-19 15:38:43'),(4774,1002,'lux',2800,'2017-05-19 15:38:43'),(4775,1002,'ph',490,'2017-05-19 15:38:43'),(4776,1003,'hum',7,'2017-05-19 15:38:51'),(4777,1003,'temp',25,'2017-05-19 15:38:51'),(4778,1003,'lux',3029,'2017-05-19 15:38:51'),(4779,1003,'ph',140,'2017-05-19 15:38:51'),(4780,1001,'hum',18,'2017-05-19 15:38:54'),(4781,1001,'temp',24,'2017-05-19 15:38:54'),(4782,1001,'lux',1404,'2017-05-19 15:38:54'),(4783,1001,'ph',10800,'2017-05-19 15:38:54'),(4784,1003,'temp',25,'2017-05-19 15:39:03'),(4785,1003,'hum',7,'2017-05-19 15:39:03'),(4786,1003,'lux',2970,'2017-05-19 15:39:03'),(4787,1003,'ph',140,'2017-05-19 15:39:03'),(4788,1001,'temp',24,'2017-05-19 15:39:06'),(4789,1001,'hum',18,'2017-05-19 15:39:06'),(4790,1001,'lux',1371,'2017-05-19 15:39:06'),(4791,1001,'ph',10540,'2017-05-19 15:39:06'),(4792,1002,'temp',25,'2017-05-19 15:39:09'),(4793,1002,'hum',2,'2017-05-19 15:39:09'),(4794,1002,'lux',2740,'2017-05-19 15:39:09'),(4795,1002,'ph',510,'2017-05-19 15:39:09'),(4796,1001,'temp',24,'2017-05-19 15:39:19'),(4797,1001,'ph',10800,'2017-05-19 15:39:19'),(4798,1001,'lux',1340,'2017-05-19 15:39:19'),(4799,1001,'hum',18,'2017-05-19 15:39:19'),(4800,1003,'lux',2926,'2017-05-19 15:39:20'),(4801,1003,'temp',25,'2017-05-19 15:39:20'),(4802,1003,'ph',140,'2017-05-19 15:39:20'),(4803,1003,'hum',7,'2017-05-19 15:39:20'),(4804,1002,'ph',490,'2017-05-19 15:39:23'),(4805,1002,'lux',2665,'2017-05-19 15:39:23'),(4806,1002,'hum',2,'2017-05-19 15:39:23'),(4807,1002,'temp',25,'2017-05-19 15:39:23'),(4808,1002,'temp',25,'2017-05-19 15:39:35'),(4809,1002,'lux',2635,'2017-05-19 15:39:35'),(4810,1002,'hum',2,'2017-05-19 15:39:35'),(4811,1002,'ph',490,'2017-05-19 15:39:35'),(4812,1001,'temp',24,'2017-05-19 15:39:38'),(4813,1001,'hum',19,'2017-05-19 15:39:38'),(4814,1001,'lux',1308,'2017-05-19 15:39:38'),(4815,1001,'ph',10820,'2017-05-19 15:39:38'),(4816,1003,'temp',25,'2017-05-19 15:39:40'),(4817,1003,'hum',7,'2017-05-19 15:39:40'),(4818,1003,'lux',2855,'2017-05-19 15:39:40'),(4819,1003,'ph',140,'2017-05-19 15:39:40'),(4820,1002,'temp',25,'2017-05-19 15:39:52'),(4821,1002,'hum',2,'2017-05-19 15:39:52'),(4822,1002,'lux',2589,'2017-05-19 15:39:52'),(4823,1002,'ph',490,'2017-05-19 15:39:52'),(4824,1003,'hum',7,'2017-05-19 15:39:54'),(4825,1003,'temp',25,'2017-05-19 15:39:54'),(4826,1003,'lux',2794,'2017-05-19 15:39:54'),(4827,1003,'ph',140,'2017-05-19 15:39:54'),(4828,1001,'temp',24,'2017-05-19 15:39:54'),(4829,1001,'hum',19,'2017-05-19 15:39:54'),(4830,1001,'lux',1277,'2017-05-19 15:39:54'),(4831,1001,'ph',10820,'2017-05-19 15:39:54'),(4832,1003,'hum',7,'2017-05-19 15:40:08'),(4833,1003,'temp',25,'2017-05-19 15:40:08'),(4834,1003,'ph',140,'2017-05-19 15:40:08'),(4835,1003,'lux',2739,'2017-05-19 15:40:08'),(4836,1001,'lux',1261,'2017-05-19 15:40:09'),(4837,1001,'hum',19,'2017-05-19 15:40:09'),(4838,1001,'ph',10820,'2017-05-19 15:40:09'),(4839,1001,'temp',24,'2017-05-19 15:40:09'),(4840,1002,'temp',25,'2017-05-19 15:40:10'),(4841,1002,'hum',2,'2017-05-19 15:40:10'),(4842,1002,'lux',2529,'2017-05-19 15:40:10'),(4843,1002,'ph',510,'2017-05-19 15:40:10'),(4844,1003,'temp',25,'2017-05-19 15:40:24'),(4845,1003,'hum',7,'2017-05-19 15:40:24'),(4846,1003,'lux',2682,'2017-05-19 15:40:24'),(4847,1003,'ph',140,'2017-05-19 15:40:24'),(4848,1002,'temp',25,'2017-05-19 15:40:24'),(4849,1002,'hum',2,'2017-05-19 15:40:24'),(4850,1002,'lux',2453,'2017-05-19 15:40:24'),(4851,1002,'ph',490,'2017-05-19 15:40:24'),(4852,1001,'temp',24,'2017-05-19 15:40:27'),(4853,1001,'hum',19,'2017-05-19 15:40:27'),(4854,1001,'lux',1261,'2017-05-19 15:40:27'),(4855,1001,'ph',10820,'2017-05-19 15:40:27'),(4856,1001,'hum',19,'2017-05-19 15:40:42'),(4857,1001,'temp',24,'2017-05-19 15:40:42'),(4858,1001,'lux',1214,'2017-05-19 15:40:42'),(4859,1001,'ph',10900,'2017-05-19 15:40:42'),(4860,1003,'temp',25,'2017-05-19 15:40:43'),(4861,1003,'hum',7,'2017-05-19 15:40:43'),(4862,1003,'lux',2610,'2017-05-19 15:40:43'),(4863,1003,'ph',140,'2017-05-19 15:40:43'),(4864,1002,'ph',490,'2017-05-19 15:40:43'),(4865,1002,'lux',2374,'2017-05-19 15:40:43'),(4866,1002,'hum',2,'2017-05-19 15:40:43'),(4867,1002,'temp',25,'2017-05-19 15:40:43'),(4868,1001,'ph',10820,'2017-05-19 15:40:55'),(4869,1001,'lux',1198,'2017-05-19 15:40:55'),(4870,1001,'hum',19,'2017-05-19 15:40:55'),(4871,1001,'temp',24,'2017-05-19 15:40:55'),(4872,1003,'hum',7,'2017-05-19 15:40:56'),(4873,1003,'temp',25,'2017-05-19 15:40:56'),(4874,1003,'lux',2510,'2017-05-19 15:40:56'),(4875,1003,'ph',140,'2017-05-19 15:40:56'),(4876,1002,'temp',25,'2017-05-19 15:41:07'),(4877,1002,'hum',2,'2017-05-19 15:41:07'),(4878,1002,'lux',2294,'2017-05-19 15:41:07'),(4879,1002,'ph',490,'2017-05-19 15:41:07'),(4880,1003,'temp',25,'2017-05-19 15:41:16'),(4881,1003,'hum',7,'2017-05-19 15:41:16'),(4882,1003,'lux',2467,'2017-05-19 15:41:16'),(4883,1003,'ph',140,'2017-05-19 15:41:16'),(4884,1001,'temp',24,'2017-05-19 15:41:17'),(4885,1001,'hum',19,'2017-05-19 15:41:17'),(4886,1001,'ph',10820,'2017-05-19 15:41:17'),(4887,1001,'lux',1167,'2017-05-19 15:41:17'),(4888,1002,'temp',25,'2017-05-19 15:41:24'),(4889,1002,'hum',2,'2017-05-19 15:41:24'),(4890,1002,'lux',2198,'2017-05-19 15:41:24'),(4891,1002,'ph',490,'2017-05-19 15:41:24'),(4892,1001,'temp',24,'2017-05-19 15:41:31'),(4893,1001,'lux',1151,'2017-05-19 15:41:31'),(4894,1001,'hum',19,'2017-05-19 15:41:31'),(4895,1001,'ph',10840,'2017-05-19 15:41:31'),(4896,1003,'temp',25,'2017-05-19 15:41:33'),(4897,1003,'lux',2376,'2017-05-19 15:41:33'),(4898,1003,'hum',7,'2017-05-19 15:41:33'),(4899,1003,'ph',140,'2017-05-19 15:41:33'),(4900,1002,'temp',25,'2017-05-19 15:41:44'),(4901,1002,'hum',2,'2017-05-19 15:41:44'),(4902,1002,'lux',2134,'2017-05-19 15:41:44'),(4903,1002,'ph',490,'2017-05-19 15:41:44'),(4904,1003,'hum',7,'2017-05-19 15:41:46'),(4905,1003,'temp',25,'2017-05-19 15:41:46'),(4906,1003,'lux',2316,'2017-05-19 15:41:46'),(4907,1003,'ph',150,'2017-05-19 15:41:46'),(4908,1001,'temp',24,'2017-05-19 15:41:48'),(4909,1001,'hum',18,'2017-05-19 15:41:48'),(4910,1001,'ph',10820,'2017-05-19 15:41:48'),(4911,1001,'lux',1135,'2017-05-19 15:41:48'),(4912,1002,'temp',25,'2017-05-19 15:42:04'),(4913,1002,'hum',2,'2017-05-19 15:42:04'),(4914,1002,'lux',2072,'2017-05-19 15:42:04'),(4915,1002,'ph',490,'2017-05-19 15:42:04'),(4916,1003,'temp',25,'2017-05-19 15:42:08'),(4917,1003,'hum',7,'2017-05-19 15:42:08'),(4918,1003,'lux',2270,'2017-05-19 15:42:08'),(4919,1003,'ph',140,'2017-05-19 15:42:08'),(4920,1001,'temp',24,'2017-05-19 15:42:11'),(4921,1001,'hum',18,'2017-05-19 15:42:11'),(4922,1001,'lux',1104,'2017-05-19 15:42:11'),(4923,1001,'ph',10730,'2017-05-19 15:42:11'),(4924,1003,'temp',25,'2017-05-19 15:42:23'),(4925,1003,'lux',2238,'2017-05-19 15:42:23'),(4926,1003,'hum',7,'2017-05-19 15:42:23'),(4927,1003,'ph',140,'2017-05-19 15:42:23'),(4928,1001,'temp',24,'2017-05-19 15:42:25'),(4929,1001,'hum',18,'2017-05-19 15:42:25'),(4930,1001,'lux',1056,'2017-05-19 15:42:25'),(4931,1001,'ph',10820,'2017-05-19 15:42:25'),(4932,1002,'hum',2,'2017-05-19 15:42:28'),(4933,1002,'temp',25,'2017-05-19 15:42:28'),(4934,1002,'lux',2037,'2017-05-19 15:42:28'),(4935,1002,'ph',510,'2017-05-19 15:42:28'),(4936,1001,'temp',24,'2017-05-19 15:42:37'),(4937,1001,'hum',19,'2017-05-19 15:42:37'),(4938,1001,'lux',1040,'2017-05-19 15:42:37'),(4939,1001,'ph',10920,'2017-05-19 15:42:37'),(4940,1003,'lux',2194,'2017-05-19 15:42:37'),(4941,1003,'hum',7,'2017-05-19 15:42:37'),(4942,1003,'temp',25,'2017-05-19 15:42:37'),(4943,1003,'ph',140,'2017-05-19 15:42:37'),(4944,1002,'temp',25,'2017-05-19 15:42:43'),(4945,1002,'hum',2,'2017-05-19 15:42:43'),(4946,1002,'lux',1982,'2017-05-19 15:42:43'),(4947,1002,'ph',490,'2017-05-19 15:42:43'),(4948,1001,'lux',1009,'2017-05-19 15:42:54'),(4949,1001,'temp',24,'2017-05-19 15:42:54'),(4950,1001,'hum',19,'2017-05-19 15:42:54'),(4951,1001,'ph',10920,'2017-05-19 15:42:54'),(4952,1003,'hum',7,'2017-05-19 15:42:54'),(4953,1003,'temp',25,'2017-05-19 15:42:54'),(4954,1003,'lux',2133,'2017-05-19 15:42:54'),(4955,1003,'ph',140,'2017-05-19 15:42:54'),(4956,1002,'temp',25,'2017-05-19 15:42:57'),(4957,1002,'hum',2,'2017-05-19 15:42:57'),(4958,1002,'lux',1936,'2017-05-19 15:42:57'),(4959,1002,'ph',490,'2017-05-19 15:42:57'),(4960,1001,'hum',19,'2017-05-19 15:43:12'),(4961,1001,'temp',24,'2017-05-19 15:43:12'),(4962,1001,'lux',962,'2017-05-19 15:43:12'),(4963,1001,'ph',10920,'2017-05-19 15:43:12'),(4964,1003,'temp',25,'2017-05-19 15:43:12'),(4965,1003,'ph',140,'2017-05-19 15:43:12'),(4966,1003,'lux',2118,'2017-05-19 15:43:12'),(4967,1003,'hum',7,'2017-05-19 15:43:12'),(4968,1001,'temp',24,'2017-05-19 15:43:28'),(4969,1001,'hum',19,'2017-05-19 15:43:28'),(4970,1001,'lux',962,'2017-05-19 15:43:28'),(4971,1001,'ph',10920,'2017-05-19 15:43:28'),(4972,1003,'hum',7,'2017-05-19 15:43:28'),(4973,1003,'lux',2074,'2017-05-19 15:43:28'),(4974,1003,'ph',140,'2017-05-19 15:43:28'),(4975,1003,'temp',25,'2017-05-19 15:43:28'),(4976,1002,'temp',25,'2017-05-19 15:43:29'),(4977,1002,'hum',2,'2017-05-19 15:43:29'),(4978,1002,'lux',1905,'2017-05-19 15:43:29'),(4979,1002,'ph',490,'2017-05-19 15:43:29'),(4980,1003,'temp',25,'2017-05-19 15:43:46'),(4981,1003,'hum',7,'2017-05-19 15:43:46'),(4982,1003,'ph',140,'2017-05-19 15:43:46'),(4983,1003,'lux',2031,'2017-05-19 15:43:46'),(4984,1002,'lux',1810,'2017-05-19 15:43:49'),(4985,1002,'hum',2,'2017-05-19 15:43:49'),(4986,1002,'ph',500,'2017-05-19 15:43:49'),(4987,1002,'temp',25,'2017-05-19 15:43:49'),(4988,1001,'temp',24,'2017-05-19 15:43:52'),(4989,1001,'hum',19,'2017-05-19 15:43:52'),(4990,1001,'lux',929,'2017-05-19 15:43:52'),(4991,1001,'ph',10920,'2017-05-19 15:43:52'),(4992,1001,'hum',19,'2017-05-19 15:44:04'),(4993,1001,'lux',913,'2017-05-19 15:44:04'),(4994,1001,'temp',24,'2017-05-19 15:44:04'),(4995,1001,'ph',10920,'2017-05-19 15:44:04'),(4996,1002,'temp',25,'2017-05-19 15:44:05'),(4997,1002,'hum',2,'2017-05-19 15:44:05'),(4998,1002,'lux',1778,'2017-05-19 15:44:05'),(4999,1002,'ph',490,'2017-05-19 15:44:05'),(5000,1003,'temp',25,'2017-05-19 15:44:07'),(5001,1003,'hum',8,'2017-05-19 15:44:07'),(5002,1003,'lux',1978,'2017-05-19 15:44:07'),(5003,1003,'ph',140,'2017-05-19 15:44:07'),(5004,1001,'hum',19,'2017-05-19 15:44:19'),(5005,1001,'temp',24,'2017-05-19 15:44:19'),(5006,1001,'lux',913,'2017-05-19 15:44:19'),(5007,1001,'ph',10920,'2017-05-19 15:44:19'),(5008,1002,'temp',25,'2017-05-19 15:44:20'),(5009,1002,'hum',2,'2017-05-19 15:44:20'),(5010,1002,'lux',1730,'2017-05-19 15:44:20'),(5011,1002,'ph',500,'2017-05-19 15:44:20'),(5012,1003,'temp',25,'2017-05-19 15:44:21'),(5013,1003,'hum',8,'2017-05-19 15:44:21'),(5014,1003,'lux',1920,'2017-05-19 15:44:21'),(5015,1003,'ph',140,'2017-05-19 15:44:21'),(5016,1003,'temp',25,'2017-05-19 15:44:41'),(5017,1003,'hum',8,'2017-05-19 15:44:41'),(5018,1003,'lux',1889,'2017-05-19 15:44:41'),(5019,1003,'ph',140,'2017-05-19 15:44:41'),(5020,1002,'lux',1686,'2017-05-19 15:44:42'),(5021,1002,'hum',2,'2017-05-19 15:44:42'),(5022,1002,'ph',490,'2017-05-19 15:44:42'),(5023,1002,'temp',25,'2017-05-19 15:44:42'),(5024,1001,'temp',24,'2017-05-19 15:44:46'),(5025,1001,'hum',19,'2017-05-19 15:44:46'),(5026,1001,'lux',882,'2017-05-19 15:44:46'),(5027,1001,'ph',10920,'2017-05-19 15:44:46'),(5028,1003,'ph',140,'2017-05-19 15:45:04'),(5029,1003,'lux',1860,'2017-05-19 15:45:04'),(5030,1003,'hum',8,'2017-05-19 15:45:04'),(5031,1003,'temp',25,'2017-05-19 15:45:04'),(5032,1001,'temp',24,'2017-05-19 15:45:05'),(5033,1001,'hum',19,'2017-05-19 15:45:05'),(5034,1001,'ph',10920,'2017-05-19 15:45:05'),(5035,1001,'lux',850,'2017-05-19 15:45:05'),(5036,1002,'temp',25,'2017-05-19 15:45:07'),(5037,1002,'hum',2,'2017-05-19 15:45:07'),(5038,1002,'lux',1640,'2017-05-19 15:45:07'),(5039,1002,'ph',490,'2017-05-19 15:45:07'),(5040,1003,'temp',25,'2017-05-19 15:45:27'),(5041,1003,'hum',8,'2017-05-19 15:45:27'),(5042,1003,'lux',1814,'2017-05-19 15:45:27'),(5043,1003,'ph',150,'2017-05-19 15:45:27'),(5044,1002,'temp',25,'2017-05-19 15:45:30'),(5045,1002,'hum',2,'2017-05-19 15:45:30'),(5046,1002,'ph',490,'2017-05-19 15:45:30'),(5047,1002,'lux',1625,'2017-05-19 15:45:30'),(5048,1001,'hum',19,'2017-05-19 15:45:31'),(5049,1001,'temp',24,'2017-05-19 15:45:31'),(5050,1001,'ph',10840,'2017-05-19 15:45:31'),(5051,1001,'lux',835,'2017-05-19 15:45:31'),(5052,1001,'temp',24,'2017-05-19 15:45:47'),(5053,1001,'hum',19,'2017-05-19 15:45:47'),(5054,1001,'lux',803,'2017-05-19 15:45:47'),(5055,1001,'ph',10920,'2017-05-19 15:45:47'),(5056,1003,'temp',25,'2017-05-19 15:45:48'),(5057,1003,'hum',8,'2017-05-19 15:45:48'),(5058,1003,'ph',150,'2017-05-19 15:45:48'),(5059,1003,'lux',1783,'2017-05-19 15:45:48'),(5060,1002,'temp',25,'2017-05-19 15:45:49'),(5061,1002,'hum',2,'2017-05-19 15:45:49'),(5062,1002,'lux',1621,'2017-05-19 15:45:49'),(5063,1002,'ph',500,'2017-05-19 15:45:49'),(5064,1001,'temp',24,'2017-05-19 15:46:10'),(5065,1001,'hum',19,'2017-05-19 15:46:10'),(5066,1001,'ph',10920,'2017-05-19 15:46:10'),(5067,1001,'lux',787,'2017-05-19 15:46:10'),(5068,1003,'temp',25,'2017-05-19 15:46:16'),(5069,1003,'lux',1810,'2017-05-19 15:46:16'),(5070,1003,'ph',150,'2017-05-19 15:46:16'),(5071,1003,'hum',7,'2017-05-19 15:46:16'),(5072,1002,'temp',25,'2017-05-19 15:46:17'),(5073,1002,'hum',2,'2017-05-19 15:46:17'),(5074,1002,'lux',1610,'2017-05-19 15:46:17'),(5075,1002,'ph',490,'2017-05-19 15:46:17'),(5076,1001,'temp',24,'2017-05-19 15:46:31'),(5077,1001,'hum',18,'2017-05-19 15:46:31'),(5078,1001,'lux',788,'2017-05-19 15:46:31'),(5079,1001,'ph',10730,'2017-05-19 15:46:31'),(5080,1003,'temp',25,'2017-05-19 15:46:45'),(5081,1003,'hum',7,'2017-05-19 15:46:45'),(5082,1003,'lux',1825,'2017-05-19 15:46:45'),(5083,1003,'ph',140,'2017-05-19 15:46:45'),(5084,1001,'ph',10920,'2017-05-19 15:46:46'),(5085,1001,'lux',756,'2017-05-19 15:46:46'),(5086,1001,'hum',19,'2017-05-19 15:46:46'),(5087,1001,'temp',24,'2017-05-19 15:46:46'),(5088,1002,'temp',25,'2017-05-19 15:46:48'),(5089,1002,'hum',2,'2017-05-19 15:46:48'),(5090,1002,'lux',1656,'2017-05-19 15:46:48'),(5091,1002,'ph',490,'2017-05-19 15:46:48'),(5092,1003,'temp',25,'2017-05-19 15:46:59'),(5093,1003,'hum',7,'2017-05-19 15:46:59'),(5094,1003,'ph',150,'2017-05-19 15:46:59'),(5095,1003,'lux',1901,'2017-05-19 15:46:59'),(5096,1003,'temp',25,'2017-05-19 15:47:12'),(5097,1003,'hum',8,'2017-05-19 15:47:12'),(5098,1003,'lux',1950,'2017-05-19 15:47:12'),(5099,1003,'ph',150,'2017-05-19 15:47:12'),(5100,1001,'temp',24,'2017-05-19 15:47:14'),(5101,1001,'hum',18,'2017-05-19 15:47:14'),(5102,1001,'lux',788,'2017-05-19 15:47:14'),(5103,1001,'ph',10940,'2017-05-19 15:47:14'),(5104,1002,'temp',25,'2017-05-19 15:47:18'),(5105,1002,'hum',2,'2017-05-19 15:47:18'),(5106,1002,'ph',520,'2017-05-19 15:47:18'),(5107,1002,'lux',1730,'2017-05-19 15:47:18'),(5108,1003,'temp',25,'2017-05-19 15:47:25'),(5109,1003,'hum',8,'2017-05-19 15:47:25'),(5110,1003,'lux',2007,'2017-05-19 15:47:25'),(5111,1003,'ph',140,'2017-05-19 15:47:25'),(5112,1001,'temp',24,'2017-05-19 15:47:28'),(5113,1001,'hum',19,'2017-05-19 15:47:28'),(5114,1001,'ph',10960,'2017-05-19 15:47:28'),(5115,1001,'lux',787,'2017-05-19 15:47:28'),(5116,1002,'temp',25,'2017-05-19 15:47:34'),(5117,1002,'hum',2,'2017-05-19 15:47:34'),(5118,1002,'lux',1889,'2017-05-19 15:47:34'),(5119,1002,'ph',500,'2017-05-19 15:47:34'),(5120,1003,'hum',8,'2017-05-19 15:47:44'),(5121,1003,'temp',24,'2017-05-19 15:47:44'),(5122,1003,'lux',2079,'2017-05-19 15:47:44'),(5123,1003,'ph',140,'2017-05-19 15:47:44'),(5124,1001,'temp',24,'2017-05-19 15:47:44'),(5125,1001,'lux',803,'2017-05-19 15:47:44'),(5126,1001,'ph',10960,'2017-05-19 15:47:44'),(5127,1001,'hum',19,'2017-05-19 15:47:44'),(5128,1002,'temp',25,'2017-05-19 15:47:59'),(5129,1002,'hum',2,'2017-05-19 15:47:59'),(5130,1002,'lux',1982,'2017-05-19 15:47:59'),(5131,1002,'ph',500,'2017-05-19 15:47:59'),(5132,1003,'temp',24,'2017-05-19 15:48:02'),(5133,1003,'hum',8,'2017-05-19 15:48:02'),(5134,1003,'lux',2185,'2017-05-19 15:48:02'),(5135,1003,'ph',150,'2017-05-19 15:48:02'),(5136,1001,'temp',24,'2017-05-19 15:48:03'),(5137,1001,'lux',835,'2017-05-19 15:48:03'),(5138,1001,'ph',10920,'2017-05-19 15:48:03'),(5139,1001,'hum',19,'2017-05-19 15:48:03'),(5140,1003,'lux',2306,'2017-05-19 15:48:15'),(5141,1003,'ph',140,'2017-05-19 15:48:15'),(5142,1003,'hum',7,'2017-05-19 15:48:15'),(5143,1003,'temp',24,'2017-05-19 15:48:15'),(5144,1001,'temp',24,'2017-05-19 15:48:15'),(5145,1001,'hum',19,'2017-05-19 15:48:15'),(5146,1001,'lux',866,'2017-05-19 15:48:15'),(5147,1001,'ph',10960,'2017-05-19 15:48:15'),(5148,1002,'hum',2,'2017-05-19 15:48:17'),(5149,1002,'lux',2118,'2017-05-19 15:48:17'),(5150,1002,'temp',25,'2017-05-19 15:48:17'),(5151,1002,'ph',500,'2017-05-19 15:48:17'),(5152,1001,'ph',10960,'2017-05-19 15:48:32'),(5153,1001,'lux',866,'2017-05-19 15:48:32'),(5154,1001,'hum',19,'2017-05-19 15:48:32'),(5155,1001,'temp',24,'2017-05-19 15:48:32'),(5156,1002,'temp',25,'2017-05-19 15:48:33'),(5157,1002,'hum',2,'2017-05-19 15:48:33'),(5158,1002,'lux',2357,'2017-05-19 15:48:33'),(5159,1002,'ph',520,'2017-05-19 15:48:33'),(5160,1002,'temp',25,'2017-05-19 15:48:47'),(5161,1002,'hum',2,'2017-05-19 15:48:47'),(5162,1002,'lux',2665,'2017-05-19 15:48:47'),(5163,1002,'ph',500,'2017-05-19 15:48:47'),(5164,1003,'temp',24,'2017-05-19 15:48:48'),(5165,1003,'ph',150,'2017-05-19 15:48:48'),(5166,1003,'lux',2487,'2017-05-19 15:48:48'),(5167,1003,'hum',8,'2017-05-19 15:48:48'),(5168,1001,'temp',24,'2017-05-19 15:49:00'),(5169,1001,'lux',929,'2017-05-19 15:49:00'),(5170,1001,'ph',10960,'2017-05-19 15:49:00'),(5171,1001,'hum',19,'2017-05-19 15:49:00'),(5172,1002,'lux',2406,'2017-05-19 15:49:03'),(5173,1002,'temp',25,'2017-05-19 15:49:03'),(5174,1002,'hum',2,'2017-05-19 15:49:03'),(5175,1002,'ph',520,'2017-05-19 15:49:03'),(5176,1003,'temp',24,'2017-05-19 15:49:04'),(5177,1003,'hum',8,'2017-05-19 15:49:04'),(5178,1003,'lux',2588,'2017-05-19 15:49:04'),(5179,1003,'ph',140,'2017-05-19 15:49:04'),(5180,1001,'temp',24,'2017-05-19 15:49:18'),(5181,1001,'hum',19,'2017-05-19 15:49:18'),(5182,1001,'lux',1040,'2017-05-19 15:49:18'),(5183,1001,'ph',10960,'2017-05-19 15:49:18'),(5184,1003,'temp',24,'2017-05-19 15:49:21'),(5185,1003,'ph',140,'2017-05-19 15:49:21'),(5186,1003,'lux',2517,'2017-05-19 15:49:21'),(5187,1003,'hum',8,'2017-05-19 15:49:21'),(5188,1002,'temp',25,'2017-05-19 15:49:23'),(5189,1002,'hum',2,'2017-05-19 15:49:23'),(5190,1002,'lux',2309,'2017-05-19 15:49:23'),(5191,1002,'ph',500,'2017-05-19 15:49:23'),(5192,1001,'hum',19,'2017-05-19 15:49:31'),(5193,1001,'temp',24,'2017-05-19 15:49:31'),(5194,1001,'lux',1056,'2017-05-19 15:49:31'),(5195,1001,'ph',10960,'2017-05-19 15:49:31'),(5196,1003,'temp',24,'2017-05-19 15:49:34'),(5197,1003,'hum',7,'2017-05-19 15:49:34'),(5198,1003,'ph',150,'2017-05-19 15:49:34'),(5199,1003,'lux',2531,'2017-05-19 15:49:34'),(5200,1002,'temp',25,'2017-05-19 15:49:38'),(5201,1002,'lux',2341,'2017-05-19 15:49:38'),(5202,1002,'hum',2,'2017-05-19 15:49:38'),(5203,1002,'ph',500,'2017-05-19 15:49:38'),(5204,1001,'temp',24,'2017-05-19 15:49:44'),(5205,1001,'ph',10960,'2017-05-19 15:49:44'),(5206,1001,'lux',1072,'2017-05-19 15:49:44'),(5207,1001,'hum',19,'2017-05-19 15:49:44'),(5208,1002,'temp',25,'2017-05-19 15:49:52'),(5209,1002,'hum',2,'2017-05-19 15:49:52'),(5210,1002,'lux',2374,'2017-05-19 15:49:52'),(5211,1002,'ph',500,'2017-05-19 15:49:52'),(5212,1003,'temp',24,'2017-05-19 15:49:56'),(5213,1003,'hum',7,'2017-05-19 15:49:56'),(5214,1003,'ph',150,'2017-05-19 15:49:56'),(5215,1003,'lux',2574,'2017-05-19 15:49:56'),(5216,1001,'hum',19,'2017-05-19 15:49:59'),(5217,1001,'lux',1135,'2017-05-19 15:49:59'),(5218,1001,'temp',24,'2017-05-19 15:49:59'),(5219,1001,'ph',11050,'2017-05-19 15:49:59'),(5220,1003,'hum',8,'2017-05-19 15:50:11'),(5221,1003,'temp',24,'2017-05-19 15:50:11'),(5222,1003,'lux',2617,'2017-05-19 15:50:11'),(5223,1003,'ph',150,'2017-05-19 15:50:11'),(5224,1002,'temp',25,'2017-05-19 15:50:12'),(5225,1002,'lux',2406,'2017-05-19 15:50:12'),(5226,1002,'hum',2,'2017-05-19 15:50:12'),(5227,1002,'ph',490,'2017-05-19 15:50:12'),(5228,1001,'temp',24,'2017-05-19 15:50:14'),(5229,1001,'hum',19,'2017-05-19 15:50:14'),(5230,1001,'lux',1167,'2017-05-19 15:50:14'),(5231,1001,'ph',10960,'2017-05-19 15:50:14'),(5232,1001,'temp',23,'2017-05-19 15:50:26'),(5233,1001,'hum',19,'2017-05-19 15:50:26'),(5234,1001,'ph',10980,'2017-05-19 15:50:26'),(5235,1001,'lux',1186,'2017-05-19 15:50:26'),(5236,1002,'temp',25,'2017-05-19 15:50:28'),(5237,1002,'hum',2,'2017-05-19 15:50:28'),(5238,1002,'lux',2437,'2017-05-19 15:50:28'),(5239,1002,'ph',520,'2017-05-19 15:50:28'),(5240,1003,'temp',24,'2017-05-19 15:50:29'),(5241,1003,'lux',2660,'2017-05-19 15:50:29'),(5242,1003,'ph',150,'2017-05-19 15:50:29'),(5243,1003,'hum',7,'2017-05-19 15:50:29'),(5244,1002,'temp',25,'2017-05-19 15:50:40'),(5245,1002,'hum',2,'2017-05-19 15:50:40'),(5246,1002,'lux',2468,'2017-05-19 15:50:40'),(5247,1002,'ph',490,'2017-05-19 15:50:40'),(5248,1001,'temp',24,'2017-05-19 15:50:40'),(5249,1001,'hum',19,'2017-05-19 15:50:40'),(5250,1001,'lux',1214,'2017-05-19 15:50:40'),(5251,1001,'ph',10960,'2017-05-19 15:50:40'),(5252,1003,'hum',8,'2017-05-19 15:50:42'),(5253,1003,'temp',24,'2017-05-19 15:50:42'),(5254,1003,'ph',140,'2017-05-19 15:50:42'),(5255,1003,'lux',2688,'2017-05-19 15:50:42'),(5256,1003,'temp',24,'2017-05-19 15:50:56'),(5257,1003,'hum',7,'2017-05-19 15:50:56'),(5258,1003,'lux',2679,'2017-05-19 15:50:56'),(5259,1003,'ph',140,'2017-05-19 15:50:56'),(5260,1001,'temp',24,'2017-05-19 15:50:58'),(5261,1001,'hum',19,'2017-05-19 15:50:58'),(5262,1001,'lux',1198,'2017-05-19 15:50:58'),(5263,1001,'ph',10960,'2017-05-19 15:50:58'),(5264,1002,'temp',25,'2017-05-19 15:51:00'),(5265,1002,'lux',2468,'2017-05-19 15:51:00'),(5266,1002,'hum',2,'2017-05-19 15:51:00'),(5267,1002,'ph',490,'2017-05-19 15:51:00'),(5268,1003,'temp',24,'2017-05-19 15:51:08'),(5269,1003,'lux',2693,'2017-05-19 15:51:08'),(5270,1003,'hum',8,'2017-05-19 15:51:08'),(5271,1003,'ph',140,'2017-05-19 15:51:08'),(5272,1002,'temp',25,'2017-05-19 15:51:14'),(5273,1002,'hum',2,'2017-05-19 15:51:14'),(5274,1002,'lux',2484,'2017-05-19 15:51:14'),(5275,1002,'ph',490,'2017-05-19 15:51:14'),(5276,1001,'temp',24,'2017-05-19 15:51:15'),(5277,1001,'hum',19,'2017-05-19 15:51:15'),(5278,1001,'lux',1198,'2017-05-19 15:51:15'),(5279,1001,'ph',10960,'2017-05-19 15:51:15'),(5280,1003,'hum',7,'2017-05-19 15:51:26'),(5281,1003,'temp',24,'2017-05-19 15:51:26'),(5282,1003,'lux',2693,'2017-05-19 15:51:26'),(5283,1003,'ph',140,'2017-05-19 15:51:26'),(5284,1002,'lux',2499,'2017-05-19 15:51:26'),(5285,1002,'ph',490,'2017-05-19 15:51:26'),(5286,1002,'hum',2,'2017-05-19 15:51:26'),(5287,1002,'temp',25,'2017-05-19 15:51:26'),(5288,1002,'hum',2,'2017-05-19 15:51:40'),(5289,1002,'temp',25,'2017-05-19 15:51:40'),(5290,1002,'lux',2514,'2017-05-19 15:51:40'),(5291,1002,'ph',510,'2017-05-19 15:51:40'),(5292,1001,'temp',23,'2017-05-19 15:51:41'),(5293,1001,'ph',10900,'2017-05-19 15:51:41'),(5294,1001,'lux',1186,'2017-05-19 15:51:41'),(5295,1001,'hum',19,'2017-05-19 15:51:41'),(5296,1002,'temp',25,'2017-05-19 15:51:55'),(5297,1002,'hum',2,'2017-05-19 15:51:55'),(5298,1002,'lux',2529,'2017-05-19 15:51:55'),(5299,1002,'ph',490,'2017-05-19 15:51:55'),(5300,1003,'ph',140,'2017-05-19 15:51:56'),(5301,1003,'lux',2708,'2017-05-19 15:51:56'),(5302,1003,'hum',7,'2017-05-19 15:51:56'),(5303,1003,'temp',24,'2017-05-19 15:51:56'),(5304,1001,'temp',24,'2017-05-19 15:51:58'),(5305,1001,'hum',19,'2017-05-19 15:51:58'),(5306,1001,'lux',1230,'2017-05-19 15:51:58'),(5307,1001,'ph',10960,'2017-05-19 15:51:58'),(5308,1003,'temp',24,'2017-05-19 15:52:13'),(5309,1003,'lux',2779,'2017-05-19 15:52:13'),(5310,1003,'ph',140,'2017-05-19 15:52:13'),(5311,1003,'hum',8,'2017-05-19 15:52:13'),(5312,1002,'temp',25,'2017-05-19 15:52:13'),(5313,1002,'hum',2,'2017-05-19 15:52:13'),(5314,1002,'lux',2574,'2017-05-19 15:52:13'),(5315,1002,'ph',490,'2017-05-19 15:52:13'),(5316,1001,'hum',19,'2017-05-19 15:52:19'),(5317,1001,'temp',24,'2017-05-19 15:52:19'),(5318,1001,'lux',1214,'2017-05-19 15:52:19'),(5319,1001,'ph',10960,'2017-05-19 15:52:19'),(5320,1003,'hum',7,'2017-05-19 15:52:26'),(5321,1003,'temp',24,'2017-05-19 15:52:26'),(5322,1003,'ph',150,'2017-05-19 15:52:26'),(5323,1003,'lux',2885,'2017-05-19 15:52:26'),(5324,1002,'temp',25,'2017-05-19 15:52:27'),(5325,1002,'lux',2679,'2017-05-19 15:52:27'),(5326,1002,'ph',490,'2017-05-19 15:52:27'),(5327,1002,'hum',2,'2017-05-19 15:52:27'),(5328,1001,'temp',24,'2017-05-19 15:52:33'),(5329,1001,'hum',19,'2017-05-19 15:52:33'),(5330,1001,'lux',1182,'2017-05-19 15:52:33'),(5331,1001,'ph',10960,'2017-05-19 15:52:33'),(5332,1002,'lux',2800,'2017-05-19 15:52:40'),(5333,1002,'ph',490,'2017-05-19 15:52:40'),(5334,1002,'hum',2,'2017-05-19 15:52:40'),(5335,1002,'temp',25,'2017-05-19 15:52:40'),(5336,1003,'temp',24,'2017-05-19 15:52:41'),(5337,1003,'hum',7,'2017-05-19 15:52:41'),(5338,1003,'lux',3005,'2017-05-19 15:52:41'),(5339,1003,'ph',150,'2017-05-19 15:52:41'),(5340,1003,'temp',24,'2017-05-19 15:52:53'),(5341,1003,'hum',7,'2017-05-19 15:52:53'),(5342,1003,'ph',140,'2017-05-19 15:52:53'),(5343,1003,'lux',3150,'2017-05-19 15:52:53'),(5344,1002,'temp',25,'2017-05-19 15:52:54'),(5345,1002,'hum',2,'2017-05-19 15:52:54'),(5346,1002,'lux',2943,'2017-05-19 15:52:54'),(5347,1002,'ph',490,'2017-05-19 15:52:54'),(5348,1001,'temp',24,'2017-05-19 15:52:57'),(5349,1001,'hum',19,'2017-05-19 15:52:57'),(5350,1001,'ph',10960,'2017-05-19 15:52:57'),(5351,1001,'lux',1182,'2017-05-19 15:52:57'),(5352,1003,'ph',140,'2017-05-19 15:53:08'),(5353,1003,'hum',7,'2017-05-19 15:53:08'),(5354,1003,'lux',3307,'2017-05-19 15:53:08'),(5355,1003,'temp',25,'2017-05-19 15:53:08'),(5356,1002,'temp',25,'2017-05-19 15:53:08'),(5357,1002,'hum',2,'2017-05-19 15:53:08'),(5358,1002,'lux',3174,'2017-05-19 15:53:08'),(5359,1002,'ph',500,'2017-05-19 15:53:08'),(5360,1001,'temp',24,'2017-05-19 15:53:13'),(5361,1001,'hum',19,'2017-05-19 15:53:13'),(5362,1001,'lux',1230,'2017-05-19 15:53:13'),(5363,1001,'ph',11050,'2017-05-19 15:53:13'),(5364,1003,'temp',25,'2017-05-19 15:53:24'),(5365,1003,'hum',7,'2017-05-19 15:53:24'),(5366,1003,'lux',3624,'2017-05-19 15:53:24'),(5367,1003,'ph',140,'2017-05-19 15:53:24'),(5368,1001,'temp',24,'2017-05-19 15:53:28'),(5369,1001,'hum',19,'2017-05-19 15:53:28'),(5370,1001,'lux',1261,'2017-05-19 15:53:28'),(5371,1001,'ph',10960,'2017-05-19 15:53:28'),(5372,1002,'temp',25,'2017-05-19 15:53:29'),(5373,1002,'hum',2,'2017-05-19 15:53:29'),(5374,1002,'lux',3415,'2017-05-19 15:53:29'),(5375,1002,'ph',520,'2017-05-19 15:53:29'),(5376,1002,'hum',2,'2017-05-19 15:53:41'),(5377,1002,'temp',25,'2017-05-19 15:53:41'),(5378,1002,'lux',4079,'2017-05-19 15:53:41'),(5379,1002,'ph',520,'2017-05-19 15:53:41'),(5380,1003,'temp',25,'2017-05-19 15:53:42'),(5381,1003,'hum',7,'2017-05-19 15:53:42'),(5382,1003,'lux',4055,'2017-05-19 15:53:42'),(5383,1003,'ph',140,'2017-05-19 15:53:42'),(5384,1001,'temp',24,'2017-05-19 15:53:43'),(5385,1001,'ph',10880,'2017-05-19 15:53:43'),(5386,1001,'lux',1324,'2017-05-19 15:53:43'),(5387,1001,'hum',19,'2017-05-19 15:53:43'),(5388,1002,'hum',2,'2017-05-19 15:53:55'),(5389,1002,'lux',5250,'2017-05-19 15:53:55'),(5390,1002,'ph',510,'2017-05-19 15:53:55'),(5391,1002,'temp',25,'2017-05-19 15:53:55'),(5392,1001,'ph',10700,'2017-05-19 15:53:59'),(5393,1001,'lux',1404,'2017-05-19 15:53:59'),(5394,1001,'temp',24,'2017-05-19 15:53:59'),(5395,1001,'hum',19,'2017-05-19 15:53:59'),(5396,1003,'hum',7,'2017-05-19 15:54:05'),(5397,1003,'temp',25,'2017-05-19 15:54:05'),(5398,1003,'ph',140,'2017-05-19 15:54:05'),(5399,1003,'lux',5406,'2017-05-19 15:54:05'),(5400,1001,'temp',24,'2017-05-19 15:54:17'),(5401,1001,'hum',19,'2017-05-19 15:54:17'),(5402,1001,'ph',10700,'2017-05-19 15:54:17'),(5403,1001,'lux',1514,'2017-05-19 15:54:17'),(5404,1003,'temp',25,'2017-05-19 15:54:17'),(5405,1003,'hum',8,'2017-05-19 15:54:17'),(5406,1003,'lux',5433,'2017-05-19 15:54:17'),(5407,1003,'ph',140,'2017-05-19 15:54:17'),(5408,1002,'temp',25,'2017-05-19 15:54:18'),(5409,1002,'hum',2,'2017-05-19 15:54:18'),(5410,1002,'ph',490,'2017-05-19 15:54:18'),(5411,1002,'lux',5396,'2017-05-19 15:54:18'),(5412,1003,'temp',25,'2017-05-19 15:54:31'),(5413,1003,'hum',7,'2017-05-19 15:54:31'),(5414,1003,'ph',140,'2017-05-19 15:54:31'),(5415,1003,'lux',5839,'2017-05-19 15:54:31'),(5416,1002,'lux',5638,'2017-05-19 15:54:33'),(5417,1002,'hum',2,'2017-05-19 15:54:33'),(5418,1002,'temp',25,'2017-05-19 15:54:33'),(5419,1002,'ph',510,'2017-05-19 15:54:33'),(5420,1001,'lux',1667,'2017-05-19 15:54:35'),(5421,1001,'hum',19,'2017-05-19 15:54:35'),(5422,1001,'temp',24,'2017-05-19 15:54:35'),(5423,1001,'ph',10790,'2017-05-19 15:54:35'),(5424,1003,'temp',25,'2017-05-19 15:54:46'),(5425,1003,'hum',7,'2017-05-19 15:54:46'),(5426,1003,'lux',6995,'2017-05-19 15:54:46'),(5427,1003,'ph',140,'2017-05-19 15:54:46'),(5428,1001,'ph',10700,'2017-05-19 15:54:53'),(5429,1001,'hum',19,'2017-05-19 15:54:53'),(5430,1001,'lux',1884,'2017-05-19 15:54:53'),(5431,1001,'temp',24,'2017-05-19 15:54:53'),(5432,1002,'ph',0,'2017-05-19 15:54:53'),(5433,1002,'lux',0,'2017-05-19 15:54:53'),(5434,1002,'temp',0,'2017-05-19 15:54:53'),(5435,1002,'hum',0,'2017-05-19 15:54:53'),(5436,1003,'ph',140,'2017-05-19 15:55:03'),(5437,1003,'lux',7667,'2017-05-19 15:55:03'),(5438,1003,'hum',7,'2017-05-19 15:55:03'),(5439,1003,'temp',25,'2017-05-19 15:55:03'),(5440,1001,'temp',23,'2017-05-19 15:55:06'),(5441,1001,'hum',19,'2017-05-19 15:55:06'),(5442,1001,'lux',2040,'2017-05-19 15:55:06'),(5443,1001,'ph',10720,'2017-05-19 15:55:06'),(5444,1002,'temp',25,'2017-05-19 15:55:07'),(5445,1002,'hum',2,'2017-05-19 15:55:07'),(5446,1002,'lux',7504,'2017-05-19 15:55:07'),(5447,1002,'ph',520,'2017-05-19 15:55:07'),(5448,1001,'temp',24,'2017-05-19 15:55:19'),(5449,1001,'lux',2079,'2017-05-19 15:55:19'),(5450,1001,'hum',19,'2017-05-19 15:55:19'),(5451,1001,'ph',10790,'2017-05-19 15:55:19'),(5452,1002,'temp',25,'2017-05-19 15:55:19'),(5453,1002,'lux',5374,'2017-05-19 15:55:19'),(5454,1002,'hum',2,'2017-05-19 15:55:19'),(5455,1002,'ph',500,'2017-05-19 15:55:19'),(5456,1003,'temp',25,'2017-05-19 15:55:28'),(5457,1003,'ph',150,'2017-05-19 15:55:28'),(5458,1003,'lux',6057,'2017-05-19 15:55:28'),(5459,1003,'hum',7,'2017-05-19 15:55:28'),(5460,1001,'hum',19,'2017-05-19 15:55:33'),(5461,1001,'temp',24,'2017-05-19 15:55:33'),(5462,1001,'ph',10700,'2017-05-19 15:55:33'),(5463,1001,'lux',1931,'2017-05-19 15:55:33'),(5464,1002,'temp',25,'2017-05-19 15:55:36'),(5465,1002,'hum',2,'2017-05-19 15:55:36'),(5466,1002,'lux',4934,'2017-05-19 15:55:36'),(5467,1002,'ph',500,'2017-05-19 15:55:36'),(5468,1003,'hum',7,'2017-05-19 15:55:41'),(5469,1003,'temp',25,'2017-05-19 15:55:41'),(5470,1003,'lux',5474,'2017-05-19 15:55:41'),(5471,1003,'ph',150,'2017-05-19 15:55:42'),(5472,1001,'temp',24,'2017-05-19 15:55:49'),(5473,1001,'hum',19,'2017-05-19 15:55:49'),(5474,1001,'lux',1835,'2017-05-19 15:55:49'),(5475,1001,'ph',10700,'2017-05-19 15:55:49'),(5476,1003,'temp',25,'2017-05-19 15:55:55'),(5477,1003,'hum',7,'2017-05-19 15:55:55'),(5478,1003,'ph',140,'2017-05-19 15:55:55'),(5479,1003,'lux',10092,'2017-05-19 15:55:55'),(5480,1002,'temp',25,'2017-05-19 15:55:58'),(5481,1002,'hum',2,'2017-05-19 15:55:58'),(5482,1002,'lux',6083,'2017-05-19 15:55:58'),(5483,1002,'ph',520,'2017-05-19 15:55:58'),(5484,1001,'temp',24,'2017-05-19 15:56:01'),(5485,1001,'lux',2065,'2017-05-19 15:56:01'),(5486,1001,'hum',19,'2017-05-19 15:56:01'),(5487,1001,'ph',10700,'2017-05-19 15:56:01'),(5488,1003,'temp',25,'2017-05-19 15:56:12'),(5489,1003,'lux',8315,'2017-05-19 15:56:12'),(5490,1003,'ph',140,'2017-05-19 15:56:12'),(5491,1003,'hum',7,'2017-05-19 15:56:12'),(5492,1002,'ph',520,'2017-05-19 15:56:23'),(5493,1002,'temp',25,'2017-05-19 15:56:23'),(5494,1002,'hum',2,'2017-05-19 15:56:23'),(5495,1002,'lux',6495,'2017-05-19 15:56:23'),(5496,1003,'temp',25,'2017-05-19 15:56:27'),(5497,1003,'hum',7,'2017-05-19 15:56:27'),(5498,1003,'ph',140,'2017-05-19 15:56:27'),(5499,1003,'lux',6205,'2017-05-19 15:56:27'),(5500,1001,'temp',24,'2017-05-19 15:56:33'),(5501,1001,'hum',19,'2017-05-19 15:56:33'),(5502,1001,'lux',2157,'2017-05-19 15:56:33'),(5503,1001,'ph',10700,'2017-05-19 15:56:33'),(5504,1002,'temp',25,'2017-05-19 15:56:43'),(5505,1002,'hum',2,'2017-05-19 15:56:43'),(5506,1002,'lux',7355,'2017-05-19 15:56:43'),(5507,1002,'ph',520,'2017-05-19 15:56:43'),(5508,1003,'temp',25,'2017-05-19 15:56:45'),(5509,1003,'hum',7,'2017-05-19 15:56:45'),(5510,1003,'lux',8075,'2017-05-19 15:56:45'),(5511,1003,'ph',140,'2017-05-19 15:56:45'),(5512,1001,'temp',24,'2017-05-19 15:56:48'),(5513,1001,'hum',19,'2017-05-19 15:56:48'),(5514,1001,'lux',2284,'2017-05-19 15:56:48'),(5515,1001,'ph',10700,'2017-05-19 15:56:48'),(5516,1003,'temp',25,'2017-05-19 15:56:59'),(5517,1003,'lux',9274,'2017-05-19 15:56:59'),(5518,1003,'ph',140,'2017-05-19 15:56:59'),(5519,1003,'hum',7,'2017-05-19 15:56:59'),(5520,1002,'temp',25,'2017-05-19 15:57:00'),(5521,1002,'hum',2,'2017-05-19 15:57:00'),(5522,1002,'lux',8246,'2017-05-19 15:57:00'),(5523,1002,'ph',520,'2017-05-19 15:57:00'),(5524,1001,'temp',24,'2017-05-19 15:57:01'),(5525,1001,'hum',19,'2017-05-19 15:57:01'),(5526,1001,'ph',10790,'2017-05-19 15:57:01'),(5527,1001,'lux',2442,'2017-05-19 15:57:01'),(5528,1003,'temp',25,'2017-05-19 15:57:13'),(5529,1003,'hum',7,'2017-05-19 15:57:13'),(5530,1003,'ph',160,'2017-05-19 15:57:13'),(5531,1003,'lux',9948,'2017-05-19 15:57:13'),(5532,1002,'ph',520,'2017-05-19 15:57:14'),(5533,1002,'lux',9750,'2017-05-19 15:57:14'),(5534,1002,'hum',2,'2017-05-19 15:57:14'),(5535,1002,'temp',25,'2017-05-19 15:57:14'),(5536,1001,'temp',23,'2017-05-19 15:57:15'),(5537,1001,'hum',19,'2017-05-19 15:57:15'),(5538,1001,'lux',2523,'2017-05-19 15:57:15'),(5539,1001,'ph',10810,'2017-05-19 15:57:15'),(5540,1001,'temp',24,'2017-05-19 15:57:27'),(5541,1001,'ph',10680,'2017-05-19 15:57:27'),(5542,1001,'lux',2463,'2017-05-19 15:57:27'),(5543,1001,'hum',19,'2017-05-19 15:57:27'),(5544,1003,'temp',25,'2017-05-19 15:57:29'),(5545,1003,'hum',7,'2017-05-19 15:57:29'),(5546,1003,'ph',150,'2017-05-19 15:57:29'),(5547,1003,'lux',6800,'2017-05-19 15:57:29'),(5548,1002,'temp',25,'2017-05-19 15:57:34'),(5549,1002,'hum',2,'2017-05-19 15:57:34'),(5550,1002,'lux',6410,'2017-05-19 15:57:34'),(5551,1002,'ph',520,'2017-05-19 15:57:34'),(5552,1003,'temp',25,'2017-05-19 15:57:41'),(5553,1003,'hum',7,'2017-05-19 15:57:41'),(5554,1003,'lux',6268,'2017-05-19 15:57:41'),(5555,1003,'ph',140,'2017-05-19 15:57:41'),(5556,1001,'temp',24,'2017-05-19 15:57:42'),(5557,1001,'hum',19,'2017-05-19 15:57:42'),(5558,1001,'lux',2447,'2017-05-19 15:57:42'),(5559,1001,'ph',10770,'2017-05-19 15:57:42'),(5560,1002,'temp',25,'2017-05-19 15:57:51'),(5561,1002,'hum',2,'2017-05-19 15:57:51'),(5562,1002,'lux',5827,'2017-05-19 15:57:51'),(5563,1002,'ph',520,'2017-05-19 15:57:51'),(5564,1003,'ph',150,'2017-05-19 15:57:54'),(5565,1003,'hum',7,'2017-05-19 15:57:54'),(5566,1003,'lux',6444,'2017-05-19 15:57:54'),(5567,1003,'temp',25,'2017-05-19 15:57:54'),(5568,1001,'ph',10770,'2017-05-19 15:57:57'),(5569,1001,'lux',2508,'2017-05-19 15:57:57'),(5570,1001,'hum',19,'2017-05-19 15:57:57'),(5571,1001,'temp',24,'2017-05-19 15:57:57'),(5572,1002,'temp',25,'2017-05-19 15:58:08'),(5573,1002,'hum',2,'2017-05-19 15:58:08'),(5574,1002,'lux',5827,'2017-05-19 15:58:08'),(5575,1002,'ph',520,'2017-05-19 15:58:08'),(5576,1003,'temp',25,'2017-05-19 15:58:09'),(5577,1003,'hum',7,'2017-05-19 15:58:09'),(5578,1003,'lux',6091,'2017-05-19 15:58:09'),(5579,1003,'ph',140,'2017-05-19 15:58:09'),(5580,1001,'temp',24,'2017-05-19 15:58:11'),(5581,1001,'ph',10510,'2017-05-19 15:58:11'),(5582,1001,'lux',2508,'2017-05-19 15:58:11'),(5583,1001,'hum',19,'2017-05-19 15:58:11'),(5584,1002,'lux',6041,'2017-05-19 15:58:20'),(5585,1002,'temp',25,'2017-05-19 15:58:20'),(5586,1002,'hum',2,'2017-05-19 15:58:20'),(5587,1002,'ph',520,'2017-05-19 15:58:20'),(5588,1001,'temp',24,'2017-05-19 15:58:26'),(5589,1001,'hum',19,'2017-05-19 15:58:26'),(5590,1001,'lux',2552,'2017-05-19 15:58:26'),(5591,1001,'ph',10680,'2017-05-19 15:58:26'),(5592,1003,'temp',25,'2017-05-19 15:58:28'),(5593,1003,'hum',7,'2017-05-19 15:58:28'),(5594,1003,'lux',6471,'2017-05-19 15:58:28'),(5595,1003,'ph',150,'2017-05-19 15:58:28'),(5596,1001,'hum',19,'2017-05-19 15:58:37'),(5597,1001,'temp',24,'2017-05-19 15:58:37'),(5598,1001,'lux',2583,'2017-05-19 15:58:37'),(5599,1001,'ph',10770,'2017-05-19 15:58:37'),(5600,1002,'lux',6196,'2017-05-19 15:58:38'),(5601,1002,'ph',520,'2017-05-19 15:58:38'),(5602,1002,'hum',2,'2017-05-19 15:58:38'),(5603,1002,'temp',25,'2017-05-19 15:58:38'),(5604,1003,'temp',25,'2017-05-19 15:58:43'),(5605,1003,'ph',140,'2017-05-19 15:58:43'),(5606,1003,'lux',7135,'2017-05-19 15:58:43'),(5607,1003,'hum',7,'2017-05-19 15:58:43'),(5608,1001,'hum',19,'2017-05-19 15:58:52'),(5609,1001,'temp',24,'2017-05-19 15:58:52'),(5610,1001,'lux',2567,'2017-05-19 15:58:52'),(5611,1001,'ph',10680,'2017-05-19 15:58:52'),(5612,1002,'temp',25,'2017-05-19 15:58:52'),(5613,1002,'ph',520,'2017-05-19 15:58:52'),(5614,1002,'lux',6608,'2017-05-19 15:58:52'),(5615,1002,'hum',2,'2017-05-19 15:58:52'),(5616,1003,'temp',25,'2017-05-19 15:58:58'),(5617,1003,'hum',7,'2017-05-19 15:58:58'),(5618,1003,'lux',7381,'2017-05-19 15:58:58'),(5619,1003,'ph',140,'2017-05-19 15:58:58'),(5620,1003,'hum',7,'2017-05-19 15:59:14'),(5621,1003,'temp',25,'2017-05-19 15:59:14'),(5622,1003,'lux',7142,'2017-05-19 15:59:14'),(5623,1003,'ph',150,'2017-05-19 15:59:14'),(5624,1002,'temp',25,'2017-05-19 15:59:15'),(5625,1002,'lux',7637,'2017-05-19 15:59:15'),(5626,1002,'ph',520,'2017-05-19 15:59:15'),(5627,1002,'hum',2,'2017-05-19 15:59:15'),(5628,1001,'hum',19,'2017-05-19 15:59:18'),(5629,1001,'lux',2523,'2017-05-19 15:59:18'),(5630,1001,'temp',24,'2017-05-19 15:59:18'),(5631,1001,'ph',10510,'2017-05-19 15:59:18'),(5632,1003,'ph',150,'2017-05-19 15:59:32'),(5633,1003,'lux',5974,'2017-05-19 15:59:32'),(5634,1003,'hum',7,'2017-05-19 15:59:32'),(5635,1003,'temp',25,'2017-05-19 15:59:32'),(5636,1001,'temp',24,'2017-05-19 15:59:32'),(5637,1001,'hum',19,'2017-05-19 15:59:32'),(5638,1001,'lux',2258,'2017-05-19 15:59:32'),(5639,1001,'ph',10680,'2017-05-19 15:59:32'),(5640,1002,'temp',25,'2017-05-19 15:59:32'),(5641,1002,'hum',2,'2017-05-19 15:59:32'),(5642,1002,'lux',5842,'2017-05-19 15:59:32'),(5643,1002,'ph',520,'2017-05-19 15:59:32'),(5644,1002,'temp',25,'2017-05-19 15:59:47'),(5645,1002,'hum',2,'2017-05-19 15:59:47'),(5646,1002,'lux',4785,'2017-05-19 15:59:47'),(5647,1002,'ph',520,'2017-05-19 15:59:47'),(5648,1001,'lux',2130,'2017-05-19 15:59:47'),(5649,1001,'hum',19,'2017-05-19 15:59:47'),(5650,1001,'temp',24,'2017-05-19 15:59:47'),(5651,1001,'ph',10770,'2017-05-19 15:59:47'),(5652,1003,'ph',140,'2017-05-19 15:59:47'),(5653,1003,'lux',5179,'2017-05-19 15:59:47'),(5654,1003,'hum',7,'2017-05-19 15:59:47'),(5655,1003,'temp',25,'2017-05-19 15:59:47'),(5656,1002,'lux',4859,'2017-05-19 16:00:02'),(5657,1002,'temp',25,'2017-05-19 16:00:02'),(5658,1002,'hum',2,'2017-05-19 16:00:02'),(5659,1002,'ph',520,'2017-05-19 16:00:02'),(5660,1003,'temp',25,'2017-05-19 16:00:04'),(5661,1003,'hum',7,'2017-05-19 16:00:04'),(5662,1003,'lux',5251,'2017-05-19 16:00:04'),(5663,1003,'ph',140,'2017-05-19 16:00:04'),(5664,1001,'lux',1980,'2017-05-19 16:00:04'),(5665,1001,'ph',10770,'2017-05-19 16:00:04'),(5666,1001,'hum',19,'2017-05-19 16:00:04'),(5667,1001,'temp',24,'2017-05-19 16:00:04'),(5668,1002,'ph',510,'2017-05-19 16:00:18'),(5669,1002,'hum',2,'2017-05-19 16:00:18'),(5670,1002,'lux',6649,'2017-05-19 16:00:18'),(5671,1002,'temp',25,'2017-05-19 16:00:18'),(5672,1003,'temp',25,'2017-05-19 16:00:19'),(5673,1003,'lux',9698,'2017-05-19 16:00:19'),(5674,1003,'hum',7,'2017-05-19 16:00:19'),(5675,1003,'ph',140,'2017-05-19 16:00:19'),(5676,1001,'temp',24,'2017-05-19 16:00:21'),(5677,1001,'hum',19,'2017-05-19 16:00:21'),(5678,1001,'lux',2040,'2017-05-19 16:00:21'),(5679,1001,'ph',10680,'2017-05-19 16:00:21'),(5680,1002,'temp',25,'2017-05-19 16:00:36'),(5681,1002,'hum',2,'2017-05-19 16:00:36'),(5682,1002,'lux',8679,'2017-05-19 16:00:36'),(5683,1002,'ph',510,'2017-05-19 16:00:36'),(5684,1001,'temp',24,'2017-05-19 16:00:36'),(5685,1001,'hum',19,'2017-05-19 16:00:36'),(5686,1001,'lux',2116,'2017-05-19 16:00:36'),(5687,1001,'ph',10680,'2017-05-19 16:00:36'),(5688,1003,'temp',25,'2017-05-19 16:00:37'),(5689,1003,'hum',7,'2017-05-19 16:00:37'),(5690,1003,'lux',9268,'2017-05-19 16:00:37'),(5691,1003,'ph',150,'2017-05-19 16:00:37'),(5692,1002,'temp',25,'2017-05-19 16:00:48'),(5693,1002,'hum',2,'2017-05-19 16:00:48'),(5694,1002,'lux',15418,'2017-05-19 16:00:48'),(5695,1002,'ph',520,'2017-05-19 16:00:48'),(5696,1003,'lux',18583,'2017-05-19 16:00:50'),(5697,1003,'temp',25,'2017-05-19 16:00:50'),(5698,1003,'hum',7,'2017-05-19 16:00:50'),(5699,1003,'ph',150,'2017-05-19 16:00:50'),(5700,1001,'lux',2289,'2017-05-19 16:00:51'),(5701,1001,'hum',19,'2017-05-19 16:00:51'),(5702,1001,'temp',24,'2017-05-19 16:00:51'),(5703,1001,'ph',10770,'2017-05-19 16:00:51'),(5704,1002,'temp',25,'2017-05-19 16:01:02'),(5705,1002,'hum',2,'2017-05-19 16:01:02'),(5706,1002,'lux',9934,'2017-05-19 16:01:02'),(5707,1002,'ph',520,'2017-05-19 16:01:02'),(5708,1001,'temp',24,'2017-05-19 16:01:07'),(5709,1001,'hum',19,'2017-05-19 16:01:07'),(5710,1001,'lux',2040,'2017-05-19 16:01:07'),(5711,1001,'ph',10770,'2017-05-19 16:01:07'),(5712,1003,'temp',25,'2017-05-19 16:01:10'),(5713,1003,'lux',10136,'2017-05-19 16:01:10'),(5714,1003,'hum',7,'2017-05-19 16:01:10'),(5715,1003,'ph',140,'2017-05-19 16:01:10'),(5716,1003,'temp',25,'2017-05-19 16:01:27'),(5717,1003,'hum',7,'2017-05-19 16:01:27'),(5718,1003,'lux',11560,'2017-05-19 16:01:27'),(5719,1003,'ph',160,'2017-05-19 16:01:27'),(5720,1002,'temp',25,'2017-05-19 16:01:28'),(5721,1002,'hum',2,'2017-05-19 16:01:28'),(5722,1002,'lux',13490,'2017-05-19 16:01:28'),(5723,1002,'ph',520,'2017-05-19 16:01:28'),(5724,1001,'hum',19,'2017-05-19 16:01:31'),(5725,1001,'temp',24,'2017-05-19 16:01:31'),(5726,1001,'lux',2179,'2017-05-19 16:01:31'),(5727,1001,'ph',10770,'2017-05-19 16:01:31'),(5728,1002,'temp',25,'2017-05-19 16:01:42'),(5729,1002,'hum',2,'2017-05-19 16:01:42'),(5730,1002,'lux',10216,'2017-05-19 16:01:42'),(5731,1002,'ph',510,'2017-05-19 16:01:42'),(5732,1003,'temp',25,'2017-05-19 16:01:47'),(5733,1003,'hum',7,'2017-05-19 16:01:47'),(5734,1003,'lux',10646,'2017-05-19 16:01:47'),(5735,1003,'ph',150,'2017-05-19 16:01:47'),(5736,1001,'temp',24,'2017-05-19 16:01:48'),(5737,1001,'hum',19,'2017-05-19 16:01:48'),(5738,1001,'ph',10770,'2017-05-19 16:01:48'),(5739,1001,'lux',2116,'2017-05-19 16:01:48'),(5740,1001,'temp',24,'2017-05-19 16:02:02'),(5741,1001,'hum',19,'2017-05-19 16:02:02'),(5742,1001,'lux',2130,'2017-05-19 16:02:02'),(5743,1001,'ph',10860,'2017-05-19 16:02:02'),(5744,1002,'hum',2,'2017-05-19 16:02:06'),(5745,1002,'temp',25,'2017-05-19 16:02:06'),(5746,1002,'lux',9869,'2017-05-19 16:02:06'),(5747,1002,'ph',510,'2017-05-19 16:02:06'),(5748,1003,'temp',25,'2017-05-19 16:02:07'),(5749,1003,'hum',7,'2017-05-19 16:02:07'),(5750,1003,'lux',10112,'2017-05-19 16:02:07'),(5751,1003,'ph',150,'2017-05-19 16:02:07'),(5752,1002,'hum',2,'2017-05-19 16:02:18'),(5753,1002,'temp',25,'2017-05-19 16:02:18'),(5754,1002,'lux',9626,'2017-05-19 16:02:18'),(5755,1002,'ph',520,'2017-05-19 16:02:18'),(5756,1001,'temp',24,'2017-05-19 16:02:21'),(5757,1001,'hum',19,'2017-05-19 16:02:21'),(5758,1001,'lux',2100,'2017-05-19 16:02:21'),(5759,1001,'ph',10860,'2017-05-19 16:02:21'),(5760,1003,'temp',25,'2017-05-19 16:02:22'),(5761,1003,'hum',7,'2017-05-19 16:02:22'),(5762,1003,'lux',9722,'2017-05-19 16:02:22'),(5763,1003,'ph',150,'2017-05-19 16:02:22'),(5764,1002,'temp',25,'2017-05-19 16:02:35'),(5765,1002,'hum',2,'2017-05-19 16:02:35'),(5766,1002,'lux',9712,'2017-05-19 16:02:35'),(5767,1002,'ph',510,'2017-05-19 16:02:35'),(5768,1001,'hum',19,'2017-05-19 16:02:38'),(5769,1001,'temp',24,'2017-05-19 16:02:38'),(5770,1001,'lux',2130,'2017-05-19 16:02:38'),(5771,1001,'ph',10860,'2017-05-19 16:02:38'),(5772,1003,'temp',25,'2017-05-19 16:02:49'),(5773,1003,'hum',7,'2017-05-19 16:02:49'),(5774,1003,'lux',10065,'2017-05-19 16:02:49'),(5775,1003,'ph',150,'2017-05-19 16:02:49'),(5776,1002,'temp',25,'2017-05-19 16:02:51'),(5777,1002,'hum',2,'2017-05-19 16:02:51'),(5778,1002,'lux',10662,'2017-05-19 16:02:51'),(5779,1002,'ph',520,'2017-05-19 16:02:51'),(5780,1001,'temp',24,'2017-05-19 16:02:58'),(5781,1001,'lux',2258,'2017-05-19 16:02:58'),(5782,1001,'ph',10860,'2017-05-19 16:02:58'),(5783,1001,'hum',19,'2017-05-19 16:02:58'),(5784,1002,'temp',25,'2017-05-19 16:03:11'),(5785,1002,'hum',2,'2017-05-19 16:03:11'),(5786,1002,'lux',8366,'2017-05-19 16:03:11'),(5787,1002,'ph',510,'2017-05-19 16:03:11'),(5788,1003,'hum',7,'2017-05-19 16:03:12'),(5789,1003,'temp',25,'2017-05-19 16:03:12'),(5790,1003,'lux',8858,'2017-05-19 16:03:12'),(5791,1003,'ph',150,'2017-05-19 16:03:12'),(5792,1001,'temp',24,'2017-05-19 16:03:14'),(5793,1001,'hum',19,'2017-05-19 16:03:14'),(5794,1001,'lux',2069,'2017-05-19 16:03:14'),(5795,1001,'ph',10860,'2017-05-19 16:03:14'),(5796,1001,'hum',19,'2017-05-19 16:03:35'),(5797,1001,'temp',24,'2017-05-19 16:03:35'),(5798,1001,'lux',2116,'2017-05-19 16:03:35'),(5799,1001,'ph',10860,'2017-05-19 16:03:35'),(5800,1002,'ph',510,'2017-05-19 16:03:36'),(5801,1002,'lux',8512,'2017-05-19 16:03:36'),(5802,1002,'hum',2,'2017-05-19 16:03:36'),(5803,1002,'temp',25,'2017-05-19 16:03:36'),(5804,1003,'temp',25,'2017-05-19 16:03:37'),(5805,1003,'hum',7,'2017-05-19 16:03:37'),(5806,1003,'lux',8820,'2017-05-19 16:03:37'),(5807,1003,'ph',150,'2017-05-19 16:03:37'),(5808,1003,'lux',5799,'2017-05-19 16:03:49'),(5809,1003,'temp',25,'2017-05-19 16:03:49'),(5810,1003,'hum',7,'2017-05-19 16:03:49'),(5811,1003,'ph',140,'2017-05-19 16:03:49'),(5812,1001,'temp',24,'2017-05-19 16:03:50'),(5813,1001,'lux',2009,'2017-05-19 16:03:50'),(5814,1001,'ph',10860,'2017-05-19 16:03:50'),(5815,1001,'hum',19,'2017-05-19 16:03:50'),(5816,1002,'temp',25,'2017-05-19 16:04:02'),(5817,1002,'hum',2,'2017-05-19 16:04:02'),(5818,1002,'lux',5516,'2017-05-19 16:04:02'),(5819,1002,'ph',510,'2017-05-19 16:04:02'),(5820,1001,'temp',24,'2017-05-19 16:04:04'),(5821,1001,'hum',19,'2017-05-19 16:04:04'),(5822,1001,'lux',1965,'2017-05-19 16:04:04'),(5823,1001,'ph',10860,'2017-05-19 16:04:04'),(5824,1003,'temp',25,'2017-05-19 16:04:05'),(5825,1003,'hum',7,'2017-05-19 16:04:05'),(5826,1003,'lux',5163,'2017-05-19 16:04:05'),(5827,1003,'ph',140,'2017-05-19 16:04:05'),(5828,1002,'temp',25,'2017-05-19 16:04:24'),(5829,1002,'hum',2,'2017-05-19 16:04:24'),(5830,1002,'lux',4275,'2017-05-19 16:04:24'),(5831,1002,'ph',520,'2017-05-19 16:04:24'),(5832,1001,'temp',24,'2017-05-19 16:04:28'),(5833,1001,'hum',19,'2017-05-19 16:04:28'),(5834,1001,'lux',1856,'2017-05-19 16:04:28'),(5835,1001,'ph',10860,'2017-05-19 16:04:28'),(5836,1001,'temp',24,'2017-05-19 16:04:41'),(5837,1001,'lux',1686,'2017-05-19 16:04:41'),(5838,1001,'hum',19,'2017-05-19 16:04:41'),(5839,1001,'ph',10860,'2017-05-19 16:04:41'),(5840,1002,'temp',25,'2017-05-19 16:04:44'),(5841,1002,'lux',4686,'2017-05-19 16:04:44'),(5842,1002,'ph',510,'2017-05-19 16:04:44'),(5843,1002,'hum',2,'2017-05-19 16:04:44'),(5844,1002,'lux',5771,'2017-05-19 16:04:56'),(5845,1002,'ph',520,'2017-05-19 16:04:56'),(5846,1002,'hum',2,'2017-05-19 16:04:56'),(5847,1002,'temp',25,'2017-05-19 16:04:56'),(5848,1003,'temp',25,'2017-05-19 16:04:58'),(5849,1003,'hum',7,'2017-05-19 16:04:58'),(5850,1003,'lux',4635,'2017-05-19 16:04:58'),(5851,1003,'ph',140,'2017-05-19 16:04:58'),(5852,1001,'temp',23,'2017-05-19 16:04:59'),(5853,1001,'hum',19,'2017-05-19 16:04:59'),(5854,1001,'ph',10900,'2017-05-19 16:04:59'),(5855,1001,'lux',1656,'2017-05-19 16:04:59'),(5856,1002,'lux',9856,'2017-05-19 16:05:12'),(5857,1002,'temp',25,'2017-05-19 16:05:12'),(5858,1002,'hum',2,'2017-05-19 16:05:12'),(5859,1002,'ph',500,'2017-05-19 16:05:12'),(5860,1001,'lux',1872,'2017-05-19 16:05:12'),(5861,1001,'hum',19,'2017-05-19 16:05:12'),(5862,1001,'temp',24,'2017-05-19 16:05:12'),(5863,1001,'ph',10860,'2017-05-19 16:05:12'),(5864,1003,'hum',7,'2017-05-19 16:05:15'),(5865,1003,'temp',25,'2017-05-19 16:05:15'),(5866,1003,'ph',140,'2017-05-19 16:05:15'),(5867,1003,'lux',10281,'2017-05-19 16:05:15'),(5868,1002,'hum',2,'2017-05-19 16:05:27'),(5869,1002,'lux',10281,'2017-05-19 16:05:27'),(5870,1002,'temp',25,'2017-05-19 16:05:27'),(5871,1002,'ph',500,'2017-05-19 16:05:27'),(5872,1001,'temp',24,'2017-05-19 16:05:27'),(5873,1001,'lux',1872,'2017-05-19 16:05:27'),(5874,1001,'hum',19,'2017-05-19 16:05:27'),(5875,1001,'ph',10860,'2017-05-19 16:05:27'),(5876,1003,'hum',7,'2017-05-19 16:05:51'),(5877,1003,'temp',25,'2017-05-19 16:05:51'),(5878,1003,'lux',10281,'2017-05-19 16:05:51'),(5879,1003,'ph',140,'2017-05-19 16:05:51'),(5880,1002,'temp',25,'2017-05-19 16:05:54'),(5881,1002,'hum',2,'2017-05-19 16:05:54'),(5882,1002,'lux',10033,'2017-05-19 16:05:54'),(5883,1002,'ph',530,'2017-05-19 16:05:54'),(5884,1001,'hum',19,'2017-05-19 16:05:55'),(5885,1001,'temp',23,'2017-05-19 16:05:55'),(5886,1001,'lux',1841,'2017-05-19 16:05:55'),(5887,1001,'ph',10900,'2017-05-19 16:05:55'),(5888,1003,'ph',150,'2017-05-19 16:06:06'),(5889,1003,'lux',9380,'2017-05-19 16:06:06'),(5890,1003,'hum',7,'2017-05-19 16:06:06'),(5891,1003,'temp',25,'2017-05-19 16:06:06'),(5892,1002,'temp',25,'2017-05-19 16:06:07'),(5893,1002,'hum',2,'2017-05-19 16:06:07'),(5894,1002,'ph',520,'2017-05-19 16:06:07'),(5895,1002,'lux',9586,'2017-05-19 16:06:07'),(5896,1001,'temp',24,'2017-05-19 16:06:08'),(5897,1001,'hum',19,'2017-05-19 16:06:08'),(5898,1001,'lux',1889,'2017-05-19 16:06:08'),(5899,1001,'ph',10960,'2017-05-19 16:06:08'),(5900,1003,'hum',7,'2017-05-19 16:06:18'),(5901,1003,'temp',25,'2017-05-19 16:06:18'),(5902,1003,'lux',7687,'2017-05-19 16:06:18'),(5903,1003,'ph',150,'2017-05-19 16:06:18'),(5904,1001,'lux',1825,'2017-05-19 16:06:19'),(5905,1001,'hum',19,'2017-05-19 16:06:19'),(5906,1001,'ph',10880,'2017-05-19 16:06:19'),(5907,1001,'temp',24,'2017-05-19 16:06:19'),(5908,1002,'hum',2,'2017-05-19 16:06:22'),(5909,1002,'temp',25,'2017-05-19 16:06:22'),(5910,1002,'lux',7504,'2017-05-19 16:06:22'),(5911,1002,'ph',520,'2017-05-19 16:06:22'),(5912,1001,'hum',19,'2017-05-19 16:06:31'),(5913,1001,'lux',1951,'2017-05-19 16:06:31'),(5914,1001,'temp',24,'2017-05-19 16:06:31'),(5915,1001,'ph',10960,'2017-05-19 16:06:31'),(5916,1002,'temp',25,'2017-05-19 16:06:39'),(5917,1002,'hum',2,'2017-05-19 16:06:39'),(5918,1002,'lux',9971,'2017-05-19 16:06:39'),(5919,1002,'ph',520,'2017-05-19 16:06:39'),(5920,1001,'hum',19,'2017-05-19 16:06:50'),(5921,1001,'temp',24,'2017-05-19 16:06:50'),(5922,1001,'lux',1995,'2017-05-19 16:06:50'),(5923,1001,'ph',10960,'2017-05-19 16:06:50'),(5924,1003,'temp',25,'2017-05-19 16:06:50'),(5925,1003,'hum',7,'2017-05-19 16:06:50'),(5926,1003,'lux',9992,'2017-05-19 16:06:50'),(5927,1003,'ph',140,'2017-05-19 16:06:50'),(5928,1002,'temp',25,'2017-05-19 16:06:51'),(5929,1002,'hum',2,'2017-05-19 16:06:51'),(5930,1002,'lux',10133,'2017-05-19 16:06:51'),(5931,1002,'ph',510,'2017-05-19 16:06:51'),(5932,1002,'temp',25,'2017-05-19 16:07:05'),(5933,1002,'lux',8941,'2017-05-19 16:07:05'),(5934,1002,'hum',2,'2017-05-19 16:07:05'),(5935,1002,'ph',520,'2017-05-19 16:07:05'),(5936,1003,'hum',7,'2017-05-19 16:07:06'),(5937,1003,'temp',25,'2017-05-19 16:07:06'),(5938,1003,'lux',9094,'2017-05-19 16:07:06'),(5939,1003,'ph',150,'2017-05-19 16:07:06');
/*!40000 ALTER TABLE `data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `plantInfo`
--
DROP TABLE IF EXISTS `plantInfo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plantInfo` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`imageUrl` varchar(1000) DEFAULT NULL,
`maxTemp` int(11) DEFAULT NULL,
`minTemp` int(11) DEFAULT NULL,
`maxPh` int(11) DEFAULT NULL,
`minPh` int(11) DEFAULT NULL,
`maxHum` int(11) DEFAULT NULL,
`minHum` int(11) DEFAULT NULL,
`maxLux` int(11) DEFAULT NULL,
`minLux` int(11) DEFAULT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `plantInfo`
--
LOCK TABLES `plantInfo` WRITE;
/*!40000 ALTER TABLE `plantInfo` DISABLE KEYS */;
/*!40000 ALTER TABLE `plantInfo` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `plants`
--
DROP TABLE IF EXISTS `plants`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`nickname` varchar(50) NOT NULL,
`name` varchar(100) DEFAULT NULL,
`description` varchar(200) DEFAULT NULL,
`maxtemp` int(11) DEFAULT NULL,
`mintemp` int(11) DEFAULT NULL,
`maxph` int(11) DEFAULT NULL,
`minph` int(11) DEFAULT NULL,
`maxhum` int(11) DEFAULT NULL,
`minhum` int(11) DEFAULT NULL,
`maxlux` int(11) DEFAULT NULL,
`minlux` int(11) DEFAULT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `plants`
--
LOCK TABLES `plants` WRITE;
/*!40000 ALTER TABLE `plants` DISABLE KEYS */;
INSERT INTO `plants` VALUES (1,16,'mr. basil','basil','fun basil for cooking',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-18 14:30:55','2017-05-18 14:30:55'),(2,16,'mr. mint','mint','fun mint for cocktails',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-18 14:31:30','2017-05-18 14:31:30'),(17,16,'Today\'s Friday','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-17 20:26:46','2017-05-19 15:14:30'),(54,16,'nicky','the plant','is cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-19 15:31:21','2017-05-19 15:31:21'),(55,16,'Test 2 ','is it','working',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-19 15:31:59','2017-05-19 15:31:59'),(56,16,'Nickname','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-19 15:40:53','2017-05-19 15:40:53'),(57,16,'jo','test css','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2017-05-19 15:49:39','2017-05-19 15:57:26');
/*!40000 ALTER TABLE `plants` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`token` varchar(100) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `token` (`token`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sessions`
--
LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES (2,16,'NNxvSD4oonGwwu3C/4saYD3CAwCDBWeykDn4scuSq4KzpzCrqL0AycFbpCHXNuJ9gxU=','2017-05-16 18:56:53'),(11,17,'6xw6AssJ6QLNrF7zpN32FONr4MalNTdruE+uio0QiblhaBnydZ4KQTdTprj/MB+Zf4I=','2017-05-17 16:04:55'),(38,16,'vpMj1CZ2sxmXyuUzwzPBQanp39lNcp2lVNitQ1Ro1sWR2b7IklmM8nDJldVhBHEm5YE=','2017-05-17 20:05:14'),(43,19,'ltCj11NSVH3TCSJVcFAPfOHrXmLDvk6/17KczrhDGG6N/dFj0r0qdvmDn00g2XH2EGg=','2017-05-17 21:23:47'),(44,16,'nYEUDdcDmaLREd8rLKPceOZQV9tvx/zT3VuhHV75hNU1cG+w5J9G7Zi8hDAsgTwZAxs=','2017-05-17 21:24:10'),(46,16,'HdZZ3t+AEMliUUrEAWD4Y+y1jWWHoJM8flmcB6m28256JnIjWnPaa2ywHGdbtE3aAj8=','2017-05-17 21:52:20');
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(100) NOT NULL,
`phone` varchar(20) DEFAULT NULL,
`password` varchar(60) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'test@t.com',NULL,'$2a$10$pEv/7fXgptsg13xVG5FOz.1J0PiD182.EUCg5WMXnXgzrlPSTQlji','2017-05-16 17:52:12','2017-05-16 17:52:12'),(14,'test2@t.com','123455678','$2a$10$fRhUG9zmOWbTwPPxjRizgeJnkJYF7A/Y7bpoVqcs6z5335CHwW5je','2017-05-16 18:09:19','2017-05-16 18:09:19'),(15,'test3@t.com','123455678','$2a$10$/6gCgtmRYKx6RZwMy1LwbuAess1oQB0my8VotccQn0KUL8Q3Y2pQ6','2017-05-16 18:09:39','2017-05-16 18:09:39'),(16,'test4@t.com',NULL,'$2a$10$/enXXmkvRoh2V8TEegoKTuz4okXaz0UQJDdaS/LLzRsVawL5.a54e','2017-05-16 18:10:01','2017-05-16 18:10:01'),(17,'joy@yahoo.com',NULL,'$2a$10$fCLP1iesP0heeE.yVYKSDuXecdUwdMbZ2Rl0ldJ3rZkuxTNlDWeYm','2017-05-17 15:34:16','2017-05-17 15:34:16'),(18,'test@test.com','123','$2a$10$2tv/gdZiuNTvqk9EkPUfhOOvLx31xA5gZMzCLjupWcbcOBO86eu6q','2017-05-17 18:27:08','2017-05-17 18:27:08'),(19,'nat@test.ca','12313901384','$2a$10$7tSGwuV3tjv7zV3cFVeMruZopKzoINeHMLNeWvLGEgjPKXhVtM9ni','2017-05-17 21:21:00','2017-05-17 21:21:00');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-05-19 12:07:18