-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.sql
551 lines (472 loc) · 238 KB
/
database.sql
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
CREATE DATABASE IF NOT EXISTS `cbc_data` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */;
USE `cbc_data`;
-- MySQL dump 10.13 Distrib 8.0.15, for Win64 (x86_64)
--
-- Host: 127.0.0.1 Database: cbc_data
-- ------------------------------------------------------
-- Server version 8.0.14
/*!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 */;
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 `authorities`
--
DROP TABLE IF EXISTS `authorities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `authorities` (
`username` varchar(50) NOT NULL,
`authority` varchar(50) NOT NULL,
UNIQUE KEY `UNIQUE` (`username`,`authority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `authorities`
--
LOCK TABLES `authorities` WRITE;
/*!40000 ALTER TABLE `authorities` DISABLE KEYS */;
INSERT INTO `authorities` VALUES ('admin@cbc','ROLE_ADMIN'),('agnes@example.com','ROLE_USER'),('bardell@example.com','ROLE_USER'),('barker@example.com','ROLE_USER'),('barkis@example.com','ROLE_USER'),('barnet@example.com','ROLE_USER'),('berinthia@example.com','ROLE_USER'),('blackboy@example.com','ROLE_USER'),('boy@example.com','ROLE_USER'),('brass@example.com','ROLE_USER'),('brown@example.com','ROLE_USER'),('bumble@example.com','ROLE_USER'),('cheeryble@example.com','ROLE_USER'),('chillip@example.com','ROLE_USER'),('clennam@example.com','ROLE_USER'),('colonal@example.com','ROLE_USER'),('copperfield@example.com','ROLE_USER'),('creevy@example.com','ROLE_USER'),('donny@example.com','ROLE_USER'),('dora@example.com','ROLE_USER'),('feenix@example.com','ROLE_USER'),('flowers@example.com','ROLE_USER'),('gabelle@example.com','ROLE_USER'),('gabriel@example.com','ROLE_USER'),('higden@example.com','ROLE_USER'),('honeythunder@example.com','ROLE_USER'),('infant@example.com','ROLE_USER'),('jacob@example.com','ROLE_USER'),('lambert@example.com','ROLE_USER'),('larkins@example.com','ROLE_USER'),('lobley@example.com','ROLE_USER'),('louisa@example.com','ROLE_USER'),('lupin@example.com','ROLE_USER'),('margaret@example.com','ROLE_USER'),('martha@example.com','ROLE_USER'),('marwood@example.com','ROLE_USER'),('mary@example.com','ROLE_USER'),('mell@example.com','ROLE_USER'),('mick@example.com','ROLE_USER'),('mulberry@example.com','ROLE_USER'),('phoebe@example.com','ROLE_USER'),('plornish@example.com','ROLE_USER'),('pott@example.com','ROLE_USER'),('richard@example.com','ROLE_USER'),('riderhood@example.com','ROLE_USER'),('roads@example.com','ROLE_USER'),('rugg@example.com','ROLE_USER'),('snitchey@example.com','ROLE_USER'),('sparkler@example.com','ROLE_USER'),('stephen@example.com','ROLE_USER'),('tomkins@example.com','ROLE_USER'),('tracy@example.com','ROLE_USER'),('tungay@example.com','ROLE_USER'),('user@example.com','ROLE_USER'),('wickfield@example.com','ROLE_USER');
/*!40000 ALTER TABLE `authorities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bus_line`
--
DROP TABLE IF EXISTS `bus_line`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `bus_line` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`city1_id` int(10) unsigned NOT NULL,
`city2_id` int(10) unsigned NOT NULL,
`operates` tinyint(3) unsigned DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQUE` (`city1_id`,`city2_id`) /*!80000 INVISIBLE */,
KEY `city2_idx` (`city2_id`),
CONSTRAINT `city1` FOREIGN KEY (`city1_id`) REFERENCES `city` (`id`),
CONSTRAINT `city2` FOREIGN KEY (`city2_id`) REFERENCES `city` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=947 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bus_line`
--
LOCK TABLES `bus_line` WRITE;
/*!40000 ALTER TABLE `bus_line` DISABLE KEYS */;
INSERT INTO `bus_line` VALUES (1,1,2,1),(2,1,3,1),(3,1,4,1),(4,1,5,1),(5,1,6,1),(6,1,7,1),(7,1,8,1),(8,1,9,1),(9,1,10,1),(10,1,11,1),(11,1,12,1),(12,1,13,1),(13,1,14,1),(14,1,15,1),(15,1,16,1),(16,1,17,1),(17,1,18,1),(18,1,19,1),(19,1,20,1),(20,1,21,1),(21,1,22,1),(22,1,23,1),(23,1,24,1),(24,1,25,1),(25,1,26,1),(26,1,27,1),(27,1,28,1),(28,1,29,1),(29,1,30,1),(30,1,31,1),(31,1,32,1),(32,1,33,1),(33,1,34,1),(34,1,35,1),(35,1,36,1),(36,1,37,1),(37,1,38,1),(38,1,39,1),(39,1,40,1),(40,1,41,1),(41,1,42,1),(42,1,43,1),(43,1,44,1),(44,2,3,1),(45,2,4,1),(46,2,5,1),(47,2,6,1),(48,2,7,1),(49,2,8,1),(50,2,9,1),(51,2,10,1),(52,2,11,1),(53,2,12,1),(54,2,13,1),(55,2,14,1),(56,2,15,1),(57,2,16,1),(58,2,17,1),(59,2,18,1),(60,2,19,1),(61,2,20,1),(62,2,21,1),(63,2,22,1),(64,2,23,1),(65,2,24,1),(66,2,25,1),(67,2,26,1),(68,2,27,1),(69,2,28,1),(70,2,29,1),(71,2,30,1),(72,2,31,1),(73,2,32,1),(74,2,33,1),(75,2,34,1),(76,2,35,1),(77,2,36,1),(78,2,37,1),(79,2,38,1),(80,2,39,1),(81,2,40,1),(82,2,41,1),(83,2,42,1),(84,2,43,1),(85,2,44,1),(86,3,4,1),(87,3,5,1),(88,3,6,1),(89,3,7,1),(90,3,8,1),(91,3,9,1),(92,3,10,1),(93,3,11,1),(94,3,12,1),(95,3,13,1),(96,3,14,1),(97,3,15,1),(98,3,16,1),(99,3,17,1),(100,3,18,1),(101,3,19,1),(102,3,20,1),(103,3,21,1),(104,3,22,1),(105,3,23,1),(106,3,24,1),(107,3,25,1),(108,3,26,1),(109,3,27,1),(110,3,28,1),(111,3,29,1),(112,3,30,1),(113,3,31,1),(114,3,32,1),(115,3,33,1),(116,3,34,1),(117,3,35,1),(118,3,36,1),(119,3,37,1),(120,3,38,1),(121,3,39,1),(122,3,40,1),(123,3,41,1),(124,3,42,1),(125,3,43,1),(126,3,44,1),(127,4,5,1),(128,4,6,1),(129,4,7,1),(130,4,8,1),(131,4,9,1),(132,4,10,1),(133,4,11,1),(134,4,12,1),(135,4,13,1),(136,4,14,1),(137,4,15,1),(138,4,16,1),(139,4,17,1),(140,4,18,1),(141,4,19,1),(142,4,20,1),(143,4,21,1),(144,4,22,1),(145,4,23,1),(146,4,24,1),(147,4,25,1),(148,4,26,1),(149,4,27,1),(150,4,28,1),(151,4,29,1),(152,4,30,1),(153,4,31,1),(154,4,32,1),(155,4,33,1),(156,4,34,1),(157,4,35,1),(158,4,36,1),(159,4,37,1),(160,4,38,1),(161,4,39,1),(162,4,40,1),(163,4,41,1),(164,4,42,1),(165,4,43,1),(166,4,44,1),(167,5,6,1),(168,5,7,1),(169,5,8,1),(170,5,9,1),(171,5,10,1),(172,5,11,1),(173,5,12,1),(174,5,13,1),(175,5,14,1),(176,5,15,1),(177,5,16,1),(178,5,17,1),(179,5,18,1),(180,5,19,1),(181,5,20,1),(182,5,21,1),(183,5,22,1),(184,5,23,1),(185,5,24,1),(186,5,25,1),(187,5,26,1),(188,5,27,1),(189,5,28,1),(190,5,29,1),(191,5,30,1),(192,5,31,1),(193,5,32,1),(194,5,33,1),(195,5,34,1),(196,5,35,1),(197,5,36,1),(198,5,37,1),(199,5,38,1),(200,5,39,1),(201,5,40,1),(202,5,41,1),(203,5,42,1),(204,5,43,1),(205,5,44,1),(206,6,7,1),(207,6,8,1),(208,6,9,1),(209,6,10,1),(210,6,11,1),(211,6,12,1),(212,6,13,1),(213,6,14,1),(214,6,15,1),(215,6,16,1),(216,6,17,1),(217,6,18,1),(218,6,19,1),(219,6,20,1),(220,6,21,1),(221,6,22,1),(222,6,23,1),(223,6,24,1),(224,6,25,1),(225,6,26,1),(226,6,27,1),(227,6,28,1),(228,6,29,1),(229,6,30,1),(230,6,31,1),(231,6,32,1),(232,6,33,1),(233,6,34,1),(234,6,35,1),(235,6,36,1),(236,6,37,1),(237,6,38,1),(238,6,39,1),(239,6,40,1),(240,6,41,1),(241,6,42,1),(242,6,43,1),(243,6,44,1),(244,28,7,1),(245,28,8,1),(246,28,9,1),(247,28,10,1),(248,28,11,1),(249,28,12,1),(250,28,13,1),(251,28,14,1),(252,28,15,1),(253,28,16,1),(254,28,17,1),(255,28,18,1),(256,28,19,1),(257,28,20,1),(258,28,21,1),(259,28,22,1),(260,28,23,1),(261,28,24,1),(262,28,25,1),(263,28,26,1),(264,28,27,1),(265,28,29,1),(266,28,30,1),(267,28,31,1),(268,28,32,1),(269,28,33,1),(270,28,34,1),(271,28,35,1),(272,28,36,1),(273,28,37,1),(274,28,38,1),(275,28,39,1),(276,28,40,1),(277,28,41,1),(278,28,42,1),(279,28,43,1),(280,28,44,1),(281,7,8,1),(282,7,9,1),(283,7,10,1),(284,7,11,1),(285,7,12,1),(286,7,13,1),(287,7,14,1),(288,7,15,1),(289,7,16,1),(290,7,17,1),(291,7,18,1),(292,7,19,1),(293,7,20,1),(294,7,21,1),(295,7,22,1),(296,7,23,1),(297,7,24,1),(298,7,25,1),(299,7,26,1),(300,7,27,1),(301,7,29,1),(302,7,30,1),(303,7,31,1),(304,7,32,1),(305,7,33,1),(306,7,34,1),(307,7,35,1),(308,7,36,1),(309,7,37,1),(310,7,38,1),(311,7,39,1),(312,7,40,1),(313,7,41,1),(314,7,42,1),(315,7,43,1),(316,7,44,1),(317,8,9,1),(318,8,10,1),(319,8,11,1),(320,8,12,1),(321,8,13,1),(322,8,14,1),(323,8,15,1),(324,8,16,1),(325,8,17,1),(326,8,18,1),(327,8,19,1),(328,8,20,1),(329,8,21,1),(330,8,22,1),(331,8,23,1),(332,8,24,1),(333,8,25,1),(334,8,26,1),(335,8,27,1),(336,8,29,1),(337,8,30,1),(338,8,31,1),(339,8,32,1),(340,8,33,1),(341,8,34,1),(342,8,35,1),(343,8,36,1),(344,8,37,1),(345,8,38,1),(346,8,39,1),(347,8,40,1),(348,8,41,1),(349,8,42,1),(350,8,43,1),(351,8,44,1),(352,9,10,1),(353,9,11,1),(354,9,12,1),(355,9,13,1),(356,9,14,1),(357,9,15,1),(358,9,16,1),(359,9,17,1),(360,9,18,1),(361,9,19,1),(362,9,20,1),(363,9,21,1),(364,9,22,1),(365,9,23,1),(366,9,24,1),(367,9,25,1),(368,9,26,1),(369,9,27,1),(370,9,29,1),(371,9,30,1),(372,9,31,1),(373,9,32,1),(374,9,33,1),(375,9,34,1),(376,9,35,1),(377,9,36,1),(378,9,37,1),(379,9,38,1),(380,9,39,1),(381,9,40,1),(382,9,41,1),(383,9,42,1),(384,9,43,1),(385,9,44,1),(386,10,11,1),(387,10,12,1),(388,10,13,1),(389,10,14,1),(390,10,15,1),(391,10,16,1),(392,10,17,1),(393,10,18,1),(394,10,19,1),(395,10,20,1),(396,10,21,1),(397,10,22,1),(398,10,23,1),(399,10,24,1),(400,10,25,1),(401,10,26,1),(402,10,27,1),(403,10,29,1),(404,10,30,1),(405,10,31,1),(406,10,32,1),(407,10,33,1),(408,10,34,1),(409,10,35,1),(410,10,36,1),(411,10,37,1),(412,10,38,1),(413,10,39,1),(414,10,40,1),(415,10,41,1),(416,10,42,1),(417,10,43,1),(418,10,44,1),(419,11,12,1),(420,11,13,1),(421,11,14,1),(422,11,15,1),(423,11,16,1),(424,11,17,1),(425,11,18,1),(426,11,19,1),(427,11,20,1),(428,11,21,1),(429,11,22,1),(430,11,23,1),(431,11,24,1),(432,11,25,1),(433,11,26,1),(434,11,27,1),(435,11,29,1),(436,11,30,1),(437,11,31,1),(438,11,32,1),(439,11,33,1),(440,11,34,1),(441,11,35,1),(442,11,36,1),(443,11,37,1),(444,11,38,1),(445,11,39,1),(446,11,40,1),(447,11,41,1),(448,11,42,1),(449,11,43,1),(450,11,44,1),(451,12,13,1),(452,12,14,1),(453,12,15,1),(454,12,16,1),(455,12,17,1),(456,12,18,1),(457,12,19,1),(458,12,20,1),(459,12,21,1),(460,12,22,1),(461,12,23,1),(462,12,24,1),(463,12,25,1),(464,12,26,1),(465,12,27,1),(466,12,29,1),(467,12,30,1),(468,12,31,1),(469,12,32,1),(470,12,33,1),(471,12,34,1),(472,12,35,1),(473,12,36,1),(474,12,37,1),(475,12,38,1),(476,12,39,1),(477,12,40,1),(478,12,41,1),(479,12,42,1),(480,12,43,1),(481,12,44,1),(482,13,14,1),(483,13,15,1),(484,13,16,1),(485,13,17,1),(486,13,18,1),(487,13,19,1),(488,13,20,1),(489,13,21,1),(490,13,22,1),(491,13,23,1),(492,13,24,1),(493,13,25,1),(494,13,26,1),(495,13,27,1),(496,13,29,1),(497,13,30,1),(498,13,31,1),(499,13,32,1),(500,13,33,1),(501,13,34,1),(502,13,35,1),(503,13,36,1),(504,13,37,1),(505,13,38,1),(506,13,39,1),(507,13,40,1),(508,13,41,1),(509,13,42,1),(510,13,43,1),(511,13,44,1),(512,14,15,1),(513,14,16,1),(514,14,17,1),(515,14,18,1),(516,14,19,1),(517,14,20,1),(518,14,21,1),(519,14,22,1),(520,14,23,1),(521,14,24,1),(522,14,25,1),(523,14,26,1),(524,14,27,1),(525,14,29,1),(526,14,30,1),(527,14,31,1),(528,14,32,1),(529,14,33,1),(530,14,34,1),(531,14,35,1),(532,14,36,1),(533,14,37,1),(534,14,38,1),(535,14,39,1),(536,14,40,1),(537,14,41,1),(538,14,42,1),(539,14,43,1),(540,14,44,1),(541,15,16,1),(542,15,17,1),(543,15,18,1),(544,15,19,1),(545,15,20,1),(546,15,21,1),(547,15,22,1),(548,15,23,1),(549,15,24,1),(550,15,25,1),(551,15,26,1),(552,15,27,1),(553,15,29,1),(554,15,30,1),(555,15,31,1),(556,15,32,1),(557,15,33,1),(558,15,34,1),(559,15,35,1),(560,15,36,1),(561,15,37,1),(562,15,38,1),(563,15,39,1),(564,15,40,1),(565,15,41,1),(566,15,42,1),(567,15,43,1),(568,15,44,1),(569,16,17,1),(570,16,18,1),(571,16,19,1),(572,16,20,1),(573,16,21,1),(574,16,22,1),(575,16,23,1),(576,16,24,1),(577,16,25,1),(578,16,26,1),(579,16,27,1),(580,16,29,1),(581,16,30,1),(582,16,31,1),(583,16,32,1),(584,16,33,1),(585,16,34,1),(586,16,35,1),(587,16,36,1),(588,16,37,1),(589,16,38,1),(590,16,39,1),(591,16,40,1),(592,16,41,1),(593,16,42,1),(594,16,43,1),(595,16,44,1),(596,17,18,1),(597,17,19,1),(598,17,20,1),(599,17,21,1),(600,17,22,1),(601,17,23,1),(602,17,24,1),(603,17,25,1),(604,17,26,1),(605,17,27,1),(606,17,29,1),(607,17,30,1),(608,17,31,1),(609,17,32,1),(610,17,33,1),(611,17,34,1),(612,17,35,1),(613,17,36,1),(614,17,37,1),(615,17,38,1),(616,17,39,1),(617,17,40,1),(618,17,41,1),(619,17,42,1),(620,17,43,1),(621,17,44,1),(622,18,19,1),(623,18,20,1),(624,18,21,1),(625,18,22,1),(626,18,23,1),(627,18,24,1),(628,18,25,1),(629,18,26,1),(630,18,27,1),(631,18,29,1),(632,18,30,1),(633,18,31,1),(634,18,32,1),(635,18,33,1),(636,18,34,1),(637,18,35,1),(638,18,36,1),(639,18,37,1),(640,18,38,1),(641,18,39,1),(642,18,40,1),(643,18,41,1),(644,18,42,1),(645,18,43,1),(646,18,44,1),(647,19,20,1),(648,19,21,1),(649,19,22,1),(650,19,23,1),(651,19,24,1),(652,19,25,1),(653,19,26,1),(654,19,27,1),(655,19,29,1),(656,19,30,1),(657,19,31,1),(658,19,32,1),(659,19,33,1),(660,19,34,1),(661,19,35,1),(662,19,36,1),(663,19,37,1),(664,19,38,1),(665,19,39,1),(666,19,40,1),(667,19,41,1),(668,19,42,1),(669,19,43,1),(670,19,44,1),(671,20,21,1),(672,20,22,1),(673,20,23,1),(674,20,24,1),(675,20,25,1),(676,20,26,1),(677,20,27,1),(678,20,29,1),(679,20,30,1),(680,20,31,1),(681,20,32,1),(682,20,33,1),(683,20,34,1),(684,20,35,1),(685,20,36,1),(686,20,37,1),(687,20,38,1),(688,20,39,1),(689,20,40,1),(690,20,41,1),(691,20,42,1),(692,20,43,1),(693,20,44,1),(694,21,22,1),(695,21,23,1),(696,21,24,1),(697,21,25,1),(698,21,26,1),(699,21,27,1),(700,21,29,1),(701,21,30,1),(702,21,31,1),(703,21,32,1),(704,21,33,1),(705,21,34,1),(706,21,35,1),(707,21,36,1),(708,21,37,1),(709,21,38,1),(710,21,39,1),(711,21,40,1),(712,21,41,1),(713,21,42,1),(714,21,43,1),(715,21,44,1),(716,22,23,1),(717,22,24,1),(718,22,25,1),(719,22,26,1),(720,22,27,1),(721,22,29,1),(722,22,30,1),(723,22,31,1),(724,22,32,1),(725,22,33,1),(726,22,34,1),(727,22,35,1),(728,22,36,1),(729,22,37,1),(730,22,38,1),(731,22,39,1),(732,22,40,1),(733,22,41,1),(734,22,42,1),(735,22,43,1),(736,22,44,1),(737,23,24,1),(738,23,25,1),(739,23,26,1),(740,23,27,1),(741,23,29,1),(742,23,30,1),(743,23,31,1),(744,23,32,1),(745,23,33,1),(746,23,34,1),(747,23,35,1),(748,23,36,1),(749,23,37,1),(750,23,38,1),(751,23,39,1),(752,23,40,1),(753,23,41,1),(754,23,42,1),(755,23,43,1),(756,23,44,1),(757,24,25,1),(758,24,26,1),(759,24,27,1),(760,24,29,1),(761,24,30,1),(762,24,31,1),(763,24,32,1),(764,24,33,1),(765,24,34,1),(766,24,35,1),(767,24,36,1),(768,24,37,1),(769,24,38,1),(770,24,39,1),(771,24,40,1),(772,24,41,1),(773,24,42,1),(774,24,43,1),(775,24,44,1),(776,25,26,1),(777,25,27,1),(778,25,29,1),(779,25,30,1),(780,25,31,1),(781,25,32,1),(782,25,33,1),(783,25,34,1),(784,25,35,1),(785,25,36,1),(786,25,37,1),(787,25,38,1),(788,25,39,1),(789,25,40,1),(790,25,41,1),(791,25,42,1),(792,25,43,1),(793,25,44,1),(794,26,27,1),(795,26,29,1),(796,26,30,1),(797,26,31,1),(798,26,32,1),(799,26,33,1),(800,26,34,1),(801,26,35,1),(802,26,36,1),(803,26,37,1),(804,26,38,1),(805,26,39,1),(806,26,40,1),(807,26,41,1),(808,26,42,1),(809,26,43,1),(810,26,44,1),(811,27,29,1),(812,27,30,1),(813,27,31,1),(814,27,32,1),(815,27,33,1),(816,27,34,1),(817,27,35,1),(818,27,36,1),(819,27,37,1),(820,27,38,1),(821,27,39,1),(822,27,40,1),(823,27,41,1),(824,27,42,1),(825,27,43,1),(826,27,44,1),(827,29,30,1),(828,29,31,1),(829,29,32,1),(830,29,33,1),(831,29,34,1),(832,29,35,1),(833,29,36,1),(834,29,37,1),(835,29,38,1),(836,29,39,1),(837,29,40,1),(838,29,41,1),(839,29,42,1),(840,29,43,1),(841,29,44,1),(842,30,31,1),(843,30,32,1),(844,30,33,1),(845,30,34,1),(846,30,35,1),(847,30,36,1),(848,30,37,1),(849,30,38,1),(850,30,39,1),(851,30,40,1),(852,30,41,1),(853,30,42,1),(854,30,43,1),(855,30,44,1),(856,31,32,1),(857,31,33,1),(858,31,34,1),(859,31,35,1),(860,31,36,1),(861,31,37,1),(862,31,38,1),(863,31,39,1),(864,31,40,1),(865,31,41,1),(866,31,42,1),(867,31,43,1),(868,31,44,1),(869,32,33,1),(870,32,34,1),(871,32,35,1),(872,32,36,1),(873,32,37,1),(874,32,38,1),(875,32,39,1),(876,32,40,1),(877,32,41,1),(878,32,42,1),(879,32,43,1),(880,32,44,1),(881,33,34,1),(882,33,35,1),(883,33,36,1),(884,33,37,1),(885,33,38,1),(886,33,39,1),(887,33,40,1),(888,33,41,1),(889,33,42,1),(890,33,43,1),(891,33,44,1),(892,34,35,1),(893,34,36,1),(894,34,37,1),(895,34,38,1),(896,34,39,1),(897,34,40,1),(898,34,41,1),(899,34,42,1),(900,34,43,1),(901,34,44,1),(902,35,36,1),(903,35,37,1),(904,35,38,1),(905,35,39,1),(906,35,40,1),(907,35,41,1),(908,35,42,1),(909,35,43,1),(910,35,44,1),(911,36,37,1),(912,36,38,1),(913,36,39,1),(914,36,40,1),(915,36,41,1),(916,36,42,1),(917,36,43,1),(918,36,44,1),(919,37,38,1),(920,37,39,1),(921,37,40,1),(922,37,41,1),(923,37,42,1),(924,37,43,1),(925,37,44,1),(926,38,39,1),(927,38,40,1),(928,38,41,1),(929,38,42,1),(930,38,43,1),(931,38,44,1),(932,39,40,1),(933,39,41,1),(934,39,42,1),(935,39,43,1),(936,39,44,1),(937,40,41,1),(938,40,42,1),(939,40,43,1),(940,40,44,1),(941,41,42,1),(942,41,43,1),(943,41,44,1),(944,42,43,1),(945,42,44,1),(946,43,44,1);
/*!40000 ALTER TABLE `bus_line` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bus_schedule`
--
DROP TABLE IF EXISTS `bus_schedule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `bus_schedule` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`from_time` time NOT NULL,
`duration` bigint(20) NOT NULL,
`line_id` int(10) unsigned NOT NULL,
`trip_type_id` tinyint(3) unsigned NOT NULL,
`workweek` tinyint(3) unsigned DEFAULT '0',
`weekend` tinyint(3) unsigned DEFAULT '0',
`bus_type_id` smallint(5) unsigned NOT NULL,
`operates` tinyint(3) unsigned DEFAULT '0',
PRIMARY KEY (`id`),
KEY `trip_type_idx` (`trip_type_id`),
KEY `bus_type_idx` (`bus_type_id`),
KEY `line` (`line_id`),
CONSTRAINT `bus_type` FOREIGN KEY (`bus_type_id`) REFERENCES `bus_type` (`id`),
CONSTRAINT `line` FOREIGN KEY (`line_id`) REFERENCES `bus_line` (`id`),
CONSTRAINT `trip_type` FOREIGN KEY (`trip_type_id`) REFERENCES `trip_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3319 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bus_schedule`
--
LOCK TABLES `bus_schedule` WRITE;
/*!40000 ALTER TABLE `bus_schedule` DISABLE KEYS */;
INSERT INTO `bus_schedule` VALUES (1,'07:00:00',8100000000000,1,1,1,1,7,1),(2,'08:00:00',8100000000000,1,1,1,1,7,1),(3,'09:00:00',8100000000000,1,1,1,1,7,1),(4,'10:00:00',8100000000000,1,1,1,1,7,1),(5,'11:00:00',8100000000000,1,1,1,1,7,1),(6,'12:00:00',8100000000000,1,1,1,1,7,1),(7,'13:00:00',8100000000000,1,1,1,1,9,1),(8,'14:00:00',8100000000000,1,1,1,1,9,1),(9,'15:00:00',8100000000000,1,1,1,1,7,1),(10,'16:00:00',8100000000000,1,1,1,1,9,1),(11,'17:00:00',8100000000000,1,1,1,1,7,1),(12,'18:00:00',8100000000000,1,1,1,1,7,1),(13,'19:00:00',8100000000000,1,1,1,1,7,1),(14,'20:00:00',8100000000000,1,1,1,1,7,1),(15,'21:00:00',8100000000000,1,1,1,1,7,1),(16,'22:00:00',8100000000000,1,1,1,1,9,1),(17,'07:30:00',22680000000000,2,1,1,1,2,1),(18,'09:00:00',22680000000000,2,1,1,1,1,1),(19,'10:30:00',22680000000000,2,1,1,1,6,1),(20,'12:00:00',22680000000000,2,1,1,1,2,1),(21,'13:30:00',22680000000000,2,1,1,1,5,1),(22,'15:00:00',22680000000000,2,1,1,1,1,1),(23,'16:30:00',22680000000000,2,1,1,1,2,1),(24,'18:00:00',22680000000000,2,1,1,1,6,1),(25,'19:30:00',22680000000000,2,1,1,1,2,1),(26,'21:00:00',22680000000000,2,1,1,1,2,1),(27,'22:30:00',22680000000000,2,1,1,1,1,1),(28,'07:30:00',37020000000000,3,1,1,1,2,1),(29,'10:00:00',37020000000000,3,1,1,1,2,1),(30,'12:30:00',37020000000000,3,1,1,1,2,1),(31,'15:00:00',37020000000000,3,1,1,1,2,1),(32,'17:30:00',37020000000000,3,1,1,1,1,1),(33,'20:00:00',37020000000000,3,1,1,1,1,1),(34,'22:30:00',37020000000000,3,1,1,1,2,1),(35,'07:30:00',22260000000000,4,1,1,1,1,1),(36,'09:00:00',22260000000000,4,1,1,1,2,1),(37,'10:30:00',22260000000000,4,1,1,1,6,1),(38,'12:00:00',22260000000000,4,1,1,1,6,1),(39,'13:30:00',22260000000000,4,1,1,1,2,1),(40,'15:00:00',22260000000000,4,1,1,1,1,1),(41,'16:30:00',22260000000000,4,1,1,1,5,1),(42,'18:00:00',22260000000000,4,1,1,1,1,1),(43,'19:30:00',22260000000000,4,1,1,1,5,1),(44,'21:00:00',22260000000000,4,1,1,1,1,1),(45,'22:30:00',22260000000000,4,1,1,1,2,1),(46,'07:00:00',51720000000000,5,1,1,1,2,1),(47,'11:00:00',51720000000000,5,1,1,1,2,1),(48,'15:00:00',51720000000000,5,1,1,1,2,1),(49,'19:00:00',51720000000000,5,1,1,1,3,1),(50,'07:00:00',122280000000000,6,1,1,1,3,1),(51,'22:00:00',122280000000000,6,1,1,1,3,1),(52,'07:00:00',127020000000000,7,1,1,1,3,1),(53,'22:00:00',127020000000000,7,1,1,1,3,1),(54,'07:00:00',95520000000000,8,1,1,1,3,1),(55,'22:00:00',95520000000000,8,1,1,1,3,1),(56,'07:00:00',56460000000000,9,1,1,1,2,1),(57,'11:00:00',56460000000000,9,1,1,1,2,1),(58,'15:00:00',56460000000000,9,1,1,1,2,1),(59,'19:00:00',56460000000000,9,1,1,1,3,1),(60,'07:00:00',103680000000000,10,1,1,1,3,1),(61,'22:00:00',103680000000000,10,1,1,1,3,1),(62,'07:30:00',85740000000000,11,1,1,1,11,1),(63,'13:00:00',85740000000000,11,1,1,1,11,1),(64,'18:30:00',85740000000000,11,1,1,1,11,1),(65,'24:00:00',85740000000000,11,1,1,1,10,1),(66,'07:00:00',50520000000000,12,1,1,1,10,1),(67,'11:00:00',50520000000000,12,1,1,1,11,1),(68,'15:00:00',50520000000000,12,1,1,1,10,1),(69,'19:00:00',50520000000000,12,1,1,1,10,1),(70,'07:00:00',90840000000000,13,1,1,1,3,1),(71,'22:00:00',90840000000000,13,1,1,1,3,1),(72,'07:30:00',21480000000000,14,1,1,1,2,1),(73,'09:00:00',21480000000000,14,1,1,1,2,1),(74,'10:30:00',21480000000000,14,1,1,1,5,1),(75,'12:00:00',21480000000000,14,1,1,1,5,1),(76,'13:30:00',21480000000000,14,1,1,1,2,1),(77,'15:00:00',21480000000000,14,1,1,1,2,1),(78,'16:30:00',21480000000000,14,1,1,1,2,1),(79,'18:00:00',21480000000000,14,1,1,1,1,1),(80,'19:30:00',21480000000000,14,1,1,1,2,1),(81,'21:00:00',21480000000000,14,1,1,1,1,1),(82,'22:30:00',21480000000000,14,1,1,1,1,1),(83,'07:00:00',91800000000000,15,1,1,1,3,1),(84,'22:00:00',91800000000000,15,1,1,1,3,1),(85,'07:30:00',74160000000000,16,1,1,1,2,1),(86,'12:00:00',74160000000000,16,1,1,1,2,1),(87,'16:30:00',74160000000000,16,1,1,1,3,1),(88,'21:00:00',74160000000000,16,1,1,1,3,1),(89,'07:30:00',23220000000000,17,1,1,1,2,1),(90,'09:00:00',23220000000000,17,1,1,1,5,1),(91,'10:30:00',23220000000000,17,1,1,1,2,1),(92,'12:00:00',23220000000000,17,1,1,1,1,1),(93,'13:30:00',23220000000000,17,1,1,1,2,1),(94,'15:00:00',23220000000000,17,1,1,1,6,1),(95,'16:30:00',23220000000000,17,1,1,1,1,1),(96,'18:00:00',23220000000000,17,1,1,1,1,1),(97,'19:30:00',23220000000000,17,1,1,1,1,1),(98,'21:00:00',23220000000000,17,1,1,1,2,1),(99,'22:30:00',23220000000000,17,1,1,1,6,1),(100,'07:30:00',45360000000000,18,1,1,1,2,1),(101,'10:00:00',45360000000000,18,1,1,1,2,1),(102,'12:30:00',45360000000000,18,1,1,1,1,1),(103,'15:00:00',45360000000000,18,1,1,1,1,1),(104,'17:30:00',45360000000000,18,1,1,1,1,1),(105,'20:00:00',45360000000000,18,1,1,1,1,1),(106,'22:30:00',45360000000000,18,1,1,1,2,1),(107,'07:30:00',40140000000000,19,1,1,1,1,1),(108,'10:00:00',40140000000000,19,1,1,1,1,1),(109,'12:30:00',40140000000000,19,1,1,1,2,1),(110,'15:00:00',40140000000000,19,1,1,1,1,1),(111,'17:30:00',40140000000000,19,1,1,1,2,1),(112,'20:00:00',40140000000000,19,1,1,1,1,1),(113,'22:30:00',40140000000000,19,1,1,1,1,1),(114,'07:30:00',85020000000000,20,1,1,1,3,1),(115,'13:00:00',85020000000000,20,1,1,1,3,1),(116,'18:30:00',85020000000000,20,1,1,1,3,1),(117,'24:00:00',85020000000000,20,1,1,1,3,1),(118,'07:00:00',121560000000000,21,1,1,1,3,1),(119,'22:00:00',121560000000000,21,1,1,1,3,1),(120,'07:30:00',80460000000000,22,1,1,1,3,1),(121,'13:00:00',80460000000000,22,1,1,1,3,1),(122,'18:30:00',80460000000000,22,1,1,1,3,1),(123,'24:00:00',80460000000000,22,1,1,1,3,1),(124,'07:30:00',61920000000000,23,1,1,1,3,1),(125,'12:00:00',61920000000000,23,1,1,1,3,1),(126,'16:30:00',61920000000000,23,1,1,1,2,1),(127,'21:00:00',61920000000000,23,1,1,1,2,1),(128,'07:30:00',85860000000000,24,1,1,1,3,1),(129,'13:00:00',85860000000000,24,1,1,1,2,1),(130,'18:30:00',85860000000000,24,1,1,1,3,1),(131,'24:00:00',85860000000000,24,1,1,1,3,1),(132,'07:30:00',19860000000000,25,1,1,1,1,1),(133,'09:00:00',19860000000000,25,1,1,1,1,1),(134,'10:30:00',19860000000000,25,1,1,1,2,1),(135,'12:00:00',19860000000000,25,1,1,1,2,1),(136,'13:30:00',19860000000000,25,1,1,1,1,1),(137,'15:00:00',19860000000000,25,1,1,1,1,1),(138,'16:30:00',19860000000000,25,1,1,1,5,1),(139,'18:00:00',19860000000000,25,1,1,1,1,1),(140,'19:30:00',19860000000000,25,1,1,1,6,1),(141,'21:00:00',19860000000000,25,1,1,1,5,1),(142,'22:30:00',19860000000000,25,1,1,1,1,1),(143,'07:00:00',129900000000000,26,1,1,1,3,1),(144,'22:00:00',129900000000000,26,1,1,1,3,1),(145,'07:00:00',51360000000000,27,1,1,1,2,1),(146,'11:00:00',51360000000000,27,1,1,1,3,1),(147,'15:00:00',51360000000000,27,1,1,1,2,1),(148,'19:00:00',51360000000000,27,1,1,1,2,1),(149,'07:00:00',48240000000000,28,1,1,1,10,1),(150,'11:00:00',48240000000000,28,1,1,1,10,1),(151,'15:00:00',48240000000000,28,1,1,1,10,1),(152,'19:00:00',48240000000000,28,1,1,1,10,1),(153,'07:00:00',98820000000000,29,1,1,1,3,1),(154,'22:00:00',98820000000000,29,1,1,1,3,1),(155,'07:30:00',45420000000000,30,1,1,1,2,1),(156,'10:00:00',45420000000000,30,1,1,1,1,1),(157,'12:30:00',45420000000000,30,1,1,1,2,1),(158,'15:00:00',45420000000000,30,1,1,1,2,1),(159,'17:30:00',45420000000000,30,1,1,1,2,1),(160,'20:00:00',45420000000000,30,1,1,1,1,1),(161,'22:30:00',45420000000000,30,1,1,1,1,1),(162,'07:30:00',62520000000000,31,1,1,1,2,1),(163,'12:00:00',62520000000000,31,1,1,1,2,1),(164,'16:30:00',62520000000000,31,1,1,1,2,1),(165,'21:00:00',62520000000000,31,1,1,1,2,1),(166,'07:00:00',52560000000000,32,1,1,1,11,1),(167,'11:00:00',52560000000000,32,1,1,1,11,1),(168,'15:00:00',52560000000000,32,1,1,1,10,1),(169,'19:00:00',52560000000000,32,1,1,1,10,1),(170,'07:30:00',77040000000000,33,1,1,1,11,1),(171,'13:00:00',77040000000000,33,1,1,1,11,1),(172,'18:30:00',77040000000000,33,1,1,1,11,1),(173,'24:00:00',77040000000000,33,1,1,1,11,1),(174,'07:00:00',53220000000000,34,1,1,1,2,1),(175,'11:00:00',53220000000000,34,1,1,1,3,1),(176,'15:00:00',53220000000000,34,1,1,1,2,1),(177,'19:00:00',53220000000000,34,1,1,1,2,1),(178,'07:30:00',41280000000000,35,1,1,1,10,1),(179,'10:00:00',41280000000000,35,1,1,1,10,1),(180,'12:30:00',41280000000000,35,1,1,1,10,1),(181,'15:00:00',41280000000000,35,1,1,1,10,1),(182,'17:30:00',41280000000000,35,1,1,1,10,1),(183,'20:00:00',41280000000000,35,1,1,1,10,1),(184,'22:30:00',41280000000000,35,1,1,1,10,1),(185,'07:30:00',76560000000000,36,1,1,1,3,1),(186,'13:00:00',76560000000000,36,1,1,1,3,1),(187,'18:30:00',76560000000000,36,1,1,1,3,1),(188,'24:00:00',76560000000000,36,1,1,1,3,1),(189,'07:00:00',121080000000000,37,1,1,1,3,1),(190,'22:00:00',121080000000000,37,1,1,1,3,1),(191,'07:00:00',60360000000000,38,1,1,1,2,1),(192,'11:00:00',60360000000000,38,1,1,1,2,1),(193,'15:00:00',60360000000000,38,1,1,1,2,1),(194,'19:00:00',60360000000000,38,1,1,1,3,1),(195,'07:00:00',159060000000000,39,1,1,1,3,1),(196,'22:00:00',159060000000000,39,1,1,1,3,1),(197,'07:00:00',56820000000000,40,1,1,1,10,1),(198,'11:00:00',56820000000000,40,1,1,1,10,1),(199,'15:00:00',56820000000000,40,1,1,1,10,1),(200,'19:00:00',56820000000000,40,1,1,1,11,1),(201,'07:00:00',126600000000000,41,1,1,1,3,1),(202,'22:00:00',126600000000000,41,1,1,1,3,1),(203,'07:00:00',115680000000000,42,1,1,1,3,1),(204,'22:00:00',115680000000000,42,1,1,1,3,1),(205,'07:00:00',87420000000000,43,1,1,1,3,1),(206,'22:00:00',87420000000000,43,1,1,1,3,1),(207,'07:30:00',30780000000000,44,1,1,1,1,1),(208,'10:00:00',30780000000000,44,1,1,1,2,1),(209,'12:30:00',30780000000000,44,1,1,1,1,1),(210,'15:00:00',30780000000000,44,1,1,1,1,1),(211,'17:30:00',30780000000000,44,1,1,1,2,1),(212,'20:00:00',30780000000000,44,1,1,1,2,1),(213,'22:30:00',30780000000000,44,1,1,1,2,1),(214,'07:30:00',29100000000000,45,1,1,1,1,1),(215,'10:00:00',29100000000000,45,1,1,1,1,1),(216,'12:30:00',29100000000000,45,1,1,1,1,1),(217,'15:00:00',29100000000000,45,1,1,1,1,1),(218,'17:30:00',29100000000000,45,1,1,1,1,1),(219,'20:00:00',29100000000000,45,1,1,1,2,1),(220,'22:30:00',29100000000000,45,1,1,1,1,1),(221,'07:30:00',25980000000000,46,1,1,1,2,1),(222,'10:00:00',25980000000000,46,1,1,1,1,1),(223,'12:30:00',25980000000000,46,1,1,1,2,1),(224,'15:00:00',25980000000000,46,1,1,1,1,1),(225,'17:30:00',25980000000000,46,1,1,1,1,1),(226,'20:00:00',25980000000000,46,1,1,1,2,1),(227,'22:30:00',25980000000000,46,1,1,1,2,1),(228,'07:30:00',43740000000000,47,1,1,1,1,1),(229,'10:00:00',43740000000000,47,1,1,1,1,1),(230,'12:30:00',43740000000000,47,1,1,1,2,1),(231,'15:00:00',43740000000000,47,1,1,1,2,1),(232,'17:30:00',43740000000000,47,1,1,1,2,1),(233,'20:00:00',43740000000000,47,1,1,1,2,1),(234,'22:30:00',43740000000000,47,1,1,1,2,1),(235,'07:00:00',117780000000000,48,1,1,1,3,1),(236,'22:00:00',117780000000000,48,1,1,1,3,1),(237,'07:00:00',119160000000000,49,1,1,1,3,1),(238,'22:00:00',119160000000000,49,1,1,1,3,1),(239,'07:00:00',90180000000000,50,1,1,1,3,1),(240,'22:00:00',90180000000000,50,1,1,1,3,1),(241,'07:00:00',48480000000000,51,1,1,1,2,1),(242,'11:00:00',48480000000000,51,1,1,1,2,1),(243,'15:00:00',48480000000000,51,1,1,1,2,1),(244,'19:00:00',48480000000000,51,1,1,1,2,1),(245,'07:00:00',111780000000000,52,1,1,1,3,1),(246,'22:00:00',111780000000000,52,1,1,1,3,1),(247,'07:00:00',92460000000000,53,1,1,1,11,1),(248,'22:00:00',92460000000000,53,1,1,1,11,1),(249,'07:00:00',53940000000000,54,1,1,1,10,1),(250,'11:00:00',53940000000000,54,1,1,1,10,1),(251,'15:00:00',53940000000000,54,1,1,1,10,1),(252,'19:00:00',53940000000000,54,1,1,1,10,1),(253,'07:30:00',83160000000000,55,1,1,1,3,1),(254,'13:00:00',83160000000000,55,1,1,1,3,1),(255,'18:30:00',83160000000000,55,1,1,1,3,1),(256,'24:00:00',83160000000000,55,1,1,1,3,1),(257,'07:30:00',22200000000000,56,1,1,1,5,1),(258,'09:00:00',22200000000000,56,1,1,1,1,1),(259,'10:30:00',22200000000000,56,1,1,1,1,1),(260,'12:00:00',22200000000000,56,1,1,1,1,1),(261,'13:30:00',22200000000000,56,1,1,1,6,1),(262,'15:00:00',22200000000000,56,1,1,1,6,1),(263,'16:30:00',22200000000000,56,1,1,1,1,1),(264,'18:00:00',22200000000000,56,1,1,1,2,1),(265,'19:30:00',22200000000000,56,1,1,1,1,1),(266,'21:00:00',22200000000000,56,1,1,1,2,1),(267,'22:30:00',22200000000000,56,1,1,1,2,1),(268,'07:00:00',92400000000000,57,1,1,1,3,1),(269,'22:00:00',92400000000000,57,1,1,1,3,1),(270,'07:30:00',68820000000000,58,1,1,1,2,1),(271,'12:00:00',68820000000000,58,1,1,1,2,1),(272,'16:30:00',68820000000000,58,1,1,1,2,1),(273,'21:00:00',68820000000000,58,1,1,1,3,1),(274,'07:30:00',31320000000000,59,1,1,1,2,1),(275,'10:00:00',31320000000000,59,1,1,1,1,1),(276,'12:30:00',31320000000000,59,1,1,1,1,1),(277,'15:00:00',31320000000000,59,1,1,1,2,1),(278,'17:30:00',31320000000000,59,1,1,1,2,1),(279,'20:00:00',31320000000000,59,1,1,1,2,1),(280,'22:30:00',31320000000000,59,1,1,1,1,1),(281,'07:00:00',53460000000000,60,1,1,1,2,1),(282,'11:00:00',53460000000000,60,1,1,1,2,1),(283,'15:00:00',53460000000000,60,1,1,1,3,1),(284,'19:00:00',53460000000000,60,1,1,1,2,1),(285,'07:30:00',38880000000000,61,1,1,1,2,1),(286,'10:00:00',38880000000000,61,1,1,1,1,1),(287,'12:30:00',38880000000000,61,1,1,1,2,1),(288,'15:00:00',38880000000000,61,1,1,1,1,1),(289,'17:30:00',38880000000000,61,1,1,1,2,1),(290,'20:00:00',38880000000000,61,1,1,1,2,1),(291,'22:30:00',38880000000000,61,1,1,1,2,1),(292,'07:30:00',80460000000000,62,1,1,1,2,1),(293,'13:00:00',80460000000000,62,1,1,1,3,1),(294,'18:30:00',80460000000000,62,1,1,1,3,1),(295,'24:00:00',80460000000000,62,1,1,1,3,1),(296,'07:00:00',122280000000000,63,1,1,1,3,1),(297,'22:00:00',122280000000000,63,1,1,1,3,1),(298,'07:30:00',72180000000000,64,1,1,1,2,1),(299,'12:00:00',72180000000000,64,1,1,1,2,1),(300,'16:30:00',72180000000000,64,1,1,1,3,1),(301,'21:00:00',72180000000000,64,1,1,1,3,1),(302,'07:00:00',57420000000000,65,1,1,1,2,1),(303,'11:00:00',57420000000000,65,1,1,1,2,1),(304,'15:00:00',57420000000000,65,1,1,1,2,1),(305,'19:00:00',57420000000000,65,1,1,1,2,1),(306,'07:00:00',93900000000000,66,1,1,1,3,1),(307,'22:00:00',93900000000000,66,1,1,1,3,1),(308,'07:30:00',26700000000000,67,1,1,1,2,1),(309,'10:00:00',26700000000000,67,1,1,1,2,1),(310,'12:30:00',26700000000000,67,1,1,1,2,1),(311,'15:00:00',26700000000000,67,1,1,1,1,1),(312,'17:30:00',26700000000000,67,1,1,1,2,1),(313,'20:00:00',26700000000000,67,1,1,1,1,1),(314,'22:30:00',26700000000000,67,1,1,1,1,1),(315,'07:00:00',124620000000000,68,1,1,1,3,1),(316,'22:00:00',124620000000000,68,1,1,1,3,1),(317,'07:30:00',43500000000000,69,1,1,1,1,1),(318,'10:00:00',43500000000000,69,1,1,1,1,1),(319,'12:30:00',43500000000000,69,1,1,1,2,1),(320,'15:00:00',43500000000000,69,1,1,1,2,1),(321,'17:30:00',43500000000000,69,1,1,1,1,1),(322,'20:00:00',43500000000000,69,1,1,1,2,1),(323,'22:30:00',43500000000000,69,1,1,1,1,1),(324,'07:00:00',56280000000000,70,1,1,1,10,1),(325,'11:00:00',56280000000000,70,1,1,1,10,1),(326,'15:00:00',56280000000000,70,1,1,1,10,1),(327,'19:00:00',56280000000000,70,1,1,1,10,1),(328,'07:00:00',99480000000000,71,1,1,1,3,1),(329,'22:00:00',99480000000000,71,1,1,1,3,1),(330,'07:30:00',37200000000000,72,1,1,1,2,1),(331,'10:00:00',37200000000000,72,1,1,1,1,1),(332,'12:30:00',37200000000000,72,1,1,1,2,1),(333,'15:00:00',37200000000000,72,1,1,1,2,1),(334,'17:30:00',37200000000000,72,1,1,1,1,1),(335,'20:00:00',37200000000000,72,1,1,1,1,1),(336,'22:30:00',37200000000000,72,1,1,1,2,1),(337,'07:00:00',54240000000000,73,1,1,1,3,1),(338,'11:00:00',54240000000000,73,1,1,1,2,1),(339,'15:00:00',54240000000000,73,1,1,1,2,1),(340,'19:00:00',54240000000000,73,1,1,1,2,1),(341,'07:00:00',55740000000000,74,1,1,1,10,1),(342,'11:00:00',55740000000000,74,1,1,1,10,1),(343,'15:00:00',55740000000000,74,1,1,1,10,1),(344,'19:00:00',55740000000000,74,1,1,1,10,1),(345,'07:30:00',83820000000000,75,1,1,1,10,1),(346,'13:00:00',83820000000000,75,1,1,1,11,1),(347,'18:30:00',83820000000000,75,1,1,1,10,1),(348,'24:00:00',83820000000000,75,1,1,1,10,1),(349,'07:30:00',45360000000000,76,1,1,1,2,1),(350,'10:00:00',45360000000000,76,1,1,1,1,1),(351,'12:30:00',45360000000000,76,1,1,1,2,1),(352,'15:00:00',45360000000000,76,1,1,1,2,1),(353,'17:30:00',45360000000000,76,1,1,1,2,1),(354,'20:00:00',45360000000000,76,1,1,1,2,1),(355,'22:30:00',45360000000000,76,1,1,1,1,1),(356,'07:30:00',44700000000000,77,1,1,1,10,1),(357,'10:00:00',44700000000000,77,1,1,1,10,1),(358,'12:30:00',44700000000000,77,1,1,1,10,1),(359,'15:00:00',44700000000000,77,1,1,1,10,1),(360,'17:30:00',44700000000000,77,1,1,1,10,1),(361,'20:00:00',44700000000000,77,1,1,1,10,1),(362,'22:30:00',44700000000000,77,1,1,1,10,1),(363,'07:30:00',71280000000000,78,1,1,1,2,1),(364,'12:00:00',71280000000000,78,1,1,1,3,1),(365,'16:30:00',71280000000000,78,1,1,1,2,1),(366,'21:00:00',71280000000000,78,1,1,1,3,1),(367,'07:00:00',116520000000000,79,1,1,1,3,1),(368,'22:00:00',116520000000000,79,1,1,1,3,1),(369,'07:00:00',61080000000000,80,1,1,1,2,1),(370,'11:00:00',61080000000000,80,1,1,1,2,1),(371,'15:00:00',61080000000000,80,1,1,1,2,1),(372,'19:00:00',61080000000000,80,1,1,1,2,1),(373,'07:00:00',151140000000000,81,1,1,1,3,1),(374,'22:00:00',151140000000000,81,1,1,1,3,1),(375,'07:30:00',64860000000000,82,1,1,1,11,1),(376,'12:00:00',64860000000000,82,1,1,1,10,1),(377,'16:30:00',64860000000000,82,1,1,1,10,1),(378,'21:00:00',64860000000000,82,1,1,1,11,1),(379,'07:00:00',133440000000000,83,1,1,1,3,1),(380,'22:00:00',133440000000000,83,1,1,1,3,1),(381,'07:00:00',117240000000000,84,1,1,1,3,1),(382,'22:00:00',117240000000000,84,1,1,1,3,1),(383,'07:00:00',88080000000000,85,1,1,1,3,1),(384,'22:00:00',88080000000000,85,1,1,1,3,1),(385,'07:00:00',59580000000000,86,1,1,1,3,1),(386,'11:00:00',59580000000000,86,1,1,1,2,1),(387,'15:00:00',59580000000000,86,1,1,1,3,1),(388,'19:00:00',59580000000000,86,1,1,1,2,1),(389,'07:30:00',33120000000000,87,1,1,1,1,1),(390,'10:00:00',33120000000000,87,1,1,1,1,1),(391,'12:30:00',33120000000000,87,1,1,1,2,1),(392,'15:00:00',33120000000000,87,1,1,1,1,1),(393,'17:30:00',33120000000000,87,1,1,1,1,1),(394,'20:00:00',33120000000000,87,1,1,1,1,1),(395,'22:30:00',33120000000000,87,1,1,1,1,1),(396,'07:30:00',74280000000000,88,1,1,1,3,1),(397,'12:00:00',74280000000000,88,1,1,1,3,1),(398,'16:30:00',74280000000000,88,1,1,1,2,1),(399,'21:00:00',74280000000000,88,1,1,1,3,1),(400,'07:00:00',134460000000000,89,1,1,1,3,1),(401,'22:00:00',134460000000000,89,1,1,1,3,1),(402,'07:00:00',149640000000000,90,1,1,1,3,1),(403,'22:00:00',149640000000000,90,1,1,1,3,1),(404,'07:00:00',121080000000000,91,1,1,1,3,1),(405,'22:00:00',121080000000000,91,1,1,1,3,1),(406,'07:30:00',79080000000000,92,1,1,1,2,1),(407,'13:00:00',79080000000000,92,1,1,1,3,1),(408,'18:30:00',79080000000000,92,1,1,1,3,1),(409,'24:00:00',79080000000000,92,1,1,1,3,1),(410,'07:30:00',81060000000000,93,1,1,1,3,1),(411,'13:00:00',81060000000000,93,1,1,1,2,1),(412,'18:30:00',81060000000000,93,1,1,1,3,1),(413,'24:00:00',81060000000000,93,1,1,1,3,1),(414,'07:30:00',85620000000000,94,1,1,1,11,1),(415,'13:00:00',85620000000000,94,1,1,1,11,1),(416,'18:30:00',85620000000000,94,1,1,1,11,1),(417,'24:00:00',85620000000000,94,1,1,1,11,1),(418,'07:30:00',35340000000000,95,1,1,1,10,1),(419,'10:00:00',35340000000000,95,1,1,1,10,1),(420,'12:30:00',35340000000000,95,1,1,1,10,1),(421,'15:00:00',35340000000000,95,1,1,1,10,1),(422,'17:30:00',35340000000000,95,1,1,1,10,1),(423,'20:00:00',35340000000000,95,1,1,1,10,1),(424,'22:30:00',35340000000000,95,1,1,1,10,1),(425,'07:00:00',113580000000000,96,1,1,1,3,1),(426,'22:00:00',113580000000000,96,1,1,1,3,1),(427,'07:30:00',35520000000000,97,1,1,1,2,1),(428,'10:00:00',35520000000000,97,1,1,1,2,1),(429,'12:30:00',35520000000000,97,1,1,1,1,1),(430,'15:00:00',35520000000000,97,1,1,1,2,1),(431,'17:30:00',35520000000000,97,1,1,1,1,1),(432,'20:00:00',35520000000000,97,1,1,1,2,1),(433,'22:30:00',35520000000000,97,1,1,1,1,1),(434,'07:30:00',85800000000000,98,1,1,1,3,1),(435,'13:00:00',85800000000000,98,1,1,1,3,1),(436,'18:30:00',85800000000000,98,1,1,1,2,1),(437,'24:00:00',85800000000000,98,1,1,1,3,1),(438,'07:00:00',99720000000000,99,1,1,1,3,1),(439,'22:00:00',99720000000000,99,1,1,1,3,1),(440,'07:30:00',16200000000000,100,1,1,1,6,1),(441,'09:00:00',16200000000000,100,1,1,1,2,1),(442,'10:30:00',16200000000000,100,1,1,1,2,1),(443,'12:00:00',16200000000000,100,1,1,1,5,1),(444,'13:30:00',16200000000000,100,1,1,1,2,1),(445,'15:00:00',16200000000000,100,1,1,1,2,1),(446,'16:30:00',16200000000000,100,1,1,1,1,1),(447,'18:00:00',16200000000000,100,1,1,1,2,1),(448,'19:30:00',16200000000000,100,1,1,1,6,1),(449,'21:00:00',16200000000000,100,1,1,1,1,1),(450,'22:30:00',16200000000000,100,1,1,1,5,1),(451,'07:30:00',22740000000000,101,1,1,1,2,1),(452,'09:00:00',22740000000000,101,1,1,1,2,1),(453,'10:30:00',22740000000000,101,1,1,1,1,1),(454,'12:00:00',22740000000000,101,1,1,1,2,1),(455,'13:30:00',22740000000000,101,1,1,1,1,1),(456,'15:00:00',22740000000000,101,1,1,1,2,1),(457,'16:30:00',22740000000000,101,1,1,1,6,1),(458,'18:00:00',22740000000000,101,1,1,1,1,1),(459,'19:30:00',22740000000000,101,1,1,1,2,1),(460,'21:00:00',22740000000000,101,1,1,1,2,1),(461,'22:30:00',22740000000000,101,1,1,1,5,1),(462,'07:00:00',51840000000000,102,1,1,1,2,1),(463,'11:00:00',51840000000000,102,1,1,1,2,1),(464,'15:00:00',51840000000000,102,1,1,1,2,1),(465,'19:00:00',51840000000000,102,1,1,1,2,1),(466,'07:00:00',97200000000000,103,1,1,1,3,1),(467,'22:00:00',97200000000000,103,1,1,1,3,1),(468,'07:00:00',123060000000000,104,1,1,1,3,1),(469,'22:00:00',123060000000000,104,1,1,1,3,1),(470,'07:00:00',103020000000000,105,1,1,1,3,1),(471,'22:00:00',103020000000000,105,1,1,1,3,1),(472,'07:30:00',72060000000000,106,1,1,1,3,1),(473,'12:00:00',72060000000000,106,1,1,1,2,1),(474,'16:30:00',72060000000000,106,1,1,1,2,1),(475,'21:00:00',72060000000000,106,1,1,1,2,1),(476,'07:30:00',63240000000000,107,1,1,1,2,1),(477,'12:00:00',63240000000000,107,1,1,1,2,1),(478,'16:30:00',63240000000000,107,1,1,1,2,1),(479,'21:00:00',63240000000000,107,1,1,1,3,1),(480,'07:30:00',21840000000000,108,1,1,1,2,1),(481,'09:00:00',21840000000000,108,1,1,1,5,1),(482,'10:30:00',21840000000000,108,1,1,1,2,1),(483,'12:00:00',21840000000000,108,1,1,1,1,1),(484,'13:30:00',21840000000000,108,1,1,1,5,1),(485,'15:00:00',21840000000000,108,1,1,1,1,1),(486,'16:30:00',21840000000000,108,1,1,1,2,1),(487,'18:00:00',21840000000000,108,1,1,1,6,1),(488,'19:30:00',21840000000000,108,1,1,1,6,1),(489,'21:00:00',21840000000000,108,1,1,1,1,1),(490,'22:30:00',21840000000000,108,1,1,1,2,1),(491,'07:00:00',155460000000000,109,1,1,1,3,1),(492,'22:00:00',155460000000000,109,1,1,1,3,1),(493,'07:30:00',73980000000000,110,1,1,1,2,1),(494,'12:00:00',73980000000000,110,1,1,1,2,1),(495,'16:30:00',73980000000000,110,1,1,1,3,1),(496,'21:00:00',73980000000000,110,1,1,1,3,1),(497,'07:30:00',30240000000000,111,1,1,1,10,1),(498,'10:00:00',30240000000000,111,1,1,1,10,1),(499,'12:30:00',30240000000000,111,1,1,1,10,1),(500,'15:00:00',30240000000000,111,1,1,1,10,1),(501,'17:30:00',30240000000000,111,1,1,1,10,1),(502,'20:00:00',30240000000000,111,1,1,1,10,1),(503,'22:30:00',30240000000000,111,1,1,1,10,1),(504,'07:00:00',100320000000000,112,1,1,1,3,1),(505,'22:00:00',100320000000000,112,1,1,1,3,1),(506,'07:30:00',73500000000000,113,1,1,1,2,1),(507,'12:00:00',73500000000000,113,1,1,1,2,1),(508,'16:30:00',73500000000000,113,1,1,1,3,1),(509,'21:00:00',73500000000000,113,1,1,1,3,1),(510,'07:00:00',90120000000000,114,1,1,1,3,1),(511,'22:00:00',90120000000000,114,1,1,1,3,1),(512,'07:30:00',25080000000000,115,1,1,1,10,1),(513,'09:00:00',25080000000000,115,1,1,1,10,1),(514,'10:30:00',25080000000000,115,1,1,1,10,1),(515,'12:00:00',25080000000000,115,1,1,1,10,1),(516,'13:30:00',25080000000000,115,1,1,1,10,1),(517,'15:00:00',25080000000000,115,1,1,1,10,1),(518,'16:30:00',25080000000000,115,1,1,1,10,1),(519,'18:00:00',25080000000000,115,1,1,1,10,1),(520,'19:30:00',25080000000000,115,1,1,1,10,1),(521,'21:00:00',25080000000000,115,1,1,1,10,1),(522,'22:30:00',25080000000000,115,1,1,1,10,1),(523,'07:00:00',55200000000000,116,1,1,1,10,1),(524,'11:00:00',55200000000000,116,1,1,1,10,1),(525,'15:00:00',55200000000000,116,1,1,1,10,1),(526,'19:00:00',55200000000000,116,1,1,1,10,1),(527,'07:30:00',75840000000000,117,1,1,1,3,1),(528,'13:00:00',75840000000000,117,1,1,1,3,1),(529,'18:30:00',75840000000000,117,1,1,1,3,1),(530,'24:00:00',75840000000000,117,1,1,1,3,1),(531,'07:30:00',26160000000000,118,1,1,1,10,1),(532,'10:00:00',26160000000000,118,1,1,1,10,1),(533,'12:30:00',26160000000000,118,1,1,1,10,1),(534,'15:00:00',26160000000000,118,1,1,1,10,1),(535,'17:30:00',26160000000000,118,1,1,1,10,1),(536,'20:00:00',26160000000000,118,1,1,1,10,1),(537,'22:30:00',26160000000000,118,1,1,1,10,1),(538,'07:00:00',102120000000000,119,1,1,1,3,1),(539,'22:00:00',102120000000000,119,1,1,1,3,1),(540,'07:00:00',131520000000000,120,1,1,1,3,1),(541,'22:00:00',131520000000000,120,1,1,1,3,1),(542,'07:30:00',63240000000000,121,1,1,1,3,1),(543,'12:00:00',63240000000000,121,1,1,1,3,1),(544,'16:30:00',63240000000000,121,1,1,1,2,1),(545,'21:00:00',63240000000000,121,1,1,1,3,1),(546,'12:00:00',181620000000000,122,1,0,1,3,1),(547,'07:30:00',34260000000000,123,1,1,1,10,1),(548,'10:00:00',34260000000000,123,1,1,1,10,1),(549,'12:30:00',34260000000000,123,1,1,1,10,1),(550,'15:00:00',34260000000000,123,1,1,1,10,1),(551,'17:30:00',34260000000000,123,1,1,1,10,1),(552,'20:00:00',34260000000000,123,1,1,1,10,1),(553,'22:30:00',34260000000000,123,1,1,1,10,1),(554,'07:00:00',126840000000000,124,1,1,1,3,1),(555,'22:00:00',126840000000000,124,1,1,1,3,1),(556,'07:00:00',118020000000000,125,1,1,1,3,1),(557,'22:00:00',118020000000000,125,1,1,1,3,1),(558,'07:00:00',88920000000000,126,1,1,1,3,1),(559,'22:00:00',88920000000000,126,1,1,1,3,1),(560,'07:00:00',54420000000000,127,1,1,1,2,1),(561,'11:00:00',54420000000000,127,1,1,1,2,1),(562,'15:00:00',54420000000000,127,1,1,1,2,1),(563,'19:00:00',54420000000000,127,1,1,1,2,1),(564,'07:30:00',20100000000000,128,1,1,1,1,1),(565,'09:00:00',20100000000000,128,1,1,1,5,1),(566,'10:30:00',20100000000000,128,1,1,1,2,1),(567,'12:00:00',20100000000000,128,1,1,1,1,1),(568,'13:30:00',20100000000000,128,1,1,1,1,1),(569,'15:00:00',20100000000000,128,1,1,1,2,1),(570,'16:30:00',20100000000000,128,1,1,1,1,1),(571,'18:00:00',20100000000000,128,1,1,1,2,1),(572,'19:30:00',20100000000000,128,1,1,1,2,1),(573,'21:00:00',20100000000000,128,1,1,1,1,1),(574,'22:30:00',20100000000000,128,1,1,1,1,1),(575,'07:00:00',134040000000000,129,1,1,1,3,1),(576,'22:00:00',134040000000000,129,1,1,1,3,1),(577,'07:00:00',107820000000000,130,1,1,1,3,1),(578,'22:00:00',107820000000000,130,1,1,1,3,1),(579,'07:00:00',89160000000000,131,1,1,1,3,1),(580,'22:00:00',89160000000000,131,1,1,1,3,1),(581,'07:30:00',40440000000000,132,1,1,1,1,1),(582,'10:00:00',40440000000000,132,1,1,1,2,1),(583,'12:30:00',40440000000000,132,1,1,1,1,1),(584,'15:00:00',40440000000000,132,1,1,1,2,1),(585,'17:30:00',40440000000000,132,1,1,1,1,1),(586,'20:00:00',40440000000000,132,1,1,1,1,1),(587,'22:30:00',40440000000000,132,1,1,1,2,1),(588,'07:00:00',133860000000000,133,1,1,1,3,1),(589,'22:00:00',133860000000000,133,1,1,1,3,1),(590,'07:00:00',116520000000000,134,1,1,1,11,1),(591,'22:00:00',116520000000000,134,1,1,1,11,1),(592,'07:00:00',48600000000000,135,1,1,1,10,1),(593,'11:00:00',48600000000000,135,1,1,1,10,1),(594,'15:00:00',48600000000000,135,1,1,1,10,1),(595,'19:00:00',48600000000000,135,1,1,1,10,1),(596,'07:30:00',71760000000000,136,1,1,1,2,1),(597,'12:00:00',71760000000000,136,1,1,1,2,1),(598,'16:30:00',71760000000000,136,1,1,1,3,1),(599,'21:00:00',71760000000000,136,1,1,1,2,1),(600,'07:00:00',50580000000000,137,1,1,1,3,1),(601,'11:00:00',50580000000000,137,1,1,1,2,1),(602,'15:00:00',50580000000000,137,1,1,1,2,1),(603,'19:00:00',50580000000000,137,1,1,1,2,1),(604,'07:00:00',120900000000000,138,1,1,1,3,1),(605,'22:00:00',120900000000000,138,1,1,1,3,1),(606,'07:30:00',72660000000000,139,1,1,1,3,1),(607,'12:00:00',72660000000000,139,1,1,1,2,1),(608,'16:30:00',72660000000000,139,1,1,1,2,1),(609,'21:00:00',72660000000000,139,1,1,1,3,1),(610,'07:00:00',60120000000000,140,1,1,1,3,1),(611,'11:00:00',60120000000000,140,1,1,1,2,1),(612,'15:00:00',60120000000000,140,1,1,1,3,1),(613,'19:00:00',60120000000000,140,1,1,1,2,1),(614,'07:30:00',82260000000000,141,1,1,1,3,1),(615,'13:00:00',82260000000000,141,1,1,1,3,1),(616,'18:30:00',82260000000000,141,1,1,1,3,1),(617,'24:00:00',82260000000000,141,1,1,1,3,1),(618,'07:30:00',61860000000000,142,1,1,1,3,1),(619,'12:00:00',61860000000000,142,1,1,1,2,1),(620,'16:30:00',61860000000000,142,1,1,1,3,1),(621,'21:00:00',61860000000000,142,1,1,1,2,1),(622,'07:00:00',96720000000000,143,1,1,1,3,1),(623,'22:00:00',96720000000000,143,1,1,1,3,1),(624,'07:00:00',150660000000000,144,1,1,1,3,1),(625,'22:00:00',150660000000000,144,1,1,1,3,1),(626,'07:30:00',68520000000000,145,1,1,1,3,1),(627,'12:00:00',68520000000000,145,1,1,1,2,1),(628,'16:30:00',68520000000000,145,1,1,1,3,1),(629,'21:00:00',68520000000000,145,1,1,1,2,1),(630,'07:30:00',73680000000000,146,1,1,1,3,1),(631,'12:00:00',73680000000000,146,1,1,1,2,1),(632,'16:30:00',73680000000000,146,1,1,1,3,1),(633,'21:00:00',73680000000000,146,1,1,1,3,1),(634,'07:30:00',81960000000000,147,1,1,1,3,1),(635,'13:00:00',81960000000000,147,1,1,1,3,1),(636,'18:30:00',81960000000000,147,1,1,1,3,1),(637,'24:00:00',81960000000000,147,1,1,1,3,1),(638,'07:00:00',55920000000000,148,1,1,1,2,1),(639,'11:00:00',55920000000000,148,1,1,1,2,1),(640,'15:00:00',55920000000000,148,1,1,1,2,1),(641,'19:00:00',55920000000000,148,1,1,1,2,1),(642,'07:00:00',123600000000000,149,1,1,1,3,1),(643,'22:00:00',123600000000000,149,1,1,1,3,1),(644,'07:30:00',19080000000000,150,1,1,1,2,1),(645,'09:00:00',19080000000000,150,1,1,1,6,1),(646,'10:30:00',19080000000000,150,1,1,1,1,1),(647,'12:00:00',19080000000000,150,1,1,1,1,1),(648,'13:30:00',19080000000000,150,1,1,1,2,1),(649,'15:00:00',19080000000000,150,1,1,1,1,1),(650,'16:30:00',19080000000000,150,1,1,1,2,1),(651,'18:00:00',19080000000000,150,1,1,1,6,1),(652,'19:30:00',19080000000000,150,1,1,1,2,1),(653,'21:00:00',19080000000000,150,1,1,1,2,1),(654,'22:30:00',19080000000000,150,1,1,1,5,1),(655,'07:30:00',61740000000000,151,1,1,1,11,1),(656,'12:00:00',61740000000000,151,1,1,1,11,1),(657,'16:30:00',61740000000000,151,1,1,1,10,1),(658,'21:00:00',61740000000000,151,1,1,1,10,1),(659,'07:00:00',127920000000000,152,1,1,1,3,1),(660,'22:00:00',127920000000000,152,1,1,1,3,1),(661,'07:30:00',34860000000000,153,1,1,1,2,1),(662,'10:00:00',34860000000000,153,1,1,1,1,1),(663,'12:30:00',34860000000000,153,1,1,1,1,1),(664,'15:00:00',34860000000000,153,1,1,1,1,1),(665,'17:30:00',34860000000000,153,1,1,1,1,1),(666,'20:00:00',34860000000000,153,1,1,1,1,1),(667,'22:30:00',34860000000000,153,1,1,1,2,1),(668,'07:00:00',60060000000000,154,1,1,1,2,1),(669,'11:00:00',60060000000000,154,1,1,1,2,1),(670,'15:00:00',60060000000000,154,1,1,1,2,1),(671,'19:00:00',60060000000000,154,1,1,1,3,1),(672,'07:30:00',65160000000000,155,1,1,1,11,1),(673,'12:00:00',65160000000000,155,1,1,1,11,1),(674,'16:30:00',65160000000000,155,1,1,1,11,1),(675,'21:00:00',65160000000000,155,1,1,1,10,1),(676,'07:00:00',113040000000000,156,1,1,1,11,1),(677,'22:00:00',113040000000000,156,1,1,1,11,1),(678,'07:30:00',34020000000000,157,1,1,1,1,1),(679,'10:00:00',34020000000000,157,1,1,1,2,1),(680,'12:30:00',34020000000000,157,1,1,1,2,1),(681,'15:00:00',34020000000000,157,1,1,1,1,1),(682,'17:30:00',34020000000000,157,1,1,1,1,1),(683,'20:00:00',34020000000000,157,1,1,1,1,1),(684,'22:30:00',34020000000000,157,1,1,1,1,1),(685,'07:30:00',43740000000000,158,1,1,1,10,1),(686,'10:00:00',43740000000000,158,1,1,1,10,1),(687,'12:30:00',43740000000000,158,1,1,1,10,1),(688,'15:00:00',43740000000000,158,1,1,1,10,1),(689,'17:30:00',43740000000000,158,1,1,1,10,1),(690,'20:00:00',43740000000000,158,1,1,1,10,1),(691,'22:30:00',43740000000000,158,1,1,1,10,1),(692,'07:30:00',81660000000000,159,1,1,1,3,1),(693,'13:00:00',81660000000000,159,1,1,1,3,1),(694,'18:30:00',81660000000000,159,1,1,1,3,1),(695,'24:00:00',81660000000000,159,1,1,1,3,1),(696,'07:00:00',129900000000000,160,1,1,1,3,1),(697,'22:00:00',129900000000000,160,1,1,1,3,1),(698,'07:00:00',89460000000000,161,1,1,1,3,1),(699,'22:00:00',89460000000000,161,1,1,1,3,1),(700,'07:00:00',139800000000000,162,1,1,1,3,1),(701,'22:00:00',139800000000000,162,1,1,1,3,1),(702,'07:00:00',103680000000000,163,1,1,1,11,1),(703,'22:00:00',103680000000000,163,1,1,1,11,1),(704,'07:00:00',161880000000000,164,1,1,1,3,1),(705,'22:00:00',161880000000000,164,1,1,1,3,1),(706,'07:00:00',145680000000000,165,1,1,1,3,1),(707,'22:00:00',145680000000000,165,1,1,1,3,1),(708,'07:00:00',116520000000000,166,1,1,1,3,1),(709,'22:00:00',116520000000000,166,1,1,1,3,1),(710,'07:30:00',68940000000000,167,1,1,1,3,1),(711,'12:00:00',68940000000000,167,1,1,1,2,1),(712,'16:30:00',68940000000000,167,1,1,1,3,1),(713,'21:00:00',68940000000000,167,1,1,1,3,1),(714,'07:00:00',101520000000000,168,1,1,1,3,1),(715,'22:00:00',101520000000000,168,1,1,1,3,1),(716,'07:00:00',143940000000000,169,1,1,1,3,1),(717,'22:00:00',143940000000000,169,1,1,1,3,1),(718,'07:00:00',90120000000000,170,1,1,1,3,1),(719,'22:00:00',90120000000000,170,1,1,1,3,1),(720,'07:00:00',55020000000000,171,1,1,1,2,1),(721,'11:00:00',55020000000000,171,1,1,1,2,1),(722,'15:00:00',55020000000000,171,1,1,1,2,1),(723,'19:00:00',55020000000000,171,1,1,1,2,1),(724,'07:00:00',113940000000000,172,1,1,1,3,1),(725,'22:00:00',113940000000000,172,1,1,1,3,1),(726,'07:30:00',70740000000000,173,1,1,1,10,1),(727,'12:00:00',70740000000000,173,1,1,1,11,1),(728,'16:30:00',70740000000000,173,1,1,1,11,1),(729,'21:00:00',70740000000000,173,1,1,1,11,1),(730,'07:30:00',72660000000000,174,1,1,1,11,1),(731,'12:00:00',72660000000000,174,1,1,1,10,1),(732,'16:30:00',72660000000000,174,1,1,1,11,1),(733,'21:00:00',72660000000000,174,1,1,1,11,1),(734,'07:00:00',107940000000000,175,1,1,1,3,1),(735,'22:00:00',107940000000000,175,1,1,1,3,1),(736,'07:00:00',3780000000000,176,1,1,1,8,1),(737,'08:00:00',3780000000000,176,1,1,1,8,1),(738,'09:00:00',3780000000000,176,1,1,1,8,1),(739,'10:00:00',3780000000000,176,1,1,1,8,1),(740,'11:00:00',3780000000000,176,1,1,1,8,1),(741,'12:00:00',3780000000000,176,1,1,1,8,1),(742,'13:00:00',3780000000000,176,1,1,1,8,1),(743,'14:00:00',3780000000000,176,1,1,1,8,1),(744,'15:00:00',3780000000000,176,1,1,1,8,1),(745,'16:00:00',3780000000000,176,1,1,1,8,1),(746,'17:00:00',3780000000000,176,1,1,1,8,1),(747,'18:00:00',3780000000000,176,1,1,1,8,1),(748,'19:00:00',3780000000000,176,1,1,1,8,1),(749,'20:00:00',3780000000000,176,1,1,1,8,1),(750,'21:00:00',3780000000000,176,1,1,1,8,1),(751,'22:00:00',3780000000000,176,1,1,1,8,1),(752,'07:30:00',70320000000000,177,1,1,1,3,1),(753,'12:00:00',70320000000000,177,1,1,1,2,1),(754,'16:30:00',70320000000000,177,1,1,1,3,1),(755,'21:00:00',70320000000000,177,1,1,1,3,1),(756,'07:30:00',68760000000000,178,1,1,1,3,1),(757,'12:00:00',68760000000000,178,1,1,1,3,1),(758,'16:30:00',68760000000000,178,1,1,1,3,1),(759,'21:00:00',68760000000000,178,1,1,1,2,1),(760,'07:30:00',43920000000000,179,1,1,1,1,1),(761,'10:00:00',43920000000000,179,1,1,1,2,1),(762,'12:30:00',43920000000000,179,1,1,1,1,1),(763,'15:00:00',43920000000000,179,1,1,1,1,1),(764,'17:30:00',43920000000000,179,1,1,1,1,1),(765,'20:00:00',43920000000000,179,1,1,1,2,1),(766,'22:30:00',43920000000000,179,1,1,1,2,1),(767,'07:00:00',55560000000000,180,1,1,1,2,1),(768,'11:00:00',55560000000000,180,1,1,1,2,1),(769,'15:00:00',55560000000000,180,1,1,1,3,1),(770,'19:00:00',55560000000000,180,1,1,1,2,1),(771,'07:30:00',18960000000000,181,1,1,1,6,1),(772,'09:00:00',18960000000000,181,1,1,1,1,1),(773,'10:30:00',18960000000000,181,1,1,1,1,1),(774,'12:00:00',18960000000000,181,1,1,1,1,1),(775,'13:30:00',18960000000000,181,1,1,1,1,1),(776,'15:00:00',18960000000000,181,1,1,1,2,1),(777,'16:30:00',18960000000000,181,1,1,1,2,1),(778,'18:00:00',18960000000000,181,1,1,1,1,1),(779,'19:30:00',18960000000000,181,1,1,1,2,1),(780,'21:00:00',18960000000000,181,1,1,1,1,1),(781,'22:30:00',18960000000000,181,1,1,1,2,1),(782,'07:30:00',64260000000000,182,1,1,1,2,1),(783,'12:00:00',64260000000000,182,1,1,1,2,1),(784,'16:30:00',64260000000000,182,1,1,1,2,1),(785,'21:00:00',64260000000000,182,1,1,1,2,1),(786,'07:00:00',100140000000000,183,1,1,1,3,1),(787,'22:00:00',100140000000000,183,1,1,1,3,1),(788,'07:30:00',76380000000000,184,1,1,1,3,1),(789,'13:00:00',76380000000000,184,1,1,1,3,1),(790,'18:30:00',76380000000000,184,1,1,1,3,1),(791,'24:00:00',76380000000000,184,1,1,1,3,1),(792,'07:30:00',39120000000000,185,1,1,1,1,1),(793,'10:00:00',39120000000000,185,1,1,1,2,1),(794,'12:30:00',39120000000000,185,1,1,1,2,1),(795,'15:00:00',39120000000000,185,1,1,1,2,1),(796,'17:30:00',39120000000000,185,1,1,1,2,1),(797,'20:00:00',39120000000000,185,1,1,1,2,1),(798,'22:30:00',39120000000000,185,1,1,1,1,1),(799,'07:00:00',96120000000000,186,1,1,1,3,1),(800,'22:00:00',96120000000000,186,1,1,1,3,1),(801,'07:30:00',11520000000000,187,1,1,1,5,1),(802,'09:00:00',11520000000000,187,1,1,1,1,1),(803,'10:30:00',11520000000000,187,1,1,1,1,1),(804,'12:00:00',11520000000000,187,1,1,1,6,1),(805,'13:30:00',11520000000000,187,1,1,1,6,1),(806,'15:00:00',11520000000000,187,1,1,1,2,1),(807,'16:30:00',11520000000000,187,1,1,1,1,1),(808,'18:00:00',11520000000000,187,1,1,1,2,1),(809,'19:30:00',11520000000000,187,1,1,1,6,1),(810,'21:00:00',11520000000000,187,1,1,1,5,1),(811,'22:30:00',11520000000000,187,1,1,1,6,1),(812,'07:00:00',128340000000000,188,1,1,1,3,1),(813,'22:00:00',128340000000000,188,1,1,1,3,1),(814,'07:30:00',68640000000000,189,1,1,1,3,1),(815,'12:00:00',68640000000000,189,1,1,1,2,1),(816,'16:30:00',68640000000000,189,1,1,1,3,1),(817,'21:00:00',68640000000000,189,1,1,1,2,1),(818,'07:30:00',63120000000000,190,1,1,1,11,1),(819,'12:00:00',63120000000000,190,1,1,1,11,1),(820,'16:30:00',63120000000000,190,1,1,1,10,1),(821,'21:00:00',63120000000000,190,1,1,1,10,1),(822,'07:30:00',77400000000000,191,1,1,1,3,1),(823,'13:00:00',77400000000000,191,1,1,1,3,1),(824,'18:30:00',77400000000000,191,1,1,1,3,1),(825,'24:00:00',77400000000000,191,1,1,1,3,1),(826,'07:30:00',43740000000000,192,1,1,1,2,1),(827,'10:00:00',43740000000000,192,1,1,1,2,1),(828,'12:30:00',43740000000000,192,1,1,1,2,1),(829,'15:00:00',43740000000000,192,1,1,1,2,1),(830,'17:30:00',43740000000000,192,1,1,1,1,1),(831,'20:00:00',43740000000000,192,1,1,1,1,1),(832,'22:30:00',43740000000000,192,1,1,1,2,1),(833,'07:00:00',59160000000000,193,1,1,1,2,1),(834,'11:00:00',59160000000000,193,1,1,1,2,1),(835,'15:00:00',59160000000000,193,1,1,1,2,1),(836,'19:00:00',59160000000000,193,1,1,1,2,1),(837,'07:00:00',57960000000000,194,1,1,1,10,1),(838,'11:00:00',57960000000000,194,1,1,1,10,1),(839,'15:00:00',57960000000000,194,1,1,1,11,1),(840,'19:00:00',57960000000000,194,1,1,1,10,1),(841,'07:30:00',74400000000000,195,1,1,1,10,1),(842,'12:00:00',74400000000000,195,1,1,1,10,1),(843,'16:30:00',74400000000000,195,1,1,1,11,1),(844,'21:00:00',74400000000000,195,1,1,1,11,1),(845,'07:30:00',70560000000000,196,1,1,1,3,1),(846,'12:00:00',70560000000000,196,1,1,1,2,1),(847,'16:30:00',70560000000000,196,1,1,1,3,1),(848,'21:00:00',70560000000000,196,1,1,1,3,1),(849,'07:00:00',55680000000000,197,1,1,1,10,1),(850,'11:00:00',55680000000000,197,1,1,1,10,1),(851,'15:00:00',55680000000000,197,1,1,1,11,1),(852,'19:00:00',55680000000000,197,1,1,1,10,1),(853,'07:30:00',69600000000000,198,1,1,1,3,1),(854,'12:00:00',69600000000000,198,1,1,1,2,1),(855,'16:30:00',69600000000000,198,1,1,1,3,1),(856,'21:00:00',69600000000000,198,1,1,1,2,1),(857,'07:00:00',98640000000000,199,1,1,1,3,1),(858,'22:00:00',98640000000000,199,1,1,1,3,1),(859,'07:30:00',38940000000000,200,1,1,1,1,1),(860,'10:00:00',38940000000000,200,1,1,1,1,1),(861,'12:30:00',38940000000000,200,1,1,1,1,1),(862,'15:00:00',38940000000000,200,1,1,1,2,1),(863,'17:30:00',38940000000000,200,1,1,1,1,1),(864,'20:00:00',38940000000000,200,1,1,1,2,1),(865,'22:30:00',38940000000000,200,1,1,1,1,1),(866,'07:00:00',171660000000000,201,1,1,1,3,1),(867,'22:00:00',171660000000000,201,1,1,1,3,1),(868,'07:00:00',59520000000000,202,1,1,1,11,1),(869,'11:00:00',59520000000000,202,1,1,1,10,1),(870,'15:00:00',59520000000000,202,1,1,1,10,1),(871,'19:00:00',59520000000000,202,1,1,1,10,1),(872,'07:00:00',111360000000000,203,1,1,1,3,1),(873,'22:00:00',111360000000000,203,1,1,1,3,1),(874,'07:00:00',95160000000000,204,1,1,1,3,1),(875,'22:00:00',95160000000000,204,1,1,1,3,1),(876,'07:30:00',64680000000000,205,1,1,1,2,1),(877,'12:00:00',64680000000000,205,1,1,1,3,1),(878,'16:30:00',64680000000000,205,1,1,1,2,1),(879,'21:00:00',64680000000000,205,1,1,1,3,1),(880,'07:00:00',147540000000000,206,1,1,1,3,1),(881,'22:00:00',147540000000000,206,1,1,1,3,1),(882,'07:00:00',112080000000000,207,1,1,1,3,1),(883,'22:00:00',112080000000000,207,1,1,1,3,1),(884,'07:00:00',102600000000000,208,1,1,1,3,1),(885,'22:00:00',102600000000000,208,1,1,1,3,1),(886,'07:00:00',50640000000000,209,1,1,1,2,1),(887,'11:00:00',50640000000000,209,1,1,1,3,1),(888,'15:00:00',50640000000000,209,1,1,1,3,1),(889,'19:00:00',50640000000000,209,1,1,1,2,1),(890,'07:00:00',126180000000000,210,1,1,1,3,1),(891,'22:00:00',126180000000000,210,1,1,1,3,1),(892,'07:00:00',136320000000000,211,1,1,1,11,1),(893,'22:00:00',136320000000000,211,1,1,1,11,1),(894,'07:30:00',40920000000000,212,1,1,1,10,1),(895,'10:00:00',40920000000000,212,1,1,1,10,1),(896,'12:30:00',40920000000000,212,1,1,1,10,1),(897,'15:00:00',40920000000000,212,1,1,1,10,1),(898,'17:30:00',40920000000000,212,1,1,1,10,1),(899,'20:00:00',40920000000000,212,1,1,1,10,1),(900,'22:30:00',40920000000000,212,1,1,1,10,1),(901,'07:30:00',76080000000000,213,1,1,1,2,1),(902,'13:00:00',76080000000000,213,1,1,1,3,1),(903,'18:30:00',76080000000000,213,1,1,1,2,1),(904,'24:00:00',76080000000000,213,1,1,1,3,1),(905,'07:30:00',65220000000000,214,1,1,1,3,1),(906,'12:00:00',65220000000000,214,1,1,1,3,1),(907,'16:30:00',65220000000000,214,1,1,1,3,1),(908,'21:00:00',65220000000000,214,1,1,1,2,1),(909,'07:00:00',135480000000000,215,1,1,1,3,1),(910,'22:00:00',135480000000000,215,1,1,1,3,1),(911,'07:30:00',86100000000000,216,1,1,1,2,1),(912,'13:00:00',86100000000000,216,1,1,1,2,1),(913,'18:30:00',86100000000000,216,1,1,1,3,1),(914,'24:00:00',86100000000000,216,1,1,1,2,1),(915,'07:00:00',48900000000000,217,1,1,1,2,1),(916,'11:00:00',48900000000000,217,1,1,1,2,1),(917,'15:00:00',48900000000000,217,1,1,1,2,1),(918,'19:00:00',48900000000000,217,1,1,1,2,1),(919,'07:30:00',82260000000000,218,1,1,1,3,1),(920,'13:00:00',82260000000000,218,1,1,1,3,1),(921,'18:30:00',82260000000000,218,1,1,1,3,1),(922,'24:00:00',82260000000000,218,1,1,1,2,1),(923,'07:30:00',75420000000000,219,1,1,1,3,1),(924,'12:00:00',75420000000000,219,1,1,1,3,1),(925,'16:30:00',75420000000000,219,1,1,1,3,1),(926,'21:00:00',75420000000000,219,1,1,1,3,1),(927,'07:00:00',110220000000000,220,1,1,1,3,1),(928,'22:00:00',110220000000000,220,1,1,1,3,1),(929,'07:00:00',165300000000000,221,1,1,1,3,1),(930,'22:00:00',165300000000000,221,1,1,1,3,1),(931,'07:30:00',82560000000000,222,1,1,1,3,1),(932,'13:00:00',82560000000000,222,1,1,1,3,1),(933,'18:30:00',82560000000000,222,1,1,1,3,1),(934,'24:00:00',82560000000000,222,1,1,1,3,1),(935,'07:00:00',87240000000000,223,1,1,1,3,1),(936,'22:00:00',87240000000000,223,1,1,1,3,1),(937,'07:30:00',74340000000000,224,1,1,1,2,1),(938,'12:00:00',74340000000000,224,1,1,1,2,1),(939,'16:30:00',74340000000000,224,1,1,1,3,1),(940,'21:00:00',74340000000000,224,1,1,1,2,1),(941,'07:30:00',70440000000000,225,1,1,1,2,1),(942,'12:00:00',70440000000000,225,1,1,1,2,1),(943,'16:30:00',70440000000000,225,1,1,1,2,1),(944,'21:00:00',70440000000000,225,1,1,1,2,1),(945,'07:00:00',137040000000000,226,1,1,1,3,1),(946,'22:00:00',137040000000000,226,1,1,1,3,1),(947,'07:00:00',300000000000,227,1,1,1,8,1),(948,'08:00:00',300000000000,227,1,1,1,8,1),(949,'09:00:00',300000000000,227,1,1,1,8,1),(950,'10:00:00',300000000000,227,1,1,1,8,1),(951,'11:00:00',300000000000,227,1,1,1,8,1),(952,'12:00:00',300000000000,227,1,1,1,8,1),(953,'13:00:00',300000000000,227,1,1,1,8,1),(954,'14:00:00',300000000000,227,1,1,1,8,1),(955,'15:00:00',300000000000,227,1,1,1,8,1),(956,'16:00:00',300000000000,227,1,1,1,8,1),(957,'17:00:00',300000000000,227,1,1,1,8,1),(958,'18:00:00',300000000000,227,1,1,1,8,1),(959,'19:00:00',300000000000,227,1,1,1,8,1),(960,'20:00:00',300000000000,227,1,1,1,8,1),(961,'21:00:00',300000000000,227,1,1,1,8,1),(962,'22:00:00',300000000000,227,1,1,1,8,1),(963,'07:00:00',54120000000000,228,1,1,1,10,1),(964,'11:00:00',54120000000000,228,1,1,1,10,1),(965,'15:00:00',54120000000000,228,1,1,1,11,1),(966,'19:00:00',54120000000000,228,1,1,1,10,1),(967,'07:00:00',142500000000000,229,1,1,1,3,1),(968,'22:00:00',142500000000000,229,1,1,1,3,1),(969,'07:00:00',48360000000000,230,1,1,1,2,1),(970,'11:00:00',48360000000000,230,1,1,1,2,1),(971,'15:00:00',48360000000000,230,1,1,1,3,1),(972,'19:00:00',48360000000000,230,1,1,1,2,1),(973,'07:30:00',73500000000000,231,1,1,1,3,1),(974,'12:00:00',73500000000000,231,1,1,1,2,1),(975,'16:30:00',73500000000000,231,1,1,1,3,1),(976,'21:00:00',73500000000000,231,1,1,1,2,1),(977,'07:00:00',57540000000000,232,1,1,1,10,1),(978,'11:00:00',57540000000000,232,1,1,1,10,1),(979,'15:00:00',57540000000000,232,1,1,1,10,1),(980,'19:00:00',57540000000000,232,1,1,1,10,1),(981,'07:00:00',127560000000000,233,1,1,1,11,1),(982,'22:00:00',127560000000000,233,1,1,1,11,1),(983,'07:30:00',38280000000000,234,1,1,1,2,1),(984,'10:00:00',38280000000000,234,1,1,1,1,1),(985,'12:30:00',38280000000000,234,1,1,1,2,1),(986,'15:00:00',38280000000000,234,1,1,1,2,1),(987,'17:30:00',38280000000000,234,1,1,1,2,1),(988,'20:00:00',38280000000000,234,1,1,1,2,1),(989,'22:30:00',38280000000000,234,1,1,1,1,1),(990,'07:30:00',41400000000000,235,1,1,1,10,1),(991,'10:00:00',41400000000000,235,1,1,1,10,1),(992,'12:30:00',41400000000000,235,1,1,1,10,1),(993,'15:00:00',41400000000000,235,1,1,1,10,1),(994,'17:30:00',41400000000000,235,1,1,1,10,1),(995,'20:00:00',41400000000000,235,1,1,1,10,1),(996,'22:30:00',41400000000000,235,1,1,1,10,1),(997,'07:00:00',95520000000000,236,1,1,1,3,1),(998,'22:00:00',95520000000000,236,1,1,1,3,1),(999,'07:00:00',143340000000000,237,1,1,1,3,1),(1000,'22:00:00',143340000000000,237,1,1,1,3,1),(1001,'07:00:00',104100000000000,238,1,1,1,3,1),(1002,'22:00:00',104100000000000,238,1,1,1,3,1),(1003,'07:00:00',144120000000000,239,1,1,1,3,1),(1004,'22:00:00',144120000000000,239,1,1,1,3,1),(1005,'07:00:00',118260000000000,240,1,1,1,11,1),(1006,'22:00:00',118260000000000,240,1,1,1,11,1),(1007,'12:00:00',176520000000000,241,1,0,1,3,1),(1008,'07:00:00',160320000000000,242,1,1,1,3,1),(1009,'22:00:00',160320000000000,242,1,1,1,3,1),(1010,'07:00:00',131160000000000,243,1,1,1,3,1),(1011,'22:00:00',131160000000000,243,1,1,1,3,1),(1012,'07:00:00',147540000000000,244,1,1,1,3,1),(1013,'22:00:00',147540000000000,244,1,1,1,3,1),(1014,'07:00:00',112080000000000,245,1,1,1,3,1),(1015,'22:00:00',112080000000000,245,1,1,1,3,1),(1016,'07:00:00',102600000000000,246,1,1,1,3,1),(1017,'22:00:00',102600000000000,246,1,1,1,3,1),(1018,'07:00:00',50640000000000,247,1,1,1,2,1),(1019,'11:00:00',50640000000000,247,1,1,1,2,1),(1020,'15:00:00',50640000000000,247,1,1,1,2,1),(1021,'19:00:00',50640000000000,247,1,1,1,2,1),(1022,'07:00:00',126180000000000,248,1,1,1,3,1),(1023,'22:00:00',126180000000000,248,1,1,1,3,1),(1024,'07:00:00',136320000000000,249,1,1,1,11,1),(1025,'22:00:00',136320000000000,249,1,1,1,11,1),(1026,'07:30:00',40920000000000,250,1,1,1,10,1),(1027,'10:00:00',40920000000000,250,1,1,1,10,1),(1028,'12:30:00',40920000000000,250,1,1,1,10,1),(1029,'15:00:00',40920000000000,250,1,1,1,10,1),(1030,'17:30:00',40920000000000,250,1,1,1,10,1),(1031,'20:00:00',40920000000000,250,1,1,1,10,1),(1032,'22:30:00',40920000000000,250,1,1,1,10,1),(1033,'07:30:00',76080000000000,251,1,1,1,3,1),(1034,'13:00:00',76080000000000,251,1,1,1,2,1),(1035,'18:30:00',76080000000000,251,1,1,1,3,1),(1036,'24:00:00',76080000000000,251,1,1,1,3,1),(1037,'07:30:00',65220000000000,252,1,1,1,3,1),(1038,'12:00:00',65220000000000,252,1,1,1,3,1),(1039,'16:30:00',65220000000000,252,1,1,1,3,1),(1040,'21:00:00',65220000000000,252,1,1,1,3,1),(1041,'07:00:00',135480000000000,253,1,1,1,3,1),(1042,'22:00:00',135480000000000,253,1,1,1,3,1),(1043,'07:30:00',86100000000000,254,1,1,1,2,1),(1044,'13:00:00',86100000000000,254,1,1,1,3,1),(1045,'18:30:00',86100000000000,254,1,1,1,2,1),(1046,'24:00:00',86100000000000,254,1,1,1,2,1),(1047,'07:00:00',48900000000000,255,1,1,1,2,1),(1048,'11:00:00',48900000000000,255,1,1,1,2,1),(1049,'15:00:00',48900000000000,255,1,1,1,2,1),(1050,'19:00:00',48900000000000,255,1,1,1,2,1),(1051,'07:30:00',82260000000000,256,1,1,1,2,1),(1052,'13:00:00',82260000000000,256,1,1,1,3,1),(1053,'18:30:00',82260000000000,256,1,1,1,3,1),(1054,'24:00:00',82260000000000,256,1,1,1,3,1),(1055,'07:30:00',75420000000000,257,1,1,1,3,1),(1056,'12:00:00',75420000000000,257,1,1,1,2,1),(1057,'16:30:00',75420000000000,257,1,1,1,2,1),(1058,'21:00:00',75420000000000,257,1,1,1,3,1),(1059,'07:00:00',110220000000000,258,1,1,1,3,1),(1060,'22:00:00',110220000000000,258,1,1,1,3,1),(1061,'07:00:00',165300000000000,259,1,1,1,3,1),(1062,'22:00:00',165300000000000,259,1,1,1,3,1),(1063,'07:30:00',82560000000000,260,1,1,1,3,1),(1064,'13:00:00',82560000000000,260,1,1,1,3,1),(1065,'18:30:00',82560000000000,260,1,1,1,3,1),(1066,'24:00:00',82560000000000,260,1,1,1,3,1),(1067,'07:00:00',87240000000000,261,1,1,1,3,1),(1068,'22:00:00',87240000000000,261,1,1,1,3,1),(1069,'07:30:00',74340000000000,262,1,1,1,2,1),(1070,'12:00:00',74340000000000,262,1,1,1,2,1),(1071,'16:30:00',74340000000000,262,1,1,1,3,1),(1072,'21:00:00',74340000000000,262,1,1,1,3,1),(1073,'07:30:00',70440000000000,263,1,1,1,3,1),(1074,'12:00:00',70440000000000,263,1,1,1,3,1),(1075,'16:30:00',70440000000000,263,1,1,1,2,1),(1076,'21:00:00',70440000000000,263,1,1,1,3,1),(1077,'07:00:00',137040000000000,264,1,1,1,3,1),(1078,'22:00:00',137040000000000,264,1,1,1,3,1),(1079,'07:00:00',54120000000000,265,1,1,1,10,1),(1080,'11:00:00',54120000000000,265,1,1,1,10,1),(1081,'15:00:00',54120000000000,265,1,1,1,10,1),(1082,'19:00:00',54120000000000,265,1,1,1,10,1),(1083,'07:00:00',142500000000000,266,1,1,1,3,1),(1084,'22:00:00',142500000000000,266,1,1,1,3,1),(1085,'07:00:00',48360000000000,267,1,1,1,2,1),(1086,'11:00:00',48360000000000,267,1,1,1,3,1),(1087,'15:00:00',48360000000000,267,1,1,1,2,1),(1088,'19:00:00',48360000000000,267,1,1,1,2,1),(1089,'07:30:00',73500000000000,268,1,1,1,2,1),(1090,'12:00:00',73500000000000,268,1,1,1,3,1),(1091,'16:30:00',73500000000000,268,1,1,1,2,1),(1092,'21:00:00',73500000000000,268,1,1,1,2,1),(1093,'07:00:00',57540000000000,269,1,1,1,10,1),(1094,'11:00:00',57540000000000,269,1,1,1,10,1),(1095,'15:00:00',57540000000000,269,1,1,1,10,1),(1096,'19:00:00',57540000000000,269,1,1,1,10,1),(1097,'07:00:00',127560000000000,270,1,1,1,11,1),(1098,'22:00:00',127560000000000,270,1,1,1,11,1),(1099,'07:30:00',38280000000000,271,1,1,1,1,1),(1100,'10:00:00',38280000000000,271,1,1,1,1,1),(1101,'12:30:00',38280000000000,271,1,1,1,1,1),(1102,'15:00:00',38280000000000,271,1,1,1,1,1),(1103,'17:30:00',38280000000000,271,1,1,1,2,1),(1104,'20:00:00',38280000000000,271,1,1,1,1,1),(1105,'22:30:00',38280000000000,271,1,1,1,2,1),(1106,'07:30:00',41400000000000,272,1,1,1,10,1),(1107,'10:00:00',41400000000000,272,1,1,1,10,1),(1108,'12:30:00',41400000000000,272,1,1,1,10,1),(1109,'15:00:00',41400000000000,272,1,1,1,10,1),(1110,'17:30:00',41400000000000,272,1,1,1,10,1),(1111,'20:00:00',41400000000000,272,1,1,1,10,1),(1112,'22:30:00',41400000000000,272,1,1,1,10,1),(1113,'07:00:00',95520000000000,273,1,1,1,3,1),(1114,'22:00:00',95520000000000,273,1,1,1,3,1),(1115,'07:00:00',143340000000000,274,1,1,1,3,1),(1116,'22:00:00',143340000000000,274,1,1,1,3,1),(1117,'07:00:00',104100000000000,275,1,1,1,3,1),(1118,'22:00:00',104100000000000,275,1,1,1,3,1),(1119,'07:00:00',144120000000000,276,1,1,1,3,1),(1120,'22:00:00',144120000000000,276,1,1,1,3,1),(1121,'07:00:00',118260000000000,277,1,1,1,11,1),(1122,'22:00:00',118260000000000,277,1,1,1,11,1),(1123,'12:00:00',176520000000000,278,1,0,1,3,1),(1124,'07:00:00',160320000000000,279,1,1,1,3,1),(1125,'22:00:00',160320000000000,279,1,1,1,3,1),(1126,'07:00:00',131160000000000,280,1,1,1,3,1),(1127,'22:00:00',131160000000000,280,1,1,1,3,1),(1128,'12:00:00',181320000000000,281,1,0,1,3,1),(1129,'07:00:00',109740000000000,282,1,1,1,3,1),(1130,'22:00:00',109740000000000,282,1,1,1,3,1),(1131,'07:00:00',108660000000000,283,1,1,1,3,1),(1132,'22:00:00',108660000000000,283,1,1,1,3,1),(1133,'12:00:00',215280000000000,284,1,0,1,3,1),(1134,'07:00:00',89160000000000,285,1,1,1,11,1),(1135,'22:00:00',89160000000000,285,1,1,1,11,1),(1136,'12:00:00',176280000000000,286,1,0,1,11,1),(1137,'07:00:00',157200000000000,287,1,1,1,3,1),(1138,'22:00:00',157200000000000,287,1,1,1,3,1),(1139,'07:00:00',101760000000000,288,1,1,1,3,1),(1140,'22:00:00',101760000000000,288,1,1,1,3,1),(1141,'07:00:00',56280000000000,289,1,1,1,2,1),(1142,'11:00:00',56280000000000,289,1,1,1,2,1),(1143,'15:00:00',56280000000000,289,1,1,1,2,1),(1144,'19:00:00',56280000000000,289,1,1,1,2,1),(1145,'07:00:00',90540000000000,290,1,1,1,3,1),(1146,'22:00:00',90540000000000,290,1,1,1,3,1),(1147,'07:00:00',144060000000000,291,1,1,1,3,1),(1148,'22:00:00',144060000000000,291,1,1,1,3,1),(1149,'07:00:00',156960000000000,292,1,1,1,3,1),(1150,'22:00:00',156960000000000,292,1,1,1,3,1),(1151,'07:30:00',82620000000000,293,1,1,1,3,1),(1152,'13:00:00',82620000000000,293,1,1,1,3,1),(1153,'18:30:00',82620000000000,293,1,1,1,3,1),(1154,'24:00:00',82620000000000,293,1,1,1,3,1),(1155,'07:30:00',37980000000000,294,1,1,1,2,1),(1156,'10:00:00',37980000000000,294,1,1,1,1,1),(1157,'12:30:00',37980000000000,294,1,1,1,1,1),(1158,'15:00:00',37980000000000,294,1,1,1,1,1),(1159,'17:30:00',37980000000000,294,1,1,1,1,1),(1160,'20:00:00',37980000000000,294,1,1,1,1,1),(1161,'22:30:00',37980000000000,294,1,1,1,2,1),(1162,'07:30:00',27960000000000,295,1,1,1,1,1),(1163,'10:00:00',27960000000000,295,1,1,1,2,1),(1164,'12:30:00',27960000000000,295,1,1,1,1,1),(1165,'15:00:00',27960000000000,295,1,1,1,1,1),(1166,'17:30:00',27960000000000,295,1,1,1,2,1),(1167,'20:00:00',27960000000000,295,1,1,1,2,1),(1168,'22:30:00',27960000000000,295,1,1,1,1,1),(1169,'07:00:00',108060000000000,296,1,1,1,3,1),(1170,'22:00:00',108060000000000,296,1,1,1,3,1),(1171,'07:30:00',62700000000000,297,1,1,1,3,1),(1172,'12:00:00',62700000000000,297,1,1,1,3,1),(1173,'16:30:00',62700000000000,297,1,1,1,3,1),(1174,'21:00:00',62700000000000,297,1,1,1,3,1),(1175,'12:00:00',197460000000000,298,1,0,1,3,1),(1176,'07:00:00',108120000000000,299,1,1,1,3,1),(1177,'22:00:00',108120000000000,299,1,1,1,3,1),(1178,'07:00:00',144180000000000,300,1,1,1,3,1),(1179,'22:00:00',144180000000000,300,1,1,1,3,1),(1180,'07:00:00',164400000000000,301,1,1,1,11,1),(1181,'22:00:00',164400000000000,301,1,1,1,11,1),(1182,'07:30:00',30060000000000,302,1,1,1,1,1),(1183,'10:00:00',30060000000000,302,1,1,1,1,1),(1184,'12:30:00',30060000000000,302,1,1,1,1,1),(1185,'15:00:00',30060000000000,302,1,1,1,2,1),(1186,'17:30:00',30060000000000,302,1,1,1,2,1),(1187,'20:00:00',30060000000000,302,1,1,1,2,1),(1188,'22:30:00',30060000000000,302,1,1,1,1,1),(1189,'07:00:00',105600000000000,303,1,1,1,3,1),(1190,'22:00:00',105600000000000,303,1,1,1,3,1),(1191,'07:00:00',92340000000000,304,1,1,1,3,1),(1192,'22:00:00',92340000000000,304,1,1,1,3,1),(1193,'07:00:00',159240000000000,305,1,1,1,11,1),(1194,'22:00:00',159240000000000,305,1,1,1,11,1),(1195,'07:00:00',141180000000000,306,1,1,1,11,1),(1196,'22:00:00',141180000000000,306,1,1,1,11,1),(1197,'07:00:00',137460000000000,307,1,1,1,3,1),(1198,'22:00:00',137460000000000,307,1,1,1,3,1),(1199,'07:00:00',160020000000000,308,1,1,1,11,1),(1200,'22:00:00',160020000000000,308,1,1,1,11,1),(1201,'07:30:00',82980000000000,309,1,1,1,3,1),(1202,'13:00:00',82980000000000,309,1,1,1,3,1),(1203,'18:30:00',82980000000000,309,1,1,1,3,1),(1204,'24:00:00',82980000000000,309,1,1,1,3,1),(1205,'07:30:00',30600000000000,310,1,1,1,1,1),(1206,'10:00:00',30600000000000,310,1,1,1,1,1),(1207,'12:30:00',30600000000000,310,1,1,1,2,1),(1208,'15:00:00',30600000000000,310,1,1,1,1,1),(1209,'17:30:00',30600000000000,310,1,1,1,2,1),(1210,'20:00:00',30600000000000,310,1,1,1,1,1),(1211,'22:30:00',30600000000000,310,1,1,1,2,1),(1212,'07:30:00',66060000000000,311,1,1,1,3,1),(1213,'12:00:00',66060000000000,311,1,1,1,3,1),(1214,'16:30:00',66060000000000,311,1,1,1,2,1),(1215,'21:00:00',66060000000000,311,1,1,1,3,1),(1216,'12:00:00',207900000000000,312,1,0,1,3,1),(1217,'07:00:00',160800000000000,313,1,1,1,11,1),(1218,'22:00:00',160800000000000,313,1,1,1,11,1),(1219,'07:30:00',83220000000000,314,1,1,1,3,1),(1220,'13:00:00',83220000000000,314,1,1,1,2,1),(1221,'18:30:00',83220000000000,314,1,1,1,3,1),(1222,'24:00:00',83220000000000,314,1,1,1,3,1),(1223,'07:30:00',24660000000000,315,1,1,1,1,1),(1224,'09:00:00',24660000000000,315,1,1,1,1,1),(1225,'10:30:00',24660000000000,315,1,1,1,1,1),(1226,'12:00:00',24660000000000,315,1,1,1,2,1),(1227,'13:30:00',24660000000000,315,1,1,1,5,1),(1228,'15:00:00',24660000000000,315,1,1,1,1,1),(1229,'16:30:00',24660000000000,315,1,1,1,2,1),(1230,'18:00:00',24660000000000,315,1,1,1,6,1),(1231,'19:30:00',24660000000000,315,1,1,1,2,1),(1232,'21:00:00',24660000000000,315,1,1,1,1,1),(1233,'22:30:00',24660000000000,315,1,1,1,5,1),(1234,'07:30:00',45300000000000,316,1,1,1,2,1),(1235,'10:00:00',45300000000000,316,1,1,1,1,1),(1236,'12:30:00',45300000000000,316,1,1,1,2,1),(1237,'15:00:00',45300000000000,316,1,1,1,1,1),(1238,'17:30:00',45300000000000,316,1,1,1,2,1),(1239,'20:00:00',45300000000000,316,1,1,1,2,1),(1240,'22:30:00',45300000000000,316,1,1,1,1,1),(1241,'07:00:00',99840000000000,317,1,1,1,3,1),(1242,'22:00:00',99840000000000,317,1,1,1,3,1),(1243,'07:00:00',89040000000000,318,1,1,1,3,1),(1244,'22:00:00',89040000000000,318,1,1,1,3,1),(1245,'12:00:00',230280000000000,319,1,0,1,3,1),(1246,'12:00:00',212940000000000,320,1,0,1,11,1),(1247,'07:00:00',154080000000000,321,1,1,1,11,1),(1248,'22:00:00',154080000000000,321,1,1,1,11,1),(1249,'07:30:00',35100000000000,322,1,1,1,2,1),(1250,'10:00:00',35100000000000,322,1,1,1,2,1),(1251,'12:30:00',35100000000000,322,1,1,1,1,1),(1252,'15:00:00',35100000000000,322,1,1,1,1,1),(1253,'17:30:00',35100000000000,322,1,1,1,2,1),(1254,'20:00:00',35100000000000,322,1,1,1,1,1),(1255,'22:30:00',35100000000000,322,1,1,1,2,1),(1256,'07:00:00',138600000000000,323,1,1,1,3,1),(1257,'22:00:00',138600000000000,323,1,1,1,3,1),(1258,'12:00:00',195960000000000,324,1,0,1,3,1),(1259,'07:00:00',90960000000000,325,1,1,1,3,1),(1260,'22:00:00',90960000000000,325,1,1,1,3,1),(1261,'07:00:00',149880000000000,326,1,1,1,3,1),(1262,'22:00:00',149880000000000,326,1,1,1,3,1),(1263,'07:00:00',171900000000000,327,1,1,1,3,1),(1264,'22:00:00',171900000000000,327,1,1,1,3,1),(1265,'07:00:00',133680000000000,328,1,1,1,3,1),(1266,'22:00:00',133680000000000,328,1,1,1,3,1),(1267,'07:00:00',144360000000000,329,1,1,1,3,1),(1268,'22:00:00',144360000000000,329,1,1,1,3,1),(1269,'12:00:00',225720000000000,330,1,0,1,3,1),(1270,'07:30:00',73440000000000,331,1,1,1,2,1),(1271,'12:00:00',73440000000000,331,1,1,1,3,1),(1272,'16:30:00',73440000000000,331,1,1,1,3,1),(1273,'21:00:00',73440000000000,331,1,1,1,2,1),(1274,'07:00:00',133860000000000,332,1,1,1,3,1),(1275,'22:00:00',133860000000000,332,1,1,1,3,1),(1276,'12:00:00',187500000000000,333,1,0,1,3,1),(1277,'07:00:00',145680000000000,334,1,1,1,3,1),(1278,'22:00:00',145680000000000,334,1,1,1,3,1),(1279,'07:00:00',133800000000000,335,1,1,1,3,1),(1280,'22:00:00',133800000000000,335,1,1,1,3,1),(1281,'12:00:00',179460000000000,336,1,0,1,11,1),(1282,'12:00:00',202980000000000,337,1,0,1,3,1),(1283,'07:00:00',102120000000000,338,1,1,1,3,1),(1284,'22:00:00',102120000000000,338,1,1,1,3,1),(1285,'07:00:00',95580000000000,339,1,1,1,3,1),(1286,'22:00:00',95580000000000,339,1,1,1,3,1),(1287,'12:00:00',174300000000000,340,1,0,1,11,1),(1288,'12:00:00',208260000000000,341,1,0,1,11,1),(1289,'07:30:00',74100000000000,342,1,1,1,2,1),(1290,'12:00:00',74100000000000,342,1,1,1,3,1),(1291,'16:30:00',74100000000000,342,1,1,1,2,1),(1292,'21:00:00',74100000000000,342,1,1,1,3,1),(1293,'07:00:00',159780000000000,343,1,1,1,11,1),(1294,'22:00:00',159780000000000,343,1,1,1,11,1),(1295,'07:00:00',102300000000000,344,1,1,1,3,1),(1296,'22:00:00',102300000000000,344,1,1,1,3,1),(1297,'07:00:00',172080000000000,345,1,1,1,3,1),(1298,'22:00:00',172080000000000,345,1,1,1,3,1),(1299,'07:00:00',165000000000000,346,1,1,1,3,1),(1300,'22:00:00',165000000000000,346,1,1,1,3,1),(1301,'07:30:00',35220000000000,347,1,1,1,2,1),(1302,'10:00:00',35220000000000,347,1,1,1,2,1),(1303,'12:30:00',35220000000000,347,1,1,1,1,1),(1304,'15:00:00',35220000000000,347,1,1,1,2,1),(1305,'17:30:00',35220000000000,347,1,1,1,1,1),(1306,'20:00:00',35220000000000,347,1,1,1,1,1),(1307,'22:30:00',35220000000000,347,1,1,1,2,1),(1308,'12:00:00',193380000000000,348,1,0,1,11,1),(1309,'12:00:00',236940000000000,349,1,0,1,3,1),(1310,'12:00:00',220740000000000,350,1,0,1,3,1),(1311,'12:00:00',191580000000000,351,1,0,1,3,1),(1312,'07:00:00',55080000000000,352,1,1,1,2,1),(1313,'11:00:00',55080000000000,352,1,1,1,2,1),(1314,'15:00:00',55080000000000,352,1,1,1,2,1),(1315,'19:00:00',55080000000000,352,1,1,1,2,1),(1316,'12:00:00',201900000000000,353,1,0,1,3,1),(1317,'07:00:00',138780000000000,354,1,1,1,11,1),(1318,'22:00:00',138780000000000,354,1,1,1,11,1),(1319,'07:00:00',135960000000000,355,1,1,1,11,1),(1320,'22:00:00',135960000000000,355,1,1,1,11,1),(1321,'07:30:00',75960000000000,356,1,1,1,3,1),(1322,'13:00:00',75960000000000,356,1,1,1,3,1),(1323,'18:30:00',75960000000000,356,1,1,1,3,1),(1324,'24:00:00',75960000000000,356,1,1,1,3,1),(1325,'07:30:00',85380000000000,357,1,1,1,3,1),(1326,'13:00:00',85380000000000,357,1,1,1,3,1),(1327,'18:30:00',85380000000000,357,1,1,1,2,1),(1328,'24:00:00',85380000000000,357,1,1,1,3,1),(1329,'07:00:00',125460000000000,358,1,1,1,3,1),(1330,'22:00:00',125460000000000,358,1,1,1,3,1),(1331,'07:30:00',21180000000000,359,1,1,1,2,1),(1332,'09:00:00',21180000000000,359,1,1,1,2,1),(1333,'10:30:00',21180000000000,359,1,1,1,1,1),(1334,'12:00:00',21180000000000,359,1,1,1,1,1),(1335,'13:30:00',21180000000000,359,1,1,1,1,1),(1336,'15:00:00',21180000000000,359,1,1,1,1,1),(1337,'16:30:00',21180000000000,359,1,1,1,2,1),(1338,'18:00:00',21180000000000,359,1,1,1,2,1),(1339,'19:30:00',21180000000000,359,1,1,1,6,1),(1340,'21:00:00',21180000000000,359,1,1,1,2,1),(1341,'22:30:00',21180000000000,359,1,1,1,1,1),(1342,'07:00:00',118920000000000,360,1,1,1,3,1),(1343,'22:00:00',118920000000000,360,1,1,1,3,1),(1344,'07:00:00',143520000000000,361,1,1,1,3,1),(1345,'22:00:00',143520000000000,361,1,1,1,3,1),(1346,'07:30:00',73260000000000,362,1,1,1,2,1),(1347,'12:00:00',73260000000000,362,1,1,1,3,1),(1348,'16:30:00',73260000000000,362,1,1,1,2,1),(1349,'21:00:00',73260000000000,362,1,1,1,3,1),(1350,'07:30:00',73080000000000,363,1,1,1,2,1),(1351,'12:00:00',73080000000000,363,1,1,1,2,1),(1352,'16:30:00',73080000000000,363,1,1,1,3,1),(1353,'21:00:00',73080000000000,363,1,1,1,3,1),(1354,'07:00:00',155280000000000,364,1,1,1,3,1),(1355,'22:00:00',155280000000000,364,1,1,1,3,1),(1356,'07:30:00',26760000000000,365,1,1,1,2,1),(1357,'10:00:00',26760000000000,365,1,1,1,2,1),(1358,'12:30:00',26760000000000,365,1,1,1,2,1),(1359,'15:00:00',26760000000000,365,1,1,1,1,1),(1360,'17:30:00',26760000000000,365,1,1,1,2,1),(1361,'20:00:00',26760000000000,365,1,1,1,1,1),(1362,'22:30:00',26760000000000,365,1,1,1,1,1),(1363,'07:30:00',63360000000000,366,1,1,1,3,1),(1364,'12:00:00',63360000000000,366,1,1,1,2,1),(1365,'16:30:00',63360000000000,366,1,1,1,2,1),(1366,'21:00:00',63360000000000,366,1,1,1,2,1),(1367,'12:00:00',184080000000000,367,1,0,1,3,1),(1368,'07:00:00',99780000000000,368,1,1,1,3,1),(1369,'22:00:00',99780000000000,368,1,1,1,3,1),(1370,'07:30:00',32940000000000,369,1,1,1,1,1),(1371,'10:00:00',32940000000000,369,1,1,1,2,1),(1372,'12:30:00',32940000000000,369,1,1,1,1,1),(1373,'15:00:00',32940000000000,369,1,1,1,2,1),(1374,'17:30:00',32940000000000,369,1,1,1,1,1),(1375,'20:00:00',32940000000000,369,1,1,1,2,1),(1376,'22:30:00',32940000000000,369,1,1,1,2,1),(1377,'07:00:00',150960000000000,370,1,1,1,11,1),(1378,'22:00:00',150960000000000,370,1,1,1,11,1),(1379,'07:00:00',132540000000000,371,1,1,1,3,1),(1380,'22:00:00',132540000000000,371,1,1,1,3,1),(1381,'07:00:00',60600000000000,372,1,1,1,2,1),(1382,'11:00:00',60600000000000,372,1,1,1,2,1),(1383,'15:00:00',60600000000000,372,1,1,1,2,1),(1384,'19:00:00',60600000000000,372,1,1,1,2,1),(1385,'07:30:00',34020000000000,373,1,1,1,2,1),(1386,'10:00:00',34020000000000,373,1,1,1,2,1),(1387,'12:30:00',34020000000000,373,1,1,1,1,1),(1388,'15:00:00',34020000000000,373,1,1,1,2,1),(1389,'17:30:00',34020000000000,373,1,1,1,2,1),(1390,'20:00:00',34020000000000,373,1,1,1,2,1),(1391,'22:30:00',34020000000000,373,1,1,1,1,1),(1392,'07:00:00',145860000000000,374,1,1,1,11,1),(1393,'22:00:00',145860000000000,374,1,1,1,11,1),(1394,'07:00:00',147420000000000,375,1,1,1,11,1),(1395,'22:00:00',147420000000000,375,1,1,1,11,1),(1396,'07:30:00',81840000000000,376,1,1,1,3,1),(1397,'13:00:00',81840000000000,376,1,1,1,3,1),(1398,'18:30:00',81840000000000,376,1,1,1,3,1),(1399,'24:00:00',81840000000000,376,1,1,1,3,1),(1400,'07:00:00',134760000000000,377,1,1,1,11,1),(1401,'22:00:00',134760000000000,377,1,1,1,11,1),(1402,'07:30:00',30960000000000,378,1,1,1,2,1),(1403,'10:00:00',30960000000000,378,1,1,1,2,1),(1404,'12:30:00',30960000000000,378,1,1,1,1,1),(1405,'15:00:00',30960000000000,378,1,1,1,1,1),(1406,'17:30:00',30960000000000,378,1,1,1,1,1),(1407,'20:00:00',30960000000000,378,1,1,1,1,1),(1408,'22:30:00',30960000000000,378,1,1,1,1,1),(1409,'07:00:00',100800000000000,379,1,1,1,3,1),(1410,'22:00:00',100800000000000,379,1,1,1,3,1),(1411,'07:00:00',94440000000000,380,1,1,1,3,1),(1412,'22:00:00',94440000000000,380,1,1,1,3,1),(1413,'07:00:00',126300000000000,381,1,1,1,3,1),(1414,'22:00:00',126300000000000,381,1,1,1,3,1),(1415,'07:00:00',148140000000000,382,1,1,1,11,1),(1416,'22:00:00',148140000000000,382,1,1,1,11,1),(1417,'07:00:00',166500000000000,383,1,1,1,3,1),(1418,'22:00:00',166500000000000,383,1,1,1,3,1),(1419,'07:00:00',150240000000000,384,1,1,1,3,1),(1420,'22:00:00',150240000000000,384,1,1,1,3,1),(1421,'07:00:00',121080000000000,385,1,1,1,3,1),(1422,'22:00:00',121080000000000,385,1,1,1,3,1),(1423,'07:00:00',160020000000000,386,1,1,1,3,1),(1424,'22:00:00',160020000000000,386,1,1,1,3,1),(1425,'07:00:00',127920000000000,387,1,1,1,11,1),(1426,'22:00:00',127920000000000,387,1,1,1,11,1),(1427,'07:00:00',86940000000000,388,1,1,1,11,1),(1428,'22:00:00',86940000000000,388,1,1,1,11,1),(1429,'07:00:00',53160000000000,389,1,1,1,2,1),(1430,'11:00:00',53160000000000,389,1,1,1,2,1),(1431,'15:00:00',53160000000000,389,1,1,1,2,1),(1432,'19:00:00',53160000000000,389,1,1,1,2,1),(1433,'07:00:00',49920000000000,390,1,1,1,2,1),(1434,'11:00:00',49920000000000,390,1,1,1,2,1),(1435,'15:00:00',49920000000000,390,1,1,1,3,1),(1436,'19:00:00',49920000000000,390,1,1,1,2,1),(1437,'07:00:00',115200000000000,391,1,1,1,3,1),(1438,'22:00:00',115200000000000,391,1,1,1,3,1),(1439,'07:30:00',37980000000000,392,1,1,1,1,1),(1440,'10:00:00',37980000000000,392,1,1,1,1,1),(1441,'12:30:00',37980000000000,392,1,1,1,2,1),(1442,'15:00:00',37980000000000,392,1,1,1,2,1),(1443,'17:30:00',37980000000000,392,1,1,1,1,1),(1444,'20:00:00',37980000000000,392,1,1,1,2,1),(1445,'22:30:00',37980000000000,392,1,1,1,2,1),(1446,'07:30:00',79500000000000,393,1,1,1,3,1),(1447,'13:00:00',79500000000000,393,1,1,1,2,1),(1448,'18:30:00',79500000000000,393,1,1,1,3,1),(1449,'24:00:00',79500000000000,393,1,1,1,3,1),(1450,'07:00:00',101640000000000,394,1,1,1,3,1),(1451,'22:00:00',101640000000000,394,1,1,1,3,1),(1452,'07:00:00',47340000000000,395,1,1,1,2,1),(1453,'11:00:00',47340000000000,395,1,1,1,3,1),(1454,'15:00:00',47340000000000,395,1,1,1,2,1),(1455,'19:00:00',47340000000000,395,1,1,1,2,1),(1456,'07:30:00',72360000000000,396,1,1,1,2,1),(1457,'12:00:00',72360000000000,396,1,1,1,3,1),(1458,'16:30:00',72360000000000,396,1,1,1,3,1),(1459,'21:00:00',72360000000000,396,1,1,1,2,1),(1460,'07:00:00',145020000000000,397,1,1,1,3,1),(1461,'22:00:00',145020000000000,397,1,1,1,3,1),(1462,'07:30:00',33000000000000,398,1,1,1,1,1),(1463,'10:00:00',33000000000000,398,1,1,1,1,1),(1464,'12:30:00',33000000000000,398,1,1,1,1,1),(1465,'15:00:00',33000000000000,398,1,1,1,2,1),(1466,'17:30:00',33000000000000,398,1,1,1,1,1),(1467,'20:00:00',33000000000000,398,1,1,1,2,1),(1468,'22:30:00',33000000000000,398,1,1,1,1,1),(1469,'07:00:00',56040000000000,399,1,1,1,2,1),(1470,'11:00:00',56040000000000,399,1,1,1,2,1),(1471,'15:00:00',56040000000000,399,1,1,1,2,1),(1472,'19:00:00',56040000000000,399,1,1,1,2,1),(1473,'07:00:00',120300000000000,400,1,1,1,3,1),(1474,'22:00:00',120300000000000,400,1,1,1,3,1),(1475,'07:30:00',64320000000000,401,1,1,1,3,1),(1476,'12:00:00',64320000000000,401,1,1,1,2,1),(1477,'16:30:00',64320000000000,401,1,1,1,3,1),(1478,'21:00:00',64320000000000,401,1,1,1,2,1),(1479,'07:00:00',89760000000000,402,1,1,1,3,1),(1480,'22:00:00',89760000000000,402,1,1,1,3,1),(1481,'07:00:00',109080000000000,403,1,1,1,11,1),(1482,'22:00:00',109080000000000,403,1,1,1,11,1),(1483,'07:00:00',122280000000000,404,1,1,1,3,1),(1484,'22:00:00',122280000000000,404,1,1,1,3,1),(1485,'07:30:00',13440000000000,405,1,1,1,1,1),(1486,'09:00:00',13440000000000,405,1,1,1,1,1),(1487,'10:30:00',13440000000000,405,1,1,1,1,1),(1488,'12:00:00',13440000000000,405,1,1,1,1,1),(1489,'13:30:00',13440000000000,405,1,1,1,5,1),(1490,'15:00:00',13440000000000,405,1,1,1,2,1),(1491,'16:30:00',13440000000000,405,1,1,1,2,1),(1492,'18:00:00',13440000000000,405,1,1,1,2,1),(1493,'19:30:00',13440000000000,405,1,1,1,2,1),(1494,'21:00:00',13440000000000,405,1,1,1,2,1),(1495,'22:30:00',13440000000000,405,1,1,1,2,1),(1496,'07:30:00',24840000000000,406,1,1,1,6,1),(1497,'09:00:00',24840000000000,406,1,1,1,5,1),(1498,'10:30:00',24840000000000,406,1,1,1,2,1),(1499,'12:00:00',24840000000000,406,1,1,1,1,1),(1500,'13:30:00',24840000000000,406,1,1,1,1,1),(1501,'15:00:00',24840000000000,406,1,1,1,1,1),(1502,'16:30:00',24840000000000,406,1,1,1,5,1),(1503,'18:00:00',24840000000000,406,1,1,1,6,1),(1504,'19:30:00',24840000000000,406,1,1,1,5,1),(1505,'21:00:00',24840000000000,406,1,1,1,2,1),(1506,'22:30:00',24840000000000,406,1,1,1,1,1),(1507,'07:00:00',103980000000000,407,1,1,1,11,1),(1508,'22:00:00',103980000000000,407,1,1,1,11,1),(1509,'07:00:00',127140000000000,408,1,1,1,11,1),(1510,'22:00:00',127140000000000,408,1,1,1,11,1),(1511,'07:30:00',32280000000000,409,1,1,1,1,1),(1512,'10:00:00',32280000000000,409,1,1,1,2,1),(1513,'12:30:00',32280000000000,409,1,1,1,1,1),(1514,'15:00:00',32280000000000,409,1,1,1,2,1),(1515,'17:30:00',32280000000000,409,1,1,1,1,1),(1516,'20:00:00',32280000000000,409,1,1,1,2,1),(1517,'22:30:00',32280000000000,409,1,1,1,1,1),(1518,'07:00:00',89640000000000,410,1,1,1,11,1),(1519,'22:00:00',89640000000000,410,1,1,1,11,1),(1520,'07:00:00',48360000000000,411,1,1,1,2,1),(1521,'11:00:00',48360000000000,411,1,1,1,3,1),(1522,'15:00:00',48360000000000,411,1,1,1,2,1),(1523,'19:00:00',48360000000000,411,1,1,1,2,1),(1524,'07:00:00',100680000000000,412,1,1,1,3,1),(1525,'22:00:00',100680000000000,412,1,1,1,3,1),(1526,'07:30:00',84360000000000,413,1,1,1,3,1),(1527,'13:00:00',84360000000000,413,1,1,1,3,1),(1528,'18:30:00',84360000000000,413,1,1,1,3,1),(1529,'24:00:00',84360000000000,413,1,1,1,3,1),(1530,'07:00:00',116340000000000,414,1,1,1,3,1),(1531,'22:00:00',116340000000000,414,1,1,1,3,1),(1532,'07:00:00',112260000000000,415,1,1,1,11,1),(1533,'22:00:00',112260000000000,415,1,1,1,11,1),(1534,'07:00:00',156240000000000,416,1,1,1,3,1),(1535,'22:00:00',156240000000000,416,1,1,1,3,1),(1536,'07:00:00',140160000000000,417,1,1,1,3,1),(1537,'22:00:00',140160000000000,417,1,1,1,3,1),(1538,'07:00:00',111000000000000,418,1,1,1,3,1),(1539,'22:00:00',111000000000000,418,1,1,1,3,1),(1540,'07:00:00',90180000000000,419,1,1,1,11,1),(1541,'22:00:00',90180000000000,419,1,1,1,11,1),(1542,'07:30:00',83400000000000,420,1,1,1,10,1),(1543,'13:00:00',83400000000000,420,1,1,1,10,1),(1544,'18:30:00',83400000000000,420,1,1,1,11,1),(1545,'24:00:00',83400000000000,420,1,1,1,11,1),(1546,'12:00:00',194460000000000,421,1,0,1,3,1),(1547,'07:00:00',116400000000000,422,1,1,1,3,1),(1548,'22:00:00',116400000000000,422,1,1,1,3,1),(1549,'07:00:00',122700000000000,423,1,1,1,3,1),(1550,'22:00:00',122700000000000,423,1,1,1,3,1),(1551,'12:00:00',180600000000000,424,1,0,1,3,1),(1552,'07:00:00',93120000000000,425,1,1,1,3,1),(1553,'22:00:00',93120000000000,425,1,1,1,3,1),(1554,'07:00:00',57780000000000,426,1,1,1,2,1),(1555,'11:00:00',57780000000000,426,1,1,1,2,1),(1556,'15:00:00',57780000000000,426,1,1,1,3,1),(1557,'19:00:00',57780000000000,426,1,1,1,2,1),(1558,'07:00:00',132720000000000,427,1,1,1,3,1),(1559,'22:00:00',132720000000000,427,1,1,1,3,1),(1560,'12:00:00',177960000000000,428,1,0,1,3,1),(1561,'12:00:00',213840000000000,429,1,0,1,3,1),(1562,'12:00:00',188280000000000,430,1,0,1,3,1),(1563,'07:00:00',152820000000000,431,1,1,1,3,1),(1564,'22:00:00',152820000000000,431,1,1,1,3,1),(1565,'07:00:00',89220000000000,432,1,1,1,3,1),(1566,'22:00:00',89220000000000,432,1,1,1,3,1),(1567,'07:00:00',102720000000000,433,1,1,1,3,1),(1568,'22:00:00',102720000000000,433,1,1,1,3,1),(1569,'12:00:00',236340000000000,434,1,0,1,3,1),(1570,'07:30:00',77940000000000,435,1,1,1,11,1),(1571,'13:00:00',77940000000000,435,1,1,1,10,1),(1572,'18:30:00',77940000000000,435,1,1,1,11,1),(1573,'24:00:00',77940000000000,435,1,1,1,11,1),(1574,'12:00:00',191100000000000,436,1,0,1,3,1),(1575,'07:00:00',148920000000000,437,1,1,1,3,1),(1576,'22:00:00',148920000000000,437,1,1,1,3,1),(1577,'07:00:00',171000000000000,438,1,1,1,3,1),(1578,'22:00:00',171000000000000,438,1,1,1,3,1),(1579,'07:30:00',72840000000000,439,1,1,1,10,1),(1580,'12:00:00',72840000000000,439,1,1,1,10,1),(1581,'16:30:00',72840000000000,439,1,1,1,10,1),(1582,'21:00:00',72840000000000,439,1,1,1,10,1),(1583,'07:30:00',72720000000000,440,1,1,1,10,1),(1584,'12:00:00',72720000000000,440,1,1,1,10,1),(1585,'16:30:00',72720000000000,440,1,1,1,11,1),(1586,'21:00:00',72720000000000,440,1,1,1,10,1),(1587,'07:00:00',156720000000000,441,1,1,1,3,1),(1588,'22:00:00',156720000000000,441,1,1,1,3,1),(1589,'07:00:00',92640000000000,442,1,1,1,11,1),(1590,'22:00:00',92640000000000,442,1,1,1,11,1),(1591,'12:00:00',183420000000000,443,1,0,1,3,1),(1592,'12:00:00',216780000000000,444,1,0,1,3,1),(1593,'07:00:00',152640000000000,445,1,1,1,3,1),(1594,'22:00:00',152640000000000,445,1,1,1,3,1),(1595,'12:00:00',262500000000000,446,1,0,1,4,1),(1596,'07:30:00',62820000000000,447,1,1,1,11,1),(1597,'12:00:00',62820000000000,447,1,1,1,10,1),(1598,'16:30:00',62820000000000,447,1,1,1,10,1),(1599,'21:00:00',62820000000000,447,1,1,1,10,1),(1600,'07:00:00',139560000000000,448,1,1,1,3,1),(1601,'22:00:00',139560000000000,448,1,1,1,3,1),(1602,'12:00:00',208860000000000,449,1,0,1,3,1),(1603,'07:00:00',133560000000000,450,1,1,1,3,1),(1604,'22:00:00',133560000000000,450,1,1,1,3,1),(1605,'07:00:00',106560000000000,451,1,1,1,11,1),(1606,'22:00:00',106560000000000,451,1,1,1,11,1),(1607,'12:00:00',178920000000000,452,1,0,1,11,1),(1608,'07:30:00',75180000000000,453,1,1,1,11,1),(1609,'12:00:00',75180000000000,453,1,1,1,11,1),(1610,'16:30:00',75180000000000,453,1,1,1,10,1),(1611,'21:00:00',75180000000000,453,1,1,1,11,1),(1612,'07:30:00',33300000000000,454,1,1,1,10,1),(1613,'10:00:00',33300000000000,454,1,1,1,10,1),(1614,'12:30:00',33300000000000,454,1,1,1,10,1),(1615,'15:00:00',33300000000000,454,1,1,1,10,1),(1616,'17:30:00',33300000000000,454,1,1,1,10,1),(1617,'20:00:00',33300000000000,454,1,1,1,10,1),(1618,'22:30:00',33300000000000,454,1,1,1,10,1),(1619,'07:00:00',119520000000000,455,1,1,1,11,1),(1620,'22:00:00',119520000000000,455,1,1,1,11,1),(1621,'07:00:00',97740000000000,456,1,1,1,11,1),(1622,'22:00:00',97740000000000,456,1,1,1,11,1),(1623,'07:30:00',75180000000000,457,1,1,1,11,1),(1624,'12:00:00',75180000000000,457,1,1,1,11,1),(1625,'16:30:00',75180000000000,457,1,1,1,11,1),(1626,'21:00:00',75180000000000,457,1,1,1,10,1),(1627,'07:30:00',80820000000000,458,1,1,1,10,1),(1628,'13:00:00',80820000000000,458,1,1,1,11,1),(1629,'18:30:00',80820000000000,458,1,1,1,11,1),(1630,'24:00:00',80820000000000,458,1,1,1,11,1),(1631,'07:00:00',102600000000000,459,1,1,1,11,1),(1632,'22:00:00',102600000000000,459,1,1,1,11,1),(1633,'07:30:00',83760000000000,460,1,1,1,11,1),(1634,'13:00:00',83760000000000,460,1,1,1,11,1),(1635,'18:30:00',83760000000000,460,1,1,1,11,1),(1636,'24:00:00',83760000000000,460,1,1,1,10,1),(1637,'07:00:00',137100000000000,461,1,1,1,11,1),(1638,'22:00:00',137100000000000,461,1,1,1,11,1),(1639,'07:30:00',77340000000000,462,1,1,1,10,1),(1640,'13:00:00',77340000000000,462,1,1,1,11,1),(1641,'18:30:00',77340000000000,462,1,1,1,11,1),(1642,'24:00:00',77340000000000,462,1,1,1,11,1),(1643,'07:00:00',121080000000000,463,1,1,1,11,1),(1644,'22:00:00',121080000000000,463,1,1,1,11,1),(1645,'07:30:00',64680000000000,464,1,1,1,10,1),(1646,'12:00:00',64680000000000,464,1,1,1,10,1),(1647,'16:30:00',64680000000000,464,1,1,1,10,1),(1648,'21:00:00',64680000000000,464,1,1,1,10,1),(1649,'12:00:00',173220000000000,465,1,0,1,11,1),(1650,'07:00:00',94740000000000,466,1,1,1,11,1),(1651,'22:00:00',94740000000000,466,1,1,1,11,1),(1652,'07:00:00',60960000000000,467,1,1,1,10,1),(1653,'11:00:00',60960000000000,467,1,1,1,10,1),(1654,'15:00:00',60960000000000,467,1,1,1,11,1),(1655,'19:00:00',60960000000000,467,1,1,1,11,1),(1656,'07:00:00',116220000000000,468,1,1,1,11,1),(1657,'22:00:00',116220000000000,468,1,1,1,11,1),(1658,'07:00:00',118800000000000,469,1,1,1,11,1),(1659,'22:00:00',118800000000000,469,1,1,1,11,1),(1660,'07:00:00',89580000000000,470,1,1,1,11,1),(1661,'22:00:00',89580000000000,470,1,1,1,11,1),(1662,'07:30:00',27300000000000,471,1,1,1,10,1),(1663,'10:00:00',27300000000000,471,1,1,1,10,1),(1664,'12:30:00',27300000000000,471,1,1,1,10,1),(1665,'15:00:00',27300000000000,471,1,1,1,10,1),(1666,'17:30:00',27300000000000,471,1,1,1,10,1),(1667,'20:00:00',27300000000000,471,1,1,1,10,1),(1668,'22:30:00',27300000000000,471,1,1,1,10,1),(1669,'07:00:00',142920000000000,472,1,1,1,11,1),(1670,'22:00:00',142920000000000,472,1,1,1,11,1),(1671,'07:00:00',111000000000000,473,1,1,1,11,1),(1672,'22:00:00',111000000000000,473,1,1,1,11,1),(1673,'07:00:00',113160000000000,474,1,1,1,11,1),(1674,'22:00:00',113160000000000,474,1,1,1,11,1),(1675,'07:00:00',126720000000000,475,1,1,1,11,1),(1676,'22:00:00',126720000000000,475,1,1,1,11,1),(1677,'07:30:00',45540000000000,476,1,1,1,10,1),(1678,'10:00:00',45540000000000,476,1,1,1,10,1),(1679,'12:30:00',45540000000000,476,1,1,1,10,1),(1680,'15:00:00',45540000000000,476,1,1,1,10,1),(1681,'17:30:00',45540000000000,476,1,1,1,10,1),(1682,'20:00:00',45540000000000,476,1,1,1,10,1),(1683,'22:30:00',45540000000000,476,1,1,1,10,1),(1684,'12:00:00',237180000000000,477,1,0,1,11,1),(1685,'07:00:00',52800000000000,478,1,1,1,10,1),(1686,'11:00:00',52800000000000,478,1,1,1,10,1),(1687,'15:00:00',52800000000000,478,1,1,1,11,1),(1688,'19:00:00',52800000000000,478,1,1,1,10,1),(1689,'07:00:00',50040000000000,479,1,1,1,10,1),(1690,'11:00:00',50040000000000,479,1,1,1,10,1),(1691,'15:00:00',50040000000000,479,1,1,1,10,1),(1692,'19:00:00',50040000000000,479,1,1,1,11,1),(1693,'07:30:00',78600000000000,480,1,1,1,11,1),(1694,'13:00:00',78600000000000,480,1,1,1,11,1),(1695,'18:30:00',78600000000000,480,1,1,1,10,1),(1696,'24:00:00',78600000000000,480,1,1,1,10,1),(1697,'07:30:00',43740000000000,481,1,1,1,10,1),(1698,'10:00:00',43740000000000,481,1,1,1,10,1),(1699,'12:30:00',43740000000000,481,1,1,1,10,1),(1700,'15:00:00',43740000000000,481,1,1,1,10,1),(1701,'17:30:00',43740000000000,481,1,1,1,10,1),(1702,'20:00:00',43740000000000,481,1,1,1,10,1),(1703,'22:30:00',43740000000000,481,1,1,1,10,1),(1704,'07:00:00',118080000000000,482,1,1,1,11,1),(1705,'22:00:00',118080000000000,482,1,1,1,11,1),(1706,'07:30:00',71220000000000,483,1,1,1,11,1),(1707,'12:00:00',71220000000000,483,1,1,1,10,1),(1708,'16:30:00',71220000000000,483,1,1,1,10,1),(1709,'21:00:00',71220000000000,483,1,1,1,11,1),(1710,'07:00:00',127500000000000,484,1,1,1,11,1),(1711,'22:00:00',127500000000000,484,1,1,1,11,1),(1712,'07:00:00',120960000000000,485,1,1,1,11,1),(1713,'22:00:00',120960000000000,485,1,1,1,11,1),(1714,'07:30:00',22620000000000,486,1,1,1,10,1),(1715,'09:00:00',22620000000000,486,1,1,1,10,1),(1716,'10:30:00',22620000000000,486,1,1,1,10,1),(1717,'12:00:00',22620000000000,486,1,1,1,10,1),(1718,'13:30:00',22620000000000,486,1,1,1,10,1),(1719,'15:00:00',22620000000000,486,1,1,1,10,1),(1720,'16:30:00',22620000000000,486,1,1,1,10,1),(1721,'18:00:00',22620000000000,486,1,1,1,10,1),(1722,'19:30:00',22620000000000,486,1,1,1,10,1),(1723,'21:00:00',22620000000000,486,1,1,1,10,1),(1724,'22:30:00',22620000000000,486,1,1,1,10,1),(1725,'07:30:00',31080000000000,487,1,1,1,10,1),(1726,'10:00:00',31080000000000,487,1,1,1,10,1),(1727,'12:30:00',31080000000000,487,1,1,1,10,1),(1728,'15:00:00',31080000000000,487,1,1,1,10,1),(1729,'17:30:00',31080000000000,487,1,1,1,10,1),(1730,'20:00:00',31080000000000,487,1,1,1,10,1),(1731,'22:30:00',31080000000000,487,1,1,1,10,1),(1732,'07:00:00',87060000000000,488,1,1,1,11,1),(1733,'22:00:00',87060000000000,488,1,1,1,11,1),(1734,'07:00:00',139140000000000,489,1,1,1,11,1),(1735,'22:00:00',139140000000000,489,1,1,1,11,1),(1736,'07:00:00',171300000000000,490,1,1,1,11,1),(1737,'22:00:00',171300000000000,490,1,1,1,11,1),(1738,'07:00:00',115380000000000,491,1,1,1,11,1),(1739,'22:00:00',115380000000000,491,1,1,1,11,1),(1740,'07:00:00',107340000000000,492,1,1,1,11,1),(1741,'22:00:00',107340000000000,492,1,1,1,11,1),(1742,'07:30:00',40020000000000,493,1,1,1,10,1),(1743,'10:00:00',40020000000000,493,1,1,1,10,1),(1744,'12:30:00',40020000000000,493,1,1,1,10,1),(1745,'15:00:00',40020000000000,493,1,1,1,10,1),(1746,'17:30:00',40020000000000,493,1,1,1,10,1),(1747,'20:00:00',40020000000000,493,1,1,1,10,1),(1748,'22:30:00',40020000000000,493,1,1,1,10,1),(1749,'07:00:00',54660000000000,494,1,1,1,11,1),(1750,'11:00:00',54660000000000,494,1,1,1,10,1),(1751,'15:00:00',54660000000000,494,1,1,1,11,1),(1752,'19:00:00',54660000000000,494,1,1,1,10,1),(1753,'12:00:00',178200000000000,495,1,0,1,11,1),(1754,'07:30:00',14940000000000,496,1,1,1,10,1),(1755,'09:00:00',14940000000000,496,1,1,1,10,1),(1756,'10:30:00',14940000000000,496,1,1,1,10,1),(1757,'12:00:00',14940000000000,496,1,1,1,10,1),(1758,'13:30:00',14940000000000,496,1,1,1,10,1),(1759,'15:00:00',14940000000000,496,1,1,1,10,1),(1760,'16:30:00',14940000000000,496,1,1,1,10,1),(1761,'18:00:00',14940000000000,496,1,1,1,10,1),(1762,'19:30:00',14940000000000,496,1,1,1,10,1),(1763,'21:00:00',14940000000000,496,1,1,1,10,1),(1764,'22:30:00',14940000000000,496,1,1,1,10,1),(1765,'07:00:00',142260000000000,497,1,1,1,11,1),(1766,'22:00:00',142260000000000,497,1,1,1,11,1),(1767,'07:30:00',81120000000000,498,1,1,1,10,1),(1768,'13:00:00',81120000000000,498,1,1,1,11,1),(1769,'18:30:00',81120000000000,498,1,1,1,11,1),(1770,'24:00:00',81120000000000,498,1,1,1,11,1),(1771,'07:00:00',108360000000000,499,1,1,1,11,1),(1772,'22:00:00',108360000000000,499,1,1,1,11,1),(1773,'07:30:00',16620000000000,500,1,1,1,10,1),(1774,'09:00:00',16620000000000,500,1,1,1,10,1),(1775,'10:30:00',16620000000000,500,1,1,1,10,1),(1776,'12:00:00',16620000000000,500,1,1,1,10,1),(1777,'13:30:00',16620000000000,500,1,1,1,10,1),(1778,'15:00:00',16620000000000,500,1,1,1,10,1),(1779,'16:30:00',16620000000000,500,1,1,1,10,1),(1780,'18:00:00',16620000000000,500,1,1,1,10,1),(1781,'19:30:00',16620000000000,500,1,1,1,10,1),(1782,'21:00:00',16620000000000,500,1,1,1,10,1),(1783,'22:30:00',16620000000000,500,1,1,1,10,1),(1784,'07:30:00',78780000000000,501,1,1,1,11,1),(1785,'13:00:00',78780000000000,501,1,1,1,11,1),(1786,'18:30:00',78780000000000,501,1,1,1,11,1),(1787,'24:00:00',78780000000000,501,1,1,1,11,1),(1788,'07:30:00',80280000000000,502,1,1,1,11,1),(1789,'13:00:00',80280000000000,502,1,1,1,11,1),(1790,'18:30:00',80280000000000,502,1,1,1,10,1),(1791,'24:00:00',80280000000000,502,1,1,1,11,1),(1792,'07:00:00',9300000000000,503,1,1,1,7,1),(1793,'08:00:00',9300000000000,503,1,1,1,7,1),(1794,'09:00:00',9300000000000,503,1,1,1,9,1),(1795,'10:00:00',9300000000000,503,1,1,1,7,1),(1796,'11:00:00',9300000000000,503,1,1,1,9,1),(1797,'12:00:00',9300000000000,503,1,1,1,7,1),(1798,'13:00:00',9300000000000,503,1,1,1,7,1),(1799,'14:00:00',9300000000000,503,1,1,1,9,1),(1800,'15:00:00',9300000000000,503,1,1,1,9,1),(1801,'16:00:00',9300000000000,503,1,1,1,7,1),(1802,'17:00:00',9300000000000,503,1,1,1,7,1),(1803,'18:00:00',9300000000000,503,1,1,1,9,1),(1804,'19:00:00',9300000000000,503,1,1,1,7,1),(1805,'20:00:00',9300000000000,503,1,1,1,7,1),(1806,'21:00:00',9300000000000,503,1,1,1,7,1),(1807,'22:00:00',9300000000000,503,1,1,1,7,1),(1808,'07:00:00',126240000000000,504,1,1,1,11,1),(1809,'22:00:00',126240000000000,504,1,1,1,11,1),(1810,'12:00:00',177960000000000,505,1,0,1,11,1),(1811,'07:00:00',105240000000000,506,1,1,1,11,1),(1812,'22:00:00',105240000000000,506,1,1,1,11,1),(1813,'12:00:00',186120000000000,507,1,0,1,11,1),(1814,'07:00:00',53460000000000,508,1,1,1,10,1),(1815,'11:00:00',53460000000000,508,1,1,1,11,1),(1816,'15:00:00',53460000000000,508,1,1,1,10,1),(1817,'19:00:00',53460000000000,508,1,1,1,10,1),(1818,'07:00:00',168480000000000,509,1,1,1,11,1),(1819,'22:00:00',168480000000000,509,1,1,1,11,1),(1820,'07:00:00',160020000000000,510,1,1,1,11,1),(1821,'22:00:00',160020000000000,510,1,1,1,11,1),(1822,'07:00:00',130860000000000,511,1,1,1,11,1),(1823,'22:00:00',130860000000000,511,1,1,1,11,1),(1824,'07:00:00',103440000000000,512,1,1,1,3,1),(1825,'22:00:00',103440000000000,512,1,1,1,3,1),(1826,'07:00:00',166440000000000,513,1,1,1,3,1),(1827,'22:00:00',166440000000000,513,1,1,1,3,1),(1828,'07:30:00',67260000000000,514,1,1,1,2,1),(1829,'12:00:00',67260000000000,514,1,1,1,3,1),(1830,'16:30:00',67260000000000,514,1,1,1,3,1),(1831,'21:00:00',67260000000000,514,1,1,1,3,1),(1832,'07:00:00',114660000000000,515,1,1,1,3,1),(1833,'22:00:00',114660000000000,515,1,1,1,3,1),(1834,'07:00:00',136740000000000,516,1,1,1,3,1),(1835,'22:00:00',136740000000000,516,1,1,1,3,1),(1836,'07:00:00',98580000000000,517,1,1,1,3,1),(1837,'22:00:00',98580000000000,517,1,1,1,3,1),(1838,'07:00:00',119820000000000,518,1,1,1,3,1),(1839,'22:00:00',119820000000000,518,1,1,1,3,1),(1840,'12:00:00',196200000000000,519,1,0,1,3,1),(1841,'07:00:00',49740000000000,520,1,1,1,2,1),(1842,'11:00:00',49740000000000,520,1,1,1,2,1),(1843,'15:00:00',49740000000000,520,1,1,1,2,1),(1844,'19:00:00',49740000000000,520,1,1,1,2,1),(1845,'07:00:00',107160000000000,521,1,1,1,3,1),(1846,'22:00:00',107160000000000,521,1,1,1,3,1),(1847,'07:00:00',152280000000000,522,1,1,1,3,1),(1848,'22:00:00',152280000000000,522,1,1,1,3,1),(1849,'07:00:00',110400000000000,523,1,1,1,3,1),(1850,'22:00:00',110400000000000,523,1,1,1,3,1),(1851,'07:00:00',110520000000000,524,1,1,1,3,1),(1852,'22:00:00',110520000000000,524,1,1,1,3,1),(1853,'07:00:00',144180000000000,525,1,1,1,11,1),(1854,'22:00:00',144180000000000,525,1,1,1,11,1),(1855,'12:00:00',173460000000000,526,1,0,1,3,1),(1856,'07:30:00',66960000000000,527,1,1,1,3,1),(1857,'12:00:00',66960000000000,527,1,1,1,2,1),(1858,'16:30:00',66960000000000,527,1,1,1,2,1),(1859,'21:00:00',66960000000000,527,1,1,1,2,1),(1860,'07:30:00',70320000000000,528,1,1,1,2,1),(1861,'12:00:00',70320000000000,528,1,1,1,3,1),(1862,'16:30:00',70320000000000,528,1,1,1,2,1),(1863,'21:00:00',70320000000000,528,1,1,1,3,1),(1864,'07:00:00',139080000000000,529,1,1,1,11,1),(1865,'22:00:00',139080000000000,529,1,1,1,11,1),(1866,'12:00:00',173040000000000,530,1,0,1,11,1),(1867,'07:30:00',38820000000000,531,1,1,1,2,1),(1868,'10:00:00',38820000000000,531,1,1,1,2,1),(1869,'12:30:00',38820000000000,531,1,1,1,1,1),(1870,'15:00:00',38820000000000,531,1,1,1,2,1),(1871,'17:30:00',38820000000000,531,1,1,1,1,1),(1872,'20:00:00',38820000000000,531,1,1,1,1,1),(1873,'22:30:00',38820000000000,531,1,1,1,2,1),(1874,'07:00:00',124620000000000,532,1,1,1,11,1),(1875,'22:00:00',124620000000000,532,1,1,1,11,1),(1876,'07:30:00',78540000000000,533,1,1,1,3,1),(1877,'13:00:00',78540000000000,533,1,1,1,3,1),(1878,'18:30:00',78540000000000,533,1,1,1,3,1),(1879,'24:00:00',78540000000000,533,1,1,1,2,1),(1880,'07:00:00',148380000000000,534,1,1,1,3,1),(1881,'22:00:00',148380000000000,534,1,1,1,3,1),(1882,'07:00:00',135420000000000,535,1,1,1,3,1),(1883,'22:00:00',135420000000000,535,1,1,1,3,1),(1884,'07:30:00',71280000000000,536,1,1,1,3,1),(1885,'12:00:00',71280000000000,536,1,1,1,3,1),(1886,'16:30:00',71280000000000,536,1,1,1,3,1),(1887,'21:00:00',71280000000000,536,1,1,1,3,1),(1888,'07:00:00',158160000000000,537,1,1,1,11,1),(1889,'22:00:00',158160000000000,537,1,1,1,11,1),(1890,'12:00:00',207420000000000,538,1,0,1,3,1),(1891,'12:00:00',191160000000000,539,1,0,1,3,1),(1892,'07:00:00',162000000000000,540,1,1,1,3,1),(1893,'22:00:00',162000000000000,540,1,1,1,3,1),(1894,'07:30:00',70860000000000,541,1,1,1,2,1),(1895,'12:00:00',70860000000000,541,1,1,1,2,1),(1896,'16:30:00',70860000000000,541,1,1,1,3,1),(1897,'21:00:00',70860000000000,541,1,1,1,3,1),(1898,'07:30:00',63900000000000,542,1,1,1,3,1),(1899,'12:00:00',63900000000000,542,1,1,1,2,1),(1900,'16:30:00',63900000000000,542,1,1,1,2,1),(1901,'21:00:00',63900000000000,542,1,1,1,2,1),(1902,'07:30:00',42300000000000,543,1,1,1,2,1),(1903,'10:00:00',42300000000000,543,1,1,1,1,1),(1904,'12:30:00',42300000000000,543,1,1,1,1,1),(1905,'15:00:00',42300000000000,543,1,1,1,2,1),(1906,'17:30:00',42300000000000,543,1,1,1,2,1),(1907,'20:00:00',42300000000000,543,1,1,1,1,1),(1908,'22:30:00',42300000000000,543,1,1,1,2,1),(1909,'07:00:00',58080000000000,544,1,1,1,2,1),(1910,'11:00:00',58080000000000,544,1,1,1,2,1),(1911,'15:00:00',58080000000000,544,1,1,1,2,1),(1912,'19:00:00',58080000000000,544,1,1,1,2,1),(1913,'07:30:00',16920000000000,545,1,1,1,1,1),(1914,'09:00:00',16920000000000,545,1,1,1,1,1),(1915,'10:30:00',16920000000000,545,1,1,1,1,1),(1916,'12:00:00',16920000000000,545,1,1,1,1,1),(1917,'13:30:00',16920000000000,545,1,1,1,6,1),(1918,'15:00:00',16920000000000,545,1,1,1,1,1),(1919,'16:30:00',16920000000000,545,1,1,1,1,1),(1920,'18:00:00',16920000000000,545,1,1,1,2,1),(1921,'19:30:00',16920000000000,545,1,1,1,5,1),(1922,'21:00:00',16920000000000,545,1,1,1,5,1),(1923,'22:30:00',16920000000000,545,1,1,1,1,1),(1924,'07:30:00',64500000000000,546,1,1,1,3,1),(1925,'12:00:00',64500000000000,546,1,1,1,3,1),(1926,'16:30:00',64500000000000,546,1,1,1,3,1),(1927,'21:00:00',64500000000000,546,1,1,1,2,1),(1928,'07:00:00',100680000000000,547,1,1,1,3,1),(1929,'22:00:00',100680000000000,547,1,1,1,3,1),(1930,'07:30:00',71520000000000,548,1,1,1,2,1),(1931,'12:00:00',71520000000000,548,1,1,1,2,1),(1932,'16:30:00',71520000000000,548,1,1,1,2,1),(1933,'21:00:00',71520000000000,548,1,1,1,3,1),(1934,'07:30:00',37080000000000,549,1,1,1,2,1),(1935,'10:00:00',37080000000000,549,1,1,1,1,1),(1936,'12:30:00',37080000000000,549,1,1,1,1,1),(1937,'15:00:00',37080000000000,549,1,1,1,2,1),(1938,'17:30:00',37080000000000,549,1,1,1,2,1),(1939,'20:00:00',37080000000000,549,1,1,1,2,1),(1940,'22:30:00',37080000000000,549,1,1,1,1,1),(1941,'07:00:00',98580000000000,550,1,1,1,3,1),(1942,'22:00:00',98580000000000,550,1,1,1,3,1),(1943,'07:30:00',14040000000000,551,1,1,1,2,1),(1944,'09:00:00',14040000000000,551,1,1,1,6,1),(1945,'10:30:00',14040000000000,551,1,1,1,1,1),(1946,'12:00:00',14040000000000,551,1,1,1,2,1),(1947,'13:30:00',14040000000000,551,1,1,1,2,1),(1948,'15:00:00',14040000000000,551,1,1,1,1,1),(1949,'16:30:00',14040000000000,551,1,1,1,1,1),(1950,'18:00:00',14040000000000,551,1,1,1,2,1),(1951,'19:30:00',14040000000000,551,1,1,1,1,1),(1952,'21:00:00',14040000000000,551,1,1,1,5,1),(1953,'22:30:00',14040000000000,551,1,1,1,6,1),(1954,'07:00:00',123420000000000,552,1,1,1,3,1),(1955,'22:00:00',123420000000000,552,1,1,1,3,1),(1956,'07:30:00',65520000000000,553,1,1,1,11,1),(1957,'12:00:00',65520000000000,553,1,1,1,11,1),(1958,'16:30:00',65520000000000,553,1,1,1,11,1),(1959,'21:00:00',65520000000000,553,1,1,1,10,1),(1960,'07:30:00',77880000000000,554,1,1,1,2,1),(1961,'13:00:00',77880000000000,554,1,1,1,3,1),(1962,'18:30:00',77880000000000,554,1,1,1,2,1),(1963,'24:00:00',77880000000000,554,1,1,1,3,1),(1964,'07:30:00',38820000000000,555,1,1,1,1,1),(1965,'10:00:00',38820000000000,555,1,1,1,1,1),(1966,'12:30:00',38820000000000,555,1,1,1,2,1),(1967,'15:00:00',38820000000000,555,1,1,1,2,1),(1968,'17:30:00',38820000000000,555,1,1,1,2,1),(1969,'20:00:00',38820000000000,555,1,1,1,1,1),(1970,'22:30:00',38820000000000,555,1,1,1,1,1),(1971,'07:00:00',54240000000000,556,1,1,1,2,1),(1972,'11:00:00',54240000000000,556,1,1,1,2,1),(1973,'15:00:00',54240000000000,556,1,1,1,2,1),(1974,'19:00:00',54240000000000,556,1,1,1,2,1),(1975,'07:00:00',60420000000000,557,1,1,1,10,1),(1976,'11:00:00',60420000000000,557,1,1,1,10,1),(1977,'15:00:00',60420000000000,557,1,1,1,10,1),(1978,'19:00:00',60420000000000,557,1,1,1,10,1),(1979,'07:30:00',76860000000000,558,1,1,1,11,1),(1980,'13:00:00',76860000000000,558,1,1,1,11,1),(1981,'18:30:00',76860000000000,558,1,1,1,11,1),(1982,'24:00:00',76860000000000,558,1,1,1,11,1),(1983,'07:30:00',66660000000000,559,1,1,1,3,1),(1984,'12:00:00',66660000000000,559,1,1,1,3,1),(1985,'16:30:00',66660000000000,559,1,1,1,2,1),(1986,'21:00:00',66660000000000,559,1,1,1,3,1),(1987,'07:00:00',61140000000000,560,1,1,1,10,1),(1988,'11:00:00',61140000000000,560,1,1,1,10,1),(1989,'15:00:00',61140000000000,560,1,1,1,10,1),(1990,'19:00:00',61140000000000,560,1,1,1,10,1),(1991,'07:30:00',66300000000000,561,1,1,1,3,1),(1992,'12:00:00',66300000000000,561,1,1,1,2,1),(1993,'16:30:00',66300000000000,561,1,1,1,3,1),(1994,'21:00:00',66300000000000,561,1,1,1,2,1),(1995,'07:00:00',98820000000000,562,1,1,1,3,1),(1996,'22:00:00',98820000000000,562,1,1,1,3,1),(1997,'07:30:00',39480000000000,563,1,1,1,2,1),(1998,'10:00:00',39480000000000,563,1,1,1,1,1),(1999,'12:30:00',39480000000000,563,1,1,1,2,1),(2000,'15:00:00',39480000000000,563,1,1,1,2,1),(2001,'17:30:00',39480000000000,563,1,1,1,2,1),(2002,'20:00:00',39480000000000,563,1,1,1,1,1),(2003,'22:30:00',39480000000000,563,1,1,1,2,1),(2004,'07:00:00',166140000000000,564,1,1,1,3,1),(2005,'22:00:00',166140000000000,564,1,1,1,3,1),(2006,'07:30:00',61920000000000,565,1,1,1,11,1),(2007,'12:00:00',61920000000000,565,1,1,1,10,1),(2008,'16:30:00',61920000000000,565,1,1,1,10,1),(2009,'21:00:00',61920000000000,565,1,1,1,10,1),(2010,'07:00:00',111840000000000,566,1,1,1,3,1),(2011,'22:00:00',111840000000000,566,1,1,1,3,1),(2012,'07:00:00',95640000000000,567,1,1,1,3,1),(2013,'22:00:00',95640000000000,567,1,1,1,3,1),(2014,'07:30:00',66480000000000,568,1,1,1,2,1),(2015,'12:00:00',66480000000000,568,1,1,1,2,1),(2016,'16:30:00',66480000000000,568,1,1,1,3,1),(2017,'21:00:00',66480000000000,568,1,1,1,2,1),(2018,'07:00:00',106320000000000,569,1,1,1,3,1),(2019,'22:00:00',106320000000000,569,1,1,1,3,1),(2020,'07:00:00',97800000000000,570,1,1,1,3,1),(2021,'22:00:00',97800000000000,570,1,1,1,3,1),(2022,'07:00:00',108540000000000,571,1,1,1,3,1),(2023,'22:00:00',108540000000000,571,1,1,1,3,1),(2024,'07:30:00',70800000000000,572,1,1,1,2,1),(2025,'12:00:00',70800000000000,572,1,1,1,2,1),(2026,'16:30:00',70800000000000,572,1,1,1,3,1),(2027,'21:00:00',70800000000000,572,1,1,1,3,1),(2028,'07:00:00',89400000000000,573,1,1,1,3,1),(2029,'22:00:00',89400000000000,573,1,1,1,3,1),(2030,'07:00:00',50280000000000,574,1,1,1,2,1),(2031,'11:00:00',50280000000000,574,1,1,1,2,1),(2032,'15:00:00',50280000000000,574,1,1,1,3,1),(2033,'19:00:00',50280000000000,574,1,1,1,3,1),(2034,'07:00:00',123060000000000,575,1,1,1,3,1),(2035,'22:00:00',123060000000000,575,1,1,1,3,1),(2036,'07:30:00',64500000000000,576,1,1,1,2,1),(2037,'12:00:00',64500000000000,576,1,1,1,2,1),(2038,'16:30:00',64500000000000,576,1,1,1,3,1),(2039,'21:00:00',64500000000000,576,1,1,1,2,1),(2040,'07:00:00',149040000000000,577,1,1,1,3,1),(2041,'22:00:00',149040000000000,577,1,1,1,3,1),(2042,'07:30:00',64740000000000,578,1,1,1,2,1),(2043,'12:00:00',64740000000000,578,1,1,1,3,1),(2044,'16:30:00',64740000000000,578,1,1,1,2,1),(2045,'21:00:00',64740000000000,578,1,1,1,2,1),(2046,'07:00:00',159960000000000,579,1,1,1,3,1),(2047,'22:00:00',159960000000000,579,1,1,1,3,1),(2048,'07:00:00',115980000000000,580,1,1,1,11,1),(2049,'22:00:00',115980000000000,580,1,1,1,11,1),(2050,'07:30:00',27960000000000,581,1,1,1,1,1),(2051,'10:00:00',27960000000000,581,1,1,1,2,1),(2052,'12:30:00',27960000000000,581,1,1,1,2,1),(2053,'15:00:00',27960000000000,581,1,1,1,2,1),(2054,'17:30:00',27960000000000,581,1,1,1,1,1),(2055,'20:00:00',27960000000000,581,1,1,1,2,1),(2056,'22:30:00',27960000000000,581,1,1,1,1,1),(2057,'07:00:00',104760000000000,582,1,1,1,3,1),(2058,'22:00:00',104760000000000,582,1,1,1,3,1),(2059,'07:00:00',105960000000000,583,1,1,1,3,1),(2060,'22:00:00',105960000000000,583,1,1,1,3,1),(2061,'07:00:00',111240000000000,584,1,1,1,11,1),(2062,'22:00:00',111240000000000,584,1,1,1,11,1),(2063,'07:00:00',56940000000000,585,1,1,1,10,1),(2064,'11:00:00',56940000000000,585,1,1,1,10,1),(2065,'15:00:00',56940000000000,585,1,1,1,10,1),(2066,'19:00:00',56940000000000,585,1,1,1,11,1),(2067,'07:00:00',136200000000000,586,1,1,1,3,1),(2068,'22:00:00',136200000000000,586,1,1,1,3,1),(2069,'07:00:00',111900000000000,587,1,1,1,11,1),(2070,'22:00:00',111900000000000,587,1,1,1,11,1),(2071,'07:00:00',100380000000000,588,1,1,1,3,1),(2072,'22:00:00',100380000000000,588,1,1,1,3,1),(2073,'07:00:00',113880000000000,589,1,1,1,3,1),(2074,'22:00:00',113880000000000,589,1,1,1,3,1),(2075,'07:30:00',31560000000000,590,1,1,1,1,1),(2076,'10:00:00',31560000000000,590,1,1,1,2,1),(2077,'12:30:00',31560000000000,590,1,1,1,1,1),(2078,'15:00:00',31560000000000,590,1,1,1,2,1),(2079,'17:30:00',31560000000000,590,1,1,1,1,1),(2080,'20:00:00',31560000000000,590,1,1,1,1,1),(2081,'22:30:00',31560000000000,590,1,1,1,1,1),(2082,'12:00:00',222660000000000,591,1,0,1,3,1),(2083,'07:30:00',75840000000000,592,1,1,1,11,1),(2084,'13:00:00',75840000000000,592,1,1,1,11,1),(2085,'18:30:00',75840000000000,592,1,1,1,11,1),(2086,'24:00:00',75840000000000,592,1,1,1,11,1),(2087,'07:30:00',41460000000000,593,1,1,1,2,1),(2088,'10:00:00',41460000000000,593,1,1,1,1,1),(2089,'12:30:00',41460000000000,593,1,1,1,1,1),(2090,'15:00:00',41460000000000,593,1,1,1,2,1),(2091,'17:30:00',41460000000000,593,1,1,1,2,1),(2092,'20:00:00',41460000000000,593,1,1,1,2,1),(2093,'22:30:00',41460000000000,593,1,1,1,1,1),(2094,'07:30:00',45720000000000,594,1,1,1,1,1),(2095,'10:00:00',45720000000000,594,1,1,1,2,1),(2096,'12:30:00',45720000000000,594,1,1,1,2,1),(2097,'15:00:00',45720000000000,594,1,1,1,2,1),(2098,'17:30:00',45720000000000,594,1,1,1,2,1),(2099,'20:00:00',45720000000000,594,1,1,1,1,1),(2100,'22:30:00',45720000000000,594,1,1,1,2,1),(2101,'07:30:00',10800000000000,595,1,1,1,2,1),(2102,'09:00:00',10800000000000,595,1,1,1,2,1),(2103,'10:30:00',10800000000000,595,1,1,1,1,1),(2104,'12:00:00',10800000000000,595,1,1,1,1,1),(2105,'13:30:00',10800000000000,595,1,1,1,1,1),(2106,'15:00:00',10800000000000,595,1,1,1,1,1),(2107,'16:30:00',10800000000000,595,1,1,1,2,1),(2108,'18:00:00',10800000000000,595,1,1,1,5,1),(2109,'19:30:00',10800000000000,595,1,1,1,1,1),(2110,'21:00:00',10800000000000,595,1,1,1,5,1),(2111,'22:30:00',10800000000000,595,1,1,1,2,1),(2112,'07:00:00',97560000000000,596,1,1,1,3,1),(2113,'22:00:00',97560000000000,596,1,1,1,3,1),(2114,'07:00:00',120180000000000,597,1,1,1,3,1),(2115,'22:00:00',120180000000000,597,1,1,1,3,1),(2116,'07:00:00',52140000000000,598,1,1,1,2,1),(2117,'11:00:00',52140000000000,598,1,1,1,2,1),(2118,'15:00:00',52140000000000,598,1,1,1,2,1),(2119,'19:00:00',52140000000000,598,1,1,1,2,1),(2120,'07:00:00',53220000000000,599,1,1,1,2,1),(2121,'11:00:00',53220000000000,599,1,1,1,2,1),(2122,'15:00:00',53220000000000,599,1,1,1,3,1),(2123,'19:00:00',53220000000000,599,1,1,1,2,1),(2124,'07:00:00',136800000000000,600,1,1,1,3,1),(2125,'22:00:00',136800000000000,600,1,1,1,3,1),(2126,'07:30:00',18000000000000,601,1,1,1,2,1),(2127,'09:00:00',18000000000000,601,1,1,1,2,1),(2128,'10:30:00',18000000000000,601,1,1,1,6,1),(2129,'12:00:00',18000000000000,601,1,1,1,1,1),(2130,'13:30:00',18000000000000,601,1,1,1,1,1),(2131,'15:00:00',18000000000000,601,1,1,1,2,1),(2132,'16:30:00',18000000000000,601,1,1,1,1,1),(2133,'18:00:00',18000000000000,601,1,1,1,1,1),(2134,'19:30:00',18000000000000,601,1,1,1,5,1),(2135,'21:00:00',18000000000000,601,1,1,1,2,1),(2136,'22:30:00',18000000000000,601,1,1,1,2,1),(2137,'07:30:00',44220000000000,602,1,1,1,1,1),(2138,'10:00:00',44220000000000,602,1,1,1,1,1),(2139,'12:30:00',44220000000000,602,1,1,1,1,1),(2140,'15:00:00',44220000000000,602,1,1,1,2,1),(2141,'17:30:00',44220000000000,602,1,1,1,1,1),(2142,'20:00:00',44220000000000,602,1,1,1,2,1),(2143,'22:30:00',44220000000000,602,1,1,1,2,1),(2144,'07:00:00',162960000000000,603,1,1,1,3,1),(2145,'22:00:00',162960000000000,603,1,1,1,3,1),(2146,'07:30:00',78420000000000,604,1,1,1,2,1),(2147,'13:00:00',78420000000000,604,1,1,1,3,1),(2148,'18:30:00',78420000000000,604,1,1,1,3,1),(2149,'24:00:00',78420000000000,604,1,1,1,3,1),(2150,'07:00:00',55740000000000,605,1,1,1,2,1),(2151,'11:00:00',55740000000000,605,1,1,1,2,1),(2152,'15:00:00',55740000000000,605,1,1,1,3,1),(2153,'19:00:00',55740000000000,605,1,1,1,2,1),(2154,'07:00:00',127680000000000,606,1,1,1,11,1),(2155,'22:00:00',127680000000000,606,1,1,1,11,1),(2156,'07:00:00',114060000000000,607,1,1,1,3,1),(2157,'22:00:00',114060000000000,607,1,1,1,3,1),(2158,'07:30:00',43920000000000,608,1,1,1,2,1),(2159,'10:00:00',43920000000000,608,1,1,1,1,1),(2160,'12:30:00',43920000000000,608,1,1,1,2,1),(2161,'15:00:00',43920000000000,608,1,1,1,2,1),(2162,'17:30:00',43920000000000,608,1,1,1,1,1),(2163,'20:00:00',43920000000000,608,1,1,1,2,1),(2164,'22:30:00',43920000000000,608,1,1,1,2,1),(2165,'07:30:00',12360000000000,609,1,1,1,5,1),(2166,'09:00:00',12360000000000,609,1,1,1,1,1),(2167,'10:30:00',12360000000000,609,1,1,1,5,1),(2168,'12:00:00',12360000000000,609,1,1,1,2,1),(2169,'13:30:00',12360000000000,609,1,1,1,2,1),(2170,'15:00:00',12360000000000,609,1,1,1,1,1),(2171,'16:30:00',12360000000000,609,1,1,1,6,1),(2172,'18:00:00',12360000000000,609,1,1,1,2,1),(2173,'19:30:00',12360000000000,609,1,1,1,5,1),(2174,'21:00:00',12360000000000,609,1,1,1,2,1),(2175,'22:30:00',12360000000000,609,1,1,1,1,1),(2176,'07:00:00',124800000000000,610,1,1,1,11,1),(2177,'22:00:00',124800000000000,610,1,1,1,11,1),(2178,'07:00:00',128040000000000,611,1,1,1,11,1),(2179,'22:00:00',128040000000000,611,1,1,1,11,1),(2180,'07:30:00',69480000000000,612,1,1,1,3,1),(2181,'12:00:00',69480000000000,612,1,1,1,3,1),(2182,'16:30:00',69480000000000,612,1,1,1,3,1),(2183,'21:00:00',69480000000000,612,1,1,1,2,1),(2184,'07:00:00',111480000000000,613,1,1,1,11,1),(2185,'22:00:00',111480000000000,613,1,1,1,11,1),(2186,'07:30:00',12120000000000,614,1,1,1,1,1),(2187,'09:00:00',12120000000000,614,1,1,1,2,1),(2188,'10:30:00',12120000000000,614,1,1,1,2,1),(2189,'12:00:00',12120000000000,614,1,1,1,5,1),(2190,'13:30:00',12120000000000,614,1,1,1,5,1),(2191,'15:00:00',12120000000000,614,1,1,1,2,1),(2192,'16:30:00',12120000000000,614,1,1,1,1,1),(2193,'18:00:00',12120000000000,614,1,1,1,2,1),(2194,'19:30:00',12120000000000,614,1,1,1,5,1),(2195,'21:00:00',12120000000000,614,1,1,1,2,1),(2196,'22:30:00',12120000000000,614,1,1,1,2,1),(2197,'07:30:00',80940000000000,615,1,1,1,3,1),(2198,'13:00:00',80940000000000,615,1,1,1,3,1),(2199,'18:30:00',80940000000000,615,1,1,1,3,1),(2200,'24:00:00',80940000000000,615,1,1,1,3,1),(2201,'07:30:00',75300000000000,616,1,1,1,3,1),(2202,'12:00:00',75300000000000,616,1,1,1,3,1),(2203,'16:30:00',75300000000000,616,1,1,1,2,1),(2204,'21:00:00',75300000000000,616,1,1,1,2,1),(2205,'07:00:00',117900000000000,617,1,1,1,3,1),(2206,'22:00:00',117900000000000,617,1,1,1,3,1),(2207,'07:00:00',126360000000000,618,1,1,1,11,1),(2208,'22:00:00',126360000000000,618,1,1,1,11,1),(2209,'07:00:00',147960000000000,619,1,1,1,3,1),(2210,'22:00:00',147960000000000,619,1,1,1,3,1),(2211,'07:00:00',131760000000000,620,1,1,1,3,1),(2212,'22:00:00',131760000000000,620,1,1,1,3,1),(2213,'07:00:00',102600000000000,621,1,1,1,3,1),(2214,'22:00:00',102600000000000,621,1,1,1,3,1),(2215,'07:30:00',34740000000000,622,1,1,1,1,1),(2216,'10:00:00',34740000000000,622,1,1,1,1,1),(2217,'12:30:00',34740000000000,622,1,1,1,1,1),(2218,'15:00:00',34740000000000,622,1,1,1,2,1),(2219,'17:30:00',34740000000000,622,1,1,1,2,1),(2220,'20:00:00',34740000000000,622,1,1,1,2,1),(2221,'22:30:00',34740000000000,622,1,1,1,1,1),(2222,'07:00:00',60420000000000,623,1,1,1,2,1),(2223,'11:00:00',60420000000000,623,1,1,1,2,1),(2224,'15:00:00',60420000000000,623,1,1,1,2,1),(2225,'19:00:00',60420000000000,623,1,1,1,3,1),(2226,'07:00:00',106440000000000,624,1,1,1,3,1),(2227,'22:00:00',106440000000000,624,1,1,1,3,1),(2228,'07:00:00',142380000000000,625,1,1,1,3,1),(2229,'22:00:00',142380000000000,625,1,1,1,3,1),(2230,'07:00:00',103380000000000,626,1,1,1,3,1),(2231,'22:00:00',103380000000000,626,1,1,1,3,1),(2232,'07:30:00',81300000000000,627,1,1,1,3,1),(2233,'13:00:00',81300000000000,627,1,1,1,3,1),(2234,'18:30:00',81300000000000,627,1,1,1,3,1),(2235,'24:00:00',81300000000000,627,1,1,1,3,1),(2236,'07:30:00',62520000000000,628,1,1,1,3,1),(2237,'12:00:00',62520000000000,628,1,1,1,2,1),(2238,'16:30:00',62520000000000,628,1,1,1,2,1),(2239,'21:00:00',62520000000000,628,1,1,1,3,1),(2240,'07:30:00',32580000000000,629,1,1,1,1,1),(2241,'10:00:00',32580000000000,629,1,1,1,2,1),(2242,'12:30:00',32580000000000,629,1,1,1,2,1),(2243,'15:00:00',32580000000000,629,1,1,1,2,1),(2244,'17:30:00',32580000000000,629,1,1,1,2,1),(2245,'20:00:00',32580000000000,629,1,1,1,1,1),(2246,'22:30:00',32580000000000,629,1,1,1,2,1),(2247,'07:00:00',153000000000000,630,1,1,1,3,1),(2248,'22:00:00',153000000000000,630,1,1,1,3,1),(2249,'07:30:00',24660000000000,631,1,1,1,10,1),(2250,'09:00:00',24660000000000,631,1,1,1,10,1),(2251,'10:30:00',24660000000000,631,1,1,1,10,1),(2252,'12:00:00',24660000000000,631,1,1,1,10,1),(2253,'13:30:00',24660000000000,631,1,1,1,10,1),(2254,'15:00:00',24660000000000,631,1,1,1,10,1),(2255,'16:30:00',24660000000000,631,1,1,1,10,1),(2256,'18:00:00',24660000000000,631,1,1,1,10,1),(2257,'19:30:00',24660000000000,631,1,1,1,10,1),(2258,'21:00:00',24660000000000,631,1,1,1,10,1),(2259,'22:30:00',24660000000000,631,1,1,1,10,1),(2260,'07:00:00',111780000000000,632,1,1,1,3,1),(2261,'22:00:00',111780000000000,632,1,1,1,3,1),(2262,'07:30:00',62580000000000,633,1,1,1,2,1),(2263,'12:00:00',62580000000000,633,1,1,1,2,1),(2264,'16:30:00',62580000000000,633,1,1,1,3,1),(2265,'21:00:00',62580000000000,633,1,1,1,3,1),(2266,'07:30:00',85440000000000,634,1,1,1,3,1),(2267,'13:00:00',85440000000000,634,1,1,1,3,1),(2268,'18:30:00',85440000000000,634,1,1,1,3,1),(2269,'24:00:00',85440000000000,634,1,1,1,3,1),(2270,'07:30:00',29100000000000,635,1,1,1,10,1),(2271,'10:00:00',29100000000000,635,1,1,1,10,1),(2272,'12:30:00',29100000000000,635,1,1,1,10,1),(2273,'15:00:00',29100000000000,635,1,1,1,10,1),(2274,'17:30:00',29100000000000,635,1,1,1,10,1),(2275,'20:00:00',29100000000000,635,1,1,1,10,1),(2276,'22:30:00',29100000000000,635,1,1,1,10,1),(2277,'07:30:00',72360000000000,636,1,1,1,10,1),(2278,'12:00:00',72360000000000,636,1,1,1,10,1),(2279,'16:30:00',72360000000000,636,1,1,1,11,1),(2280,'21:00:00',72360000000000,636,1,1,1,10,1),(2281,'07:30:00',69900000000000,637,1,1,1,3,1),(2282,'12:00:00',69900000000000,637,1,1,1,3,1),(2283,'16:30:00',69900000000000,637,1,1,1,2,1),(2284,'21:00:00',69900000000000,637,1,1,1,2,1),(2285,'07:30:00',13260000000000,638,1,1,1,10,1),(2286,'09:00:00',13260000000000,638,1,1,1,10,1),(2287,'10:30:00',13260000000000,638,1,1,1,10,1),(2288,'12:00:00',13260000000000,638,1,1,1,10,1),(2289,'13:30:00',13260000000000,638,1,1,1,10,1),(2290,'15:00:00',13260000000000,638,1,1,1,10,1),(2291,'16:30:00',13260000000000,638,1,1,1,10,1),(2292,'18:00:00',13260000000000,638,1,1,1,10,1),(2293,'19:30:00',13260000000000,638,1,1,1,10,1),(2294,'21:00:00',13260000000000,638,1,1,1,10,1),(2295,'22:30:00',13260000000000,638,1,1,1,10,1),(2296,'07:00:00',99660000000000,639,1,1,1,3,1),(2297,'22:00:00',99660000000000,639,1,1,1,3,1),(2298,'07:00:00',144180000000000,640,1,1,1,3,1),(2299,'22:00:00',144180000000000,640,1,1,1,3,1),(2300,'07:30:00',75900000000000,641,1,1,1,3,1),(2301,'13:00:00',75900000000000,641,1,1,1,3,1),(2302,'18:30:00',75900000000000,641,1,1,1,3,1),(2303,'24:00:00',75900000000000,641,1,1,1,3,1),(2304,'12:00:00',181920000000000,642,1,0,1,3,1),(2305,'07:00:00',48060000000000,643,1,1,1,10,1),(2306,'11:00:00',48060000000000,643,1,1,1,10,1),(2307,'15:00:00',48060000000000,643,1,1,1,10,1),(2308,'19:00:00',48060000000000,643,1,1,1,11,1),(2309,'07:00:00',138060000000000,644,1,1,1,3,1),(2310,'22:00:00',138060000000000,644,1,1,1,3,1),(2311,'07:00:00',137340000000000,645,1,1,1,3,1),(2312,'22:00:00',137340000000000,645,1,1,1,3,1),(2313,'07:00:00',100440000000000,646,1,1,1,3,1),(2314,'22:00:00',100440000000000,646,1,1,1,3,1),(2315,'07:30:00',74520000000000,647,1,1,1,2,1),(2316,'12:00:00',74520000000000,647,1,1,1,2,1),(2317,'16:30:00',74520000000000,647,1,1,1,3,1),(2318,'21:00:00',74520000000000,647,1,1,1,2,1),(2319,'07:00:00',119760000000000,648,1,1,1,3,1),(2320,'22:00:00',119760000000000,648,1,1,1,3,1),(2321,'07:00:00',145680000000000,649,1,1,1,3,1),(2322,'22:00:00',145680000000000,649,1,1,1,3,1),(2323,'07:00:00',130200000000000,650,1,1,1,3,1),(2324,'22:00:00',130200000000000,650,1,1,1,3,1),(2325,'07:00:00',94620000000000,651,1,1,1,3,1),(2326,'22:00:00',94620000000000,651,1,1,1,3,1),(2327,'07:30:00',45540000000000,652,1,1,1,1,1),(2328,'10:00:00',45540000000000,652,1,1,1,1,1),(2329,'12:30:00',45540000000000,652,1,1,1,1,1),(2330,'15:00:00',45540000000000,652,1,1,1,2,1),(2331,'17:30:00',45540000000000,652,1,1,1,1,1),(2332,'20:00:00',45540000000000,652,1,1,1,1,1),(2333,'22:30:00',45540000000000,652,1,1,1,1,1),(2334,'07:30:00',44460000000000,653,1,1,1,2,1),(2335,'10:00:00',44460000000000,653,1,1,1,1,1),(2336,'12:30:00',44460000000000,653,1,1,1,2,1),(2337,'15:00:00',44460000000000,653,1,1,1,1,1),(2338,'17:30:00',44460000000000,653,1,1,1,1,1),(2339,'20:00:00',44460000000000,653,1,1,1,2,1),(2340,'22:30:00',44460000000000,653,1,1,1,2,1),(2341,'12:00:00',177180000000000,654,1,0,1,3,1),(2342,'07:30:00',19260000000000,655,1,1,1,10,1),(2343,'09:00:00',19260000000000,655,1,1,1,10,1),(2344,'10:30:00',19260000000000,655,1,1,1,10,1),(2345,'12:00:00',19260000000000,655,1,1,1,10,1),(2346,'13:30:00',19260000000000,655,1,1,1,10,1),(2347,'15:00:00',19260000000000,655,1,1,1,10,1),(2348,'16:30:00',19260000000000,655,1,1,1,10,1),(2349,'18:00:00',19260000000000,655,1,1,1,10,1),(2350,'19:30:00',19260000000000,655,1,1,1,10,1),(2351,'21:00:00',19260000000000,655,1,1,1,10,1),(2352,'22:30:00',19260000000000,655,1,1,1,10,1),(2353,'07:00:00',122880000000000,656,1,1,1,3,1),(2354,'22:00:00',122880000000000,656,1,1,1,3,1),(2355,'07:00:00',90600000000000,657,1,1,1,3,1),(2356,'22:00:00',90600000000000,657,1,1,1,3,1),(2357,'07:00:00',112740000000000,658,1,1,1,3,1),(2358,'22:00:00',112740000000000,658,1,1,1,3,1),(2359,'07:30:00',14160000000000,659,1,1,1,10,1),(2360,'09:00:00',14160000000000,659,1,1,1,10,1),(2361,'10:30:00',14160000000000,659,1,1,1,10,1),(2362,'12:00:00',14160000000000,659,1,1,1,10,1),(2363,'13:30:00',14160000000000,659,1,1,1,10,1),(2364,'15:00:00',14160000000000,659,1,1,1,10,1),(2365,'16:30:00',14160000000000,659,1,1,1,10,1),(2366,'18:00:00',14160000000000,659,1,1,1,10,1),(2367,'19:30:00',14160000000000,659,1,1,1,10,1),(2368,'21:00:00',14160000000000,659,1,1,1,10,1),(2369,'22:30:00',14160000000000,659,1,1,1,10,1),(2370,'07:00:00',47520000000000,660,1,1,1,10,1),(2371,'11:00:00',47520000000000,660,1,1,1,11,1),(2372,'15:00:00',47520000000000,660,1,1,1,10,1),(2373,'19:00:00',47520000000000,660,1,1,1,11,1),(2374,'07:00:00',98400000000000,661,1,1,1,3,1),(2375,'22:00:00',98400000000000,661,1,1,1,3,1),(2376,'07:30:00',33360000000000,662,1,1,1,10,1),(2377,'10:00:00',33360000000000,662,1,1,1,10,1),(2378,'12:30:00',33360000000000,662,1,1,1,10,1),(2379,'15:00:00',33360000000000,662,1,1,1,10,1),(2380,'17:30:00',33360000000000,662,1,1,1,10,1),(2381,'20:00:00',33360000000000,662,1,1,1,10,1),(2382,'22:30:00',33360000000000,662,1,1,1,10,1),(2383,'07:00:00',124740000000000,663,1,1,1,3,1),(2384,'22:00:00',124740000000000,663,1,1,1,3,1),(2385,'07:00:00',154080000000000,664,1,1,1,3,1),(2386,'22:00:00',154080000000000,664,1,1,1,3,1),(2387,'07:30:00',84420000000000,665,1,1,1,3,1),(2388,'13:00:00',84420000000000,665,1,1,1,3,1),(2389,'18:30:00',84420000000000,665,1,1,1,3,1),(2390,'24:00:00',84420000000000,665,1,1,1,3,1),(2391,'12:00:00',204180000000000,666,1,0,1,3,1),(2392,'07:30:00',20640000000000,667,1,1,1,10,1),(2393,'09:00:00',20640000000000,667,1,1,1,10,1),(2394,'10:30:00',20640000000000,667,1,1,1,10,1),(2395,'12:00:00',20640000000000,667,1,1,1,10,1),(2396,'13:30:00',20640000000000,667,1,1,1,10,1),(2397,'15:00:00',20640000000000,667,1,1,1,10,1),(2398,'16:30:00',20640000000000,667,1,1,1,10,1),(2399,'18:00:00',20640000000000,667,1,1,1,10,1),(2400,'19:30:00',20640000000000,667,1,1,1,10,1),(2401,'21:00:00',20640000000000,667,1,1,1,10,1),(2402,'22:30:00',20640000000000,667,1,1,1,10,1),(2403,'07:00:00',124740000000000,668,1,1,1,3,1),(2404,'22:00:00',124740000000000,668,1,1,1,3,1),(2405,'07:00:00',140640000000000,669,1,1,1,3,1),(2406,'22:00:00',140640000000000,669,1,1,1,3,1),(2407,'07:00:00',111480000000000,670,1,1,1,3,1),(2408,'22:00:00',111480000000000,670,1,1,1,3,1),(2409,'07:30:00',45300000000000,671,1,1,1,1,1),(2410,'10:00:00',45300000000000,671,1,1,1,1,1),(2411,'12:30:00',45300000000000,671,1,1,1,1,1),(2412,'15:00:00',45300000000000,671,1,1,1,1,1),(2413,'17:30:00',45300000000000,671,1,1,1,2,1),(2414,'20:00:00',45300000000000,671,1,1,1,2,1),(2415,'22:30:00',45300000000000,671,1,1,1,2,1),(2416,'07:00:00',100380000000000,672,1,1,1,3,1),(2417,'22:00:00',100380000000000,672,1,1,1,3,1),(2418,'07:00:00',59580000000000,673,1,1,1,2,1),(2419,'11:00:00',59580000000000,673,1,1,1,3,1),(2420,'15:00:00',59580000000000,673,1,1,1,3,1),(2421,'19:00:00',59580000000000,673,1,1,1,2,1),(2422,'07:30:00',20160000000000,674,1,1,1,2,1),(2423,'09:00:00',20160000000000,674,1,1,1,2,1),(2424,'10:30:00',20160000000000,674,1,1,1,1,1),(2425,'12:00:00',20160000000000,674,1,1,1,1,1),(2426,'13:30:00',20160000000000,674,1,1,1,5,1),(2427,'15:00:00',20160000000000,674,1,1,1,1,1),(2428,'16:30:00',20160000000000,674,1,1,1,2,1),(2429,'18:00:00',20160000000000,674,1,1,1,1,1),(2430,'19:30:00',20160000000000,674,1,1,1,1,1),(2431,'21:00:00',20160000000000,674,1,1,1,5,1),(2432,'22:30:00',20160000000000,674,1,1,1,5,1),(2433,'07:00:00',114960000000000,675,1,1,1,3,1),(2434,'22:00:00',114960000000000,675,1,1,1,3,1),(2435,'07:30:00',30360000000000,676,1,1,1,2,1),(2436,'10:00:00',30360000000000,676,1,1,1,1,1),(2437,'12:30:00',30360000000000,676,1,1,1,2,1),(2438,'15:00:00',30360000000000,676,1,1,1,2,1),(2439,'17:30:00',30360000000000,676,1,1,1,2,1),(2440,'20:00:00',30360000000000,676,1,1,1,2,1),(2441,'22:30:00',30360000000000,676,1,1,1,1,1),(2442,'07:00:00',106440000000000,677,1,1,1,3,1),(2443,'22:00:00',106440000000000,677,1,1,1,3,1),(2444,'07:30:00',81840000000000,678,1,1,1,11,1),(2445,'13:00:00',81840000000000,678,1,1,1,11,1),(2446,'18:30:00',81840000000000,678,1,1,1,10,1),(2447,'24:00:00',81840000000000,678,1,1,1,10,1),(2448,'07:30:00',77580000000000,679,1,1,1,3,1),(2449,'13:00:00',77580000000000,679,1,1,1,3,1),(2450,'18:30:00',77580000000000,679,1,1,1,3,1),(2451,'24:00:00',77580000000000,679,1,1,1,3,1),(2452,'07:30:00',35460000000000,680,1,1,1,1,1),(2453,'10:00:00',35460000000000,680,1,1,1,2,1),(2454,'12:30:00',35460000000000,680,1,1,1,1,1),(2455,'15:00:00',35460000000000,680,1,1,1,2,1),(2456,'17:30:00',35460000000000,680,1,1,1,2,1),(2457,'20:00:00',35460000000000,680,1,1,1,1,1),(2458,'22:30:00',35460000000000,680,1,1,1,1,1),(2459,'07:30:00',42420000000000,681,1,1,1,1,1),(2460,'10:00:00',42420000000000,681,1,1,1,1,1),(2461,'12:30:00',42420000000000,681,1,1,1,1,1),(2462,'15:00:00',42420000000000,681,1,1,1,1,1),(2463,'17:30:00',42420000000000,681,1,1,1,2,1),(2464,'20:00:00',42420000000000,681,1,1,1,2,1),(2465,'22:30:00',42420000000000,681,1,1,1,2,1),(2466,'07:30:00',76740000000000,682,1,1,1,11,1),(2467,'13:00:00',76740000000000,682,1,1,1,11,1),(2468,'18:30:00',76740000000000,682,1,1,1,10,1),(2469,'24:00:00',76740000000000,682,1,1,1,11,1),(2470,'07:30:00',84240000000000,683,1,1,1,10,1),(2471,'13:00:00',84240000000000,683,1,1,1,11,1),(2472,'18:30:00',84240000000000,683,1,1,1,11,1),(2473,'24:00:00',84240000000000,683,1,1,1,11,1),(2474,'07:30:00',67200000000000,684,1,1,1,2,1),(2475,'12:00:00',67200000000000,684,1,1,1,2,1),(2476,'16:30:00',67200000000000,684,1,1,1,2,1),(2477,'21:00:00',67200000000000,684,1,1,1,2,1),(2478,'07:30:00',77400000000000,685,1,1,1,11,1),(2479,'13:00:00',77400000000000,685,1,1,1,11,1),(2480,'18:30:00',77400000000000,685,1,1,1,11,1),(2481,'24:00:00',77400000000000,685,1,1,1,11,1),(2482,'07:00:00',50700000000000,686,1,1,1,3,1),(2483,'11:00:00',50700000000000,686,1,1,1,2,1),(2484,'15:00:00',50700000000000,686,1,1,1,2,1),(2485,'19:00:00',50700000000000,686,1,1,1,2,1),(2486,'07:30:00',79620000000000,687,1,1,1,3,1),(2487,'13:00:00',79620000000000,687,1,1,1,3,1),(2488,'18:30:00',79620000000000,687,1,1,1,3,1),(2489,'24:00:00',79620000000000,687,1,1,1,3,1),(2490,'07:30:00',36720000000000,688,1,1,1,1,1),(2491,'10:00:00',36720000000000,688,1,1,1,1,1),(2492,'12:30:00',36720000000000,688,1,1,1,1,1),(2493,'15:00:00',36720000000000,688,1,1,1,1,1),(2494,'17:30:00',36720000000000,688,1,1,1,2,1),(2495,'20:00:00',36720000000000,688,1,1,1,1,1),(2496,'22:30:00',36720000000000,688,1,1,1,1,1),(2497,'07:00:00',154800000000000,689,1,1,1,3,1),(2498,'22:00:00',154800000000000,689,1,1,1,3,1),(2499,'07:30:00',78300000000000,690,1,1,1,11,1),(2500,'13:00:00',78300000000000,690,1,1,1,11,1),(2501,'18:30:00',78300000000000,690,1,1,1,11,1),(2502,'24:00:00',78300000000000,690,1,1,1,11,1),(2503,'07:00:00',111540000000000,691,1,1,1,3,1),(2504,'22:00:00',111540000000000,691,1,1,1,3,1),(2505,'07:00:00',95340000000000,692,1,1,1,3,1),(2506,'22:00:00',95340000000000,692,1,1,1,3,1),(2507,'07:30:00',70620000000000,693,1,1,1,2,1),(2508,'12:00:00',70620000000000,693,1,1,1,2,1),(2509,'16:30:00',70620000000000,693,1,1,1,2,1),(2510,'21:00:00',70620000000000,693,1,1,1,2,1),(2511,'07:30:00',75180000000000,694,1,1,1,3,1),(2512,'12:00:00',75180000000000,694,1,1,1,2,1),(2513,'16:30:00',75180000000000,694,1,1,1,3,1),(2514,'21:00:00',75180000000000,694,1,1,1,3,1),(2515,'07:30:00',70920000000000,695,1,1,1,2,1),(2516,'12:00:00',70920000000000,695,1,1,1,2,1),(2517,'16:30:00',70920000000000,695,1,1,1,2,1),(2518,'21:00:00',70920000000000,695,1,1,1,3,1),(2519,'07:30:00',25380000000000,696,1,1,1,2,1),(2520,'10:00:00',25380000000000,696,1,1,1,2,1),(2521,'12:30:00',25380000000000,696,1,1,1,1,1),(2522,'15:00:00',25380000000000,696,1,1,1,1,1),(2523,'17:30:00',25380000000000,696,1,1,1,1,1),(2524,'20:00:00',25380000000000,696,1,1,1,1,1),(2525,'22:30:00',25380000000000,696,1,1,1,1,1),(2526,'07:00:00',160140000000000,697,1,1,1,3,1),(2527,'22:00:00',160140000000000,697,1,1,1,3,1),(2528,'07:30:00',75540000000000,698,1,1,1,3,1),(2529,'12:00:00',75540000000000,698,1,1,1,2,1),(2530,'16:30:00',75540000000000,698,1,1,1,2,1),(2531,'21:00:00',75540000000000,698,1,1,1,3,1),(2532,'07:00:00',106740000000000,699,1,1,1,3,1),(2533,'22:00:00',106740000000000,699,1,1,1,3,1),(2534,'07:00:00',127080000000000,700,1,1,1,11,1),(2535,'22:00:00',127080000000000,700,1,1,1,11,1),(2536,'07:00:00',50640000000000,701,1,1,1,2,1),(2537,'11:00:00',50640000000000,701,1,1,1,3,1),(2538,'15:00:00',50640000000000,701,1,1,1,2,1),(2539,'19:00:00',50640000000000,701,1,1,1,2,1),(2540,'07:30:00',73680000000000,702,1,1,1,2,1),(2541,'12:00:00',73680000000000,702,1,1,1,3,1),(2542,'16:30:00',73680000000000,702,1,1,1,3,1),(2543,'21:00:00',73680000000000,702,1,1,1,3,1),(2544,'07:00:00',55020000000000,703,1,1,1,3,1),(2545,'11:00:00',55020000000000,703,1,1,1,2,1),(2546,'15:00:00',55020000000000,703,1,1,1,3,1),(2547,'19:00:00',55020000000000,703,1,1,1,3,1),(2548,'07:00:00',121920000000000,704,1,1,1,11,1),(2549,'22:00:00',121920000000000,704,1,1,1,11,1),(2550,'07:00:00',113040000000000,705,1,1,1,11,1),(2551,'22:00:00',113040000000000,705,1,1,1,11,1),(2552,'07:00:00',100140000000000,706,1,1,1,3,1),(2553,'22:00:00',100140000000000,706,1,1,1,3,1),(2554,'07:00:00',125220000000000,707,1,1,1,11,1),(2555,'22:00:00',125220000000000,707,1,1,1,11,1),(2556,'07:30:00',44700000000000,708,1,1,1,2,1),(2557,'10:00:00',44700000000000,708,1,1,1,2,1),(2558,'12:30:00',44700000000000,708,1,1,1,2,1),(2559,'15:00:00',44700000000000,708,1,1,1,2,1),(2560,'17:30:00',44700000000000,708,1,1,1,2,1),(2561,'20:00:00',44700000000000,708,1,1,1,2,1),(2562,'22:30:00',44700000000000,708,1,1,1,1,1),(2563,'07:30:00',34920000000000,709,1,1,1,2,1),(2564,'10:00:00',34920000000000,709,1,1,1,2,1),(2565,'12:30:00',34920000000000,709,1,1,1,2,1),(2566,'15:00:00',34920000000000,709,1,1,1,2,1),(2567,'17:30:00',34920000000000,709,1,1,1,2,1),(2568,'20:00:00',34920000000000,709,1,1,1,1,1),(2569,'22:30:00',34920000000000,709,1,1,1,1,1),(2570,'07:00:00',58020000000000,710,1,1,1,2,1),(2571,'11:00:00',58020000000000,710,1,1,1,2,1),(2572,'15:00:00',58020000000000,710,1,1,1,2,1),(2573,'19:00:00',58020000000000,710,1,1,1,3,1),(2574,'07:00:00',170760000000000,711,1,1,1,3,1),(2575,'22:00:00',170760000000000,711,1,1,1,3,1),(2576,'07:00:00',123480000000000,712,1,1,1,11,1),(2577,'22:00:00',123480000000000,712,1,1,1,11,1),(2578,'07:00:00',130500000000000,713,1,1,1,3,1),(2579,'22:00:00',130500000000000,713,1,1,1,3,1),(2580,'07:30:00',62220000000000,714,1,1,1,3,1),(2581,'12:00:00',62220000000000,714,1,1,1,3,1),(2582,'16:30:00',62220000000000,714,1,1,1,2,1),(2583,'21:00:00',62220000000000,714,1,1,1,2,1),(2584,'07:00:00',52320000000000,715,1,1,1,2,1),(2585,'11:00:00',52320000000000,715,1,1,1,2,1),(2586,'15:00:00',52320000000000,715,1,1,1,2,1),(2587,'19:00:00',52320000000000,715,1,1,1,2,1),(2588,'07:00:00',153360000000000,716,1,1,1,3,1),(2589,'22:00:00',153360000000000,716,1,1,1,3,1),(2590,'07:00:00',90120000000000,717,1,1,1,3,1),(2591,'22:00:00',90120000000000,717,1,1,1,3,1),(2592,'12:00:00',196740000000000,718,1,0,1,3,1),(2593,'07:00:00',101640000000000,719,1,1,1,3,1),(2594,'22:00:00',101640000000000,719,1,1,1,3,1),(2595,'12:00:00',189300000000000,720,1,0,1,3,1),(2596,'07:00:00',163560000000000,721,1,1,1,11,1),(2597,'22:00:00',163560000000000,721,1,1,1,11,1),(2598,'07:30:00',23040000000000,722,1,1,1,1,1),(2599,'09:00:00',23040000000000,722,1,1,1,1,1),(2600,'10:30:00',23040000000000,722,1,1,1,1,1),(2601,'12:00:00',23040000000000,722,1,1,1,2,1),(2602,'13:30:00',23040000000000,722,1,1,1,2,1),(2603,'15:00:00',23040000000000,722,1,1,1,6,1),(2604,'16:30:00',23040000000000,722,1,1,1,2,1),(2605,'18:00:00',23040000000000,722,1,1,1,2,1),(2606,'19:30:00',23040000000000,722,1,1,1,2,1),(2607,'21:00:00',23040000000000,722,1,1,1,2,1),(2608,'22:30:00',23040000000000,722,1,1,1,2,1),(2609,'07:00:00',134640000000000,723,1,1,1,3,1),(2610,'22:00:00',134640000000000,723,1,1,1,3,1),(2611,'07:00:00',119760000000000,724,1,1,1,3,1),(2612,'22:00:00',119760000000000,724,1,1,1,3,1),(2613,'07:00:00',158400000000000,725,1,1,1,11,1),(2614,'22:00:00',158400000000000,725,1,1,1,11,1),(2615,'07:00:00',105120000000000,726,1,1,1,11,1),(2616,'22:00:00',105120000000000,726,1,1,1,11,1),(2617,'07:00:00',166440000000000,727,1,1,1,3,1),(2618,'22:00:00',166440000000000,727,1,1,1,3,1),(2619,'07:00:00',162420000000000,728,1,1,1,11,1),(2620,'22:00:00',162420000000000,728,1,1,1,11,1),(2621,'07:00:00',110400000000000,729,1,1,1,3,1),(2622,'22:00:00',110400000000000,729,1,1,1,3,1),(2623,'07:00:00',56700000000000,730,1,1,1,2,1),(2624,'11:00:00',56700000000000,730,1,1,1,2,1),(2625,'15:00:00',56700000000000,730,1,1,1,2,1),(2626,'19:00:00',56700000000000,730,1,1,1,2,1),(2627,'07:30:00',61800000000000,731,1,1,1,3,1),(2628,'12:00:00',61800000000000,731,1,1,1,2,1),(2629,'16:30:00',61800000000000,731,1,1,1,3,1),(2630,'21:00:00',61800000000000,731,1,1,1,3,1),(2631,'12:00:00',253080000000000,732,1,0,1,3,1),(2632,'07:00:00',134340000000000,733,1,1,1,11,1),(2633,'22:00:00',134340000000000,733,1,1,1,11,1),(2634,'07:30:00',64020000000000,734,1,1,1,2,1),(2635,'12:00:00',64020000000000,734,1,1,1,2,1),(2636,'16:30:00',64020000000000,734,1,1,1,3,1),(2637,'21:00:00',64020000000000,734,1,1,1,2,1),(2638,'07:00:00',5160000000000,735,1,1,1,8,1),(2639,'08:00:00',5160000000000,735,1,1,1,8,1),(2640,'09:00:00',5160000000000,735,1,1,1,8,1),(2641,'10:00:00',5160000000000,735,1,1,1,8,1),(2642,'11:00:00',5160000000000,735,1,1,1,8,1),(2643,'12:00:00',5160000000000,735,1,1,1,8,1),(2644,'13:00:00',5160000000000,735,1,1,1,8,1),(2645,'14:00:00',5160000000000,735,1,1,1,8,1),(2646,'15:00:00',5160000000000,735,1,1,1,8,1),(2647,'16:00:00',5160000000000,735,1,1,1,8,1),(2648,'17:00:00',5160000000000,735,1,1,1,8,1),(2649,'18:00:00',5160000000000,735,1,1,1,8,1),(2650,'19:00:00',5160000000000,735,1,1,1,8,1),(2651,'20:00:00',5160000000000,735,1,1,1,8,1),(2652,'21:00:00',5160000000000,735,1,1,1,8,1),(2653,'22:00:00',5160000000000,735,1,1,1,8,1),(2654,'07:30:00',39960000000000,736,1,1,1,2,1),(2655,'10:00:00',39960000000000,736,1,1,1,2,1),(2656,'12:30:00',39960000000000,736,1,1,1,2,1),(2657,'15:00:00',39960000000000,736,1,1,1,1,1),(2658,'17:30:00',39960000000000,736,1,1,1,2,1),(2659,'20:00:00',39960000000000,736,1,1,1,2,1),(2660,'22:30:00',39960000000000,736,1,1,1,2,1),(2661,'07:00:00',60960000000000,737,1,1,1,2,1),(2662,'11:00:00',60960000000000,737,1,1,1,2,1),(2663,'15:00:00',60960000000000,737,1,1,1,2,1),(2664,'19:00:00',60960000000000,737,1,1,1,2,1),(2665,'07:00:00',148980000000000,738,1,1,1,3,1),(2666,'22:00:00',148980000000000,738,1,1,1,3,1),(2667,'07:30:00',85800000000000,739,1,1,1,3,1),(2668,'13:00:00',85800000000000,739,1,1,1,3,1),(2669,'18:30:00',85800000000000,739,1,1,1,3,1),(2670,'24:00:00',85800000000000,739,1,1,1,3,1),(2671,'07:00:00',59880000000000,740,1,1,1,2,1),(2672,'11:00:00',59880000000000,740,1,1,1,2,1),(2673,'15:00:00',59880000000000,740,1,1,1,3,1),(2674,'19:00:00',59880000000000,740,1,1,1,2,1),(2675,'07:00:00',133200000000000,741,1,1,1,11,1),(2676,'22:00:00',133200000000000,741,1,1,1,11,1),(2677,'07:00:00',130080000000000,742,1,1,1,3,1),(2678,'22:00:00',130080000000000,742,1,1,1,3,1),(2679,'07:30:00',41160000000000,743,1,1,1,2,1),(2680,'10:00:00',41160000000000,743,1,1,1,1,1),(2681,'12:30:00',41160000000000,743,1,1,1,1,1),(2682,'15:00:00',41160000000000,743,1,1,1,2,1),(2683,'17:30:00',41160000000000,743,1,1,1,1,1),(2684,'20:00:00',41160000000000,743,1,1,1,1,1),(2685,'22:30:00',41160000000000,743,1,1,1,1,1),(2686,'07:30:00',20280000000000,744,1,1,1,5,1),(2687,'09:00:00',20280000000000,744,1,1,1,2,1),(2688,'10:30:00',20280000000000,744,1,1,1,2,1),(2689,'12:00:00',20280000000000,744,1,1,1,2,1),(2690,'13:30:00',20280000000000,744,1,1,1,1,1),(2691,'15:00:00',20280000000000,744,1,1,1,6,1),(2692,'16:30:00',20280000000000,744,1,1,1,2,1),(2693,'18:00:00',20280000000000,744,1,1,1,1,1),(2694,'19:30:00',20280000000000,744,1,1,1,2,1),(2695,'21:00:00',20280000000000,744,1,1,1,2,1),(2696,'22:30:00',20280000000000,744,1,1,1,1,1),(2697,'07:00:00',128040000000000,745,1,1,1,11,1),(2698,'22:00:00',128040000000000,745,1,1,1,11,1),(2699,'07:00:00',142380000000000,746,1,1,1,11,1),(2700,'22:00:00',142380000000000,746,1,1,1,11,1),(2701,'07:00:00',55020000000000,747,1,1,1,2,1),(2702,'11:00:00',55020000000000,747,1,1,1,2,1),(2703,'15:00:00',55020000000000,747,1,1,1,3,1),(2704,'19:00:00',55020000000000,747,1,1,1,3,1),(2705,'07:00:00',116940000000000,748,1,1,1,11,1),(2706,'22:00:00',116940000000000,748,1,1,1,11,1),(2707,'07:30:00',29340000000000,749,1,1,1,2,1),(2708,'10:00:00',29340000000000,749,1,1,1,1,1),(2709,'12:30:00',29340000000000,749,1,1,1,2,1),(2710,'15:00:00',29340000000000,749,1,1,1,2,1),(2711,'17:30:00',29340000000000,749,1,1,1,2,1),(2712,'20:00:00',29340000000000,749,1,1,1,1,1),(2713,'22:30:00',29340000000000,749,1,1,1,1,1),(2714,'07:00:00',100080000000000,750,1,1,1,3,1),(2715,'22:00:00',100080000000000,750,1,1,1,3,1),(2716,'07:00:00',92040000000000,751,1,1,1,3,1),(2717,'22:00:00',92040000000000,751,1,1,1,3,1),(2718,'07:00:00',100260000000000,752,1,1,1,3,1),(2719,'22:00:00',100260000000000,752,1,1,1,3,1),(2720,'07:00:00',133860000000000,753,1,1,1,11,1),(2721,'22:00:00',133860000000000,753,1,1,1,11,1),(2722,'07:00:00',164040000000000,754,1,1,1,3,1),(2723,'22:00:00',164040000000000,754,1,1,1,3,1),(2724,'07:00:00',147780000000000,755,1,1,1,3,1),(2725,'22:00:00',147780000000000,755,1,1,1,3,1),(2726,'07:00:00',119520000000000,756,1,1,1,3,1),(2727,'22:00:00',119520000000000,756,1,1,1,3,1),(2728,'07:00:00',135000000000000,757,1,1,1,3,1),(2729,'22:00:00',135000000000000,757,1,1,1,3,1),(2730,'07:00:00',50400000000000,758,1,1,1,2,1),(2731,'11:00:00',50400000000000,758,1,1,1,2,1),(2732,'15:00:00',50400000000000,758,1,1,1,2,1),(2733,'19:00:00',50400000000000,758,1,1,1,2,1),(2734,'07:00:00',96960000000000,759,1,1,1,3,1),(2735,'22:00:00',96960000000000,759,1,1,1,3,1),(2736,'07:00:00',102000000000000,760,1,1,1,11,1),(2737,'22:00:00',102000000000000,760,1,1,1,11,1),(2738,'07:30:00',70800000000000,761,1,1,1,2,1),(2739,'12:00:00',70800000000000,761,1,1,1,2,1),(2740,'16:30:00',70800000000000,761,1,1,1,2,1),(2741,'21:00:00',70800000000000,761,1,1,1,3,1),(2742,'07:30:00',45180000000000,762,1,1,1,1,1),(2743,'10:00:00',45180000000000,762,1,1,1,2,1),(2744,'12:30:00',45180000000000,762,1,1,1,2,1),(2745,'15:00:00',45180000000000,762,1,1,1,2,1),(2746,'17:30:00',45180000000000,762,1,1,1,1,1),(2747,'20:00:00',45180000000000,762,1,1,1,2,1),(2748,'22:30:00',45180000000000,762,1,1,1,2,1),(2749,'07:30:00',44040000000000,763,1,1,1,1,1),(2750,'10:00:00',44040000000000,763,1,1,1,2,1),(2751,'12:30:00',44040000000000,763,1,1,1,1,1),(2752,'15:00:00',44040000000000,763,1,1,1,1,1),(2753,'17:30:00',44040000000000,763,1,1,1,2,1),(2754,'20:00:00',44040000000000,763,1,1,1,2,1),(2755,'22:30:00',44040000000000,763,1,1,1,1,1),(2756,'07:00:00',96840000000000,764,1,1,1,11,1),(2757,'22:00:00',96840000000000,764,1,1,1,11,1),(2758,'07:00:00',87900000000000,765,1,1,1,11,1),(2759,'22:00:00',87900000000000,765,1,1,1,11,1),(2760,'07:30:00',76980000000000,766,1,1,1,2,1),(2761,'13:00:00',76980000000000,766,1,1,1,2,1),(2762,'18:30:00',76980000000000,766,1,1,1,3,1),(2763,'24:00:00',76980000000000,766,1,1,1,3,1),(2764,'07:00:00',100620000000000,767,1,1,1,11,1),(2765,'22:00:00',100620000000000,767,1,1,1,11,1),(2766,'07:30:00',37860000000000,768,1,1,1,2,1),(2767,'10:00:00',37860000000000,768,1,1,1,2,1),(2768,'12:30:00',37860000000000,768,1,1,1,1,1),(2769,'15:00:00',37860000000000,768,1,1,1,2,1),(2770,'17:30:00',37860000000000,768,1,1,1,2,1),(2771,'20:00:00',37860000000000,768,1,1,1,1,1),(2772,'22:30:00',37860000000000,768,1,1,1,1,1),(2773,'07:00:00',59760000000000,769,1,1,1,3,1),(2774,'11:00:00',59760000000000,769,1,1,1,2,1),(2775,'15:00:00',59760000000000,769,1,1,1,2,1),(2776,'19:00:00',59760000000000,769,1,1,1,2,1),(2777,'07:30:00',33240000000000,770,1,1,1,2,1),(2778,'10:00:00',33240000000000,770,1,1,1,2,1),(2779,'12:30:00',33240000000000,770,1,1,1,1,1),(2780,'15:00:00',33240000000000,770,1,1,1,2,1),(2781,'17:30:00',33240000000000,770,1,1,1,2,1),(2782,'20:00:00',33240000000000,770,1,1,1,2,1),(2783,'22:30:00',33240000000000,770,1,1,1,1,1),(2784,'07:00:00',160860000000000,771,1,1,1,3,1),(2785,'22:00:00',160860000000000,771,1,1,1,3,1),(2786,'07:00:00',98400000000000,772,1,1,1,11,1),(2787,'22:00:00',98400000000000,772,1,1,1,11,1),(2788,'07:00:00',105240000000000,773,1,1,1,3,1),(2789,'22:00:00',105240000000000,773,1,1,1,3,1),(2790,'07:00:00',88560000000000,774,1,1,1,3,1),(2791,'22:00:00',88560000000000,774,1,1,1,3,1),(2792,'07:00:00',59880000000000,775,1,1,1,2,1),(2793,'11:00:00',59880000000000,775,1,1,1,2,1),(2794,'15:00:00',59880000000000,775,1,1,1,2,1),(2795,'19:00:00',59880000000000,775,1,1,1,2,1),(2796,'07:30:00',84780000000000,776,1,1,1,3,1),(2797,'13:00:00',84780000000000,776,1,1,1,3,1),(2798,'18:30:00',84780000000000,776,1,1,1,3,1),(2799,'24:00:00',84780000000000,776,1,1,1,3,1),(2800,'12:00:00',217860000000000,777,1,0,1,3,1),(2801,'07:30:00',45240000000000,778,1,1,1,10,1),(2802,'10:00:00',45240000000000,778,1,1,1,10,1),(2803,'12:30:00',45240000000000,778,1,1,1,10,1),(2804,'15:00:00',45240000000000,778,1,1,1,10,1),(2805,'17:30:00',45240000000000,778,1,1,1,10,1),(2806,'20:00:00',45240000000000,778,1,1,1,10,1),(2807,'22:30:00',45240000000000,778,1,1,1,10,1),(2808,'12:00:00',173520000000000,779,1,0,1,3,1),(2809,'07:00:00',130980000000000,780,1,1,1,3,1),(2810,'22:00:00',130980000000000,780,1,1,1,3,1),(2811,'07:00:00',153060000000000,781,1,1,1,3,1),(2812,'22:00:00',153060000000000,781,1,1,1,3,1),(2813,'07:30:00',40080000000000,782,1,1,1,10,1),(2814,'10:00:00',40080000000000,782,1,1,1,10,1),(2815,'12:30:00',40080000000000,782,1,1,1,10,1),(2816,'15:00:00',40080000000000,782,1,1,1,10,1),(2817,'17:30:00',40080000000000,782,1,1,1,10,1),(2818,'20:00:00',40080000000000,782,1,1,1,10,1),(2819,'22:30:00',40080000000000,782,1,1,1,10,1),(2820,'07:00:00',93360000000000,783,1,1,1,11,1),(2821,'22:00:00',93360000000000,783,1,1,1,11,1),(2822,'07:00:00',113880000000000,784,1,1,1,3,1),(2823,'22:00:00',113880000000000,784,1,1,1,3,1),(2824,'07:00:00',49500000000000,785,1,1,1,10,1),(2825,'11:00:00',49500000000000,785,1,1,1,10,1),(2826,'15:00:00',49500000000000,785,1,1,1,10,1),(2827,'19:00:00',49500000000000,785,1,1,1,10,1),(2828,'07:00:00',165420000000000,786,1,1,1,3,1),(2829,'22:00:00',165420000000000,786,1,1,1,3,1),(2830,'12:00:00',194760000000000,787,1,0,1,3,1),(2831,'07:00:00',125100000000000,788,1,1,1,3,1),(2832,'22:00:00',125100000000000,788,1,1,1,3,1),(2833,'12:00:00',219780000000000,789,1,0,1,3,1),(2834,'07:30:00',68040000000000,790,1,1,1,11,1),(2835,'12:00:00',68040000000000,790,1,1,1,10,1),(2836,'16:30:00',68040000000000,790,1,1,1,11,1),(2837,'21:00:00',68040000000000,790,1,1,1,11,1),(2838,'07:00:00',170940000000000,791,1,1,1,3,1),(2839,'22:00:00',170940000000000,791,1,1,1,3,1),(2840,'12:00:00',191280000000000,792,1,0,1,3,1),(2841,'07:00:00',152160000000000,793,1,1,1,3,1),(2842,'22:00:00',152160000000000,793,1,1,1,3,1),(2843,'07:00:00',133140000000000,794,1,1,1,3,1),(2844,'22:00:00',133140000000000,794,1,1,1,3,1),(2845,'07:00:00',47400000000000,795,1,1,1,11,1),(2846,'11:00:00',47400000000000,795,1,1,1,10,1),(2847,'15:00:00',47400000000000,795,1,1,1,10,1),(2848,'19:00:00',47400000000000,795,1,1,1,11,1),(2849,'07:30:00',78540000000000,796,1,1,1,3,1),(2850,'13:00:00',78540000000000,796,1,1,1,3,1),(2851,'18:30:00',78540000000000,796,1,1,1,3,1),(2852,'24:00:00',78540000000000,796,1,1,1,3,1),(2853,'07:00:00',53340000000000,797,1,1,1,2,1),(2854,'11:00:00',53340000000000,797,1,1,1,2,1),(2855,'15:00:00',53340000000000,797,1,1,1,2,1),(2856,'19:00:00',53340000000000,797,1,1,1,2,1),(2857,'07:30:00',70380000000000,798,1,1,1,3,1),(2858,'12:00:00',70380000000000,798,1,1,1,2,1),(2859,'16:30:00',70380000000000,798,1,1,1,2,1),(2860,'21:00:00',70380000000000,798,1,1,1,2,1),(2861,'07:00:00',46800000000000,799,1,1,1,10,1),(2862,'11:00:00',46800000000000,799,1,1,1,10,1),(2863,'15:00:00',46800000000000,799,1,1,1,10,1),(2864,'19:00:00',46800000000000,799,1,1,1,10,1),(2865,'07:00:00',55860000000000,800,1,1,1,10,1),(2866,'11:00:00',55860000000000,800,1,1,1,10,1),(2867,'15:00:00',55860000000000,800,1,1,1,10,1),(2868,'19:00:00',55860000000000,800,1,1,1,10,1),(2869,'07:30:00',72060000000000,801,1,1,1,3,1),(2870,'12:00:00',72060000000000,801,1,1,1,3,1),(2871,'16:30:00',72060000000000,801,1,1,1,2,1),(2872,'21:00:00',72060000000000,801,1,1,1,2,1),(2873,'07:30:00',45360000000000,802,1,1,1,10,1),(2874,'10:00:00',45360000000000,802,1,1,1,10,1),(2875,'12:30:00',45360000000000,802,1,1,1,10,1),(2876,'15:00:00',45360000000000,802,1,1,1,10,1),(2877,'17:30:00',45360000000000,802,1,1,1,10,1),(2878,'20:00:00',45360000000000,802,1,1,1,10,1),(2879,'22:30:00',45360000000000,802,1,1,1,10,1),(2880,'07:30:00',80700000000000,803,1,1,1,3,1),(2881,'13:00:00',80700000000000,803,1,1,1,3,1),(2882,'18:30:00',80700000000000,803,1,1,1,3,1),(2883,'24:00:00',80700000000000,803,1,1,1,3,1),(2884,'07:00:00',110100000000000,804,1,1,1,3,1),(2885,'22:00:00',110100000000000,804,1,1,1,3,1),(2886,'07:30:00',45240000000000,805,1,1,1,2,1),(2887,'10:00:00',45240000000000,805,1,1,1,2,1),(2888,'12:30:00',45240000000000,805,1,1,1,2,1),(2889,'15:00:00',45240000000000,805,1,1,1,1,1),(2890,'17:30:00',45240000000000,805,1,1,1,1,1),(2891,'20:00:00',45240000000000,805,1,1,1,1,1),(2892,'22:30:00',45240000000000,805,1,1,1,2,1),(2893,'12:00:00',177900000000000,806,1,0,1,3,1),(2894,'07:00:00',49800000000000,807,1,1,1,10,1),(2895,'11:00:00',49800000000000,807,1,1,1,10,1),(2896,'15:00:00',49800000000000,807,1,1,1,10,1),(2897,'19:00:00',49800000000000,807,1,1,1,10,1),(2898,'07:00:00',105480000000000,808,1,1,1,3,1),(2899,'22:00:00',105480000000000,808,1,1,1,3,1),(2900,'07:00:00',96300000000000,809,1,1,1,3,1),(2901,'22:00:00',96300000000000,809,1,1,1,3,1),(2902,'07:30:00',67140000000000,810,1,1,1,2,1),(2903,'12:00:00',67140000000000,810,1,1,1,3,1),(2904,'16:30:00',67140000000000,810,1,1,1,3,1),(2905,'21:00:00',67140000000000,810,1,1,1,3,1),(2906,'12:00:00',185760000000000,811,1,0,1,11,1),(2907,'07:00:00',167700000000000,812,1,1,1,3,1),(2908,'22:00:00',167700000000000,812,1,1,1,3,1),(2909,'07:00:00',95820000000000,813,1,1,1,3,1),(2910,'22:00:00',95820000000000,813,1,1,1,3,1),(2911,'07:30:00',68820000000000,814,1,1,1,2,1),(2912,'12:00:00',68820000000000,814,1,1,1,3,1),(2913,'16:30:00',68820000000000,814,1,1,1,2,1),(2914,'21:00:00',68820000000000,814,1,1,1,3,1),(2915,'12:00:00',180660000000000,815,1,0,1,11,1),(2916,'12:00:00',182880000000000,816,1,0,1,11,1),(2917,'07:00:00',117180000000000,817,1,1,1,3,1),(2918,'22:00:00',117180000000000,817,1,1,1,3,1),(2919,'07:00:00',169560000000000,818,1,1,1,11,1),(2920,'22:00:00',169560000000000,818,1,1,1,11,1),(2921,'07:00:00',56460000000000,819,1,1,1,2,1),(2922,'11:00:00',56460000000000,819,1,1,1,2,1),(2923,'15:00:00',56460000000000,819,1,1,1,2,1),(2924,'19:00:00',56460000000000,819,1,1,1,2,1),(2925,'07:00:00',136020000000000,820,1,1,1,3,1),(2926,'22:00:00',136020000000000,820,1,1,1,3,1),(2927,'07:00:00',129660000000000,821,1,1,1,3,1),(2928,'22:00:00',129660000000000,821,1,1,1,3,1),(2929,'07:00:00',161520000000000,822,1,1,1,3,1),(2930,'22:00:00',161520000000000,822,1,1,1,3,1),(2931,'12:00:00',182940000000000,823,1,0,1,11,1),(2932,'12:00:00',201660000000000,824,1,0,1,3,1),(2933,'12:00:00',185460000000000,825,1,0,1,3,1),(2934,'07:00:00',156300000000000,826,1,1,1,3,1),(2935,'22:00:00',156300000000000,826,1,1,1,3,1),(2936,'07:00:00',140520000000000,827,1,1,1,11,1),(2937,'22:00:00',140520000000000,827,1,1,1,11,1),(2938,'07:00:00',98220000000000,828,1,1,1,11,1),(2939,'22:00:00',98220000000000,828,1,1,1,11,1),(2940,'07:00:00',120300000000000,829,1,1,1,11,1),(2941,'22:00:00',120300000000000,829,1,1,1,11,1),(2942,'07:00:00',5280000000000,830,1,1,1,8,1),(2943,'08:00:00',5280000000000,830,1,1,1,8,1),(2944,'09:00:00',5280000000000,830,1,1,1,8,1),(2945,'10:00:00',5280000000000,830,1,1,1,8,1),(2946,'11:00:00',5280000000000,830,1,1,1,8,1),(2947,'12:00:00',5280000000000,830,1,1,1,8,1),(2948,'13:00:00',5280000000000,830,1,1,1,8,1),(2949,'14:00:00',5280000000000,830,1,1,1,8,1),(2950,'15:00:00',5280000000000,830,1,1,1,8,1),(2951,'16:00:00',5280000000000,830,1,1,1,8,1),(2952,'17:00:00',5280000000000,830,1,1,1,8,1),(2953,'18:00:00',5280000000000,830,1,1,1,8,1),(2954,'19:00:00',5280000000000,830,1,1,1,8,1),(2955,'20:00:00',5280000000000,830,1,1,1,8,1),(2956,'21:00:00',5280000000000,830,1,1,1,8,1),(2957,'22:00:00',5280000000000,830,1,1,1,8,1),(2958,'07:30:00',67020000000000,831,1,1,1,11,1),(2959,'12:00:00',67020000000000,831,1,1,1,11,1),(2960,'16:30:00',67020000000000,831,1,1,1,10,1),(2961,'21:00:00',67020000000000,831,1,1,1,10,1),(2962,'07:00:00',93240000000000,832,1,1,1,11,1),(2963,'22:00:00',93240000000000,832,1,1,1,11,1),(2964,'07:30:00',17220000000000,833,1,1,1,10,1),(2965,'09:00:00',17220000000000,833,1,1,1,10,1),(2966,'10:30:00',17220000000000,833,1,1,1,10,1),(2967,'12:00:00',17220000000000,833,1,1,1,10,1),(2968,'13:30:00',17220000000000,833,1,1,1,10,1),(2969,'15:00:00',17220000000000,833,1,1,1,10,1),(2970,'16:30:00',17220000000000,833,1,1,1,10,1),(2971,'18:00:00',17220000000000,833,1,1,1,10,1),(2972,'19:30:00',17220000000000,833,1,1,1,10,1),(2973,'21:00:00',17220000000000,833,1,1,1,10,1),(2974,'22:30:00',17220000000000,833,1,1,1,10,1),(2975,'07:00:00',132360000000000,834,1,1,1,11,1),(2976,'22:00:00',132360000000000,834,1,1,1,11,1),(2977,'07:00:00',161760000000000,835,1,1,1,11,1),(2978,'22:00:00',161760000000000,835,1,1,1,11,1),(2979,'07:00:00',92100000000000,836,1,1,1,11,1),(2980,'22:00:00',92100000000000,836,1,1,1,11,1),(2981,'12:00:00',211860000000000,837,1,0,1,11,1),(2982,'07:30:00',41760000000000,838,1,1,1,10,1),(2983,'10:00:00',41760000000000,838,1,1,1,10,1),(2984,'12:30:00',41760000000000,838,1,1,1,10,1),(2985,'15:00:00',41760000000000,838,1,1,1,10,1),(2986,'17:30:00',41760000000000,838,1,1,1,10,1),(2987,'20:00:00',41760000000000,838,1,1,1,10,1),(2988,'22:30:00',41760000000000,838,1,1,1,10,1),(2989,'07:00:00',144300000000000,839,1,1,1,11,1),(2990,'22:00:00',144300000000000,839,1,1,1,11,1),(2991,'07:00:00',148260000000000,840,1,1,1,11,1),(2992,'22:00:00',148260000000000,840,1,1,1,11,1),(2993,'07:00:00',119100000000000,841,1,1,1,11,1),(2994,'22:00:00',119100000000000,841,1,1,1,11,1),(2995,'07:00:00',111720000000000,842,1,1,1,3,1),(2996,'22:00:00',111720000000000,842,1,1,1,3,1),(2997,'07:00:00',112920000000000,843,1,1,1,3,1),(2998,'22:00:00',112920000000000,843,1,1,1,3,1),(2999,'07:00:00',125640000000000,844,1,1,1,11,1),(3000,'22:00:00',125640000000000,844,1,1,1,11,1),(3001,'07:30:00',82200000000000,845,1,1,1,11,1),(3002,'13:00:00',82200000000000,845,1,1,1,11,1),(3003,'18:30:00',82200000000000,845,1,1,1,11,1),(3004,'24:00:00',82200000000000,845,1,1,1,11,1),(3005,'07:00:00',143520000000000,846,1,1,1,3,1),(3006,'22:00:00',143520000000000,846,1,1,1,3,1),(3007,'07:00:00',126360000000000,847,1,1,1,11,1),(3008,'22:00:00',126360000000000,847,1,1,1,11,1),(3009,'07:00:00',107280000000000,848,1,1,1,3,1),(3010,'22:00:00',107280000000000,848,1,1,1,3,1),(3011,'07:00:00',58200000000000,849,1,1,1,2,1),(3012,'11:00:00',58200000000000,849,1,1,1,3,1),(3013,'15:00:00',58200000000000,849,1,1,1,2,1),(3014,'19:00:00',58200000000000,849,1,1,1,2,1),(3015,'07:30:00',38880000000000,850,1,1,1,2,1),(3016,'10:00:00',38880000000000,850,1,1,1,1,1),(3017,'12:30:00',38880000000000,850,1,1,1,2,1),(3018,'15:00:00',38880000000000,850,1,1,1,1,1),(3019,'17:30:00',38880000000000,850,1,1,1,2,1),(3020,'20:00:00',38880000000000,850,1,1,1,2,1),(3021,'22:30:00',38880000000000,850,1,1,1,2,1),(3022,'12:00:00',230160000000000,851,1,0,1,3,1),(3023,'07:00:00',111360000000000,852,1,1,1,11,1),(3024,'22:00:00',111360000000000,852,1,1,1,11,1),(3025,'07:00:00',53340000000000,853,1,1,1,2,1),(3026,'11:00:00',53340000000000,853,1,1,1,2,1),(3027,'15:00:00',53340000000000,853,1,1,1,3,1),(3028,'19:00:00',53340000000000,853,1,1,1,3,1),(3029,'07:30:00',17820000000000,854,1,1,1,1,1),(3030,'09:00:00',17820000000000,854,1,1,1,1,1),(3031,'10:30:00',17820000000000,854,1,1,1,5,1),(3032,'12:00:00',17820000000000,854,1,1,1,2,1),(3033,'13:30:00',17820000000000,854,1,1,1,5,1),(3034,'15:00:00',17820000000000,854,1,1,1,2,1),(3035,'16:30:00',17820000000000,854,1,1,1,1,1),(3036,'18:00:00',17820000000000,854,1,1,1,2,1),(3037,'19:30:00',17820000000000,854,1,1,1,2,1),(3038,'21:00:00',17820000000000,854,1,1,1,1,1),(3039,'22:30:00',17820000000000,854,1,1,1,2,1),(3040,'07:30:00',17040000000000,855,1,1,1,2,1),(3041,'09:00:00',17040000000000,855,1,1,1,1,1),(3042,'10:30:00',17040000000000,855,1,1,1,6,1),(3043,'12:00:00',17040000000000,855,1,1,1,2,1),(3044,'13:30:00',17040000000000,855,1,1,1,2,1),(3045,'15:00:00',17040000000000,855,1,1,1,1,1),(3046,'16:30:00',17040000000000,855,1,1,1,1,1),(3047,'18:00:00',17040000000000,855,1,1,1,5,1),(3048,'19:30:00',17040000000000,855,1,1,1,2,1),(3049,'21:00:00',17040000000000,855,1,1,1,6,1),(3050,'22:30:00',17040000000000,855,1,1,1,6,1),(3051,'07:30:00',30240000000000,856,1,1,1,2,1),(3052,'10:00:00',30240000000000,856,1,1,1,2,1),(3053,'12:30:00',30240000000000,856,1,1,1,2,1),(3054,'15:00:00',30240000000000,856,1,1,1,1,1),(3055,'17:30:00',30240000000000,856,1,1,1,2,1),(3056,'20:00:00',30240000000000,856,1,1,1,1,1),(3057,'22:30:00',30240000000000,856,1,1,1,2,1),(3058,'07:00:00',92880000000000,857,1,1,1,11,1),(3059,'22:00:00',92880000000000,857,1,1,1,11,1),(3060,'07:00:00',110520000000000,858,1,1,1,11,1),(3061,'22:00:00',110520000000000,858,1,1,1,11,1),(3062,'07:30:00',32040000000000,859,1,1,1,2,1),(3063,'10:00:00',32040000000000,859,1,1,1,2,1),(3064,'12:30:00',32040000000000,859,1,1,1,2,1),(3065,'15:00:00',32040000000000,859,1,1,1,1,1),(3066,'17:30:00',32040000000000,859,1,1,1,2,1),(3067,'20:00:00',32040000000000,859,1,1,1,1,1),(3068,'22:30:00',32040000000000,859,1,1,1,1,1),(3069,'07:30:00',81840000000000,860,1,1,1,11,1),(3070,'13:00:00',81840000000000,860,1,1,1,10,1),(3071,'18:30:00',81840000000000,860,1,1,1,11,1),(3072,'24:00:00',81840000000000,860,1,1,1,11,1),(3073,'07:00:00',50520000000000,861,1,1,1,2,1),(3074,'11:00:00',50520000000000,861,1,1,1,2,1),(3075,'15:00:00',50520000000000,861,1,1,1,2,1),(3076,'19:00:00',50520000000000,861,1,1,1,2,1),(3077,'07:00:00',96600000000000,862,1,1,1,3,1),(3078,'22:00:00',96600000000000,862,1,1,1,3,1),(3079,'07:30:00',73380000000000,863,1,1,1,2,1),(3080,'12:00:00',73380000000000,863,1,1,1,3,1),(3081,'16:30:00',73380000000000,863,1,1,1,2,1),(3082,'21:00:00',73380000000000,863,1,1,1,3,1),(3083,'07:00:00',129420000000000,864,1,1,1,3,1),(3084,'22:00:00',129420000000000,864,1,1,1,3,1),(3085,'07:00:00',101160000000000,865,1,1,1,11,1),(3086,'22:00:00',101160000000000,865,1,1,1,11,1),(3087,'07:00:00',145380000000000,866,1,1,1,3,1),(3088,'22:00:00',145380000000000,866,1,1,1,3,1),(3089,'07:00:00',129180000000000,867,1,1,1,3,1),(3090,'22:00:00',129180000000000,867,1,1,1,3,1),(3091,'07:00:00',100020000000000,868,1,1,1,3,1),(3092,'22:00:00',100020000000000,868,1,1,1,3,1),(3093,'07:00:00',110100000000000,869,1,1,1,11,1),(3094,'22:00:00',110100000000000,869,1,1,1,11,1),(3095,'07:00:00',122340000000000,870,1,1,1,11,1),(3096,'22:00:00',122340000000000,870,1,1,1,11,1),(3097,'07:00:00',57300000000000,871,1,1,1,2,1),(3098,'11:00:00',57300000000000,871,1,1,1,2,1),(3099,'15:00:00',57300000000000,871,1,1,1,2,1),(3100,'19:00:00',57300000000000,871,1,1,1,2,1),(3101,'07:00:00',99000000000000,872,1,1,1,11,1),(3102,'22:00:00',99000000000000,872,1,1,1,11,1),(3103,'07:30:00',23640000000000,873,1,1,1,2,1),(3104,'09:00:00',23640000000000,873,1,1,1,1,1),(3105,'10:30:00',23640000000000,873,1,1,1,1,1),(3106,'12:00:00',23640000000000,873,1,1,1,2,1),(3107,'13:30:00',23640000000000,873,1,1,1,2,1),(3108,'15:00:00',23640000000000,873,1,1,1,1,1),(3109,'16:30:00',23640000000000,873,1,1,1,1,1),(3110,'18:00:00',23640000000000,873,1,1,1,6,1),(3111,'19:30:00',23640000000000,873,1,1,1,5,1),(3112,'21:00:00',23640000000000,873,1,1,1,1,1),(3113,'22:30:00',23640000000000,873,1,1,1,1,1),(3114,'07:30:00',82800000000000,874,1,1,1,2,1),(3115,'13:00:00',82800000000000,874,1,1,1,3,1),(3116,'18:30:00',82800000000000,874,1,1,1,3,1),(3117,'24:00:00',82800000000000,874,1,1,1,2,1),(3118,'07:30:00',74760000000000,875,1,1,1,3,1),(3119,'12:00:00',74760000000000,875,1,1,1,2,1),(3120,'16:30:00',74760000000000,875,1,1,1,3,1),(3121,'21:00:00',74760000000000,875,1,1,1,3,1),(3122,'07:00:00',122700000000000,876,1,1,1,3,1),(3123,'22:00:00',122700000000000,876,1,1,1,3,1),(3124,'07:00:00',116640000000000,877,1,1,1,11,1),(3125,'22:00:00',116640000000000,877,1,1,1,11,1),(3126,'07:00:00',146760000000000,878,1,1,1,3,1),(3127,'22:00:00',146760000000000,878,1,1,1,3,1),(3128,'07:00:00',130560000000000,879,1,1,1,3,1),(3129,'22:00:00',130560000000000,879,1,1,1,3,1),(3130,'07:00:00',101400000000000,880,1,1,1,3,1),(3131,'22:00:00',101400000000000,880,1,1,1,3,1),(3132,'07:30:00',61680000000000,881,1,1,1,11,1),(3133,'12:00:00',61680000000000,881,1,1,1,11,1),(3134,'16:30:00',61680000000000,881,1,1,1,10,1),(3135,'21:00:00',61680000000000,881,1,1,1,10,1),(3136,'07:00:00',100680000000000,882,1,1,1,11,1),(3137,'22:00:00',100680000000000,882,1,1,1,11,1),(3138,'07:30:00',21720000000000,883,1,1,1,10,1),(3139,'09:00:00',21720000000000,883,1,1,1,10,1),(3140,'10:30:00',21720000000000,883,1,1,1,10,1),(3141,'12:00:00',21720000000000,883,1,1,1,10,1),(3142,'13:30:00',21720000000000,883,1,1,1,10,1),(3143,'15:00:00',21720000000000,883,1,1,1,10,1),(3144,'16:30:00',21720000000000,883,1,1,1,10,1),(3145,'18:00:00',21720000000000,883,1,1,1,10,1),(3146,'19:30:00',21720000000000,883,1,1,1,10,1),(3147,'21:00:00',21720000000000,883,1,1,1,10,1),(3148,'22:30:00',21720000000000,883,1,1,1,10,1),(3149,'07:00:00',127020000000000,884,1,1,1,11,1),(3150,'22:00:00',127020000000000,884,1,1,1,11,1),(3151,'07:00:00',156420000000000,885,1,1,1,11,1),(3152,'22:00:00',156420000000000,885,1,1,1,11,1),(3153,'07:00:00',96660000000000,886,1,1,1,11,1),(3154,'22:00:00',96660000000000,886,1,1,1,11,1),(3155,'12:00:00',206520000000000,887,1,0,1,11,1),(3156,'07:30:00',36420000000000,888,1,1,1,10,1),(3157,'10:00:00',36420000000000,888,1,1,1,10,1),(3158,'12:30:00',36420000000000,888,1,1,1,10,1),(3159,'15:00:00',36420000000000,888,1,1,1,10,1),(3160,'17:30:00',36420000000000,888,1,1,1,10,1),(3161,'20:00:00',36420000000000,888,1,1,1,10,1),(3162,'22:30:00',36420000000000,888,1,1,1,10,1),(3163,'07:00:00',151440000000000,889,1,1,1,11,1),(3164,'22:00:00',151440000000000,889,1,1,1,11,1),(3165,'07:00:00',142920000000000,890,1,1,1,11,1),(3166,'22:00:00',142920000000000,890,1,1,1,11,1),(3167,'07:00:00',113760000000000,891,1,1,1,11,1),(3168,'22:00:00',113760000000000,891,1,1,1,11,1),(3169,'07:00:00',134520000000000,892,1,1,1,11,1),(3170,'22:00:00',134520000000000,892,1,1,1,11,1),(3171,'07:30:00',75240000000000,893,1,1,1,11,1),(3172,'12:00:00',75240000000000,893,1,1,1,10,1),(3173,'16:30:00',75240000000000,893,1,1,1,11,1),(3174,'21:00:00',75240000000000,893,1,1,1,11,1),(3175,'07:00:00',124140000000000,894,1,1,1,11,1),(3176,'22:00:00',124140000000000,894,1,1,1,11,1),(3177,'07:00:00',138420000000000,895,1,1,1,11,1),(3178,'22:00:00',138420000000000,895,1,1,1,11,1),(3179,'07:00:00',57240000000000,896,1,1,1,10,1),(3180,'11:00:00',57240000000000,896,1,1,1,10,1),(3181,'15:00:00',57240000000000,896,1,1,1,10,1),(3182,'19:00:00',57240000000000,896,1,1,1,10,1),(3183,'12:00:00',240420000000000,897,1,0,1,11,1),(3184,'07:30:00',26280000000000,898,1,1,1,10,1),(3185,'10:00:00',26280000000000,898,1,1,1,10,1),(3186,'12:30:00',26280000000000,898,1,1,1,10,1),(3187,'15:00:00',26280000000000,898,1,1,1,10,1),(3188,'17:30:00',26280000000000,898,1,1,1,10,1),(3189,'20:00:00',26280000000000,898,1,1,1,10,1),(3190,'22:30:00',26280000000000,898,1,1,1,10,1),(3191,'07:30:00',76680000000000,899,1,1,1,11,1),(3192,'13:00:00',76680000000000,899,1,1,1,11,1),(3193,'18:30:00',76680000000000,899,1,1,1,11,1),(3194,'24:00:00',76680000000000,899,1,1,1,11,1),(3195,'07:00:00',100140000000000,900,1,1,1,11,1),(3196,'22:00:00',100140000000000,900,1,1,1,11,1),(3197,'07:30:00',70320000000000,901,1,1,1,11,1),(3198,'12:00:00',70320000000000,901,1,1,1,10,1),(3199,'16:30:00',70320000000000,901,1,1,1,10,1),(3200,'21:00:00',70320000000000,901,1,1,1,10,1),(3201,'07:30:00',78720000000000,902,1,1,1,10,1),(3202,'13:00:00',78720000000000,902,1,1,1,11,1),(3203,'18:30:00',78720000000000,902,1,1,1,11,1),(3204,'24:00:00',78720000000000,902,1,1,1,11,1),(3205,'07:30:00',81540000000000,903,1,1,1,2,1),(3206,'13:00:00',81540000000000,903,1,1,1,3,1),(3207,'18:30:00',81540000000000,903,1,1,1,3,1),(3208,'24:00:00',81540000000000,903,1,1,1,2,1),(3209,'07:00:00',128460000000000,904,1,1,1,3,1),(3210,'22:00:00',128460000000000,904,1,1,1,3,1),(3211,'07:00:00',105300000000000,905,1,1,1,3,1),(3212,'22:00:00',105300000000000,905,1,1,1,3,1),(3213,'07:00:00',106260000000000,906,1,1,1,3,1),(3214,'22:00:00',106260000000000,906,1,1,1,3,1),(3215,'07:00:00',119700000000000,907,1,1,1,11,1),(3216,'22:00:00',119700000000000,907,1,1,1,11,1),(3217,'12:00:00',177240000000000,908,1,0,1,3,1),(3218,'07:00:00',161040000000000,909,1,1,1,3,1),(3219,'22:00:00',161040000000000,909,1,1,1,3,1),(3220,'07:00:00',131880000000000,910,1,1,1,3,1),(3221,'22:00:00',131880000000000,910,1,1,1,3,1),(3222,'07:00:00',116880000000000,911,1,1,1,11,1),(3223,'22:00:00',116880000000000,911,1,1,1,11,1),(3224,'07:00:00',161400000000000,912,1,1,1,11,1),(3225,'22:00:00',161400000000000,912,1,1,1,11,1),(3226,'07:00:00',100680000000000,913,1,1,1,11,1),(3227,'22:00:00',100680000000000,913,1,1,1,11,1),(3228,'12:00:00',192060000000000,914,1,0,1,11,1),(3229,'07:00:00',49920000000000,915,1,1,1,11,1),(3230,'11:00:00',49920000000000,915,1,1,1,10,1),(3231,'15:00:00',49920000000000,915,1,1,1,10,1),(3232,'19:00:00',49920000000000,915,1,1,1,10,1),(3233,'07:00:00',152280000000000,916,1,1,1,11,1),(3234,'22:00:00',152280000000000,916,1,1,1,11,1),(3235,'07:00:00',156900000000000,917,1,1,1,11,1),(3236,'22:00:00',156900000000000,917,1,1,1,11,1),(3237,'07:00:00',127740000000000,918,1,1,1,11,1),(3238,'22:00:00',127740000000000,918,1,1,1,11,1),(3239,'07:30:00',73440000000000,919,1,1,1,3,1),(3240,'12:00:00',73440000000000,919,1,1,1,3,1),(3241,'16:30:00',73440000000000,919,1,1,1,2,1),(3242,'21:00:00',73440000000000,919,1,1,1,2,1),(3243,'07:30:00',69240000000000,920,1,1,1,2,1),(3244,'12:00:00',69240000000000,920,1,1,1,2,1),(3245,'16:30:00',69240000000000,920,1,1,1,3,1),(3246,'21:00:00',69240000000000,920,1,1,1,3,1),(3247,'07:00:00',129120000000000,921,1,1,1,3,1),(3248,'22:00:00',129120000000000,921,1,1,1,3,1),(3249,'07:00:00',128580000000000,922,1,1,1,11,1),(3250,'22:00:00',128580000000000,922,1,1,1,11,1),(3251,'07:00:00',141180000000000,923,1,1,1,3,1),(3252,'22:00:00',141180000000000,923,1,1,1,3,1),(3253,'07:00:00',124980000000000,924,1,1,1,3,1),(3254,'22:00:00',124980000000000,924,1,1,1,3,1),(3255,'07:00:00',95820000000000,925,1,1,1,3,1),(3256,'22:00:00',95820000000000,925,1,1,1,3,1),(3257,'07:30:00',82380000000000,926,1,1,1,3,1),(3258,'13:00:00',82380000000000,926,1,1,1,3,1),(3259,'18:30:00',82380000000000,926,1,1,1,3,1),(3260,'24:00:00',82380000000000,926,1,1,1,3,1),(3261,'12:00:00',198300000000000,927,1,0,1,3,1),(3262,'07:00:00',162240000000000,928,1,1,1,11,1),(3263,'22:00:00',162240000000000,928,1,1,1,11,1),(3264,'07:00:00',111000000000000,929,1,1,1,3,1),(3265,'22:00:00',111000000000000,929,1,1,1,3,1),(3266,'07:00:00',53580000000000,930,1,1,1,2,1),(3267,'11:00:00',53580000000000,930,1,1,1,2,1),(3268,'15:00:00',53580000000000,930,1,1,1,2,1),(3269,'19:00:00',53580000000000,930,1,1,1,2,1),(3270,'07:30:00',72960000000000,931,1,1,1,3,1),(3271,'12:00:00',72960000000000,931,1,1,1,3,1),(3272,'16:30:00',72960000000000,931,1,1,1,2,1),(3273,'21:00:00',72960000000000,931,1,1,1,3,1),(3274,'12:00:00',195660000000000,932,1,0,1,3,1),(3275,'07:30:00',72660000000000,933,1,1,1,11,1),(3276,'12:00:00',72660000000000,933,1,1,1,11,1),(3277,'16:30:00',72660000000000,933,1,1,1,10,1),(3278,'21:00:00',72660000000000,933,1,1,1,11,1),(3279,'07:30:00',72600000000000,934,1,1,1,3,1),(3280,'12:00:00',72600000000000,934,1,1,1,2,1),(3281,'16:30:00',72600000000000,934,1,1,1,3,1),(3282,'21:00:00',72600000000000,934,1,1,1,2,1),(3283,'07:00:00',56400000000000,935,1,1,1,2,1),(3284,'11:00:00',56400000000000,935,1,1,1,2,1),(3285,'15:00:00',56400000000000,935,1,1,1,2,1),(3286,'19:00:00',56400000000000,935,1,1,1,2,1),(3287,'07:30:00',27240000000000,936,1,1,1,1,1),(3288,'10:00:00',27240000000000,936,1,1,1,2,1),(3289,'12:30:00',27240000000000,936,1,1,1,1,1),(3290,'15:00:00',27240000000000,936,1,1,1,2,1),(3291,'17:30:00',27240000000000,936,1,1,1,2,1),(3292,'20:00:00',27240000000000,936,1,1,1,1,1),(3293,'22:30:00',27240000000000,936,1,1,1,2,1),(3294,'12:00:00',225540000000000,937,1,0,1,11,1),(3295,'12:00:00',263700000000000,938,1,0,1,4,1),(3296,'12:00:00',247500000000000,939,1,0,1,3,1),(3297,'12:00:00',218340000000000,940,1,0,1,3,1),(3298,'07:00:00',102600000000000,941,1,1,1,11,1),(3299,'22:00:00',102600000000000,941,1,1,1,11,1),(3300,'07:00:00',129240000000000,942,1,1,1,11,1),(3301,'22:00:00',129240000000000,942,1,1,1,11,1),(3302,'07:00:00',100080000000000,943,1,1,1,11,1),(3303,'22:00:00',100080000000000,943,1,1,1,11,1),(3304,'07:00:00',59940000000000,944,1,1,1,3,1),(3305,'11:00:00',59940000000000,944,1,1,1,3,1),(3306,'15:00:00',59940000000000,944,1,1,1,2,1),(3307,'19:00:00',59940000000000,944,1,1,1,2,1),(3308,'07:00:00',52140000000000,945,1,1,1,2,1),(3309,'11:00:00',52140000000000,945,1,1,1,2,1),(3310,'15:00:00',52140000000000,945,1,1,1,3,1),(3311,'19:00:00',52140000000000,945,1,1,1,2,1),(3312,'07:30:00',34740000000000,946,1,1,1,1,1),(3313,'10:00:00',34740000000000,946,1,1,1,2,1),(3314,'12:30:00',34740000000000,946,1,1,1,2,1),(3315,'15:00:00',34740000000000,946,1,1,1,2,1),(3316,'17:30:00',34740000000000,946,1,1,1,2,1),(3317,'20:00:00',34740000000000,946,1,1,1,2,1),(3318,'22:30:00',34740000000000,946,1,1,1,1,1);
/*!40000 ALTER TABLE `bus_schedule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bus_type`
--
DROP TABLE IF EXISTS `bus_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `bus_type` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`number_of_seats` tinyint(3) unsigned NOT NULL,
`children_friendly` tinyint(3) unsigned DEFAULT '0',
`pet_friendly` tinyint(3) unsigned DEFAULT '0',
`operates` tinyint(3) unsigned DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bus_type`
--
LOCK TABLES `bus_type` WRITE;
/*!40000 ALTER TABLE `bus_type` DISABLE KEYS */;
INSERT INTO `bus_type` VALUES (1,'CLASSIC',51,1,0,1),(2,'CLASSIC_EXTENDED',55,1,0,1),(3,'EXTENDED',63,1,0,1),(4,'DOUBLE_DECKER',83,1,0,1),(5,'SPECIAL',51,1,1,1),(6,'SPECIAL_EXTENDED',63,1,1,1),(7,'MINIBUS_EXTENDED',43,1,0,1),(8,'MINIBUS',24,1,0,1),(9,'SPECIAL_MINIBUS',24,1,1,1),(10,'OLD_CLASSIC',45,0,0,1),(11,'OLD_EXTENDED',61,0,0,1);
/*!40000 ALTER TABLE `bus_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `city`
--
DROP TABLE IF EXISTS `city`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `city` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`image_name` varchar(20) DEFAULT NULL,
`country_id` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `country_idx` (`country_id`),
CONSTRAINT `country` FOREIGN KEY (`country_id`) REFERENCES `country` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `city`
--
LOCK TABLES `city` WRITE;
/*!40000 ALTER TABLE `city` DISABLE KEYS */;
INSERT INTO `city` VALUES (1,NULL,1),(2,NULL,2),(3,NULL,3),(4,NULL,4),(5,NULL,5),(6,NULL,6),(7,NULL,7),(8,NULL,8),(9,NULL,9),(10,NULL,10),(11,NULL,11),(12,NULL,12),(13,NULL,13),(14,NULL,14),(15,'vienna.jpg',15),(16,NULL,16),(17,NULL,17),(18,NULL,18),(19,'sofia.jpg',19),(20,'prague.jpg',20),(21,NULL,21),(22,NULL,22),(23,NULL,23),(24,NULL,24),(25,NULL,25),(26,'budapest.jpg',26),(27,NULL,27),(28,'rome.jpg',28),(29,NULL,29),(30,NULL,30),(31,NULL,31),(32,NULL,32),(33,NULL,33),(34,NULL,34),(35,NULL,35),(36,NULL,36),(37,'amsterdam.jpg',37),(38,NULL,38),(39,NULL,39),(40,NULL,40),(41,NULL,41),(42,NULL,42),(43,NULL,43),(44,NULL,44);
/*!40000 ALTER TABLE `city` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `city_description`
--
DROP TABLE IF EXISTS `city_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `city_description` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`language` varchar(2) NOT NULL,
`description` varchar(1500) DEFAULT NULL,
`title` varchar(20) NOT NULL,
PRIMARY KEY (`id`,`language`),
CONSTRAINT `city_id` FOREIGN KEY (`id`) REFERENCES `city` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `city_description`
--
LOCK TABLES `city_description` WRITE;
/*!40000 ALTER TABLE `city_description` DISABLE KEYS */;
INSERT INTO `city_description` VALUES (1,'de',NULL,'Zagreb'),(1,'en',NULL,'Zagreb'),(1,'hr',NULL,'Zagreb'),(1,'it',NULL,'Zagabria'),(2,'de',NULL,'Ljubljana'),(2,'en',NULL,'Ljubljana'),(2,'hr',NULL,'Ljubljana'),(2,'it',NULL,'Lubiana'),(3,'de',NULL,'Belgrad'),(3,'en',NULL,'Belgrade'),(3,'hr',NULL,'Beograd'),(3,'it',NULL,'Belgrado'),(4,'de',NULL,'San Marino'),(4,'en',NULL,'San Marino'),(4,'hr',NULL,'San Marino'),(4,'it',NULL,'San Marino'),(5,'de',NULL,'Bratislava'),(5,'en',NULL,'Bratislava'),(5,'hr',NULL,'Bratislava'),(5,'it',NULL,'Bratislava'),(6,'de',NULL,'Vatikanstadt'),(6,'en',NULL,'Vatican City'),(6,'hr',NULL,'Vatikan'),(6,'it',NULL,'Città del Vaticano'),(7,'de',NULL,'Stockholm'),(7,'en',NULL,'Stockholm'),(7,'hr',NULL,'Stockholm'),(7,'it',NULL,'Stoccolma'),(8,'de',NULL,'Madrid'),(8,'en',NULL,'Madrid'),(8,'hr',NULL,'Madrid'),(8,'it',NULL,'Madrid'),(9,'de',NULL,'London'),(9,'en',NULL,'London'),(9,'hr',NULL,'London'),(9,'it',NULL,'Londra'),(10,'de',NULL,'Bern'),(10,'en',NULL,'Bern'),(10,'hr',NULL,'Bern'),(10,'it',NULL,'Berna'),(11,'de',NULL,'Ankara'),(11,'en',NULL,'Ankara'),(11,'hr',NULL,'Ankara'),(11,'it',NULL,'Ankara'),(12,'de',NULL,'Kiew'),(12,'en',NULL,'Kiev'),(12,'hr',NULL,'Kijev'),(12,'it',NULL,'Kiev'),(13,'de',NULL,'Tirana'),(13,'en',NULL,'Tirana'),(13,'hr',NULL,'Tirana'),(13,'it',NULL,'Tirana'),(14,'de',NULL,'Andorra la Vella'),(14,'en',NULL,'Andorra la Vella'),(14,'hr',NULL,'Andorra la Vella'),(14,'it',NULL,'Andorra la Vella'),(15,'de','Wien ist eine alte Seele heißt es. Aber eine, die mit der Leichtigkeit der Walzerstadt alte und neue Avantgarde inspiriert. Das Resultat: Eine Melange aus prächtiger Architektur und liebenswertem Charme. Schaut man vom Kahlenberg auf die Donau hinunter, kann man Wien mit allen Sinnen spüren. Weinberge sind da zu sehen, dahinter glänzt das bauliche Erbe der mitteleuropäischen Metropole. Kunstgeschichte sowieso. Wien hat ein intaktes historisches Stadtbild wie kaum eine andere Großstadt, geprägt von Prunkbauten aus der Barock- und Gründerzeit. Auf einer Fahrt über die Wiener Ringstraße passiert man die Staatsoper, das Burgtheater, das Parlament, die Votivkirche, das Kunst- und Kulturhistorische Museum und das Rathaus. In der „Weltstadt der Musik” ist mit den Wiener Philharmonikern eines der besten Orchester der Welt zuhause. Der \\\"Große Saal\\\" des Wiener Musikvereins, auch \\\"Goldener Saal\\\" genannt, ist Wiens schönste Konzerthalle und gilt auch klangtechnisch als wahres Wunderwerk.','Wien'),(15,'en','Austria’s capital offers a unique blend of imperial traditions and stunning modern architecture. It is famous for its cultural events, imperial sights, coffee houses, cozy wine taverns, and the very special Viennese charm. Vienna’s history dates back to the first post-Christian century when the Romans established the military camp Vindobona. Today’s cityscape is characterised by the abundance of baroque buildings created mostly under the rule of Empress Maria Theresia and Emperor Franz Joseph who was largely responsible for the monumental architecture round the Ringstraße. Vienna owes much of its international fame to the many celebrated composer who lived and worked here including Strauß, Mozart, Beethoven and Haydn. The Vienna Philharmonic Orchestra is one of the world’s best, the Staatsoper one of the world’s leading opera houses, the Vienna Boys’ Choir one the world’s most famous. In the last years Vienna has also established itself as a great musical metropolis.','Vienna'),(15,'hr','Zadivljujuća kulturna ponuda, raskošna arhitektura i ugodna atmosfera u kavanama i heurigerima objašnjavaju zašto je glavni grad Austrije omiljen u cijelom svijetu. Povijest Beča seže sve do prvog stoljeća poslije Krista, kada su Rimljani osnovali vojnu utvrdu Vindobonu. Današnju sliku grada obilježio je prije svega barok, naročito za vrijeme vladavine carice Marije Terezije i cara Franje Josipa, koji je dao sagraditi luksuzni bečki Ring ili Ringstraße. U Beču vas očekuju muzeji i umjetničke zbirke međunarodnog formata. Muzej povijesti umjetnosti s impresivnom zbirkom Bruegelovih slika, MuseumsQuartier i Muzej Leopold (s najvećom zbirkom Schieleovih djela), Architekturzentrum, Kunsthalle i Albertina s najvećom grafičkom zbirkom na svijetu od preko 60.000 crteža. Beč je u svijetu poznat i kao grad glazbe. Ovdje su djelovali mnogi slavni skladatelji, primjerice Strauß, Mozart, Beethoven i Haydn. Bečki filharmoničari ubrajaju se u sam svjetski vrh.','Beč'),(15,'it','Città imperiale, patria della Secessione e della psicanalisi, sede ONU e OPEC, offre ai suoi visitatori un ricco calendario d\\\'eventi, complessi museali, palazzi storici e giardini fioriti. Con il Prater, i molti caffè, i locali di tendenza, e l\\\'isola del Danubio, è capace anche di far godere momenti di relax e di svago. L\\\'elenco delle attrattive della città sarebbe lunghissimo, citiamo solo alcune tra i monumenti più conosciuti: il palazzo di Schoenbrunn, residenza estiva degli Asburgo; il duomo di Santo Stefano e l’Hofburg, residenza invernale degli Ausburgo. Vienna è ricchissima anche di mostre e musei, quali: il Naturhistorisches Museum, il Kunsthistorisches Museum, il Museo di Arte Moderna, il Centro dell’Archittetura, il Museo dell’Arte Barocca, il Museo della Scienza e delle Tecnica l’Albertina. Il MuseumsQuartierWien (MQW) situato in centro città a fianco di rinomati musei, è con la sua area di 45.000 mq uno dei dieci complessi culturali più grandi del mondo.','Vienna'),(16,'de',NULL,'Minsk'),(16,'en',NULL,'Minsk'),(16,'hr',NULL,'Minsk'),(16,'it',NULL,'Minsk'),(17,'de',NULL,'Brüssel'),(17,'en',NULL,'Brussels'),(17,'hr',NULL,'Bruxelles'),(17,'it',NULL,'Bruxelles'),(18,'de',NULL,'Sarajevo'),(18,'en',NULL,'Sarajevo'),(18,'hr',NULL,'Sarajevo'),(18,'it',NULL,'Sarajevo'),(19,'de','Sofia ist die Hauptstadt von Bulgarien mit rund 1,2 Millionen Einwohnern. Vor mehr als 2000 Jahren war die Stadt eine thrakische Siedlung. An einer größeren Bedeutung gewann sie innerhalb des Römischen Reiches und hieß Serdica. In den nächsten Jahren ändert Sofia Völker und Reiche: Byzantinisches, Ungarisches, Osmanisches und Russisches Reich bis zur Unabhängigkeit im Jahr 1908. Zu dieser Stadt war auch das 20. Jahrhundert nicht sehr freundlich: Balkankriege, Erster und Zweiter Weltkrieg, in dem die Bombardierung der Stadt zu ihrer teilweisen Zerstörung führte. Trotz dunkler Vergangenheit, Sofia hat eine helle Perspektive. Der öffentliche Verkehr ist breit und effektiv. Man bemüht sich um die Erhaltung der Geschichte und Architektur der Stadt. Regelmäßig werden neue Restaurants, Bars, Cafés geöffnet, die der bereits dynamischen Stadt zum neuen Leben bringen. In Sofia gibt es viele Gärten und Grünflächen, die Ideal für Erholung sind. Die Stadt liegt am Fuß des massiven Berges Vitosha, die 2290 Meter hoch ist. Vitosha ist im Winter eine Destination für Skilaufer und Snowboarder, und im Sommer kann man wunderbare und zahlreiche Spaziergänge genießen.','Sofia'),(19,'en','Sofia is Bulgaria’s capital city and is home to 1.2 million people. Sofia was once a Thracian settlement over 2,000 years ago and was formerly Serdica, one of the most important cities in the Roman empire. Since, Sofia’s been passed between nations and empires: Byzantine, Magyar, Ottoman, Russian, until Bulgaria achieved full, complete independence in 1908. The 20th century was not kind to Sofia either: The Balkan Wars, World War I and World War II in which the city of Sofia was heavily bombed. But despite dark spots in Bulgaria’s past, Sofia has a bright outlook. Public transportation is extensive and efficient. Efforts are being made to preserve important markers of the city’s history and architecture. Countless new restaurants, bars, and cafés are opening regularly, breathing new life into an already dynamic city. Sofia is full of gardens and green spaces which are host to picnics and late-night beers in summer and blanketed with snow in the winter. The city is nestled at the foot of the massive Vitosha Mountain, which at 2,290 meters is one of the largest mountains in close proximity to a European capital city. Vitosha is home to skiing and snowboarding in winter and astounding hikes in the summer.','Sofia'),(19,'hr','Sofija je glavni grad Bugarske s oko 1,2 milijuna stanovnika. Sofija je bila tračansko naselje prije više od 2000 godina, a na većoj važnosti je pridobila u sastavu Rimskog carstva kada se zvala Serdica. Narednih godina Sofija je mijenjala narode i carstva: Bizantsko, Mađarsko, Osmansko te Rusko carstvo sve do neovisnosti 1908. godine. Ni 20. stoljeće nije bilo ljubazno prema ovom gradu: Balkanski ratovi, Prvi sjvetski rat i Drugi svjetski rat u kojem je grad teško stradao od bombardiranja. Unatoč tamnoj povijesti, Sofija ima svjetlu perspektivu. Javni prijevoz je opsežan i učinkovit, ulažu se napori za očuvanje važnih obilježja gradske povijesti i arhitekture te se redovito otvaraju mnogobrojni novi restorani, barovi i kafići, udahnjujući novi život u već dinamičan grad. Sofija je puna vrtova i zelenih površina idelnih za odmor. Grad je smješten u podnožju masivne planine Vitosha, visoke 2290 metara. Vitosha je dom skijanja i bordanja zimi, a ljeti prepuna zapanjujućih šetnica.','Sofija'),(19,'it','Sofia è la capitale della Bulgaria con circa 1,2 milioni di abitanti. Più di 2000 anni fa Sofia fu un insediamento dei Traci. Ha acquisito più importanza nella composizione dell\'Impero Romano, quando fu chiamata Serdica. Durante i prossimi anni Sofia cambiò nazioni e imperi: l’Impero bizantino, ungherese, ottomano e russo, fino alla indipendenza nell’anno 1908. Neanche il 20 secolo fu gentile con questa città: le guerre balcaniche, la Prima guerra mondiale e la Seconda guerra mondiale in cui la città fu pesantemente danneggiata dai bombardamenti. Nonostante la storia oscura, Sofia ha una prospettiva brillante. Il trasporto pubblico è ampio ed efficiente. Vengono compiuti sforzi per preservare le caratteristiche importanti della storia della città e l\'architettura. Nuovi e numerosi ristoranti, bar e caffè vengono regolarmente aperti, ispirando nuova vita in una città già dinamica. Sofia è piena di giardini e aree verdi ideali per rilassarsi. La città è situata ai piedi della massiccia montagna di Vitosha, alta 2290 metri. Vitosha è la destinazione per lo sci e lo snowboard in inverno, e in estate è piena di passeggiate meravigliose. ','Sofia'),(20,'de','Prag, die Stadt der hundert Türme, UNESCO-Denkmal und eine der schönsten Städte der Welt. Das Altstädter Rathaus mit der berühmten Prager astronomischen Uhr. Krumme Gassen des jüdischen Viertels, die Sie aus den Büchern von Franz Kafka kennen, durchdrungen von der uralten Legende vom Golem. Cafés, die zum Beisammensein einladen, Boutiquen, Schifffahrten auf der Moldau. Die gotische Karlsbrücke und die St.-Nikolaus-Kirche auf der Kleinseite, die schönste Barockkirche Prags. Palastgärten – weit entfernt vom Stadtgetümmel, der Hügel Petřín mit dem Aussichtsturm, der an den Eiffelturm erinnert, und die Prager Burg … Jedes der Prager Stadtviertel hat seine einzigartige Atmosphäre und seinen individuellen Zauber. Prag stellt sich Ihnen als bunte Stadt vor, die gern ihren Stil wechselt: Prag ist romantisch und geschäftig, altertümlich und modern - aber vor allem ist es eine Weltstadt, die sich freut, Touristen aus der ganzen Welt zu empfangen. Es ist an der Zeit sich kennen zu lernen!','Prag'),(20,'en','Prague, City of a Hundred Spires, a UNESCO monument and one of the most beautiful cities in the world. The Old Town Hall with the famous Prague Astronomical Clock. The winding lanes of the Jewish Quarter, which you know from the novels of Franz Kafka, steeped in the legend of the Golem. Cafes enticing you to come and have a seat, boutiques and sight-seeing cruises on the Vltava. The Gothic Charles Bridge and Church of St. Nicholas in the Lesser Town, the most beautiful Baroque church in Prague. The Palace Gardens set away from the bustle of the city, Petřín with a lookout tower reminiscent of a small Eiffel Tower and Prague Castle … Each of Prague’s districts has its own characteristic atmosphere and unique charm. Prague presents itself to you as a changeable city, which likes to alternate styles: it is romantic and successful, ancient and modern, but above all it is a city that is cosmopolitan through and through, and is used to welcoming foreigners. It is time to get acquainted.','Prague'),(20,'hr','Prag, grad od stotinu zavoja, spomnenik UNESCO-a i jedan od najljepših gradova na svijetu. Stara gradska vijećnica s poznatim praškim astronomskim satom. Krivudave staze Židovske četvrti, koje poznajete iz romana Franza Kafke, prošarane legendom o Golemu. Pregršt kafića, butika i vidikovca uz Vltavu. Gotički Karlov most te crkva Sv. Nikole u Malom Gradu, koja je ujedno i najljepša barokna crkva u gradu. Vrtovi Palača udaljenih od vreve grada, Petřín vidikovac koji podsjeća na mali Eiffelov toranj te Pariški Dvorac… Svaka pariška četvrt ima svoju karakterističnu atmosferu i jedinstveni šarm. Prag se predstavlja kao promijenjiv grad koji voli alternativne stilove: romantičan je i uspješan, drevan i moderan, ali povrh svega grad koji je kozmopolitanski te pristupačan za sve turiste. Vrijeme da se upoznamo.','Prag'),(20,'it','Praga, città delle cento torri, patrimonio dell’UNESCO, una delle città più belle del mondo. Il Municipio della Città Vecchia con il celebre Orologio astronomico di Praga, le viuzze tortuose del quartiere ebraico rese note dai romanzi di Franz Kafka e intrise di leggende sul Golem, le caffetterie che invitano ad entrare e sedersi, le boutique e le escursioni in battello sul fiume Moldava, il Ponte Carlo in stile gotico e la chiesa di San Nicola nel Quartiere Piccolo, la più bella chiesa barocca di Praga, i Giardini del Castello lontani dal trambusto cittadino, la collina di Petřín con la sua torre panoramica che sembra una Torre Eiffel in miniatura, il Castello di Praga. Ogni quartiere di Praga ha la sua atmosfera peculiare e un fascino unico. Praga si presenta come una città mutevole, a cui piace alternare gli stili, sa essere romantica, frenetica, antica e moderna, ma soprattutto è una città cosmopolita abituata ad accogliere stranieri. È arrivato il momento di conoscerla!','Praga'),(21,'de',NULL,'Kopenhagen'),(21,'en',NULL,'Copenhagen'),(21,'hr',NULL,'Kopenhagen'),(21,'it',NULL,'Copenaghen'),(22,'de',NULL,'Helsinki'),(22,'en',NULL,'Helsinki'),(22,'hr',NULL,'Helsinki'),(22,'it',NULL,'Helsinki'),(23,'de',NULL,'Paris'),(23,'en',NULL,'Paris'),(23,'hr',NULL,'Pariz'),(23,'it',NULL,'Parigi'),(24,'de',NULL,'Berlin'),(24,'en',NULL,'Berlin'),(24,'hr',NULL,'Berlin'),(24,'it',NULL,'Berlino'),(25,'de',NULL,'Athen'),(25,'en',NULL,'Athens'),(25,'hr',NULL,'Atena'),(25,'it',NULL,'Atene'),(26,'de','Budapest, oft beschrieben als \"Paris des Ostens“, ist nicht nur nach Sehenswürdigkeiten einer mehrere Tausend Jahre langen Kultur bekannt, sondern auch nach Reliquien anderer Völker, die hier lebten. In der Stadt sind Überreste des Römischen Reiches bzw. der viel älteren Osmanen zu finden. Nach dem Römischen Reich kam es zum Bündnis mit Österreich, was viel Einfluss auf das gegenwärtige Aussehen und den Stil der Stadt hatte. Die Hauptstadt besteht aus zwei Teile, Buda und Pest, die von dem Fluss Donau getrennt werden und die ihren ganz eigenen Charakter in demselben Rahmen der Stadt haben. In dem vorstädtischen und historischen Teil des Budas kann man mittelalterliche Straßen und Häuser, Museen, Höhlen, sowie Ausgrabungsstätte aus der Römischen Zeit finden. Der dynamische Stadtteil Pest sticht mit dem höchsten Parlamentsgebäude Europas hervor und ist auch nach zahlreichen Spaziergängen entlang des Flusses, Flohmärkten, Buchhandlungen, Antiquitätengeschäfte und Cafés bekannt ist. Budapest hat ihren Besuchern vieles zu bieten. In der Stadt gibt es zahlreiche Museen, Galerien, Kirchen, Synagogen, Schlösser und historische Gebäuden, die die Sezession in großem Maße beeinflusste.','Budapest'),(26,'en','Often described as the \"Little Paris of Middle Europe\", Budapest is famous not only for the monuments reflecting its own 1,000-year-old culture, but also for the relics of others who settled here. Remains from both Roman occupation and much later ruled by the Turks can still be seen in the city. After the Ottoman Empire the union with Austria has a particular influence on the city\'s form and style. The capital has two sides, Buda and Pest, stretching along the banks of the Danube, representing two different characters of the city. Suburban Buda and its historic castle district offer medieval streets and houses, museums, caves and Roman ruins. The dynamic Pest side boasts the largest parliament building in Europe, riverside promenades, flea markets, bookstores, antique stores and café houses. Budapest has a lot to offer. Museums and galleries, churches and synagogues, palaces and historic buildings, baths and pools are presented together with the influence of Secession in the city.','Budapest'),(26,'hr','Često opisivana kao „mali Pariz Srednje Europe”, Budimpešta nije poznata samo po spomenicima tisućljetne kulture, već i po relikvijama drugih naroda koji su ovdje obitavali. U gradu su prisutni ostaci iz perioda Rimskog Carstva, kao i znatno starijeg prisustva Turaka. Nakon Osmanskog Carstva došlo je do saveza s Austrijom, što je znatno utjecalo na današnji izgled i stil grada. Glavni grad se sastoji od dva dijela, Budima i Pešte, koji se pružaju duž obale Dunava s dva potpuno zasebna karaktera u okviru istog grada. U prigradskom i povijesnom dijelu Budima možemo naći srednjovjekovne ulice i kuće, muzeje, špilje te nalazišta iz rimskog doba. Dinamična peštanska strana se izdvaja s najvećom zgradom parlamenta u Europi, šetnicama uz rijeku, buvljacima, knjižarama, dućanima antikviteta i kafićima. Budimpešta ima mnogo toga za ponuditi posjetiocima. U gradu s prepoznatljivim utjecajem secesije prisutni su mnogobrojni muzeji, galerije, crkve, sinagoge, dvorci te povijesne zgrade.','Budimpešta'),(26,'it','Spesso descritta come “la piccola Parigi dell’Europa centrale”, la città di Budapest non è famosa solo per i monumenti di una cultura millenaria, ma anche per le reliquie di altri popoli che vivevano qui. Nella città si trovano i resti dell’Impero romano, come anche della più vecchia presenza dei Turchi. Dopo l’Impero ottomano l’Ungheria si unisce con l’Austria. Questa alleanza ha influenzato in modo significativo l\'aspetto e lo stile della città di oggi. La capitale dell’Ungheria è divisa in due parti, Buda e Pest, dal fiume Danubio. Le due parti di Budapest hanno diverse caratteristiche all’interno della stessa città. Nella parte suburbana e storica di Buda possiamo trovare strade e case medievali, musei, grotte e siti di epoca romana. Pest è la parte più dinamica e si distingue per il più grande edificio del parlamento in Europa, la passeggiata lungo il fiume, bufali, librerie, negozi di antiquariato e caffè. Budapest ha molto da offrire ai visitatori. Nella città si trovano numerosi musei, gallerie, chiese, sinagoghe, castelli ed edifici storici con un\'influenza riconoscibile della secessione.','Budapest'),(27,'de',NULL,'Dublin'),(27,'en',NULL,'Dublin'),(27,'hr',NULL,'Dublin'),(27,'it',NULL,'Dublino'),(28,'de','Das Resultat der 3000-jährigen ad hoc urbanen Entwicklung ist der aufregende Anblick auf die Stadt und ihre Landschaft. Alte Ikonen wie Kolosseum, Römisches Forum und Pantheon erinnern an das Goldene Zeitalter der Stadt, die als caput mundi (Welthauptstadt) bekannt war, während monumentale Basilika über ihre Geschichte erzählen, denn sie ist der Sitz der katholischen Kirche. Über den Vatikan hängt die Basilika Sankt Peter, die von dem Ehrgeiz der römischen Päpste aus der Renaissance und der Genialität ihrer Architekten zeugt. Durch die Geschichte spielte die Stadt eine große Rolle in Umwälzungen der westlichen Kunst, große Künstler anlockend, die folgend Grenzen der kreativen Leistungen bewegten. Rom ist reich an antiken Skulpturen, die die Weltklasse – Museen zieren. Byzantinische Mosaiken und Renaissance-Fresken glänzen in reich verzierten Kirchen und auf Barockfassaden auf mittelalterlichen Plätzen. Im Zentrum befinden sich Meisterwerke der europäischen Künstler: Skulpturen von Michelangelo, Bilder von Caravaggio, Fresken von Raphael und Brunnen von Bernini.','Rom'),(28,'en','The result of 3000 years of ad hoc urban development, Rome\'s cityscape is an exhilarating sight. Ancient icons such as the Colosseum, Roman Forum and Pantheon recall the city’s golden age as caput mundi (capital of the world), while monumental basilicas tell of its history as seat of the Catholic Church. Lording it over the skyline, St Peter’s Basilica towers over the Vatican, testifying to the ambition of Rome’s Renaissance popes and the genius of its game-changing architects. Throughout history, the city has starred in the great upheavals of Western art, drawing top artists and inspiring them to push the boundaries of creative achievement. Ancient statues adorn world-class museums, Byzantine mosaics and Renaissance frescoes dazzle in art-rich churches and baroque facades flank medieval piazzas. Stroll through the centre and without even trying you’ll come across masterpieces by the titans of European art: Michelangelo, Caravaggio, Raphael and Bernini.','Rome'),(28,'hr','Rezultat 3000 godina ad hoc urbanog razvoja, gradski pejzaž Rima je uzbudljiv prizor. Drevne ikone poput Koloseuma, Rimskog foruma i Panteona podsjećaju na zlatno doba grada kao caput mundi (glavni grad svijeta), dok monumentalne bazilike govore o njegovoj povijesti kao sjedištu Katoličke crkve. Nad Vatikanom se nadvija bazilika sv. Petra koja svjedočeći o ambicijama rimskih renesansnih papa i genijalnosti njegovih arhitekata. Kroz povijest grad je odigrao veliku ulogu u preokretima zapadne umjetnosti, privlačeći vrhunske umjetnike i nadahnjujući ih da pomiču granice kreativnog postignuća. Rim obiluje drevnim kipovima koji krase muzeje svjetske klase, bizantskim mozaicima i renesansnim freskama koje blješte u bogato ukrašenim crkvama te baroknim pročeljima na srednjovjekovnim trgovima. Prošetate li se kroz centar, naići ćete na remek-djela titana europske umjetnosti: skulpture Michelangela, slike Caravaggia, freske Raphaela te fontane Berninija.','Rim'),(28,'it','Il risultato dello ad hoc sviluppo urbano lungo 3000 anni è l\'emozionante spettacolo della città e del suo paesaggio. Le icone antiche come il Colosseo, il Foro Romano e il Pantheon ci ricordano l\'età d\'oro della città come caput mundi (la capitale del mondo). Le basiliche monumentali parlano della sua storia come la sede della Chiesa cattolica. Sopra il Vaticano c\'è la basilica di San Pietro, testimone delle ambizioni dei papi del Rinascimento romano e dell\'ingegno dei suoi architetti. Nel corso della storia, la città ha svolto un ruolo importante nelle inversioni dell\'arte occidentale, attirando i migliori artisti e ispirandoli a spostare i limiti della realizzazione creativa. A Roma si trovano tante sculture antiche che scintillano musei di fama mondiale. Mosaici bizantini e affreschi rinascimentali brillano nelle chiese riccamente decorate e sulle facciate barocche in piazze medievali. Nel centro si possono vedere i capolavori dell\'arte europea: le sculture di Michelangelo, i dipinti di Caravaggio, gli affreschi di Raffaello e le fontane del Bernini.','Roma'),(29,'de',NULL,'Pristina'),(29,'en',NULL,'Pristina'),(29,'hr',NULL,'Priština'),(29,'it',NULL,'Pristina'),(30,'de',NULL,'Riga'),(30,'en',NULL,'Riga'),(30,'hr',NULL,'Riga'),(30,'it',NULL,'Riga'),(31,'de',NULL,'Vaduz'),(31,'en',NULL,'Vaduz'),(31,'hr',NULL,'Vaduz'),(31,'it',NULL,'Vaduz'),(32,'de',NULL,'Luxemburg'),(32,'en',NULL,'Luxembourg'),(32,'hr',NULL,'Luxembourg'),(32,'it',NULL,'Lussemburgo'),(33,'de',NULL,'Skopje'),(33,'en',NULL,'Skopje'),(33,'hr',NULL,'Skoplje'),(33,'it',NULL,'Skopje'),(34,'de',NULL,'Kischinau'),(34,'en',NULL,'Chisinau'),(34,'hr',NULL,'Kišnjev'),(34,'it',NULL,'Chișinău'),(35,'de',NULL,'Monaco'),(35,'en',NULL,'Monaco'),(35,'hr',NULL,'Monaco'),(35,'it',NULL,'Monaco'),(36,'de',NULL,'Podgorica'),(36,'en',NULL,'Podgorica'),(36,'hr',NULL,'Podgorica'),(36,'it',NULL,'Podgorica'),(37,'de','Amsterdam ist einzigartig unter den europäischen Metropolen. Im Vergleich zu anderen Weltstädten ist Amsterdam recht klein, doch bürgt es alle Vorteile einer Metropole – eine Vielzahl historischer Sehenswürdigkeiten, weltberühmte Museen und ein ausgeprägtes Nachtleben. Doch alles in überschaubar und im kleinen Rahmen. Amsterdam ist vielmehr als Grachten, Coffee-Shops und das Rot-Licht-Viertel. Die Stadt an sich hat ein internationales Flair und bietet etwas für jeden Geschmack. Angefangen von Grachtenrundfahrten, Museumsbesuchen und Shoppingtrips bis zu den verschiedensten Formen von Unterhaltung und Ausgehen am Abend. Nichts ist weit voneinander entfernt und alles ist gut durch den öffentlichen Verkehr zu erreichen.','Amsterdam'),(37,'en','Amsterdam is one of the greatest small cities in the world. From Amsterdam canals to world-famous Amsterdam museums and historical Amsterdam sights, it is one of the most romantic and beautiful cities in Europe. Canal cruises are a popular way to see the city from the perspective of its canals.Amsterdam is also a city of tolerance and diversity. It has all the advantages of a big city: rich culture, lively Amsterdam nightlife, international restaurants, good transport - but is quiet, and largely thanks to its extensive canals, has a little road traffic. In this city your destination is never far away, but get a bike for an authentic local experience. And if you are staying for longer, consider a daytrip from Amsterdam to see also the surrounding towns and villages. They are full of attractions. To know more about Amsterdam you can read some basic facts and info.','Amsterdam'),(37,'hr','Amsterdam je jedan od najljepših gradova na svijetu. Od svojih kanala do svjetski poznatih muzeja i povijesnih znamenitosti, jedan je od najromantičnijih i najljepših europskih gradova. To je također mjesto tolerancije i raznolikosti. Ima sve prednosti velikog grada: kulturu, zabavu, raznolike restorane, dobar prijevoz, ali je relativno miran, tih i sa vrlo malo cestovnog prometa. Nikada niste daleko od svog odredišta u Amsterdamu. Glavne turističke atrakcije su muzeji. Sigurno ste čuli za Rijksmuseum, Muzej Stedelijk ili Muzej Van Gogh, ali to je samo kap u malom moru od pedeset muzeja Amsterdama koji svake godine privlači milijune turista. Mnogo je malenih iznenađenja u gradu, ali nesumnjivo svi znate o židovskoj djevojci Ani Frank, čija se kuća nalazi u glavnom gradu Nizozemske. Ako imate priliku, prošetajte gradom i vidite uske nizinske kuće i plutajuće domove stanovnika.','Amsterdam'),(37,'it','Definita la Venezia del Nord per il suo sistema di canali, è una delle mete turistiche più gettonate. Capitale del divertimento e del proibito, famosa per i suoi coffeeshop e la frenetica vita notturna, Amsterdam è rinomata anche per le molteplici attività culturali, le architetture antiche e moderne, e i suoi musei (Van Gogh Museum, Rijksmuseum, Casa di Anna Frank, solo per citarne alcuni). Amsterdam Info vuol essere una guida turistica semplice e completa alla scoperta di questa piccola ma vivace città, che offre davvero mille cose da fare! Questo sito è stato concepito per le esigenze dei turisti italiani in partenza verso la città olandese più famosa: dalle informazioni pratiche ai mezzi di trasporto, dalla prenotazione del luogo dove pernottare alle particolarità che Amsterdam sa offrire. Quindi buona visita al nostro sito, i tesori di Amsterdam non saranno più un segreto per voi!','Amsterdam'),(38,'de',NULL,'Oslo'),(38,'en',NULL,'Oslo'),(38,'hr',NULL,'Oslo'),(38,'it',NULL,'Oslo'),(39,'de',NULL,'Warschau'),(39,'en',NULL,'Warsaw'),(39,'hr',NULL,'Varšava'),(39,'it',NULL,'Varsavia'),(40,'de',NULL,'Lissabon'),(40,'en',NULL,'Lisbon'),(40,'hr',NULL,'Lisabon'),(40,'it',NULL,'Lisbona'),(41,'de',NULL,'Bukarest'),(41,'en',NULL,'Bucharest'),(41,'hr',NULL,'Bukurešt'),(41,'it',NULL,'Bucarest'),(42,'de',NULL,'Moskau'),(42,'en',NULL,'Moscow'),(42,'hr',NULL,'Moskva'),(42,'it',NULL,'Mosca'),(43,'de',NULL,'Tallinn'),(43,'en',NULL,'Tallinn'),(43,'hr',NULL,'Tallinn'),(43,'it',NULL,'Tallinn'),(44,'de',NULL,'Vilnius'),(44,'en',NULL,'Vilnius'),(44,'hr',NULL,'Vilnius'),(44,'it',NULL,'Vilnius');
/*!40000 ALTER TABLE `city_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `country`
--
DROP TABLE IF EXISTS `country`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `country` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `country`
--
LOCK TABLES `country` WRITE;
/*!40000 ALTER TABLE `country` DISABLE KEYS */;
INSERT INTO `country` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31),(32),(33),(34),(35),(36),(37),(38),(39),(40),(41),(42),(43),(44);
/*!40000 ALTER TABLE `country` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `country_description`
--
DROP TABLE IF EXISTS `country_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `country_description` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`language` varchar(2) NOT NULL,
`title` varchar(40) NOT NULL,
PRIMARY KEY (`id`,`language`),
CONSTRAINT `country_id` FOREIGN KEY (`id`) REFERENCES `country` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `country_description`
--
LOCK TABLES `country_description` WRITE;
/*!40000 ALTER TABLE `country_description` DISABLE KEYS */;
INSERT INTO `country_description` VALUES (1,'de','Kroatien'),(1,'en','Croatia'),(1,'hr','Hrvatska'),(1,'it','Croazia'),(2,'de','Slowenien'),(2,'en','Slovenia'),(2,'hr','Slovenija'),(2,'it','Slovenia'),(3,'de','Serbien'),(3,'en','Serbia'),(3,'hr','Srbija'),(3,'it','Serbia'),(4,'de','San Marino'),(4,'en','San Marino'),(4,'hr','San Marino'),(4,'it','San Marino'),(5,'de','Slowakei'),(5,'en','Slovakia'),(5,'hr','Slovačka'),(5,'it','Slovacchia'),(6,'de','Vatikanstadt'),(6,'en','Vatican City'),(6,'hr','Vatikan'),(6,'it','Città del Vaticano'),(7,'de','Schweden'),(7,'en','Sweden'),(7,'hr','Švedska'),(7,'it','Svezia'),(8,'de','Spanien'),(8,'en','Spain'),(8,'hr','Španjolska'),(8,'it','Spagna'),(9,'de','Vereinigtes Königreich'),(9,'en','United Kingdom'),(9,'hr','Ujedinjeno Kravljestvo'),(9,'it','Regno Unito'),(10,'de','Schweiz'),(10,'en','Switzerland'),(10,'hr','Švicarska'),(10,'it','Svizzera'),(11,'de','Türkei'),(11,'en','Turkey'),(11,'hr','Turska'),(11,'it','Turchia'),(12,'de','Ukraine'),(12,'en','Ukraine'),(12,'hr','Ukrajina'),(12,'it','Ucraina'),(13,'de','Albanien'),(13,'en','Albania'),(13,'hr','Albanija'),(13,'it','Albania'),(14,'de','Andorra'),(14,'en','Andorra'),(14,'hr','Andora'),(14,'it','Andorra'),(15,'de','Österreich'),(15,'en','Austria'),(15,'hr','Austrija'),(15,'it','Austria'),(16,'de','Weißrussland'),(16,'en','Belarus'),(16,'hr','Bjelorusija'),(16,'it','Bielorussia'),(17,'de','Belgien'),(17,'en','Belgium'),(17,'hr','Belgija'),(17,'it','Belgio'),(18,'de','Bosnien und Herzegowina'),(18,'en','Bosnia and Herzegovina'),(18,'hr','Bosna i Hercegovina'),(18,'it','Bosnia ed Erzegovina'),(19,'de','Bulgarien'),(19,'en','Bulgaria'),(19,'hr','Bugarska'),(19,'it','Bulgaria'),(20,'de','Tschechien'),(20,'en','Czech Republic'),(20,'hr','Češka'),(20,'it','Repubblica Ceca'),(21,'de','Dänemark'),(21,'en','Denmark'),(21,'hr','Danska'),(21,'it','Danimarca'),(22,'de','Finnland'),(22,'en','Finland'),(22,'hr','Finska'),(22,'it','Finlandia'),(23,'de','Frankreich'),(23,'en','France'),(23,'hr','Francuska'),(23,'it','Francia'),(24,'de','Deutschland'),(24,'en','Germany'),(24,'hr','Njemačka'),(24,'it','Germania'),(25,'de','Griechenland'),(25,'en','Greece'),(25,'hr','Grčka'),(25,'it','Grecia'),(26,'de','Ungarn'),(26,'en','Hungary'),(26,'hr','Mađarska'),(26,'it','Ungheria'),(27,'de','Irland'),(27,'en','Ireland'),(27,'hr','Irska'),(27,'it','Irlanda'),(28,'de','Italien'),(28,'en','Italy'),(28,'hr','Italija'),(28,'it','Italia'),(29,'de','Kosovo'),(29,'en','Kosovo'),(29,'hr','Kosovo'),(29,'it','Kosovo'),(30,'de','Lettland'),(30,'en','Latvia'),(30,'hr','Latvija'),(30,'it','Lettonia'),(31,'de','Liechtenstein'),(31,'en','Liechtenstein'),(31,'hr','Lihtenštajn'),(31,'it','Liechtenstein'),(32,'de','Luxemburg'),(32,'en','Luxembourg'),(32,'hr','Luksemburg'),(32,'it','Lussemburgo'),(33,'de','Nordmazedonien'),(33,'en','North Macedonia'),(33,'hr','Sjeverna Makedonija'),(33,'it','Macedonia del Nord'),(34,'de','Moldau'),(34,'en','Moldova'),(34,'hr','Moldavija'),(34,'it','Moldavia'),(35,'de','Monaco'),(35,'en','Monaco'),(35,'hr','Monako'),(35,'it','Monaco'),(36,'de','Montenegro'),(36,'en','Montenegro'),(36,'hr','Crna Gora'),(36,'it','Montenegro'),(37,'de','Niederlande'),(37,'en','Netherlands'),(37,'hr','Nizozemske'),(37,'it','Paesi Bassi'),(38,'de','Norwegen'),(38,'en','Norway'),(38,'hr','Norveška'),(38,'it','Norvegia'),(39,'de','Polen'),(39,'en','Poland'),(39,'hr','Poljska'),(39,'it','Polonia'),(40,'de','Portugal'),(40,'en','Portugal'),(40,'hr','Portugal'),(40,'it','Portogallo'),(41,'de','Rumänien'),(41,'en','Romania'),(41,'hr','Rumunjska'),(41,'it','Romania'),(42,'de','Russland'),(42,'en','Russia'),(42,'hr','Rusija'),(42,'it','Russia'),(43,'de','Estland'),(43,'en','Estonia'),(43,'hr','Estonija'),(43,'it','Estonia'),(44,'de','Litauen'),(44,'en','Lithuania'),(44,'hr','Litva'),(44,'it','Lituania');
/*!40000 ALTER TABLE `country_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `paying_method`
--
DROP TABLE IF EXISTS `paying_method`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `paying_method` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `paying_method`
--
LOCK TABLES `paying_method` WRITE;
/*!40000 ALTER TABLE `paying_method` DISABLE KEYS */;
INSERT INTO `paying_method` VALUES (1,'MONEY'),(2,'PAY_PAL');
/*!40000 ALTER TABLE `paying_method` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `traffic_info`
--
DROP TABLE IF EXISTS `traffic_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `traffic_info` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`info_type_id` tinyint(3) unsigned NOT NULL,
`date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `info_type_idx` (`info_type_id`),
CONSTRAINT `info_type` FOREIGN KEY (`info_type_id`) REFERENCES `traffic_info_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `traffic_info`
--
LOCK TABLES `traffic_info` WRITE;
/*!40000 ALTER TABLE `traffic_info` DISABLE KEYS */;
INSERT INTO `traffic_info` VALUES (1,1,'2030-01-01'),(2,3,'2030-01-01'),(3,3,'2030-01-01'),(4,3,'2030-01-01'),(5,2,'2030-01-01'),(6,2,'2030-01-01'),(7,1,'2030-01-01'),(8,1,'2030-01-01'),(9,2,'2030-01-01'),(10,2,'2030-01-01');
/*!40000 ALTER TABLE `traffic_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `traffic_info_description`
--
DROP TABLE IF EXISTS `traffic_info_description`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `traffic_info_description` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`language` varchar(2) NOT NULL,
`description` varchar(500) NOT NULL,
PRIMARY KEY (`id`,`language`),
CONSTRAINT `traffic_id` FOREIGN KEY (`id`) REFERENCES `traffic_info` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `traffic_info_description`
--
LOCK TABLES `traffic_info_description` WRITE;
/*!40000 ALTER TABLE `traffic_info_description` DISABLE KEYS */;
INSERT INTO `traffic_info_description` VALUES (1,'de','Straßenarbeiten auf der A7. Kein Stau.'),(1,'en','Works on section A7. No traffic jam.'),(1,'hr','Radovi na dionici A7. Nema zastoja prometa.'),(1,'it','Lavori stradali sulla A7. Nessun ingorgo.'),(2,'de','Schwacher Wind auf der Golden Gate Bridge. Mögliche Staus.'),(2,'en','Weak wind on the Golden Gate Bridge. Possible traffic jams.'),(2,'hr','Slabiji vjetar na mostu Golden Gate. Mogući zastoji prometa.'),(2,'it','Debolo vento sul Golden Gate Bridge. Possibili ingorghi.'),(3,'de','Straßenarbeiten auf der A15. Der Verkehr ist langsamer geworden.'),(3,'en','Works on section A15. Traffic slowed down.'),(3,'hr','Radovi na dionici A15. Promet je usporen.'),(3,'it','Lavori stradali sulla A15. Il traffico ha rallentato.'),(4,'de','Straßenarbeiten auf der B375. Der Verkehr ist langsamer geworden.'),(4,'en','Works on section B375. Traffic slowed down.'),(4,'hr','Radovi na dionici B375. Promet je usporen.'),(4,'it','Lavori stradali sulla B375. Il traffico ha rallentato.'),(5,'de','Unfall auf der A13. Stoppen Sie den Verkehr.'),(5,'en','Accident on A13. Stop traffic.'),(5,'hr','Nesreća na dionici A13. Zastoji u prometu.'),(5,'it','Incidente sulla A13. Stop al traffico.'),(6,'de','Starker Wind durch den Tesla-Tunnel. Busse fahren nicht.'),(6,'en','Strong wind through Tesla tunnel. Buses do not run.'),(6,'hr','Jaki vjetar kroz tunel Tesla. Autobusi ne prometuju.'),(6,'it','Forte vento attraverso il tunnel di Tesla. Gli autobus non guidano.'),(7,'de','Straßenarbeiten auf der D7520. Es gibt keine Staus.'),(7,'en','Works on D7520. There is no traffic jams.'),(7,'hr','Radovi na dionici D7520. Nema zastoja u prometu.'),(7,'it','Lavori stradali sulla D7520. Non ci sono ingorghi.'),(8,'de','Unfall auf der A15. Es gibt keine Staus.'),(8,'en','Accident at A15. There is no traffic jams.'),(8,'hr','Nesreća na dionici A15. Nema zastoja u prometu.'),(8,'it','Incidente sulla A15. Non ci sono ingorghi.'),(9,'de','Schnee auf der B123. Busse fahren nicht.'),(9,'en','Snow at B123. Buses do not run.'),(9,'hr','Snijeg na dionici B123. Autobusi ne prometuju.'),(9,'it','Neve sulla B123. Gli autobus non guidano.'),(10,'de','Schnee auf der D1333. Busse fahren nicht.'),(10,'en','Snow at D1333. Buses do not run.'),(10,'hr','Snijeg na dionici D1333. Autobusi ne prometuju.'),(10,'it','Neve sulla D1333. Gli autobus non guidano.');
/*!40000 ALTER TABLE `traffic_info_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `traffic_info_type`
--
DROP TABLE IF EXISTS `traffic_info_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `traffic_info_type` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(10) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `traffic_info_type`
--
LOCK TABLES `traffic_info_type` WRITE;
/*!40000 ALTER TABLE `traffic_info_type` DISABLE KEYS */;
INSERT INTO `traffic_info_type` VALUES (2,'IMPORTANT'),(1,'NONE'),(3,'NOTICE');
/*!40000 ALTER TABLE `traffic_info_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `trip_history`
--
DROP TABLE IF EXISTS `trip_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `trip_history` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`bus_schedule_id` int(10) unsigned NOT NULL,
`date` date NOT NULL,
`number_of_seats` tinyint(3) unsigned NOT NULL,
`trip_type_id` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `bus_schedule_idx` (`bus_schedule_id`),
KEY `trip_type_idx` (`trip_type_id`),
CONSTRAINT `bus_schedule` FOREIGN KEY (`bus_schedule_id`) REFERENCES `bus_schedule` (`id`),
CONSTRAINT `trip_type_ab` FOREIGN KEY (`trip_type_id`) REFERENCES `trip_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `trip_history`
--
LOCK TABLES `trip_history` WRITE;
/*!40000 ALTER TABLE `trip_history` DISABLE KEYS */;
INSERT INTO `trip_history` VALUES (1,1,'2015-12-20',3,2),(2,1,'2016-01-10',7,1),(3,1,'2016-03-03',15,2),(4,1,'2016-03-15',20,1),(5,1,'2016-06-27',6,2),(6,2,'2016-08-01',0,1),(7,2,'2016-09-12',11,2),(8,1,'2016-12-19',3,2),(9,1,'2017-01-10',7,1),(10,1,'2017-03-04',15,2),(11,1,'2017-03-18',20,1),(12,1,'2017-07-01',6,2),(13,2,'2017-09-22',11,2),(14,1,'2017-12-12',3,2),(15,1,'2018-01-07',7,1),(16,1,'2018-03-01',15,2),(17,1,'2018-03-22',20,1),(18,1,'2018-07-15',6,2),(19,2,'2018-09-07',11,2),(28,816,'2019-04-03',51,1),(29,816,'2019-04-04',55,2);
/*!40000 ALTER TABLE `trip_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `trip_prices`
--
DROP TABLE IF EXISTS `trip_prices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `trip_prices` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`trip_duration` bigint(20) NOT NULL,
`from_date` date NOT NULL,
`price` double unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQUE` (`trip_duration`,`from_date`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `trip_prices`
--
LOCK TABLES `trip_prices` WRITE;
/*!40000 ALTER TABLE `trip_prices` DISABLE KEYS */;
INSERT INTO `trip_prices` VALUES (1,0,'2005-05-05',17.4),(2,1800000000000,'2005-05-05',20),(3,3600000000000,'2005-05-05',28.5),(4,5400000000000,'2005-05-05',46.08),(5,7200000000000,'2005-05-05',72.27),(6,9000000000000,'2005-05-05',106.66),(7,10800000000000,'2005-05-05',148.82),(8,12600000000000,'2005-05-05',198.38),(9,14400000000000,'2005-05-05',254.96),(10,16200000000000,'2005-05-05',318.22),(11,18000000000000,'2005-05-05',387.81),(12,19800000000000,'2005-05-05',463.42),(13,21600000000000,'2005-05-05',544.74),(14,23400000000000,'2005-05-05',631.51),(15,27000000000000,'2005-05-05',723.43),(16,30600000000000,'2005-05-05',812.29),(17,34200000000000,'2005-05-05',893.89),(18,37800000000000,'2005-05-05',964.66),(19,41400000000000,'2005-05-05',1021.95),(20,45000000000000,'2005-05-05',1064.16),(21,59400000000000,'2005-05-05',1090.75),(22,73800000000000,'2005-05-05',1179.22),(23,88200000000000,'2005-05-05',1319.06),(24,102600000000000,'2005-05-05',1501.52),(25,117000000000000,'2005-05-05',1719.36),(26,131400000000000,'2005-05-05',1966.57),(27,145800000000000,'2005-05-05',2238.15),(28,160200000000000,'2005-05-05',2529.97),(29,174600000000000,'2005-05-05',2838.57),(30,189000000000000,'2005-05-05',3161.11),(31,203400000000000,'2005-05-05',3495.22),(32,217800000000000,'2005-05-05',3838.94),(33,232200000000000,'2005-05-05',4190.62),(34,246600000000000,'2005-05-05',4548.91),(35,261000000000000,'2005-05-05',4912.7);
/*!40000 ALTER TABLE `trip_prices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `trip_type`
--
DROP TABLE IF EXISTS `trip_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `trip_type` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(10) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `trip_type`
--
LOCK TABLES `trip_type` WRITE;
/*!40000 ALTER TABLE `trip_type` DISABLE KEYS */;
INSERT INTO `trip_type` VALUES (1,'A_TO_B'),(2,'B_TO_A'),(3,'ROUND_TRIP');
/*!40000 ALTER TABLE `trip_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_info`
--
DROP TABLE IF EXISTS `user_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `user_info` (
`username` varchar(50) NOT NULL,
`name` varchar(20) NOT NULL,
`surname` varchar(20) NOT NULL,
`date_of_birth` date NOT NULL,
`receive_newsletter` tinyint(3) unsigned DEFAULT '0',
PRIMARY KEY (`username`),
CONSTRAINT `username_info_table` FOREIGN KEY (`username`) REFERENCES `users` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_info`
--
LOCK TABLES `user_info` WRITE;
/*!40000 ALTER TABLE `user_info` DISABLE KEYS */;
INSERT INTO `user_info` VALUES ('admin@cbc','Administrator','Administrator','1900-01-01',0),('agnes@example.com','Agnes','Duncan','1990-05-31',1),('bardell@example.com','Bardell','Torres','1967-11-23',1),('barker@example.com','Barker','Shaw','1972-08-08',1),('barkis@example.com','Barkis','Farmer','1986-11-18',1),('barnet@example.com','Barnet','Grant','1969-05-20',1),('berinthia@example.com','Berinthia','Kramer','1992-08-08',1),('blackboy@example.com','Blackboy','Richards','1957-03-16',1),('boy@example.com','Boy','Stewart','1986-09-13',1),('brass@example.com','Brass','Ryan','1969-04-28',1),('brown@example.com','Brown','Terry','1994-10-31',1),('bumble@example.com','Bumble','Malone','1977-07-27',1),('cheeryble@example.com','Cheeryble','Watts','1978-03-29',1),('chillip@example.com','Chillip','Hall','1964-07-03',1),('clennam@example.com','Adam','Chavez','1984-11-26',1),('colonal@example.com','Colonal','Welch','1954-03-31',1),('copperfield@example.com','Copperfield','Chambers','1981-06-30',1),('creevy@example.com','Creevy','Stevenson','1974-07-12',1),('donny@example.com','Donny','Lucas','1985-09-28',1),('dora@example.com','Dora','Wilkes','1993-08-23',1),('feenix@example.com','Feenix','Wise','1974-04-29',1),('flowers@example.com','Flowers','Johns','1964-03-06',1),('gabelle@example.com','Gabelle','Robbins','1976-02-07',1),('gabriel@example.com','Gabriel','Malcom','1961-05-26',1),('higden@example.com','Higden','Griffin','1977-01-03',1),('honeythunder@example.com','Wagner','Wyatt','1959-09-02',1),('infant@example.com','Infant','Mendoza','1983-12-26',1),('jacob@example.com','Jacob','Jones','1995-05-08',1),('lambert@example.com','Lambert','Sharp','1996-04-26',1),('larkins@example.com','Larkins','Moran','1963-09-28',1),('lobley@example.com','Lobley','Maxwell','1982-08-04',1),('louisa@example.com','Louisa','Gardner','1987-05-04',1),('lupin@example.com','Lupin','Walker','1980-11-21',1),('margaret@example.com','Margaret','Dawson','1963-10-15',1),('martha@example.com','Martha','Lee','1977-05-30',1),('marwood@example.com','Marwood','Powell','1969-03-26',1),('mary@example.com','Mary','Holland','1968-06-04',1),('mell@example.com','Mell','Silva','1996-01-22',1),('mick@example.com','Mick','Jennings','2001-11-23',1),('mulberry@example.com','Mulberry','Rogers','1996-12-06',1),('phoebe@example.com','Phoebe','Carr','1969-05-14',1),('plornish@example.com','Plornish','Clark','1965-06-30',1),('pott@example.com','Tom','Brown','1961-06-27',1),('richard@example.com','Richard','Lindsay','1980-01-05',1),('riderhood@example.com','Riderhood','Gill','1970-02-06',1),('roads@example.com','Roads','Sanchez','1964-09-05',1),('rugg@example.com','Rugg','Mccarthy','1957-02-02',1),('snitchey@example.com','Snitchey','Christensen','1955-11-26',1),('sparkler@example.com','Sparkler','Mccann','1979-03-29',1),('stephen@example.com','Stephen','Joseph','1986-11-14',1),('tomkins@example.com','Tomkins','Thompson','2001-12-06',1),('tracy@example.com','Tracy','Bishop','1979-09-12',1),('tungay@example.com','Tungay','Gallagher','1973-02-21',1),('user@example.com','John','Doe','1992-05-12',1),('wickfield@example.com','Wickfield','Wade','1968-04-24',1);
/*!40000 ALTER TABLE `user_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_login_history`
--
DROP TABLE IF EXISTS `user_login_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `user_login_history` (
`username` varchar(50) NOT NULL,
`date_time` datetime NOT NULL,
`ip_address` varchar(45) NOT NULL,
PRIMARY KEY (`username`,`date_time`),
CONSTRAINT `username_login_history_table` FOREIGN KEY (`username`) REFERENCES `users` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_login_history`
--
LOCK TABLES `user_login_history` WRITE;
/*!40000 ALTER TABLE `user_login_history` DISABLE KEYS */;
INSERT INTO `user_login_history` VALUES ('agnes@example.com','2016-03-16 12:34:10','78.46.155.29'),('agnes@example.com','2018-02-09 23:20:24','78.46.155.29'),('agnes@example.com','2018-03-14 20:53:09','78.46.155.29'),('bardell@example.com','2016-07-17 00:29:14','71.125.143.148'),('barker@example.com','2015-11-01 00:44:57','40.219.134.241'),('barkis@example.com','2016-05-11 20:23:06','236.43.101.140'),('barnet@example.com','2015-05-10 08:47:26','144.90.186.239'),('barnet@example.com','2016-02-06 10:12:11','144.90.186.239'),('berinthia@example.com','2015-06-11 19:43:36','48.188.152.41'),('berinthia@example.com','2016-11-16 07:10:20','48.188.152.41'),('berinthia@example.com','2018-08-17 00:43:34','48.188.152.41'),('blackboy@example.com','2016-01-17 19:41:20','203.215.219.195'),('blackboy@example.com','2016-03-30 17:23:21','203.215.219.195'),('boy@example.com','2017-11-28 05:12:35','75.231.71.80'),('boy@example.com','2018-02-24 12:00:12','75.231.71.80'),('boy@example.com','2018-09-07 23:59:06','75.231.71.80'),('brass@example.com','2017-11-21 05:26:27','84.191.254.246'),('brown@example.com','2015-07-22 23:31:32','69.230.203.69'),('brown@example.com','2017-01-26 00:05:46','69.230.203.69'),('brown@example.com','2018-08-20 09:39:59','69.230.203.69'),('bumble@example.com','2015-03-18 20:09:43','226.63.84.177'),('bumble@example.com','2017-10-09 22:22:35','226.63.84.177'),('bumble@example.com','2018-05-12 03:11:48','226.63.84.177'),('cheeryble@example.com','2015-07-15 11:50:24','93.175.14.126'),('cheeryble@example.com','2016-01-07 19:12:23','93.175.14.126'),('cheeryble@example.com','2017-02-22 08:25:55','93.175.14.126'),('chillip@example.com','2016-08-08 05:37:12','184.154.107.29'),('clennam@example.com','2015-11-08 04:47:17','96.251.124.24'),('clennam@example.com','2016-02-29 13:17:01','96.251.124.24'),('clennam@example.com','2018-08-15 20:37:34','96.251.124.24'),('colonal@example.com','2018-01-08 12:50:47','57.93.187.243'),('colonal@example.com','2018-05-12 17:48:00','57.93.187.243'),('copperfield@example.com','2015-06-25 11:26:39','108.195.209.56'),('creevy@example.com','2017-10-27 10:45:35','83.25.5.185'),('donny@example.com','2017-03-18 08:23:24','148.211.121.47'),('dora@example.com','2017-07-06 09:34:29','118.130.72.20'),('feenix@example.com','2015-07-20 08:38:27','213.18.211.23'),('flowers@example.com','2017-07-27 22:21:15','72.58.6.16'),('gabelle@example.com','2016-01-15 12:27:51','3.63.75.217'),('gabelle@example.com','2016-09-18 10:43:18','3.63.75.217'),('gabelle@example.com','2018-07-24 23:05:18','3.63.75.217'),('gabriel@example.com','2015-01-04 15:04:18','212.91.77.129'),('gabriel@example.com','2016-08-21 20:56:14','212.91.77.129'),('gabriel@example.com','2016-08-27 01:47:36','212.91.77.129'),('gabriel@example.com','2017-02-13 02:40:27','212.91.77.129'),('gabriel@example.com','2018-10-28 17:50:52','212.91.77.129'),('higden@example.com','2015-01-25 17:00:22','184.91.185.126'),('higden@example.com','2017-04-22 11:51:19','184.91.185.126'),('higden@example.com','2018-06-10 04:26:28','184.91.185.126'),('honeythunder@example.com','2015-07-21 10:23:40','20.232.140.147'),('honeythunder@example.com','2017-01-15 02:00:53','20.232.140.147'),('honeythunder@example.com','2018-07-07 00:23:50','20.232.140.147'),('honeythunder@example.com','2018-10-07 11:57:59','20.232.140.147'),('infant@example.com','2019-01-09 11:40:29','98.96.245.160'),('jacob@example.com','2015-05-13 02:16:38','202.98.91.144'),('jacob@example.com','2015-05-18 20:05:14','202.98.91.144'),('jacob@example.com','2018-10-22 17:28:25','202.98.91.144'),('lambert@example.com','2015-11-07 01:21:16','78.191.120.175'),('lambert@example.com','2016-09-12 13:04:13','78.191.120.175'),('lambert@example.com','2017-08-11 00:35:04','78.191.120.175'),('lambert@example.com','2018-04-04 16:44:40','78.191.120.175'),('larkins@example.com','2015-07-28 07:06:30','10.59.187.26'),('lobley@example.com','2016-10-04 09:15:41','69.204.187.180'),('louisa@example.com','2017-11-01 00:16:07','223.223.24.212'),('lupin@example.com','2015-09-25 10:22:54','211.149.191.135'),('lupin@example.com','2017-10-19 15:24:21','211.149.191.135'),('lupin@example.com','2018-05-15 12:16:08','211.149.191.135'),('margaret@example.com','2017-03-20 04:59:19','113.96.111.89'),('margaret@example.com','2018-01-07 03:05:57','113.96.111.89'),('martha@example.com','2018-08-22 13:48:26','43.63.149.62'),('marwood@example.com','2015-08-13 00:51:52','121.81.24.95'),('marwood@example.com','2018-05-24 16:59:00','121.81.24.95'),('mary@example.com','2016-04-04 01:24:01','65.29.148.149'),('mary@example.com','2016-09-06 03:35:08','65.29.148.149'),('mell@example.com','2015-06-23 02:19:41','32.146.200.85'),('mell@example.com','2016-08-01 04:55:10','32.146.200.85'),('mell@example.com','2017-01-25 05:47:20','32.146.200.85'),('mell@example.com','2017-12-13 08:06:21','32.146.200.85'),('mick@example.com','2015-01-28 00:47:30','240.161.184.53'),('mick@example.com','2015-10-17 01:14:01','240.161.184.53'),('mulberry@example.com','2015-08-12 13:03:12','29.113.193.62'),('mulberry@example.com','2015-08-15 10:55:53','29.113.193.62'),('mulberry@example.com','2016-04-29 11:21:41','29.113.193.62'),('mulberry@example.com','2017-05-25 03:06:41','29.113.193.62'),('phoebe@example.com','2016-02-08 11:43:54','224.20.112.173'),('phoebe@example.com','2018-02-14 04:54:15','224.20.112.173'),('phoebe@example.com','2018-07-12 16:11:04','224.20.112.173'),('phoebe@example.com','2018-10-08 21:36:07','224.20.112.173'),('plornish@example.com','2015-10-31 04:45:08','63.121.50.163'),('plornish@example.com','2016-10-10 07:14:18','63.121.50.163'),('pott@example.com','2015-03-06 12:37:47','187.221.252.64'),('pott@example.com','2016-02-26 08:59:04','187.221.252.64'),('pott@example.com','2016-03-06 12:18:00','187.221.252.64'),('pott@example.com','2018-02-06 13:35:16','187.221.252.64'),('pott@example.com','2018-02-24 21:42:11','187.221.252.64'),('pott@example.com','2018-12-23 23:17:40','187.221.252.64'),('richard@example.com','2018-06-22 04:57:53','10.15.33.228'),('riderhood@example.com','2015-08-30 20:43:28','253.31.68.175'),('roads@example.com','2016-06-16 05:36:27','124.149.114.180'),('roads@example.com','2018-06-07 02:11:30','124.149.114.180'),('rugg@example.com','2018-03-17 09:04:31','214.130.60.170'),('snitchey@example.com','2017-09-15 09:56:11','38.136.12.161'),('sparkler@example.com','2018-03-27 11:22:43','253.195.38.86'),('stephen@example.com','2016-08-07 18:49:21','67.207.178.194'),('tomkins@example.com','2015-07-09 16:40:46','146.213.184.231'),('tomkins@example.com','2016-07-25 04:04:27','146.213.184.231'),('tomkins@example.com','2018-01-29 20:48:41','146.213.184.231'),('tomkins@example.com','2019-01-07 16:35:26','146.213.184.231'),('tracy@example.com','2016-01-05 22:52:14','197.42.116.5'),('tracy@example.com','2017-08-18 01:24:39','197.42.116.5'),('tracy@example.com','2018-08-04 04:04:58','197.42.116.5'),('tungay@example.com','2015-10-14 01:48:12','97.129.176.127'),('tungay@example.com','2016-09-01 05:19:06','97.129.176.127'),('user@example.com','2017-05-20 03:54:33','228.65.38.94'),('wickfield@example.com','2017-02-08 08:06:51','47.189.61.161');
/*!40000 ALTER TABLE `user_login_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_travel_history`
--
DROP TABLE IF EXISTS `user_travel_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `user_travel_history` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`trip_history_id` bigint(20) unsigned NOT NULL,
`number_of_adults` tinyint(3) unsigned NOT NULL,
`number_of_children` tinyint(3) unsigned NOT NULL,
`price` double NOT NULL,
`paying_method_id` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `trip_histroy_idx` (`trip_history_id`),
KEY `paying_method_idx` (`paying_method_id`),
KEY `username_travel_history_table_idx` (`username`),
CONSTRAINT `paying_method` FOREIGN KEY (`paying_method_id`) REFERENCES `paying_method` (`id`),
CONSTRAINT `trip_histroy` FOREIGN KEY (`trip_history_id`) REFERENCES `trip_history` (`id`),
CONSTRAINT `username_travel_history_table` FOREIGN KEY (`username`) REFERENCES `users` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_travel_history`
--
LOCK TABLES `user_travel_history` WRITE;
/*!40000 ALTER TABLE `user_travel_history` DISABLE KEYS */;
INSERT INTO `user_travel_history` VALUES (1,'user@example.com',1,1,0,98,1),(2,'user@example.com',2,1,0,98,1),(3,'user@example.com',3,1,0,98,1),(4,'user@example.com',4,2,0,98,2),(5,'user@example.com',5,2,0,98,1),(6,'user@example.com',6,2,1,184,2),(7,'user@example.com',7,2,1,184,1),(8,'user@example.com',8,1,0,98,2),(9,'user@example.com',9,1,0,98,2),(10,'user@example.com',10,2,0,98,1),(11,'user@example.com',11,1,0,98,1),(12,'user@example.com',12,2,0,98,2),(13,'user@example.com',13,2,1,184,1),(14,'user@example.com',14,1,0,98,2),(15,'user@example.com',15,2,0,98,1),(16,'user@example.com',16,1,0,98,2),(17,'user@example.com',17,2,0,98,1),(18,'user@example.com',18,2,0,98,1),(19,'user@example.com',19,2,1,184,1),(28,'user@example.com',28,1,0,470,1),(29,'user@example.com',29,2,1,470,1),(30,'user@example.com',28,4,0,470,1),(31,'agnes@example.com',1,2,0,98,2);
/*!40000 ALTER TABLE `user_travel_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `users` (
`username` varchar(50) NOT NULL,
`password` varchar(68) NOT NULL,
`enabled` tinyint(3) unsigned DEFAULT '0',
PRIMARY KEY (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES ('admin@cbc','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('agnes@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('bardell@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('barker@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('barkis@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('barnet@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('berinthia@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('blackboy@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('boy@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('brass@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('brown@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('bumble@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('cheeryble@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('chillip@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('clennam@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('colonal@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('copperfield@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('creevy@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('donny@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('dora@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('feenix@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('flowers@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('gabelle@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('gabriel@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('higden@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('honeythunder@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('infant@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('jacob@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('lambert@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('larkins@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('lobley@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('louisa@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('lupin@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('margaret@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('martha@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('marwood@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('mary@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('mell@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('mick@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('mulberry@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('phoebe@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('plornish@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('pott@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('richard@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('riderhood@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('roads@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('rugg@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('snitchey@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('sparkler@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('stephen@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('tomkins@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('tracy@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('tungay@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('user@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1),('wickfield@example.com','{bcrypt}$2a$10$9P4yroqc3hYlp.BCu7UN1OjuzoZvbxVPrSGoEaRksP6P69NeGeb.a',1);
/*!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 2019-04-26 13:50:23